Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 1 | /* |
Stefan Roese | 700200c | 2007-01-30 17:04:19 +0100 | [diff] [blame] | 2 | * (C) Copyright 2005-2007 |
Stefan Roese | 8428638 | 2005-08-11 18:03:14 +0200 | [diff] [blame] | 3 | * Stefan Roese, DENX Software Engineering, sr@denx.de. |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 4 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | /************************************************************************ |
Stefan Roese | 700200c | 2007-01-30 17:04:19 +0100 | [diff] [blame] | 9 | * yosemite.h - configuration for Yosemite & Yellowstone boards |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 10 | ***********************************************************************/ |
| 11 | #ifndef __CONFIG_H |
| 12 | #define __CONFIG_H |
| 13 | |
| 14 | /*----------------------------------------------------------------------- |
| 15 | * High Level Configuration Options |
| 16 | *----------------------------------------------------------------------*/ |
Stefan Roese | 700200c | 2007-01-30 17:04:19 +0100 | [diff] [blame] | 17 | /* This config file is used for Yosemite (440EP) and Yellowstone (440GR)*/ |
| 18 | #ifndef CONFIG_YELLOWSTONE |
Stefan Roese | 700200c | 2007-01-30 17:04:19 +0100 | [diff] [blame] | 19 | #define CONFIG_440EP 1 /* Specific PPC440EP support */ |
| 20 | #define CONFIG_HOSTNAME yosemite |
| 21 | #else |
| 22 | #define CONFIG_440GR 1 /* Specific PPC440GR support */ |
| 23 | #define CONFIG_HOSTNAME yellowstone |
| 24 | #endif |
Grzegorz Bernacki | efa35cf | 2007-06-15 11:19:28 +0200 | [diff] [blame] | 25 | #define CONFIG_440 1 /* ... PPC440 family */ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 26 | #define CONFIG_SYS_CLK_FREQ 66666666 /* external freq to pll */ |
| 27 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 28 | #define CONFIG_SYS_TEXT_BASE 0xFFF80000 |
| 29 | |
Stefan Roese | 72675dc | 2008-06-06 15:55:21 +0200 | [diff] [blame] | 30 | /* |
| 31 | * Include common defines/options for all AMCC eval boards |
| 32 | */ |
| 33 | #include "amcc-common.h" |
| 34 | |
Stefan Roese | 8428638 | 2005-08-11 18:03:14 +0200 | [diff] [blame] | 35 | #define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_early_init_f */ |
| 36 | #define CONFIG_MISC_INIT_R 1 /* call misc_init_r() */ |
Stefan Roese | f344386 | 2006-10-07 11:30:52 +0200 | [diff] [blame] | 37 | #define CONFIG_BOARD_RESET 1 /* call board_reset() */ |
Stefan Roese | 8428638 | 2005-08-11 18:03:14 +0200 | [diff] [blame] | 38 | |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 39 | /*----------------------------------------------------------------------- |
| 40 | * Base addresses -- Note these are effective addresses where the |
| 41 | * actual resources get mapped (not physical addresses) |
| 42 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 43 | #define CONFIG_SYS_FLASH_BASE 0xfc000000 /* start of FLASH */ |
| 44 | #define CONFIG_SYS_PCI_MEMBASE 0xa0000000 /* mapped pci memory*/ |
| 45 | #define CONFIG_SYS_PCI_MEMBASE1 CONFIG_SYS_PCI_MEMBASE + 0x10000000 |
| 46 | #define CONFIG_SYS_PCI_MEMBASE2 CONFIG_SYS_PCI_MEMBASE1 + 0x10000000 |
| 47 | #define CONFIG_SYS_PCI_MEMBASE3 CONFIG_SYS_PCI_MEMBASE2 + 0x10000000 |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 48 | |
| 49 | /*Don't change either of these*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 50 | #define CONFIG_SYS_PCI_BASE 0xe0000000 /* internal PCI regs*/ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 51 | /*Don't change either of these*/ |
| 52 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 53 | #define CONFIG_SYS_USB_DEVICE 0x50000000 |
| 54 | #define CONFIG_SYS_NVRAM_BASE_ADDR 0x80000000 |
| 55 | #define CONFIG_SYS_BCSR_BASE (CONFIG_SYS_NVRAM_BASE_ADDR | 0x2000) |
| 56 | #define CONFIG_SYS_BOOT_BASE_ADDR 0xf0000000 |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 57 | |
| 58 | /*----------------------------------------------------------------------- |
| 59 | * Initial RAM & stack pointer (placed in SDRAM) |
| 60 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 61 | #define CONFIG_SYS_INIT_RAM_DCACHE 1 /* d-cache as init ram */ |
| 62 | #define CONFIG_SYS_INIT_RAM_ADDR 0x70000000 /* DCache */ |
Wolfgang Denk | 553f098 | 2010-10-26 13:32:32 +0200 | [diff] [blame] | 63 | #define CONFIG_SYS_INIT_RAM_SIZE (4 << 10) |
Wolfgang Denk | 25ddd1f | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 64 | #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 65 | #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 66 | |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 67 | /*----------------------------------------------------------------------- |
| 68 | * Serial Port |
| 69 | *----------------------------------------------------------------------*/ |
Stefan Roese | 550650d | 2010-09-20 16:05:31 +0200 | [diff] [blame] | 70 | #define CONFIG_CONS_INDEX 1 /* Use UART0 */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 71 | #define CONFIG_SYS_EXT_SERIAL_CLOCK 11059200 /* use external 11.059MHz clk */ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 72 | |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 73 | /*----------------------------------------------------------------------- |
Stefan Roese | 8428638 | 2005-08-11 18:03:14 +0200 | [diff] [blame] | 74 | * Environment |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 75 | *----------------------------------------------------------------------*/ |
Stefan Roese | 8428638 | 2005-08-11 18:03:14 +0200 | [diff] [blame] | 76 | /* |
| 77 | * Define here the location of the environment variables (FLASH or EEPROM). |
| 78 | * Note: DENX encourages to use redundant environment in FLASH. |
| 79 | */ |
| 80 | #if 1 |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 81 | #define CONFIG_ENV_IS_IN_FLASH 1 /* use FLASH for environment vars */ |
Stefan Roese | 8428638 | 2005-08-11 18:03:14 +0200 | [diff] [blame] | 82 | #else |
Jean-Christophe PLAGNIOL-VILLARD | bb1f8b4 | 2008-09-05 09:19:30 +0200 | [diff] [blame] | 83 | #define CONFIG_ENV_IS_IN_EEPROM 1 /* use EEPROM for environment vars */ |
Stefan Roese | 8428638 | 2005-08-11 18:03:14 +0200 | [diff] [blame] | 84 | #endif |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 85 | |
| 86 | /*----------------------------------------------------------------------- |
| 87 | * FLASH related |
| 88 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 89 | #define CONFIG_SYS_FLASH_CFI /* The flash is CFI compatible */ |
Jean-Christophe PLAGNIOL-VILLARD | 00b1883 | 2008-08-13 01:40:42 +0200 | [diff] [blame] | 90 | #define CONFIG_FLASH_CFI_DRIVER /* Use common CFI driver */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 91 | #define CONFIG_SYS_FLASH_CFI_AMD_RESET 1 /* AMD RESET for STM 29W320DB! */ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 92 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 93 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */ |
| 94 | #define CONFIG_SYS_MAX_FLASH_SECT 512 /* max number of sectors on one chip */ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 95 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 96 | #define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */ |
| 97 | #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 98 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 99 | #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1 /* use buffered writes (20x faster) */ |
Stefan Roese | 278bc4b | 2006-05-10 15:06:58 +0200 | [diff] [blame] | 100 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 101 | #define CONFIG_SYS_FLASH_EMPTY_INFO /* print 'E' for empty sector on flinfo */ |
Stefan Roese | 8428638 | 2005-08-11 18:03:14 +0200 | [diff] [blame] | 102 | |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 103 | #ifdef CONFIG_ENV_IS_IN_FLASH |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 104 | #define CONFIG_ENV_SECT_SIZE 0x20000 /* size of one complete sector */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 105 | #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE-CONFIG_ENV_SECT_SIZE) |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 106 | #define CONFIG_ENV_SIZE 0x2000 /* Total Size of Environment Sector */ |
Stefan Roese | 8428638 | 2005-08-11 18:03:14 +0200 | [diff] [blame] | 107 | |
| 108 | /* Address and size of Redundant Environment Sector */ |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 109 | #define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR-CONFIG_ENV_SECT_SIZE) |
| 110 | #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE) |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 111 | #endif /* CONFIG_ENV_IS_IN_FLASH */ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 112 | |
| 113 | /*----------------------------------------------------------------------- |
| 114 | * DDR SDRAM |
| 115 | *----------------------------------------------------------------------*/ |
Wolfgang Denk | 095b8a3 | 2005-08-02 17:06:17 +0200 | [diff] [blame] | 116 | #undef CONFIG_SPD_EEPROM /* Don't use SPD EEPROM for setup */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 117 | #define CONFIG_SYS_KBYTES_SDRAM (128 * 1024) /* 128MB */ |
| 118 | #define CONFIG_SYS_SDRAM_BANKS (2) |
Stefan Roese | 8428638 | 2005-08-11 18:03:14 +0200 | [diff] [blame] | 119 | |
Ira Snyder | 4adb302 | 2008-04-29 11:18:54 -0700 | [diff] [blame] | 120 | /*----------------------------------------------------------------------- |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 121 | * I2C |
| 122 | *----------------------------------------------------------------------*/ |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 123 | #define CONFIG_SYS_I2C_PPC4XX_SPEED_0 400000 |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 124 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 125 | #define CONFIG_SYS_I2C_MULTI_EEPROMS |
| 126 | #define CONFIG_SYS_I2C_EEPROM_ADDR (0xa8>>1) |
| 127 | #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 |
| 128 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3 |
| 129 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 10 |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 130 | |
Jean-Christophe PLAGNIOL-VILLARD | bb1f8b4 | 2008-09-05 09:19:30 +0200 | [diff] [blame] | 131 | #ifdef CONFIG_ENV_IS_IN_EEPROM |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 132 | #define CONFIG_ENV_SIZE 0x200 /* Size of Environment vars */ |
| 133 | #define CONFIG_ENV_OFFSET 0x0 |
Jean-Christophe PLAGNIOL-VILLARD | bb1f8b4 | 2008-09-05 09:19:30 +0200 | [diff] [blame] | 134 | #endif /* CONFIG_ENV_IS_IN_EEPROM */ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 135 | |
Stefan Roese | a90921f | 2007-12-04 16:29:48 +0100 | [diff] [blame] | 136 | /* I2C SYSMON (LM75, AD7414 is almost compatible) */ |
| 137 | #define CONFIG_DTT_LM75 1 /* ON Semi's LM75 */ |
| 138 | #define CONFIG_DTT_AD7414 1 /* use AD7414 */ |
| 139 | #define CONFIG_DTT_SENSORS {0} /* Sensor addresses */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 140 | #define CONFIG_SYS_DTT_MAX_TEMP 70 |
| 141 | #define CONFIG_SYS_DTT_LOW_TEMP -30 |
| 142 | #define CONFIG_SYS_DTT_HYSTERESIS 3 |
Stefan Roese | a90921f | 2007-12-04 16:29:48 +0100 | [diff] [blame] | 143 | |
Stefan Roese | 72675dc | 2008-06-06 15:55:21 +0200 | [diff] [blame] | 144 | /* |
| 145 | * Default environment variables |
| 146 | */ |
Stefan Roese | 8428638 | 2005-08-11 18:03:14 +0200 | [diff] [blame] | 147 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Stefan Roese | 72675dc | 2008-06-06 15:55:21 +0200 | [diff] [blame] | 148 | CONFIG_AMCC_DEF_ENV \ |
| 149 | CONFIG_AMCC_DEF_ENV_POWERPC \ |
| 150 | CONFIG_AMCC_DEF_ENV_PPC_OLD \ |
| 151 | CONFIG_AMCC_DEF_ENV_NOR_UPD \ |
Stefan Roese | 8428638 | 2005-08-11 18:03:14 +0200 | [diff] [blame] | 152 | "kernel_addr=fc000000\0" \ |
Stefan Roese | 56ced70 | 2006-05-15 15:11:20 +0200 | [diff] [blame] | 153 | "ramdisk_addr=fc180000\0" \ |
Stefan Roese | 8428638 | 2005-08-11 18:03:14 +0200 | [diff] [blame] | 154 | "" |
Stefan Roese | 8428638 | 2005-08-11 18:03:14 +0200 | [diff] [blame] | 155 | |
Ira Snyder | 4adb302 | 2008-04-29 11:18:54 -0700 | [diff] [blame] | 156 | #define CONFIG_HAS_ETH0 1 /* add support for "ethaddr" */ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 157 | #define CONFIG_HAS_ETH1 1 /* add support for "eth1addr" */ |
| 158 | #define CONFIG_PHY_ADDR 1 /* PHY address, See schematics */ |
Stefan Roese | 72675dc | 2008-06-06 15:55:21 +0200 | [diff] [blame] | 159 | #define CONFIG_PHY1_ADDR 3 |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 160 | |
| 161 | /* Partitions */ |
| 162 | #define CONFIG_MAC_PARTITION |
| 163 | #define CONFIG_DOS_PARTITION |
| 164 | #define CONFIG_ISO_PARTITION |
| 165 | |
Stefan Roese | 846b0dd | 2005-08-08 12:42:22 +0200 | [diff] [blame] | 166 | #ifdef CONFIG_440EP |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 167 | /* USB */ |
Markus Klotzbuecher | 7b59b3c | 2006-11-27 11:44:58 +0100 | [diff] [blame] | 168 | #define CONFIG_USB_OHCI_NEW |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 169 | #define CONFIG_USB_STORAGE |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 170 | #define CONFIG_SYS_OHCI_BE_CONTROLLER |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 171 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 172 | #undef CONFIG_SYS_USB_OHCI_BOARD_INIT |
| 173 | #define CONFIG_SYS_USB_OHCI_CPU_INIT 1 |
| 174 | #define CONFIG_SYS_USB_OHCI_REGS_BASE (CONFIG_SYS_PERIPHERAL_BASE | 0x1000) |
| 175 | #define CONFIG_SYS_USB_OHCI_SLOT_NAME "ppc440" |
| 176 | #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 15 |
Markus Klotzbuecher | 53e336e | 2006-11-27 11:43:09 +0100 | [diff] [blame] | 177 | |
Stefan Roese | 700200c | 2007-01-30 17:04:19 +0100 | [diff] [blame] | 178 | /* Comment this out to enable USB 1.1 device */ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 179 | #define USB_2_0_DEVICE |
Stefan Roese | 700200c | 2007-01-30 17:04:19 +0100 | [diff] [blame] | 180 | |
Stefan Roese | 700200c | 2007-01-30 17:04:19 +0100 | [diff] [blame] | 181 | #define CONFIG_SUPPORT_VFAT |
Stefan Roese | 700200c | 2007-01-30 17:04:19 +0100 | [diff] [blame] | 182 | #endif /* CONFIG_440EP */ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 183 | |
| 184 | #ifdef DEBUG |
| 185 | #define CONFIG_PANIC_HANG |
| 186 | #else |
| 187 | #define CONFIG_HW_WATCHDOG /* watchdog */ |
| 188 | #endif |
| 189 | |
Jon Loeliger | dca3b3d | 2007-07-04 22:33:46 -0500 | [diff] [blame] | 190 | /* |
Stefan Roese | 72675dc | 2008-06-06 15:55:21 +0200 | [diff] [blame] | 191 | * Commands additional to the ones defined in amcc-common.h |
Jon Loeliger | 079a136 | 2007-07-10 10:12:10 -0500 | [diff] [blame] | 192 | */ |
Stefan Roese | a90921f | 2007-12-04 16:29:48 +0100 | [diff] [blame] | 193 | #define CONFIG_CMD_DTT |
Jon Loeliger | dca3b3d | 2007-07-04 22:33:46 -0500 | [diff] [blame] | 194 | #define CONFIG_CMD_PCI |
Jon Loeliger | dca3b3d | 2007-07-04 22:33:46 -0500 | [diff] [blame] | 195 | |
| 196 | #ifdef CONFIG_440EP |
| 197 | #define CONFIG_CMD_USB |
| 198 | #define CONFIG_CMD_FAT |
| 199 | #define CONFIG_CMD_EXT2 |
| 200 | #endif |
| 201 | |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 202 | /*----------------------------------------------------------------------- |
| 203 | * PCI stuff |
| 204 | *----------------------------------------------------------------------- |
| 205 | */ |
| 206 | /* General PCI */ |
Stefan Roese | 8428638 | 2005-08-11 18:03:14 +0200 | [diff] [blame] | 207 | #define CONFIG_PCI /* include pci support */ |
Gabor Juhos | 842033e | 2013-05-30 07:06:12 +0000 | [diff] [blame] | 208 | #define CONFIG_PCI_INDIRECT_BRIDGE /* indirect PCI bridge support */ |
Stefan Roese | 8428638 | 2005-08-11 18:03:14 +0200 | [diff] [blame] | 209 | #undef CONFIG_PCI_PNP /* do (not) pci plug-and-play */ |
| 210 | #define CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 211 | #define CONFIG_SYS_PCI_TARGBASE 0x80000000 /* PCIaddr mapped to CONFIG_SYS_PCI_MEMBASE*/ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 212 | |
| 213 | /* Board-specific PCI */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 214 | #define CONFIG_SYS_PCI_TARGET_INIT |
| 215 | #define CONFIG_SYS_PCI_MASTER_INIT |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 216 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 217 | #define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x10e8 /* AMCC */ |
| 218 | #define CONFIG_SYS_PCI_SUBSYS_ID 0xcafe /* Whatever */ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 219 | |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 220 | /*----------------------------------------------------------------------- |
Stefan Roese | 36adff3 | 2007-01-13 07:59:19 +0100 | [diff] [blame] | 221 | * External Bus Controller (EBC) Setup |
| 222 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 223 | #define CONFIG_SYS_FLASH CONFIG_SYS_FLASH_BASE |
| 224 | #define CONFIG_SYS_CPLD 0x80000000 |
Stefan Roese | 36adff3 | 2007-01-13 07:59:19 +0100 | [diff] [blame] | 225 | |
| 226 | /* Memory Bank 0 (NOR-FLASH) initialization */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 227 | #define CONFIG_SYS_EBC_PB0AP 0x03017300 |
| 228 | #define CONFIG_SYS_EBC_PB0CR (CONFIG_SYS_FLASH | 0xda000) |
Stefan Roese | 36adff3 | 2007-01-13 07:59:19 +0100 | [diff] [blame] | 229 | |
| 230 | /* Memory Bank 2 (CPLD) initialization */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 231 | #define CONFIG_SYS_EBC_PB2AP 0x04814500 |
| 232 | #define CONFIG_SYS_EBC_PB2CR (CONFIG_SYS_CPLD | 0x18000) |
Stefan Roese | 36adff3 | 2007-01-13 07:59:19 +0100 | [diff] [blame] | 233 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 234 | #define CONFIG_SYS_BCSR5_PCI66EN 0x80 |
Stefan Roese | 5a5958b | 2007-10-15 11:29:33 +0200 | [diff] [blame] | 235 | |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 236 | #endif /* __CONFIG_H */ |