Update of /cvsroot/blob/blob/include/blob/arch
In directory usw-pr-cvs1:/tmp/cvs-serv791/include/blob/arch
Added Files:
h3600.h
Log Message:
Initial support for the Compaq Ipaq H3600 series
--- NEW FILE: h3600.h ---
/*
* h3600.h: Ipaq H3600 specific defines
*
* Copyright (C) 2001 Erik Mouw (J.A...@it...)
*
* $Id: h3600.h,v 1.1 2001/10/27 21:04:20 erikm Exp $
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#ident "$Id: h3600.h,v 1.1 2001/10/27 21:04:20 erikm Exp $"
#ifndef BLOB_ARCH_H3600_H
#define BLOB_ARCH_H3600_H
/* boot CPU speed */
#define CPU_SPEED (0x0a)
/* GPIO for the LED */
#define LED_GPIO (0x00000000) /* No LED */
/* where do various parts live in RAM */
#define BLOB_RAM_BASE (0xc0100000)
#define KERNEL_RAM_BASE (0xC0008000)
#define PARAM_RAM_BASE (0xc0110000)
#define RAMDISK_RAM_BASE (0xC0800000)
/* and where do they live in flash */
#define BLOB_BLOCK_OFFSET (0x00000000)
#define KERNEL_BLOCK_OFFSET (0x00008000)
#define RAMDISK_BLOCK_OFFSET (0x00800000)
/* the position of the kernel boot parameters */
#define BOOT_PARAMS (0xc0000100)
/* the size (in kbytes) to which the compressed ramdisk expands */
#define RAMDISK_SIZE (8 * 1024)
#endif
|