2002-11-18 00:14:45 +00:00
|
|
|
|
/*
|
|
|
|
|
* (C) Copyright 2002
|
|
|
|
|
* Daniel Engstr<EFBFBD>m, Omicron Ceti AB, daniel@omicron.se.
|
|
|
|
|
*
|
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
|
* project.
|
|
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* board/config.h - configuration options, board specific
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
|
2008-09-06 21:08:42 +00:00
|
|
|
|
#define GRUSS_TESTING
|
2002-11-18 00:14:45 +00:00
|
|
|
|
/*
|
|
|
|
|
* High Level Configuration Options
|
|
|
|
|
* (easy to change)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define CONFIG_X86 1 /* This is a X86 CPU */
|
2009-02-24 10:12:20 +00:00
|
|
|
|
#define CONFIG_SYS_SC520 1 /* Include support for AMD SC520 */
|
2003-05-31 18:35:21 +00:00
|
|
|
|
#define CONFIG_ALI152X 1 /* Include support for Ali 152x SIO */
|
2002-11-18 00:14:45 +00:00
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
|
#define CONFIG_SYS_SDRAM_PRECHARGE_DELAY 6 /* 6T */
|
|
|
|
|
#define CONFIG_SYS_SDRAM_REFRESH_RATE 78 /* 7.8uS (choices are 7.8, 15.6, 31.2 or 62.5uS) */
|
|
|
|
|
#define CONFIG_SYS_SDRAM_RAS_CAS_DELAY 3 /* 3T */
|
2002-11-18 00:14:45 +00:00
|
|
|
|
|
|
|
|
|
/* define at most one of these */
|
2008-10-16 13:01:15 +00:00
|
|
|
|
#undef CONFIG_SYS_SDRAM_CAS_LATENCY_2T
|
|
|
|
|
#define CONFIG_SYS_SDRAM_CAS_LATENCY_3T
|
|
|
|
|
|
|
|
|
|
#define CONFIG_SYS_SC520_HIGH_SPEED 0 /* 100 or 133MHz */
|
2009-02-24 10:12:20 +00:00
|
|
|
|
#undef CONFIG_SYS_SC520_RESET /* use SC520 MMCR's to reset cpu */
|
|
|
|
|
#undef CONFIG_SYS_SC520_TIMER /* use SC520 swtimers */
|
|
|
|
|
#define CONFIG_SYS_GENERIC_TIMER 1 /* use the i8254 PIT timers */
|
|
|
|
|
#undef CONFIG_SYS_TSC_TIMER /* use the Pentium TSC timers */
|
2008-10-16 13:01:15 +00:00
|
|
|
|
#define CONFIG_SYS_USE_SIO_UART 0 /* prefer the uarts on the SIO to those
|
2002-11-18 00:14:45 +00:00
|
|
|
|
* in the SC520 on the CDP */
|
2009-02-24 10:13:40 +00:00
|
|
|
|
#define CONFIG_SYS_PCAT_INTERRUPTS
|
|
|
|
|
#define CONFIG_SYS_NUM_IRQS 16
|
2002-11-18 00:14:45 +00:00
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
|
#define CONFIG_SYS_STACK_SIZE 0x8000 /* Size of bootloader stack */
|
2002-11-18 00:14:45 +00:00
|
|
|
|
|
|
|
|
|
#define CONFIG_SHOW_BOOT_PROGRESS 1
|
|
|
|
|
#define CONFIG_LAST_STAGE_INIT 1
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Size of malloc() pool
|
|
|
|
|
*/
|
2008-09-10 20:48:06 +00:00
|
|
|
|
#define CONFIG_MALLOC_SIZE (CONFIG_ENV_SIZE + 128*1024)
|
2002-11-18 00:14:45 +00:00
|
|
|
|
|
|
|
|
|
#define CONFIG_BAUDRATE 9600
|
|
|
|
|
|
2007-07-10 15:12:10 +00:00
|
|
|
|
/*
|
|
|
|
|
* BOOTP options
|
|
|
|
|
*/
|
|
|
|
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
|
|
|
|
#define CONFIG_BOOTP_BOOTPATH
|
|
|
|
|
#define CONFIG_BOOTP_GATEWAY
|
|
|
|
|
#define CONFIG_BOOTP_HOSTNAME
|
|
|
|
|
|
|
|
|
|
|
2007-07-05 03:33:30 +00:00
|
|
|
|
/*
|
|
|
|
|
* Command line configuration.
|
|
|
|
|
*/
|
|
|
|
|
#include <config_cmd_default.h>
|
|
|
|
|
|
|
|
|
|
#define CONFIG_CMD_PCI
|
2008-09-06 21:08:42 +00:00
|
|
|
|
#ifndef GRUSS_TESTING
|
2008-03-26 14:50:45 +00:00
|
|
|
|
#define CONFIG_CMD_SATA
|
2008-09-06 21:08:42 +00:00
|
|
|
|
#else
|
|
|
|
|
#undef CONFIG_CMD_SATA
|
|
|
|
|
#endif
|
2007-07-05 03:33:30 +00:00
|
|
|
|
#define CONFIG_CMD_JFFS2
|
|
|
|
|
#define CONFIG_CMD_NET
|
|
|
|
|
#define CONFIG_CMD_EEPROM
|
|
|
|
|
|
2002-11-18 00:14:45 +00:00
|
|
|
|
#define CONFIG_BOOTDELAY 15
|
2008-05-20 14:00:29 +00:00
|
|
|
|
#define CONFIG_BOOTARGS "root=/dev/mtdblock0 console=ttyS0,9600"
|
2002-11-18 00:14:45 +00:00
|
|
|
|
/* #define CONFIG_BOOTCOMMAND "bootm 38000000" */
|
|
|
|
|
|
2007-07-05 03:33:30 +00:00
|
|
|
|
#if defined(CONFIG_CMD_KGDB)
|
2002-11-18 00:14:45 +00:00
|
|
|
|
#define CONFIG_KGDB_BAUDRATE 115200 /* speed to run kgdb serial port */
|
|
|
|
|
#define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Miscellaneous configurable options
|
|
|
|
|
*/
|
2008-10-16 13:01:15 +00:00
|
|
|
|
#define CONFIG_SYS_LONGHELP /* undef to save memory */
|
|
|
|
|
#define CONFIG_SYS_PROMPT "boot > " /* Monitor Command Prompt */
|
|
|
|
|
#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
|
|
|
|
|
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
|
|
|
|
|
#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
|
|
|
|
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
|
2002-11-18 00:14:45 +00:00
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
|
#define CONFIG_SYS_MEMTEST_START 0x00100000 /* memtest works on */
|
|
|
|
|
#define CONFIG_SYS_MEMTEST_END 0x01000000 /* 1 ... 16 MB in DRAM */
|
2002-11-18 00:14:45 +00:00
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
|
#undef CONFIG_SYS_CLKS_IN_HZ /* everything, incl board info, in Hz */
|
2002-11-18 00:14:45 +00:00
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
|
#define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
|
2002-11-18 00:14:45 +00:00
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
|
#define CONFIG_SYS_HZ 1024 /* incrementer freq: 1kHz */
|
2002-11-18 00:14:45 +00:00
|
|
|
|
|
|
|
|
|
/* valid baudrates */
|
2008-10-16 13:01:15 +00:00
|
|
|
|
#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
|
2002-11-18 00:14:45 +00:00
|
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------
|
|
|
|
|
* Physical Memory Map
|
|
|
|
|
*/
|
|
|
|
|
#define CONFIG_NR_DRAM_BANKS 4 /* we have 4 banks of DRAM */
|
|
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------
|
|
|
|
|
* FLASH and environment organization
|
|
|
|
|
*/
|
2008-10-16 13:01:15 +00:00
|
|
|
|
#define CONFIG_SYS_MAX_FLASH_BANKS 3 /* max number of memory banks */
|
|
|
|
|
#define CONFIG_SYS_MAX_FLASH_SECT 64 /* max number of sectors on one chip */
|
2002-11-18 00:14:45 +00:00
|
|
|
|
|
|
|
|
|
/* timeout values are in ticks */
|
2008-10-16 13:01:15 +00:00
|
|
|
|
#define CONFIG_SYS_FLASH_ERASE_TOUT (2*CONFIG_SYS_HZ) /* Timeout for Flash Erase */
|
|
|
|
|
#define CONFIG_SYS_FLASH_WRITE_TOUT (2*CONFIG_SYS_HZ) /* Timeout for Flash Write */
|
2002-11-18 00:14:45 +00:00
|
|
|
|
|
2003-05-31 18:35:21 +00:00
|
|
|
|
#define CONFIG_SPI_EEPROM /* Support for SPI EEPROMs (AT25128) */
|
2003-06-27 21:31:46 +00:00
|
|
|
|
#define CONFIG_MW_EEPROM /* Support for MicroWire EEPROMs (AT93LC46) */
|
2003-05-31 18:35:21 +00:00
|
|
|
|
|
|
|
|
|
/* allow to overwrite serial and ethaddr */
|
|
|
|
|
#define CONFIG_ENV_OVERWRITE
|
|
|
|
|
|
|
|
|
|
/* Environment in EEPROM */
|
2008-09-05 07:19:30 +00:00
|
|
|
|
#define CONFIG_ENV_IS_IN_EEPROM 1
|
2003-05-31 18:35:21 +00:00
|
|
|
|
#define CONFIG_SPI
|
2008-09-10 20:48:06 +00:00
|
|
|
|
#define CONFIG_ENV_SIZE 0x4000 /* Total Size of Environment EEPROM 16k is SPI is used or 128 bytes if MW is used*/
|
|
|
|
|
#define CONFIG_ENV_OFFSET 0
|
2009-02-24 10:12:20 +00:00
|
|
|
|
#define CONFIG_SYS_SC520_CDP_USE_SPI /* Store configuration in the SPI part */
|
|
|
|
|
#undef CONFIG_SYS_SC520_CDP_USE_MW /* Store configuration in the MicroWire part */
|
2003-05-31 18:35:21 +00:00
|
|
|
|
#define CONFIG_SPI_X 1
|
2005-08-07 23:03:24 +00:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* JFFS2 partitions
|
|
|
|
|
*/
|
|
|
|
|
/* No command line, one static partition, whole device */
|
|
|
|
|
#undef CONFIG_JFFS2_CMDLINE
|
|
|
|
|
#define CONFIG_JFFS2_DEV "nor0"
|
|
|
|
|
#define CONFIG_JFFS2_PART_SIZE 0xFFFFFFFF
|
|
|
|
|
#define CONFIG_JFFS2_PART_OFFSET 0x00000000
|
|
|
|
|
|
|
|
|
|
/* mtdparts command line support */
|
|
|
|
|
/*
|
|
|
|
|
#define CONFIG_JFFS2_CMDLINE
|
|
|
|
|
#define MTDIDS_DEFAULT "nor0=SC520CDP Flash Bank #0"
|
|
|
|
|
#define MTDPARTS_DEFAULT "mtdparts=SC520CDP Flash Bank #0:-(jffs2)"
|
|
|
|
|
*/
|
2002-11-18 00:14:45 +00:00
|
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------
|
|
|
|
|
* Device drivers
|
|
|
|
|
*/
|
|
|
|
|
#define CONFIG_NET_MULTI /* Multi ethernet cards support */
|
|
|
|
|
#define CONFIG_PCNET
|
|
|
|
|
#define CONFIG_PCNET_79C973
|
|
|
|
|
#define CONFIG_PCNET_79C975
|
|
|
|
|
#define PCNET_HAS_PROM 1
|
2003-05-31 18:35:21 +00:00
|
|
|
|
|
Add driver for S-ATA-controller on Intel processors with South
Bridge, ICH-5, ICH-6 and ICH-7.
Implementation:
1. Code is divided in to two files. All functions, which are
controller specific are kept in "drivers/ata_piix.c" file and
functions, which are not controller specific, are kept in
"common/cmd_sata.c" file.
2. Reading and Writing from the S-ATA drive is done using PIO method.
3. Driver can be configured for 48-bit addressing by defining macro
CONFIG_LBA48, if this macro is not defined driver uses the 28-bit
addressing.
4. S-ATA read function is hooked to the File system, commands like
ext2ls and ext2load file can be used. This has been tested.
5. U-Boot command "SATA_init" is added, which initializes the S-ATA
controller and identifies the S-ATA drives connected to it.
6. U-Boot command "sata" is added, which is used to read/write, print
partition table and get info about the drives present. This I have
implemented in same way as "ide" command is implemented in U-Boot.
7. This driver is for S-ATA in native mode.
8. This driver does not support the Native command queuing and
Hot-plugging.
Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
2007-04-20 08:53:02 +00:00
|
|
|
|
/************************************************************
|
|
|
|
|
*SATA/Native Stuff
|
|
|
|
|
************************************************************/
|
2008-09-06 21:08:42 +00:00
|
|
|
|
#ifndef GRUSS_TESTING
|
2008-10-16 13:01:15 +00:00
|
|
|
|
#define CONFIG_SYS_SATA_MAXBUS 2 /*Max Sata buses supported */
|
|
|
|
|
#define CONFIG_SYS_SATA_DEVS_PER_BUS 2 /*Max no. of devices per bus/port */
|
|
|
|
|
#define CONFIG_SYS_SATA_MAX_DEVICE (CONFIG_SYS_SATA_MAXBUS* CONFIG_SYS_SATA_DEVS_PER_BUS)
|
2008-08-12 23:40:39 +00:00
|
|
|
|
#define CONFIG_ATA_PIIX 1 /*Supports ata_piix driver */
|
2008-09-06 21:08:42 +00:00
|
|
|
|
#else
|
2008-10-16 13:01:15 +00:00
|
|
|
|
#undef CONFIG_SYS_SATA_MAXBUS
|
|
|
|
|
#undef CONFIG_SYS_SATA_DEVS_PER_BUS
|
|
|
|
|
#undef CONFIG_SYS_SATA_MAX_DEVICE
|
2008-09-06 21:08:42 +00:00
|
|
|
|
#undef CONFIG_ATA_PIIX
|
|
|
|
|
#endif
|
|
|
|
|
|
Add driver for S-ATA-controller on Intel processors with South
Bridge, ICH-5, ICH-6 and ICH-7.
Implementation:
1. Code is divided in to two files. All functions, which are
controller specific are kept in "drivers/ata_piix.c" file and
functions, which are not controller specific, are kept in
"common/cmd_sata.c" file.
2. Reading and Writing from the S-ATA drive is done using PIO method.
3. Driver can be configured for 48-bit addressing by defining macro
CONFIG_LBA48, if this macro is not defined driver uses the 28-bit
addressing.
4. S-ATA read function is hooked to the File system, commands like
ext2ls and ext2load file can be used. This has been tested.
5. U-Boot command "SATA_init" is added, which initializes the S-ATA
controller and identifies the S-ATA drives connected to it.
6. U-Boot command "sata" is added, which is used to read/write, print
partition table and get info about the drives present. This I have
implemented in same way as "ide" command is implemented in U-Boot.
7. This driver is for S-ATA in native mode.
8. This driver does not support the Native command queuing and
Hot-plugging.
Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
2007-04-20 08:53:02 +00:00
|
|
|
|
|
2002-11-18 00:14:45 +00:00
|
|
|
|
/************************************************************
|
|
|
|
|
* DISK Partition support
|
|
|
|
|
************************************************************/
|
|
|
|
|
#define CONFIG_DOS_PARTITION
|
|
|
|
|
#define CONFIG_MAC_PARTITION
|
|
|
|
|
#define CONFIG_ISO_PARTITION /* Experimental */
|
|
|
|
|
|
|
|
|
|
/************************************************************
|
2003-05-31 18:35:21 +00:00
|
|
|
|
* Video/Keyboard support
|
2002-11-18 00:14:45 +00:00
|
|
|
|
************************************************************/
|
2008-09-06 21:08:42 +00:00
|
|
|
|
#ifndef GRUSS_TESTING
|
2003-05-31 18:35:21 +00:00
|
|
|
|
#define CONFIG_VIDEO /* To enable video controller support */
|
2008-09-06 21:08:42 +00:00
|
|
|
|
#else
|
|
|
|
|
#undef CONFIG_VIDEO
|
|
|
|
|
#endif
|
2003-05-31 18:35:21 +00:00
|
|
|
|
#define CONFIG_I8042_KBD
|
2008-10-16 13:01:15 +00:00
|
|
|
|
#define CONFIG_SYS_ISA_IO 0
|
2003-05-31 18:35:21 +00:00
|
|
|
|
|
2002-11-18 00:14:45 +00:00
|
|
|
|
/************************************************************
|
|
|
|
|
* RTC
|
|
|
|
|
***********************************************************/
|
|
|
|
|
#define CONFIG_RTC_MC146818
|
|
|
|
|
#undef CONFIG_WATCHDOG /* watchdog disabled */
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* PCI stuff
|
|
|
|
|
*/
|
2008-09-06 21:08:42 +00:00
|
|
|
|
#ifndef GRUSS_TESTING
|
2002-11-18 00:14:45 +00:00
|
|
|
|
#define CONFIG_PCI /* include pci support */
|
|
|
|
|
#define CONFIG_PCI_PNP /* pci plug-and-play */
|
|
|
|
|
#define CONFIG_PCI_SCAN_SHOW
|
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
|
#define CONFIG_SYS_FIRST_PCI_IRQ 10
|
|
|
|
|
#define CONFIG_SYS_SECOND_PCI_IRQ 9
|
|
|
|
|
#define CONFIG_SYS_THIRD_PCI_IRQ 11
|
|
|
|
|
#define CONFIG_SYS_FORTH_PCI_IRQ 15
|
2008-09-06 21:08:42 +00:00
|
|
|
|
#else
|
|
|
|
|
#undef CONFIG_PCI
|
|
|
|
|
#undef CONFIG_PCI_PNP
|
|
|
|
|
#undef CONFIG_PCI_SCAN_SHOW
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-05-31 18:35:21 +00:00
|
|
|
|
|
2002-11-18 00:14:45 +00:00
|
|
|
|
#endif /* __CONFIG_H */
|