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 |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 32 | |
| 33 | /* |
| 34 | * High Level Configuration Options |
| 35 | */ |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 36 | #define CONFIG_OMAP 1 /* in a TI OMAP core */ |
| 37 | #define CONFIG_OMAP34XX 1 /* which is a 34XX */ |
| 38 | #define CONFIG_OMAP3430 1 /* which is in a 3430 */ |
| 39 | #define CONFIG_OMAP3_ZOOM2 1 /* working with Zoom II */ |
| 40 | |
Vaibhav Hiremath | cae377b | 2010-06-07 15:20:34 -0400 | [diff] [blame] | 41 | #define CONFIG_SDRC /* The chip has SDRC controller */ |
| 42 | |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 43 | #include <asm/arch/cpu.h> /* get chip and board defs */ |
| 44 | #include <asm/arch/omap3.h> |
| 45 | |
Dirk Behme | 3962c4f | 2009-05-31 12:44:41 +0200 | [diff] [blame] | 46 | /* |
| 47 | * Display CPU and Board information |
| 48 | */ |
| 49 | #define CONFIG_DISPLAY_CPUINFO 1 |
| 50 | #define CONFIG_DISPLAY_BOARDINFO 1 |
| 51 | |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 52 | /* Clock Defines */ |
| 53 | #define V_OSCK 26000000 /* Clock output from T2 */ |
| 54 | #define V_SCLK (V_OSCK >> 1) |
| 55 | |
| 56 | #undef CONFIG_USE_IRQ /* no support for IRQs */ |
| 57 | #define CONFIG_MISC_INIT_R |
| 58 | |
| 59 | #define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */ |
| 60 | #define CONFIG_SETUP_MEMORY_TAGS 1 |
| 61 | #define CONFIG_INITRD_TAG 1 |
| 62 | #define CONFIG_REVISION_TAG 1 |
| 63 | |
Grant Likely | 2fa8ca9 | 2011-03-28 09:59:07 +0000 | [diff] [blame] | 64 | #define CONFIG_OF_LIBFDT 1 |
| 65 | |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 66 | /* |
| 67 | * Size of malloc() pool |
| 68 | */ |
Sandeep Paulraj | 9c44ddc | 2009-09-09 11:50:40 -0400 | [diff] [blame] | 69 | #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */ |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 70 | /* Sector */ |
Sandeep Paulraj | 9c44ddc | 2009-09-09 11:50:40 -0400 | [diff] [blame] | 71 | #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (128 << 10)) |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 72 | /* |
| 73 | * Hardware drivers |
| 74 | */ |
| 75 | |
| 76 | /* |
| 77 | * NS16550 Configuration |
Tom Rix | 660888b | 2009-05-31 12:44:37 +0200 | [diff] [blame] | 78 | * Zoom2 uses the TL16CP754C on the debug board |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 79 | */ |
Tom Rix | 660888b | 2009-05-31 12:44:37 +0200 | [diff] [blame] | 80 | #define CONFIG_SERIAL_MULTI 1 |
| 81 | /* |
| 82 | * 0 - 1 : first USB with respect to the left edge of the debug board |
| 83 | * 2 - 3 : second USB with respect to the left edge of the debug board |
| 84 | */ |
| 85 | #define ZOOM2_DEFAULT_SERIAL_DEVICE (&zoom2_serial_device0) |
| 86 | |
| 87 | #define V_NS16550_CLK (1843200) /* 1.8432 Mhz */ |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 88 | |
| 89 | #define CONFIG_SYS_NS16550 |
Tom Rix | 660888b | 2009-05-31 12:44:37 +0200 | [diff] [blame] | 90 | #define CONFIG_SYS_NS16550_REG_SIZE (-2) |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 91 | #define CONFIG_SYS_NS16550_CLK V_NS16550_CLK |
Tom Rix | 660888b | 2009-05-31 12:44:37 +0200 | [diff] [blame] | 92 | #define CONFIG_BAUDRATE 115200 |
| 93 | #define CONFIG_SYS_BAUDRATE_TABLE {115200} |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 94 | |
| 95 | /* allow to overwrite serial and ethaddr */ |
| 96 | #define CONFIG_ENV_OVERWRITE |
Tom Rix | 660888b | 2009-05-31 12:44:37 +0200 | [diff] [blame] | 97 | |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 98 | #define CONFIG_MMC 1 |
| 99 | #define CONFIG_OMAP3_MMC 1 |
| 100 | #define CONFIG_DOS_PARTITION 1 |
| 101 | |
Nishanth Menon | 30563a0 | 2009-11-07 10:51:24 -0500 | [diff] [blame] | 102 | /* DDR - I use Micron DDR */ |
| 103 | #define CONFIG_OMAP3_MICRON_DDR 1 |
| 104 | |
Tom Rix | 83ae698 | 2009-05-31 12:44:39 +0200 | [diff] [blame] | 105 | /* Status LED */ |
| 106 | #define CONFIG_STATUS_LED 1 /* Status LED enabled */ |
| 107 | #define CONFIG_BOARD_SPECIFIC_LED 1 |
| 108 | #define STATUS_LED_BLUE 0 |
| 109 | #define STATUS_LED_RED 1 |
| 110 | /* Blue */ |
| 111 | #define STATUS_LED_BIT STATUS_LED_BLUE |
| 112 | #define STATUS_LED_STATE STATUS_LED_ON |
| 113 | #define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2) |
| 114 | /* Red */ |
| 115 | #define STATUS_LED_BIT1 STATUS_LED_RED |
| 116 | #define STATUS_LED_STATE1 STATUS_LED_OFF |
| 117 | #define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ / 2) |
| 118 | /* Optional value */ |
| 119 | #define STATUS_LED_BOOT STATUS_LED_BIT |
| 120 | |
Tom Rix | 0c9520e | 2009-05-29 18:57:32 -0500 | [diff] [blame] | 121 | /* GPIO banks */ |
| 122 | #ifdef CONFIG_STATUS_LED |
| 123 | #define CONFIG_OMAP3_GPIO_2 /* ZOOM2_LED_BLUE2 */ |
| 124 | #define CONFIG_OMAP3_GPIO_6 /* ZOOM2_LED_RED */ |
| 125 | #endif |
| 126 | #define CONFIG_OMAP3_GPIO_3 /* board revision */ |
| 127 | #define CONFIG_OMAP3_GPIO_5 /* debug board detection, ZOOM2_LED_BLUE */ |
| 128 | |
Tom Rix | 2ec1abe | 2009-10-31 12:37:45 -0500 | [diff] [blame] | 129 | /* USB */ |
| 130 | #define CONFIG_MUSB_UDC 1 |
| 131 | #define CONFIG_USB_OMAP3 1 |
| 132 | #define CONFIG_TWL4030_USB 1 |
| 133 | |
| 134 | /* USB device configuration */ |
| 135 | #define CONFIG_USB_DEVICE 1 |
| 136 | #define CONFIG_USB_TTY 1 |
| 137 | /* Change these to suit your needs */ |
| 138 | #define CONFIG_USBD_VENDORID 0x0451 |
| 139 | #define CONFIG_USBD_PRODUCTID 0x5678 |
| 140 | #define CONFIG_USBD_MANUFACTURER "Texas Instruments" |
| 141 | #define CONFIG_USBD_PRODUCT_NAME "Zoom2" |
| 142 | |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 143 | /* commands to include */ |
| 144 | #include <config_cmd_default.h> |
| 145 | |
| 146 | #define CONFIG_CMD_FAT /* FAT support */ |
| 147 | #define CONFIG_CMD_I2C /* I2C serial bus support */ |
| 148 | #define CONFIG_CMD_MMC /* MMC support */ |
| 149 | #define CONFIG_CMD_NAND /* NAND support */ |
| 150 | #define CONFIG_CMD_NAND_LOCK_UNLOCK /* Enable lock/unlock support */ |
| 151 | |
| 152 | #undef CONFIG_CMD_FLASH /* flinfo, erase, protect */ |
| 153 | #undef CONFIG_CMD_FPGA /* FPGA configuration Support */ |
| 154 | #undef CONFIG_CMD_IMI /* iminfo */ |
| 155 | #undef CONFIG_CMD_IMLS /* List all found images */ |
| 156 | #undef CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */ |
| 157 | #undef CONFIG_CMD_NFS /* NFS support */ |
| 158 | |
| 159 | #define CONFIG_SYS_NO_FLASH |
Tom Rix | 0297ec7 | 2009-09-29 10:19:49 -0400 | [diff] [blame] | 160 | #define CONFIG_HARD_I2C 1 |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 161 | #define CONFIG_SYS_I2C_SPEED 100000 |
| 162 | #define CONFIG_SYS_I2C_SLAVE 1 |
| 163 | #define CONFIG_SYS_I2C_BUS 0 |
| 164 | #define CONFIG_SYS_I2C_BUS_SELECT 1 |
| 165 | #define CONFIG_DRIVER_OMAP34XX_I2C 1 |
| 166 | |
| 167 | /* |
Tom Rix | cd78263 | 2009-06-28 12:52:29 -0500 | [diff] [blame] | 168 | * TWL4030 |
| 169 | */ |
| 170 | #define CONFIG_TWL4030_POWER 1 |
Tom Rix | 2c15513 | 2009-06-28 12:52:30 -0500 | [diff] [blame] | 171 | #define CONFIG_TWL4030_LED 1 |
Tom Rix | cd78263 | 2009-06-28 12:52:29 -0500 | [diff] [blame] | 172 | |
| 173 | /* |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 174 | * Board NAND Info. |
| 175 | */ |
| 176 | #define CONFIG_NAND_OMAP_GPMC |
| 177 | #define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */ |
| 178 | /* to access nand */ |
| 179 | #define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */ |
| 180 | /* to access nand at */ |
| 181 | /* CS0 */ |
| 182 | #define GPMC_NAND_ECC_LP_x16_LAYOUT 1 |
| 183 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
| 184 | |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 185 | /* Environment information */ |
| 186 | #define CONFIG_BOOTDELAY 10 |
| 187 | |
Tom Rix | 2ec1abe | 2009-10-31 12:37:45 -0500 | [diff] [blame] | 188 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 189 | "usbtty=cdc_acm\0" \ |
| 190 | |
Dirk Behme | 998f4ca | 2010-11-30 11:10:48 -0500 | [diff] [blame] | 191 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 |
| 192 | #define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800 |
| 193 | #define CONFIG_SYS_INIT_RAM_SIZE 0x800 |
| 194 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \ |
| 195 | CONFIG_SYS_INIT_RAM_SIZE - \ |
| 196 | GENERATED_GBL_DATA_SIZE) |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 197 | /* |
| 198 | * Miscellaneous configurable options |
| 199 | */ |
| 200 | |
| 201 | #define CONFIG_SYS_PROMPT "OMAP3 Zoom2 # " |
| 202 | #define CONFIG_SYS_LONGHELP |
| 203 | #define CONFIG_SYS_CBSIZE 256 |
| 204 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ |
| 205 | sizeof(CONFIG_SYS_PROMPT) + 16) |
| 206 | #define CONFIG_SYS_MAXARGS 16 |
| 207 | #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE) |
| 208 | /* Memtest from start of memory to 31MB */ |
| 209 | #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0) |
| 210 | #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + 0x01F00000) |
| 211 | /* The default load address is the start of memory */ |
| 212 | #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) |
| 213 | /* everything, incl board info, in Hz */ |
| 214 | #undef CONFIG_SYS_CLKS_IN_HZ |
| 215 | /* |
| 216 | * 2430 has 12 GP timers, they can be driven by the SysClk (12/13/19.2) or by |
| 217 | * 32KHz clk, or from external sig. This rate is divided by a local divisor. |
| 218 | */ |
| 219 | #define CONFIG_SYS_TIMERBASE (OMAP34XX_GPT2) |
| 220 | #define CONFIG_SYS_PTV 7 /* 2^(PTV+1) */ |
| 221 | #define CONFIG_SYS_HZ ((V_SCLK) / (2 << CONFIG_SYS_PTV)) |
| 222 | |
| 223 | /*----------------------------------------------------------------------- |
| 224 | * Stack sizes |
| 225 | * |
| 226 | * The stack sizes are set up in start.S using these settings |
| 227 | */ |
Sandeep Paulraj | 9c44ddc | 2009-09-09 11:50:40 -0400 | [diff] [blame] | 228 | #define CONFIG_STACKSIZE (128 << 10) /* regular stack 128 KiB */ |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 229 | #ifdef CONFIG_USE_IRQ |
Sandeep Paulraj | 9c44ddc | 2009-09-09 11:50:40 -0400 | [diff] [blame] | 230 | #define CONFIG_STACKSIZE_IRQ (4 << 10) /* IRQ stack 4 KiB */ |
| 231 | #define CONFIG_STACKSIZE_FIQ (4 << 10) /* FIQ stack 4 KiB */ |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 232 | #endif |
| 233 | |
| 234 | /*----------------------------------------------------------------------- |
| 235 | * Physical Memory Map |
| 236 | */ |
| 237 | #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */ |
| 238 | #define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0 |
Sandeep Paulraj | 9c44ddc | 2009-09-09 11:50:40 -0400 | [diff] [blame] | 239 | #define PHYS_SDRAM_1_SIZE (32 << 20) /* at least 32 MiB */ |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 240 | #define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1 |
| 241 | |
| 242 | /* SDRAM Bank Allocation method */ |
| 243 | #define SDRC_R_B_C 1 |
| 244 | |
| 245 | /*----------------------------------------------------------------------- |
| 246 | * FLASH and environment organization |
| 247 | */ |
| 248 | |
| 249 | /* **** PISMO SUPPORT *** */ |
| 250 | |
| 251 | /* Configure the PISMO */ |
| 252 | #define PISMO1_NAND_SIZE GPMC_SIZE_128M |
| 253 | #define PISMO1_ONEN_SIZE GPMC_SIZE_128M |
| 254 | |
Sandeep Paulraj | 9c44ddc | 2009-09-09 11:50:40 -0400 | [diff] [blame] | 255 | #define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 2 sectors */ |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 256 | |
Luca Ceresoli | 6cbec7b | 2011-04-20 11:02:05 -0400 | [diff] [blame] | 257 | #if defined(CONFIG_CMD_NAND) |
| 258 | #define CONFIG_SYS_FLASH_BASE PISMO1_NAND_BASE |
| 259 | #endif |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 260 | |
| 261 | /* Monitor at start of flash */ |
| 262 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE |
| 263 | |
| 264 | #define CONFIG_ENV_IS_IN_NAND 1 |
| 265 | #define SMNAND_ENV_OFFSET 0x0c0000 /* environment starts here */ |
| 266 | |
Luca Ceresoli | 6cbec7b | 2011-04-20 11:02:05 -0400 | [diff] [blame] | 267 | #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */ |
| 268 | #define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 269 | #define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET |
| 270 | |
Tom Rix | 376aee7 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 271 | #endif /* __CONFIG_H */ |