wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2001 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | bd8ec7e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | /* ------------------------------------------------------------------------- */ |
| 9 | |
| 10 | /* |
| 11 | * board/config.h - configuration options, board specific |
| 12 | */ |
| 13 | |
| 14 | #ifndef __CONFIG_H |
| 15 | #define __CONFIG_H |
| 16 | |
| 17 | /* |
| 18 | * High Level Configuration Options |
| 19 | * (easy to change) |
| 20 | */ |
| 21 | |
| 22 | #define CONFIG_MPC824X 1 |
| 23 | /* #define CONFIG_MPC8240 1 */ |
| 24 | #define CONFIG_MPC8245 1 |
| 25 | #define CONFIG_EXALION 1 |
| 26 | |
Wolfgang Denk | 291ba1b | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 27 | #define CONFIG_SYS_TEXT_BASE 0xFFF00000 |
| 28 | |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 29 | #if defined (CONFIG_MPC8240) |
| 30 | /* #warning ---------- eXalion with MPC8240 --------------- */ |
| 31 | #elif defined (CONFIG_MPC8245) |
| 32 | /* #warning ++++++++++ eXalion with MPC8245 +++++++++++++++ */ |
| 33 | #elif defined (CONFIG_MPC8245) && defined (CONFIG_MPC8245) |
| 34 | #error #### Both types of MPC824x defined (CONFIG_8240 and CONFIG_8245) |
| 35 | #else |
| 36 | #error #### Specific type of MPC824x must be defined (i.e. CONFIG_MPC8240) |
| 37 | #endif |
| 38 | /* older kernels need clock in MHz newer in Hz */ |
wdenk | 6ea1cf0 | 2004-02-27 08:20:54 +0000 | [diff] [blame] | 39 | /* #define CONFIG_CLOCKS_IN_MHZ 1 */ /* clocks passsed to Linux in MHz */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 40 | #undef CONFIG_CLOCKS_IN_MHZ |
| 41 | |
| 42 | #define CONFIG_BOOTDELAY 10 |
| 43 | |
| 44 | |
wdenk | 6ea1cf0 | 2004-02-27 08:20:54 +0000 | [diff] [blame] | 45 | /*#define CONFIG_DRAM_SPEED 66 */ /* MHz */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 46 | |
Jon Loeliger | 5137269 | 2007-07-04 22:32:10 -0500 | [diff] [blame] | 47 | /* |
Jon Loeliger | e54e77a | 2007-07-10 09:29:01 -0500 | [diff] [blame] | 48 | * BOOTP options |
| 49 | */ |
| 50 | #define CONFIG_BOOTP_BOOTFILESIZE |
| 51 | #define CONFIG_BOOTP_BOOTPATH |
| 52 | #define CONFIG_BOOTP_GATEWAY |
| 53 | #define CONFIG_BOOTP_HOSTNAME |
| 54 | |
| 55 | |
| 56 | /* |
Jon Loeliger | 5137269 | 2007-07-04 22:32:10 -0500 | [diff] [blame] | 57 | * Command line configuration. |
| 58 | */ |
| 59 | #include <config_cmd_default.h> |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 60 | |
Jon Loeliger | 5137269 | 2007-07-04 22:32:10 -0500 | [diff] [blame] | 61 | #define CONFIG_CMD_FLASH |
| 62 | #define CONFIG_CMD_SDRAM |
| 63 | #define CONFIG_CMD_I2C |
| 64 | #define CONFIG_CMD_IDE |
| 65 | #define CONFIG_CMD_FAT |
Mike Frysinger | 78dcaf4 | 2009-01-28 19:08:14 -0500 | [diff] [blame] | 66 | #define CONFIG_CMD_SAVEENV |
Jon Loeliger | 5137269 | 2007-07-04 22:32:10 -0500 | [diff] [blame] | 67 | #define CONFIG_CMD_PCI |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 68 | |
| 69 | |
| 70 | /*----------------------------------------------------------------------- |
| 71 | * Miscellaneous configurable options |
| 72 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 73 | #define CONFIG_SYS_LONGHELP 1 /* undef to save memory */ |
| 74 | #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */ |
| 75 | #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ |
| 76 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */ |
| 77 | #define CONFIG_SYS_MAXARGS 8 /* max number of command args */ |
| 78 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */ |
| 79 | #define CONFIG_SYS_LOAD_ADDR 0x00100000 /* default load address */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 80 | #define CONFIG_MISC_INIT_R 1 |
| 81 | |
| 82 | /*----------------------------------------------------------------------- |
| 83 | * Start addresses for the final memory configuration |
| 84 | * (Set up by the startup code) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 85 | * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0 |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 86 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 87 | #define CONFIG_SYS_SDRAM_BASE 0x00000000 |
| 88 | #define CONFIG_SYS_MAX_RAM_SIZE 0x10000000 /* 1 GBytes - initdram() will */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 89 | /* return real value. */ |
| 90 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 91 | #define CONFIG_SYS_RESET_ADDRESS 0xFFF00100 |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 92 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 93 | #undef CONFIG_SYS_RAMBOOT |
| 94 | #define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 256 kB for Monitor */ |
Wolfgang Denk | 0708bc6 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 95 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 96 | |
| 97 | /*----------------------------------------------------------------------- |
| 98 | * Definitions for initial stack pointer and data area |
| 99 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 100 | #define CONFIG_SYS_INIT_DATA_SIZE 128 |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 101 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 102 | #define CONFIG_SYS_INIT_RAM_ADDR 0x40000000 |
Wolfgang Denk | 1c2e98e | 2010-10-26 13:32:32 +0200 | [diff] [blame] | 103 | #define CONFIG_SYS_INIT_RAM_SIZE 0x1000 |
| 104 | #define CONFIG_SYS_INIT_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - CONFIG_SYS_INIT_DATA_SIZE) |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 105 | |
Wolfgang Denk | 0191e47 | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 106 | #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 107 | #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 108 | |
| 109 | |
| 110 | #if defined (CONFIG_MPC8240) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 111 | #define CONFIG_SYS_FLASH_BASE 0xFFE00000 |
| 112 | #define CONFIG_SYS_FLASH_SIZE (2 * 1024 * 1024) /* onboard 2MByte flash */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 113 | #elif defined (CONFIG_MPC8245) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 114 | #define CONFIG_SYS_FLASH_BASE 0xFFC00000 |
| 115 | #define CONFIG_SYS_FLASH_SIZE (4 * 1024 * 1024) /* onboard 4MByte flash */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 116 | #else |
| 117 | #error Specific type of MPC824x must be defined (i.e. CONFIG_MPC8240) |
| 118 | #endif |
| 119 | |
Jean-Christophe PLAGNIOL-VILLARD | 53db4cd | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 120 | #define CONFIG_ENV_IS_IN_FLASH 1 |
Jean-Christophe PLAGNIOL-VILLARD | 7e1cda6 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 121 | #define CONFIG_ENV_SECT_SIZE 0x20000 /* Size of one Flash sector */ |
Robert P. J. Day | 832d36e | 2013-09-16 07:15:45 -0400 | [diff] [blame] | 122 | #define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE /* Use one Flash sector for environment */ |
Jean-Christophe PLAGNIOL-VILLARD | 7e1cda6 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 123 | #define CONFIG_ENV_ADDR 0xFFFC0000 |
| 124 | #define CONFIG_ENV_OFFSET 0 /* starting right at the beginning */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 125 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 126 | #define CONFIG_SYS_MALLOC_LEN (128 * 1024) /* Reserve 128 kB for malloc() */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 127 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 128 | #define CONFIG_SYS_ALT_MEMTEST 1 /* use real memory test */ |
| 129 | #define CONFIG_SYS_MEMTEST_START 0x00004000 /* memtest works on */ |
| 130 | #define CONFIG_SYS_MEMTEST_END 0x02000000 /* 0 ... 32 MB in DRAM */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 131 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 132 | #define CONFIG_SYS_EUMB_ADDR 0xFC000000 |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 133 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 134 | /* #define CONFIG_SYS_ISA_MEM 0xFD000000 */ |
| 135 | #define CONFIG_SYS_ISA_IO 0xFE000000 |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 136 | |
| 137 | /*----------------------------------------------------------------------- |
| 138 | * FLASH organization |
| 139 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 140 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* Max number of flash banks */ |
| 141 | #define CONFIG_SYS_MAX_FLASH_SECT 64 /* Max number of sectors per flash */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 142 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 143 | #define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */ |
| 144 | #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 145 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 146 | #define FLASH_BASE0_PRELIM CONFIG_SYS_FLASH_BASE |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 147 | #define FLASH_BASE1_PRELIM 0 |
| 148 | |
| 149 | |
| 150 | /*----------------------------------------------------------------------- |
| 151 | * FLASH and environment organization |
| 152 | */ |
| 153 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 154 | #define CONFIG_SYS_FLASH_CFI 1 /* Flash is CFI conformant */ |
Jean-Christophe PLAGNIOL-VILLARD | 8d94c23 | 2008-08-13 01:40:42 +0200 | [diff] [blame] | 155 | #define CONFIG_FLASH_CFI_DRIVER 1 /* Use the common driver */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 156 | #define CONFIG_SYS_MAX_FLASH_SECT 64 /* max number of sectors on one chip */ |
| 157 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */ |
| 158 | #define CONFIG_SYS_FLASH_INCREMENT 0 /* there is only one bank */ |
| 159 | #define CONFIG_SYS_FLASH_PROTECTION 1 /* use hardware protection */ |
| 160 | #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1 /* use buffered writes (20x faster) */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 161 | |
| 162 | |
| 163 | /*----------------------------------------------------------------------- |
| 164 | * PCI stuff |
| 165 | */ |
| 166 | #define CONFIG_PCI 1 /* include pci support */ |
Gabor Juhos | b445873 | 2013-05-30 07:06:12 +0000 | [diff] [blame] | 167 | #define CONFIG_PCI_INDIRECT_BRIDGE 1 /* indirect PCI bridge support */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 168 | #undef CONFIG_PCI_PNP |
| 169 | |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 170 | |
| 171 | #define CONFIG_EEPRO100 1 |
| 172 | |
| 173 | #define PCI_ENET0_MEMADDR 0x80000000 /* Intel 82559ER */ |
| 174 | #define PCI_ENET0_IOADDR 0x80000000 |
| 175 | #define PCI_ENET1_MEMADDR 0x81000000 /* Intel 82559ER */ |
| 176 | #define PCI_ENET1_IOADDR 0x81000000 |
| 177 | #define PCI_ENET2_MEMADDR 0x82000000 /* Broadcom BCM569xx */ |
| 178 | #define PCI_ENET2_IOADDR 0x82000000 |
| 179 | #define PCI_ENET3_MEMADDR 0x83000000 /* Broadcom BCM56xx */ |
| 180 | #define PCI_ENET3_IOADDR 0x83000000 |
| 181 | |
| 182 | /*----------------------------------------------------------------------- |
| 183 | * NS16550 Configuration |
| 184 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 185 | #define CONFIG_SYS_NS16550 1 |
| 186 | #define CONFIG_SYS_NS16550_SERIAL 1 |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 187 | |
| 188 | #define CONFIG_CONS_INDEX 1 |
| 189 | #define CONFIG_BAUDRATE 38400 |
| 190 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 191 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 192 | |
| 193 | #if (CONFIG_CONS_INDEX == 1) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 194 | #define CONFIG_SYS_NS16550_CLK 1843200 /* COM1 only ! */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 195 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 196 | #define CONFIG_SYS_NS16550_CLK ({ extern ulong get_bus_freq (ulong); get_bus_freq (0); }) |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 197 | #endif |
| 198 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 199 | #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_ISA_IO + 0x3F8) |
| 200 | #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_EUMB_ADDR + 0x4500) |
| 201 | #define CONFIG_SYS_NS16550_COM3 (CONFIG_SYS_EUMB_ADDR + 0x4600) |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 202 | |
| 203 | /*----------------------------------------------------------------------- |
| 204 | * select i2c support configuration |
| 205 | * |
| 206 | * Supported configurations are {none, software, hardware} drivers. |
| 207 | * If the software driver is chosen, there are some additional |
| 208 | * configuration items that the driver uses to drive the port pins. |
| 209 | */ |
| 210 | #define CONFIG_HARD_I2C 1 /* To enable I2C support */ |
Heiko Schocher | 479a4cf | 2013-01-29 08:53:15 +0100 | [diff] [blame] | 211 | #undef CONFIG_SYS_I2C_SOFT /* I2C bit-banged */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 212 | #define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address */ |
| 213 | #define CONFIG_SYS_I2C_SLAVE 0x7F |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 214 | |
| 215 | /*----------------------------------------------------------------------- |
| 216 | * Low Level Configuration Settings |
| 217 | * (address mappings, register initial values, etc.) |
| 218 | * You should know what you are doing if you make changes here. |
| 219 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 220 | #define CONFIG_SYS_HZ 1000 |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 221 | |
| 222 | #define CONFIG_SYS_CLK_FREQ 33333333 /* external frequency to pll */ |
| 223 | #define CONFIG_PLL_PCI_TO_MEM_MULTIPLIER 2 /* for MPC8240 only */ |
| 224 | |
wdenk | 6ea1cf0 | 2004-02-27 08:20:54 +0000 | [diff] [blame] | 225 | /*#define CONFIG_133MHZ_DRAM 1 */ /* For 133 MHZ DRAM only !!!!!!!!!!! */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 226 | |
| 227 | #if defined (CONFIG_MPC8245) |
| 228 | /* Bit-field values for PMCR2. */ |
| 229 | #if defined (CONFIG_133MHZ_DRAM) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 230 | #define CONFIG_SYS_DLL_EXTEND 0x80 /* use DLL extended range - 133MHz only */ |
| 231 | #define CONFIG_SYS_PCI_HOLD_DEL 0x20 /* delay and hold timing - 133MHz only */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 232 | #endif |
| 233 | |
| 234 | /* Bit-field values for MIOCR1. */ |
| 235 | #if !defined (CONFIG_133MHZ_DRAM) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 236 | #define CONFIG_SYS_DLL_MAX_DELAY 0x04 /* longer DLL delay line - 66MHz only */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 237 | #endif |
| 238 | /* Bit-field values for MIOCR2. */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 239 | #define CONFIG_SYS_SDRAM_DSCD 0x20 /* SDRAM data in sample clock delay */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 240 | /* - note bottom 3 bits MUST be 0 */ |
| 241 | #endif |
| 242 | |
| 243 | /* Bit-field values for MCCR1. */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 244 | #define CONFIG_SYS_ROMNAL 7 /*rom/flash next access time */ |
| 245 | #define CONFIG_SYS_ROMFAL 11 /*rom/flash access time */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 246 | |
| 247 | /* Bit-field values for MCCR2. */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 248 | #define CONFIG_SYS_TSWAIT 0x5 /* Transaction Start Wait States timer */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 249 | #if defined (CONFIG_133MHZ_DRAM) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 250 | #define CONFIG_SYS_REFINT 1300 /* no of clock cycles between CBR */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 251 | #else /* refresh cycles */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 252 | #define CONFIG_SYS_REFINT 750 |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 253 | #endif |
| 254 | |
| 255 | /* Burst To Precharge. Bits of this value go to MCCR3 and MCCR4. */ |
| 256 | #if defined (CONFIG_133MHZ_DRAM) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 257 | #define CONFIG_SYS_BSTOPRE 1023 |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 258 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 259 | #define CONFIG_SYS_BSTOPRE 250 |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 260 | #endif |
| 261 | |
| 262 | /* Bit-field values for MCCR3. */ |
| 263 | /* the following are for SDRAM only */ |
| 264 | |
| 265 | #if defined (CONFIG_133MHZ_DRAM) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 266 | #define CONFIG_SYS_REFREC 9 /* Refresh to activate interval */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 267 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 268 | #define CONFIG_SYS_REFREC 5 /* Refresh to activate interval */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 269 | #endif |
| 270 | #if defined (CONFIG_MPC8240) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 271 | #define CONFIG_SYS_RDLAT 2 /* data latency from read command */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 272 | #endif |
| 273 | |
| 274 | /* Bit-field values for MCCR4. */ |
| 275 | #if defined (CONFIG_133MHZ_DRAM) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 276 | #define CONFIG_SYS_PRETOACT 3 /* Precharge to activate interval */ |
| 277 | #define CONFIG_SYS_ACTTOPRE 7 /* Activate to Precharge interval */ |
| 278 | #define CONFIG_SYS_ACTORW 5 /* Activate to R/W */ |
| 279 | #define CONFIG_SYS_SDMODE_CAS_LAT 3 /* SDMODE CAS latency */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 280 | #else |
| 281 | #if 0 |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 282 | #define CONFIG_SYS_PRETOACT 2 /* Precharge to activate interval */ |
| 283 | #define CONFIG_SYS_ACTTOPRE 3 /* Activate to Precharge interval */ |
| 284 | #define CONFIG_SYS_ACTORW 3 /* Activate to R/W */ |
| 285 | #define CONFIG_SYS_SDMODE_CAS_LAT 2 /* SDMODE CAS latency */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 286 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 287 | #define CONFIG_SYS_PRETOACT 2 /* Precharge to activate interval */ |
| 288 | #define CONFIG_SYS_ACTTOPRE 5 /* Activate to Precharge interval */ |
| 289 | #define CONFIG_SYS_ACTORW 3 /* Activate to R/W */ |
| 290 | #define CONFIG_SYS_SDMODE_CAS_LAT 3 /* SDMODE CAS latency */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 291 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 292 | #define CONFIG_SYS_SDMODE_WRAP 0 /* SDMODE wrap type */ |
| 293 | #define CONFIG_SYS_SDMODE_BURSTLEN 2 /* SDMODE Burst length 2=4, 3=8 */ |
| 294 | #define CONFIG_SYS_REGDIMM 0 |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 295 | #if defined (CONFIG_MPC8240) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 296 | #define CONFIG_SYS_REGISTERD_TYPE_BUFFER 0 |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 297 | #elif defined (CONFIG_MPC8245) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 298 | #define CONFIG_SYS_REGISTERD_TYPE_BUFFER 1 |
| 299 | #define CONFIG_SYS_EXTROM 0 |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 300 | #else |
| 301 | #error Specific type of MPC824x must be defined (i.e. CONFIG_MPC8240) |
| 302 | #endif |
| 303 | |
| 304 | |
| 305 | /*----------------------------------------------------------------------- |
| 306 | memory bank settings |
| 307 | * only bits 20-29 are actually used from these vales to set the |
| 308 | * start/end address the upper two bits will be 0, and the lower 20 |
| 309 | * bits will be set to 0x00000 for a start address, or 0xfffff for an |
| 310 | * end address |
| 311 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 312 | #define CONFIG_SYS_BANK0_START 0x00000000 |
| 313 | #define CONFIG_SYS_BANK0_END (CONFIG_SYS_MAX_RAM_SIZE - 1) |
| 314 | #define CONFIG_SYS_BANK0_ENABLE 1 |
| 315 | #define CONFIG_SYS_BANK1_START 0x3ff00000 |
| 316 | #define CONFIG_SYS_BANK1_END 0x3fffffff |
| 317 | #define CONFIG_SYS_BANK1_ENABLE 0 |
| 318 | #define CONFIG_SYS_BANK2_START 0x3ff00000 |
| 319 | #define CONFIG_SYS_BANK2_END 0x3fffffff |
| 320 | #define CONFIG_SYS_BANK2_ENABLE 0 |
| 321 | #define CONFIG_SYS_BANK3_START 0x3ff00000 |
| 322 | #define CONFIG_SYS_BANK3_END 0x3fffffff |
| 323 | #define CONFIG_SYS_BANK3_ENABLE 0 |
| 324 | #define CONFIG_SYS_BANK4_START 0x00000000 |
| 325 | #define CONFIG_SYS_BANK4_END 0x00000000 |
| 326 | #define CONFIG_SYS_BANK4_ENABLE 0 |
| 327 | #define CONFIG_SYS_BANK5_START 0x00000000 |
| 328 | #define CONFIG_SYS_BANK5_END 0x00000000 |
| 329 | #define CONFIG_SYS_BANK5_ENABLE 0 |
| 330 | #define CONFIG_SYS_BANK6_START 0x00000000 |
| 331 | #define CONFIG_SYS_BANK6_END 0x00000000 |
| 332 | #define CONFIG_SYS_BANK6_ENABLE 0 |
| 333 | #define CONFIG_SYS_BANK7_START 0x00000000 |
| 334 | #define CONFIG_SYS_BANK7_END 0x00000000 |
| 335 | #define CONFIG_SYS_BANK7_ENABLE 0 |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 336 | |
| 337 | /*----------------------------------------------------------------------- |
| 338 | * Memory bank enable bitmask, specifying which of the banks defined above |
| 339 | are actually present. MSB is for bank #7, LSB is for bank #0. |
| 340 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 341 | #define CONFIG_SYS_BANK_ENABLE 0x01 |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 342 | |
| 343 | #if defined (CONFIG_MPC8240) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 344 | #define CONFIG_SYS_ODCR 0xDF /* configures line driver impedances, */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 345 | /* see 8240 book for bit definitions */ |
| 346 | #elif defined (CONFIG_MPC8245) |
| 347 | #if defined (CONFIG_133MHZ_DRAM) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 348 | #define CONFIG_SYS_ODCR 0xFE /* configures line driver impedances - 133MHz */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 349 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 350 | #define CONFIG_SYS_ODCR 0xDE /* configures line driver impedances - 66MHz */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 351 | #endif |
| 352 | #else |
| 353 | #error Specific type of MPC824x must be defined (i.e. CONFIG_MPC8240) |
| 354 | #endif |
| 355 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 356 | #define CONFIG_SYS_PGMAX 0x32 /* how long the 8240 retains the */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 357 | /* currently accessed page in memory */ |
| 358 | /* see 8240 book for details */ |
| 359 | |
| 360 | /*----------------------------------------------------------------------- |
| 361 | * Block Address Translation (BAT) register settings. |
| 362 | */ |
| 363 | /* SDRAM 0 - 256MB */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 364 | #define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE | BATL_PP_10 | BATL_MEMCOHERENCE) |
| 365 | #define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE | BATU_BL_256M | BATU_VS | BATU_VP) |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 366 | |
| 367 | /* stack in DCACHE @ 1GB (no backing mem) */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 368 | #define CONFIG_SYS_IBAT1L (CONFIG_SYS_INIT_RAM_ADDR | BATL_PP_10 | BATL_MEMCOHERENCE) |
| 369 | #define CONFIG_SYS_IBAT1U (CONFIG_SYS_INIT_RAM_ADDR | BATU_BL_128K | BATU_VS | BATU_VP) |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 370 | |
| 371 | /* PCI memory */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 372 | #define CONFIG_SYS_IBAT2L (0x80000000 | BATL_PP_10 | BATL_CACHEINHIBIT) |
| 373 | #define CONFIG_SYS_IBAT2U (0x80000000 | BATU_BL_256M | BATU_VS | BATU_VP) |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 374 | |
| 375 | /* Flash, config addrs, etc */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 376 | #define CONFIG_SYS_IBAT3L (0xF0000000 | BATL_PP_10 | BATL_CACHEINHIBIT) |
| 377 | #define CONFIG_SYS_IBAT3U (0xF0000000 | BATU_BL_256M | BATU_VS | BATU_VP) |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 378 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 379 | #define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L |
| 380 | #define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U |
| 381 | #define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L |
| 382 | #define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U |
| 383 | #define CONFIG_SYS_DBAT2L CONFIG_SYS_IBAT2L |
| 384 | #define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U |
| 385 | #define CONFIG_SYS_DBAT3L CONFIG_SYS_IBAT3L |
| 386 | #define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 387 | |
| 388 | |
| 389 | /*----------------------------------------------------------------------- |
| 390 | * Cache Configuration |
| 391 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 392 | #define CONFIG_SYS_CACHELINE_SIZE 32 |
Jon Loeliger | 5137269 | 2007-07-04 22:32:10 -0500 | [diff] [blame] | 393 | #if defined(CONFIG_CMD_KGDB) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 394 | # define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of the above value */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 395 | #endif |
| 396 | |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 397 | /* values according to the manual */ |
| 398 | #define CONFIG_DRAM_50MHZ 1 |
| 399 | #define CONFIG_SDRAM_50MHZ |
| 400 | |
| 401 | #undef NR_8259_INTS |
| 402 | #define NR_8259_INTS 1 |
| 403 | |
| 404 | /*----------------------------------------------------------------------- |
| 405 | * IDE/ATA stuff |
| 406 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 407 | #define CONFIG_SYS_IDE_MAXBUS 1 /* max. 2 IDE busses */ |
| 408 | #define CONFIG_SYS_IDE_MAXDEVICE (CONFIG_SYS_IDE_MAXBUS*1) /* max. 2 drives per IDE bus */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 409 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 410 | #define CONFIG_SYS_ATA_BASE_ADDR CONFIG_SYS_ISA_IO /* base address */ |
| 411 | #define CONFIG_SYS_ATA_IDE0_OFFSET 0x01F0 /* ide0 offste */ |
| 412 | #define CONFIG_SYS_ATA_IDE1_OFFSET 0x0170 /* ide1 offset */ |
| 413 | #define CONFIG_SYS_ATA_DATA_OFFSET 0 /* data reg offset */ |
| 414 | #define CONFIG_SYS_ATA_REG_OFFSET 0 /* reg offset */ |
| 415 | #define CONFIG_SYS_ATA_ALT_OFFSET 0x200 /* alternate register offset */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 416 | |
| 417 | #define CONFIG_ATAPI |
| 418 | |
| 419 | #undef CONFIG_IDE_8xx_DIRECT /* no pcmcia interface required */ |
| 420 | #undef CONFIG_IDE_LED /* no led for ide supported */ |
| 421 | #undef CONFIG_IDE_RESET /* reset for ide supported... */ |
| 422 | #undef CONFIG_IDE_RESET_ROUTINE /* with a special reset function */ |
| 423 | |
| 424 | /*----------------------------------------------------------------------- |
| 425 | * DISK Partition support |
| 426 | */ |
| 427 | #define CONFIG_DOS_PARTITION |
| 428 | |
| 429 | /*----------------------------------------------------------------------- |
| 430 | * For booting Linux, the board info and command line data |
| 431 | * have to be in the first 8 MB of memory, since this is |
| 432 | * the maximum mapped by the Linux kernel during initialization. |
| 433 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 434 | #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 435 | |
| 436 | #endif /* __CONFIG_H */ |