Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2006-2009 |
| 3 | * Texas Instruments. |
| 4 | * Richard Woodruff <r-woodruff2@ti.com> |
| 5 | * Syed Mohammed Khasim <x0khasim@ti.com> |
| 6 | * Nishanth Menon <nm@ti.com> |
| 7 | * Tom Rix <Tom.Rix@windriver.com> |
| 8 | * |
| 9 | * Configuration settings for the TI OMAP3430 Zoom II board. |
| 10 | * |
| 11 | * See file CREDITS for list of people who contributed to this |
| 12 | * project. |
| 13 | * |
| 14 | * This program is free software; you can redistribute it and/or |
| 15 | * modify it under the terms of the GNU General Public License as |
| 16 | * published by the Free Software Foundation; either version 2 of |
| 17 | * the License, or (at your option) any later version. |
| 18 | * |
| 19 | * This program is distributed in the hope that it will be useful, |
| 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 22 | * GNU General Public License for more details. |
| 23 | * |
| 24 | * You should have received a copy of the GNU General Public License |
| 25 | * along with this program; if not, write to the Free Software |
| 26 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 27 | * MA 02111-1307 USA |
| 28 | */ |
| 29 | |
| 30 | #ifndef __CONFIG_H |
| 31 | #define __CONFIG_H |
| 32 | #include <asm/sizes.h> |
| 33 | |
| 34 | /* |
| 35 | * High Level Configuration Options |
| 36 | */ |
| 37 | #define CONFIG_ARMCORTEXA8 1 /* This is an ARM V7 CPU core */ |
| 38 | #define CONFIG_OMAP 1 /* in a TI OMAP core */ |
| 39 | #define CONFIG_OMAP34XX 1 /* which is a 34XX */ |
| 40 | #define CONFIG_OMAP3430 1 /* which is in a 3430 */ |
| 41 | #define CONFIG_OMAP3_ZOOM2 1 /* working with Zoom II */ |
| 42 | |
| 43 | #include <asm/arch/cpu.h> /* get chip and board defs */ |
| 44 | #include <asm/arch/omap3.h> |
| 45 | |
| 46 | /* Clock Defines */ |
| 47 | #define V_OSCK 26000000 /* Clock output from T2 */ |
| 48 | #define V_SCLK (V_OSCK >> 1) |
| 49 | |
| 50 | #undef CONFIG_USE_IRQ /* no support for IRQs */ |
| 51 | #define CONFIG_MISC_INIT_R |
| 52 | |
| 53 | #define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */ |
| 54 | #define CONFIG_SETUP_MEMORY_TAGS 1 |
| 55 | #define CONFIG_INITRD_TAG 1 |
| 56 | #define CONFIG_REVISION_TAG 1 |
| 57 | |
| 58 | /* |
| 59 | * Size of malloc() pool |
| 60 | */ |
| 61 | #define CONFIG_ENV_SIZE SZ_128K /* Total Size Environment */ |
| 62 | /* Sector */ |
| 63 | #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + SZ_128K) |
| 64 | #define CONFIG_SYS_GBL_DATA_SIZE 128 /* bytes reserved for */ |
| 65 | /* initial data */ |
| 66 | /* |
| 67 | * Hardware drivers |
| 68 | */ |
| 69 | |
| 70 | /* |
| 71 | * NS16550 Configuration |
Tom Rix | 660888b | 2009-05-31 12:44:37 +0200 | [diff] [blame] | 72 | * Zoom2 uses the TL16CP754C on the debug board |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 73 | */ |
Tom Rix | 660888b | 2009-05-31 12:44:37 +0200 | [diff] [blame] | 74 | #define CONFIG_SERIAL_MULTI 1 |
| 75 | /* |
| 76 | * 0 - 1 : first USB with respect to the left edge of the debug board |
| 77 | * 2 - 3 : second USB with respect to the left edge of the debug board |
| 78 | */ |
| 79 | #define ZOOM2_DEFAULT_SERIAL_DEVICE (&zoom2_serial_device0) |
| 80 | |
| 81 | #define V_NS16550_CLK (1843200) /* 1.8432 Mhz */ |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 82 | |
| 83 | #define CONFIG_SYS_NS16550 |
Tom Rix | 660888b | 2009-05-31 12:44:37 +0200 | [diff] [blame] | 84 | #define CONFIG_SYS_NS16550_REG_SIZE (-2) |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 85 | #define CONFIG_SYS_NS16550_CLK V_NS16550_CLK |
Tom Rix | 660888b | 2009-05-31 12:44:37 +0200 | [diff] [blame] | 86 | #define CONFIG_BAUDRATE 115200 |
| 87 | #define CONFIG_SYS_BAUDRATE_TABLE {115200} |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 88 | |
| 89 | /* allow to overwrite serial and ethaddr */ |
| 90 | #define CONFIG_ENV_OVERWRITE |
Tom Rix | 660888b | 2009-05-31 12:44:37 +0200 | [diff] [blame] | 91 | |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 92 | #define CONFIG_MMC 1 |
| 93 | #define CONFIG_OMAP3_MMC 1 |
| 94 | #define CONFIG_DOS_PARTITION 1 |
| 95 | |
Tom Rix | 83ae698 | 2009-05-31 12:44:39 +0200 | [diff] [blame^] | 96 | /* Status LED */ |
| 97 | #define CONFIG_STATUS_LED 1 /* Status LED enabled */ |
| 98 | #define CONFIG_BOARD_SPECIFIC_LED 1 |
| 99 | #define STATUS_LED_BLUE 0 |
| 100 | #define STATUS_LED_RED 1 |
| 101 | /* Blue */ |
| 102 | #define STATUS_LED_BIT STATUS_LED_BLUE |
| 103 | #define STATUS_LED_STATE STATUS_LED_ON |
| 104 | #define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2) |
| 105 | /* Red */ |
| 106 | #define STATUS_LED_BIT1 STATUS_LED_RED |
| 107 | #define STATUS_LED_STATE1 STATUS_LED_OFF |
| 108 | #define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ / 2) |
| 109 | /* Optional value */ |
| 110 | #define STATUS_LED_BOOT STATUS_LED_BIT |
| 111 | |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 112 | /* commands to include */ |
| 113 | #include <config_cmd_default.h> |
| 114 | |
| 115 | #define CONFIG_CMD_FAT /* FAT support */ |
| 116 | #define CONFIG_CMD_I2C /* I2C serial bus support */ |
| 117 | #define CONFIG_CMD_MMC /* MMC support */ |
| 118 | #define CONFIG_CMD_NAND /* NAND support */ |
| 119 | #define CONFIG_CMD_NAND_LOCK_UNLOCK /* Enable lock/unlock support */ |
| 120 | |
| 121 | #undef CONFIG_CMD_FLASH /* flinfo, erase, protect */ |
| 122 | #undef CONFIG_CMD_FPGA /* FPGA configuration Support */ |
| 123 | #undef CONFIG_CMD_IMI /* iminfo */ |
| 124 | #undef CONFIG_CMD_IMLS /* List all found images */ |
| 125 | #undef CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */ |
| 126 | #undef CONFIG_CMD_NFS /* NFS support */ |
| 127 | |
| 128 | #define CONFIG_SYS_NO_FLASH |
| 129 | #define CONFIG_SYS_I2C_SPEED 100000 |
| 130 | #define CONFIG_SYS_I2C_SLAVE 1 |
| 131 | #define CONFIG_SYS_I2C_BUS 0 |
| 132 | #define CONFIG_SYS_I2C_BUS_SELECT 1 |
| 133 | #define CONFIG_DRIVER_OMAP34XX_I2C 1 |
| 134 | |
| 135 | /* |
| 136 | * Board NAND Info. |
| 137 | */ |
| 138 | #define CONFIG_NAND_OMAP_GPMC |
| 139 | #define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */ |
| 140 | /* to access nand */ |
| 141 | #define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */ |
| 142 | /* to access nand at */ |
| 143 | /* CS0 */ |
| 144 | #define GPMC_NAND_ECC_LP_x16_LAYOUT 1 |
| 145 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
| 146 | |
| 147 | /* Environment information */ |
| 148 | #define CONFIG_BOOTDELAY 10 |
| 149 | |
| 150 | /* |
| 151 | * Miscellaneous configurable options |
| 152 | */ |
| 153 | |
| 154 | #define CONFIG_SYS_PROMPT "OMAP3 Zoom2 # " |
| 155 | #define CONFIG_SYS_LONGHELP |
| 156 | #define CONFIG_SYS_CBSIZE 256 |
| 157 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ |
| 158 | sizeof(CONFIG_SYS_PROMPT) + 16) |
| 159 | #define CONFIG_SYS_MAXARGS 16 |
| 160 | #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE) |
| 161 | /* Memtest from start of memory to 31MB */ |
| 162 | #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0) |
| 163 | #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + 0x01F00000) |
| 164 | /* The default load address is the start of memory */ |
| 165 | #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) |
| 166 | /* everything, incl board info, in Hz */ |
| 167 | #undef CONFIG_SYS_CLKS_IN_HZ |
| 168 | /* |
| 169 | * 2430 has 12 GP timers, they can be driven by the SysClk (12/13/19.2) or by |
| 170 | * 32KHz clk, or from external sig. This rate is divided by a local divisor. |
| 171 | */ |
| 172 | #define CONFIG_SYS_TIMERBASE (OMAP34XX_GPT2) |
| 173 | #define CONFIG_SYS_PTV 7 /* 2^(PTV+1) */ |
| 174 | #define CONFIG_SYS_HZ ((V_SCLK) / (2 << CONFIG_SYS_PTV)) |
| 175 | |
| 176 | /*----------------------------------------------------------------------- |
| 177 | * Stack sizes |
| 178 | * |
| 179 | * The stack sizes are set up in start.S using these settings |
| 180 | */ |
| 181 | #define CONFIG_STACKSIZE SZ_128K |
| 182 | #ifdef CONFIG_USE_IRQ |
| 183 | #define CONFIG_STACKSIZE_IRQ SZ_4K |
| 184 | #define CONFIG_STACKSIZE_FIQ SZ_4K |
| 185 | #endif |
| 186 | |
| 187 | /*----------------------------------------------------------------------- |
| 188 | * Physical Memory Map |
| 189 | */ |
| 190 | #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */ |
| 191 | #define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0 |
| 192 | #define PHYS_SDRAM_1_SIZE SZ_32M /* at least 32 meg */ |
| 193 | #define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1 |
| 194 | |
| 195 | /* SDRAM Bank Allocation method */ |
| 196 | #define SDRC_R_B_C 1 |
| 197 | |
| 198 | /*----------------------------------------------------------------------- |
| 199 | * FLASH and environment organization |
| 200 | */ |
| 201 | |
| 202 | /* **** PISMO SUPPORT *** */ |
| 203 | |
| 204 | /* Configure the PISMO */ |
| 205 | #define PISMO1_NAND_SIZE GPMC_SIZE_128M |
| 206 | #define PISMO1_ONEN_SIZE GPMC_SIZE_128M |
| 207 | |
| 208 | #define CONFIG_SYS_MAX_FLASH_SECT 520 /* max number of sectors on */ |
| 209 | /* one chip */ |
| 210 | #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of flash banks */ |
| 211 | #define CONFIG_SYS_MONITOR_LEN SZ_256K /* Reserve 2 sectors */ |
| 212 | |
| 213 | #define CONFIG_SYS_FLASH_BASE boot_flash_base |
| 214 | |
| 215 | /* Monitor at start of flash */ |
| 216 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE |
| 217 | |
| 218 | #define CONFIG_ENV_IS_IN_NAND 1 |
| 219 | #define SMNAND_ENV_OFFSET 0x0c0000 /* environment starts here */ |
| 220 | |
| 221 | #define CONFIG_SYS_ENV_SECT_SIZE boot_flash_sec |
| 222 | #define CONFIG_ENV_OFFSET boot_flash_off |
| 223 | #define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET |
| 224 | |
| 225 | /*----------------------------------------------------------------------- |
| 226 | * CFI FLASH driver setup |
| 227 | */ |
| 228 | /* timeout values are in ticks */ |
| 229 | #define CONFIG_SYS_FLASH_ERASE_TOUT (100 * CONFIG_SYS_HZ) |
| 230 | #define CONFIG_SYS_FLASH_WRITE_TOUT (100 * CONFIG_SYS_HZ) |
| 231 | |
| 232 | #ifndef __ASSEMBLY__ |
| 233 | extern gpmc_csx_t *nand_cs_base; |
| 234 | extern gpmc_t *gpmc_cfg_base; |
| 235 | extern unsigned int boot_flash_base; |
| 236 | extern volatile unsigned int boot_flash_env_addr; |
| 237 | extern unsigned int boot_flash_off; |
| 238 | extern unsigned int boot_flash_sec; |
| 239 | extern unsigned int boot_flash_type; |
| 240 | #endif |
| 241 | |
| 242 | #endif /* __CONFIG_H */ |