Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 2 | /* |
Nikita Kiryanov | 9fc376b | 2012-01-02 04:01:30 +0000 | [diff] [blame] | 3 | * (C) Copyright 2011 CompuLab, Ltd. |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 4 | * Mike Rapoport <mike@compulab.co.il> |
Igor Grinberg | dccd9a0 | 2011-04-18 17:48:31 -0400 | [diff] [blame] | 5 | * Igor Grinberg <grinberg@compulab.co.il> |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 6 | * |
| 7 | * Based on omap3_beagle.h |
| 8 | * (C) Copyright 2006-2008 |
| 9 | * Texas Instruments. |
| 10 | * Richard Woodruff <r-woodruff2@ti.com> |
| 11 | * Syed Mohammed Khasim <x0khasim@ti.com> |
| 12 | * |
Igor Grinberg | b65a77a | 2011-04-18 17:55:21 -0400 | [diff] [blame] | 13 | * Configuration settings for the CompuLab CM-T35 and CM-T3730 boards |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #ifndef __CONFIG_H |
| 17 | #define __CONFIG_H |
| 18 | |
Albert ARIBAUD | 3709844 | 2016-01-27 08:46:11 +0100 | [diff] [blame] | 19 | #define CONFIG_SYS_CACHELINE_SIZE 64 |
| 20 | |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 21 | /* |
| 22 | * High Level Configuration Options |
| 23 | */ |
Nikita Kiryanov | 9fc376b | 2012-01-02 04:01:30 +0000 | [diff] [blame] | 24 | #define CONFIG_CM_T3X /* working with CM-T35 and CM-T3730 */ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 25 | |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 26 | #include <asm/arch/cpu.h> /* get chip and board defs */ |
Nishanth Menon | 987ec58 | 2015-03-09 17:12:04 -0500 | [diff] [blame] | 27 | #include <asm/arch/omap.h> |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 28 | |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 29 | /* Clock Defines */ |
| 30 | #define V_OSCK 26000000 /* Clock output from T2 */ |
| 31 | #define V_SCLK (V_OSCK >> 1) |
| 32 | |
Nikita Kiryanov | 9fc376b | 2012-01-02 04:01:30 +0000 | [diff] [blame] | 33 | #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */ |
| 34 | #define CONFIG_SETUP_MEMORY_TAGS |
| 35 | #define CONFIG_INITRD_TAG |
| 36 | #define CONFIG_REVISION_TAG |
Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 37 | #define CONFIG_SERIAL_TAG |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 38 | |
| 39 | /* |
| 40 | * Size of malloc() pool |
| 41 | */ |
Nikita Kiryanov | 9fc376b | 2012-01-02 04:01:30 +0000 | [diff] [blame] | 42 | /* Sector */ |
| 43 | #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (128 << 10)) |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 44 | |
| 45 | /* |
| 46 | * Hardware drivers |
| 47 | */ |
| 48 | |
| 49 | /* |
| 50 | * NS16550 Configuration |
| 51 | */ |
| 52 | #define V_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */ |
| 53 | |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 54 | #define CONFIG_SYS_NS16550_SERIAL |
| 55 | #define CONFIG_SYS_NS16550_REG_SIZE (-4) |
| 56 | #define CONFIG_SYS_NS16550_CLK V_NS16550_CLK |
| 57 | |
| 58 | /* |
| 59 | * select serial console configuration |
| 60 | */ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 61 | #define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3 |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 62 | |
| 63 | /* allow to overwrite serial and ethaddr */ |
| 64 | #define CONFIG_ENV_OVERWRITE |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 65 | #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\ |
| 66 | 115200} |
Nikita Kiryanov | 9fc376b | 2012-01-02 04:01:30 +0000 | [diff] [blame] | 67 | |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 68 | /* USB device configuration */ |
Nikita Kiryanov | 9fc376b | 2012-01-02 04:01:30 +0000 | [diff] [blame] | 69 | #define CONFIG_USB_DEVICE |
| 70 | #define CONFIG_USB_TTY |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 71 | |
| 72 | /* commands to include */ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 73 | |
Heiko Schocher | 6789e84 | 2013-10-22 11:03:18 +0200 | [diff] [blame] | 74 | #define CONFIG_SYS_I2C |
Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 75 | #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 |
| 76 | #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 |
Nikita Kiryanov | 52658fd | 2014-08-20 15:08:52 +0300 | [diff] [blame] | 77 | #define CONFIG_SYS_I2C_EEPROM_BUS 0 |
Nikita Kiryanov | 79874ae | 2012-04-02 02:29:31 +0000 | [diff] [blame] | 78 | #define CONFIG_I2C_MULTI_BUS |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 79 | |
| 80 | /* |
| 81 | * TWL4030 |
| 82 | */ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 83 | |
| 84 | /* |
| 85 | * Board NAND Info. |
| 86 | */ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 87 | #define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */ |
| 88 | /* to access nand at */ |
| 89 | /* CS0 */ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 90 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND */ |
| 91 | /* devices */ |
Stefan Roese | 7bb6e29 | 2014-03-11 17:04:45 +0100 | [diff] [blame] | 92 | |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 93 | /* Environment information */ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 94 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 95 | "loadaddr=0x82000000\0" \ |
| 96 | "usbtty=cdc_acm\0" \ |
Nikita Kiryanov | f3ef360 | 2013-12-11 18:04:40 +0200 | [diff] [blame] | 97 | "console=ttyO2,115200n8\0" \ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 98 | "mpurate=500\0" \ |
| 99 | "vram=12M\0" \ |
| 100 | "dvimode=1024x768MR-16@60\0" \ |
| 101 | "defaultdisplay=dvi\0" \ |
| 102 | "mmcdev=0\0" \ |
| 103 | "mmcroot=/dev/mmcblk0p2 rw\0" \ |
Igor Grinberg | 0b800a6 | 2013-04-22 01:06:55 +0000 | [diff] [blame] | 104 | "mmcrootfstype=ext4 rootwait\0" \ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 105 | "nandroot=/dev/mtdblock4 rw\0" \ |
Igor Grinberg | 0b800a6 | 2013-04-22 01:06:55 +0000 | [diff] [blame] | 106 | "nandrootfstype=ubifs\0" \ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 107 | "mmcargs=setenv bootargs console=${console} " \ |
| 108 | "mpurate=${mpurate} " \ |
| 109 | "vram=${vram} " \ |
| 110 | "omapfb.mode=dvi:${dvimode} " \ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 111 | "omapdss.def_disp=${defaultdisplay} " \ |
| 112 | "root=${mmcroot} " \ |
| 113 | "rootfstype=${mmcrootfstype}\0" \ |
| 114 | "nandargs=setenv bootargs console=${console} " \ |
| 115 | "mpurate=${mpurate} " \ |
| 116 | "vram=${vram} " \ |
| 117 | "omapfb.mode=dvi:${dvimode} " \ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 118 | "omapdss.def_disp=${defaultdisplay} " \ |
| 119 | "root=${nandroot} " \ |
| 120 | "rootfstype=${nandrootfstype}\0" \ |
| 121 | "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \ |
| 122 | "bootscript=echo Running bootscript from mmc ...; " \ |
| 123 | "source ${loadaddr}\0" \ |
| 124 | "loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \ |
| 125 | "mmcboot=echo Booting from mmc ...; " \ |
| 126 | "run mmcargs; " \ |
| 127 | "bootm ${loadaddr}\0" \ |
| 128 | "nandboot=echo Booting from nand ...; " \ |
| 129 | "run nandargs; " \ |
Igor Grinberg | 0b800a6 | 2013-04-22 01:06:55 +0000 | [diff] [blame] | 130 | "nand read ${loadaddr} 2a0000 400000; " \ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 131 | "bootm ${loadaddr}\0" \ |
| 132 | |
| 133 | #define CONFIG_BOOTCOMMAND \ |
Andrew Bradford | 6696811 | 2012-10-01 05:06:52 +0000 | [diff] [blame] | 134 | "mmc dev ${mmcdev}; if mmc rescan; then " \ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 135 | "if run loadbootscript; then " \ |
| 136 | "run bootscript; " \ |
| 137 | "else " \ |
| 138 | "if run loaduimage; then " \ |
| 139 | "run mmcboot; " \ |
| 140 | "else run nandboot; " \ |
| 141 | "fi; " \ |
| 142 | "fi; " \ |
| 143 | "else run nandboot; fi" |
| 144 | |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 145 | /* |
| 146 | * Miscellaneous configurable options |
| 147 | */ |
Igor Grinberg | 41d7e70 | 2011-04-18 17:48:28 -0400 | [diff] [blame] | 148 | #define CONFIG_TIMESTAMP |
Nikita Kiryanov | 9fc376b | 2012-01-02 04:01:30 +0000 | [diff] [blame] | 149 | #define CONFIG_SYS_AUTOLOAD "no" |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 150 | |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 151 | /* works on */ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 152 | |
| 153 | #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) /* default */ |
| 154 | /* load address */ |
| 155 | |
| 156 | /* |
| 157 | * OMAP3 has 12 GP timers, they can be driven by the system clock |
| 158 | * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK). |
| 159 | * This rate is divided by a local divisor. |
| 160 | */ |
| 161 | #define CONFIG_SYS_TIMERBASE (OMAP34XX_GPT2) |
| 162 | #define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 163 | |
| 164 | /*----------------------------------------------------------------------- |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 165 | * Physical Memory Map |
| 166 | */ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 167 | #define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0 |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 168 | |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 169 | /*----------------------------------------------------------------------- |
| 170 | * FLASH and environment organization |
| 171 | */ |
| 172 | |
| 173 | /* **** PISMO SUPPORT *** */ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 174 | /* Monitor at start of flash */ |
| 175 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE |
Igor Grinberg | 3530a35 | 2012-10-07 01:17:34 +0000 | [diff] [blame] | 176 | #define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 2 sectors */ |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 177 | |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 178 | /* additions for new relocation code, must be added to all boards */ |
| 179 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 |
| 180 | #define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800 |
| 181 | #define CONFIG_SYS_INIT_RAM_SIZE 0x800 |
| 182 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \ |
| 183 | CONFIG_SYS_INIT_RAM_SIZE - \ |
| 184 | GENERATED_GBL_DATA_SIZE) |
| 185 | |
Igor Grinberg | 2b8754b | 2011-04-18 17:54:33 -0400 | [diff] [blame] | 186 | /* Status LED */ |
Igor Grinberg | ebc18af | 2013-11-06 16:39:47 +0200 | [diff] [blame] | 187 | #define GREEN_LED_GPIO 186 /* CM-T35 Green LED is GPIO186 */ |
Igor Grinberg | 2b8754b | 2011-04-18 17:54:33 -0400 | [diff] [blame] | 188 | |
Nikita Kiryanov | 60e6bdc | 2013-02-24 06:19:23 +0000 | [diff] [blame] | 189 | #define CONFIG_SPLASHIMAGE_GUARD |
| 190 | |
Nikita Kiryanov | 7878ca5 | 2013-01-30 21:39:58 +0000 | [diff] [blame] | 191 | /* Display Configuration */ |
Nikita Kiryanov | 7878ca5 | 2013-01-30 21:39:58 +0000 | [diff] [blame] | 192 | #define LCD_BPP LCD_COLOR16 |
| 193 | |
Nikita Kiryanov | f35034f | 2012-12-22 21:03:48 +0000 | [diff] [blame] | 194 | #define CONFIG_SPLASH_SCREEN |
Nikita Kiryanov | f82eb2f | 2015-01-14 10:42:54 +0200 | [diff] [blame] | 195 | #define CONFIG_SPLASH_SOURCE |
Nikita Kiryanov | f35034f | 2012-12-22 21:03:48 +0000 | [diff] [blame] | 196 | #define CONFIG_BMP_16BPP |
Nikita Kiryanov | 63c4f17 | 2013-10-16 17:23:29 +0300 | [diff] [blame] | 197 | #define CONFIG_SCF0403_LCD |
| 198 | |
Stefan Roese | 3e51b7c | 2013-12-04 13:54:18 +0100 | [diff] [blame] | 199 | /* Defines for SPL */ |
Stefan Roese | 3e51b7c | 2013-12-04 13:54:18 +0100 | [diff] [blame] | 200 | |
Paul Kocialkowski | e2ccdf8 | 2014-11-08 23:14:55 +0100 | [diff] [blame] | 201 | #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1 |
Guillaume GARDET | 205b4f3 | 2014-10-15 17:53:11 +0200 | [diff] [blame] | 202 | #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img" |
Stefan Roese | 3e51b7c | 2013-12-04 13:54:18 +0100 | [diff] [blame] | 203 | |
Stefan Roese | 3e51b7c | 2013-12-04 13:54:18 +0100 | [diff] [blame] | 204 | #define CONFIG_SPL_NAND_BASE |
| 205 | #define CONFIG_SPL_NAND_DRIVERS |
| 206 | #define CONFIG_SPL_NAND_ECC |
Stefan Roese | 3e51b7c | 2013-12-04 13:54:18 +0100 | [diff] [blame] | 207 | |
| 208 | /* NAND boot config */ |
| 209 | #define CONFIG_SYS_NAND_5_ADDR_CYCLE |
| 210 | #define CONFIG_SYS_NAND_PAGE_COUNT 64 |
| 211 | #define CONFIG_SYS_NAND_PAGE_SIZE 2048 |
| 212 | #define CONFIG_SYS_NAND_OOBSIZE 64 |
| 213 | #define CONFIG_SYS_NAND_BLOCK_SIZE (128 * 1024) |
| 214 | #define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS |
| 215 | /* |
| 216 | * Use the ECC/OOB layout from omap_gpmc.h that matches your chip: |
| 217 | * SP vs LP, 8bit vs 16bit: GPMC_NAND_HW_ECC_LAYOUT |
| 218 | */ |
| 219 | #define CONFIG_SYS_NAND_ECCPOS { 1, 2, 3, 4, 5, 6, 7, 8, 9, \ |
| 220 | 10, 11, 12 } |
| 221 | #define CONFIG_SYS_NAND_ECCSIZE 512 |
| 222 | #define CONFIG_SYS_NAND_ECCBYTES 3 |
| 223 | #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_HAM1_CODE_HW |
| 224 | |
| 225 | #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE |
| 226 | #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000 |
| 227 | |
Tom Rini | fa2f81b | 2016-08-26 13:30:43 -0400 | [diff] [blame] | 228 | #define CONFIG_SPL_MAX_SIZE (SRAM_SCRATCH_SPACE_ADDR - \ |
| 229 | CONFIG_SPL_TEXT_BASE) |
Stefan Roese | 3e51b7c | 2013-12-04 13:54:18 +0100 | [diff] [blame] | 230 | |
| 231 | /* |
| 232 | * Use 0x80008000 as TEXT_BASE here for compatibility reasons with the |
| 233 | * older x-loader implementations. And move the BSS area so that it |
| 234 | * doesn't overlap with TEXT_BASE. |
| 235 | */ |
Stefan Roese | 3e51b7c | 2013-12-04 13:54:18 +0100 | [diff] [blame] | 236 | #define CONFIG_SPL_BSS_START_ADDR 0x80100000 |
| 237 | #define CONFIG_SPL_BSS_MAX_SIZE 0x80000 /* 512 KB */ |
| 238 | |
| 239 | #define CONFIG_SYS_SPL_MALLOC_START 0x80208000 |
| 240 | #define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000 |
| 241 | |
Nikita Kiryanov | bcb447e | 2016-04-16 17:55:09 +0300 | [diff] [blame] | 242 | /* EEPROM */ |
Nikita Kiryanov | bcb447e | 2016-04-16 17:55:09 +0300 | [diff] [blame] | 243 | #define CONFIG_ENV_EEPROM_IS_ON_I2C |
| 244 | #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 |
| 245 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 4 |
| 246 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 5 |
| 247 | #define CONFIG_SYS_EEPROM_SIZE 256 |
| 248 | |
Mike Rapoport | 36b4e2d | 2010-12-18 17:43:19 -0500 | [diff] [blame] | 249 | #endif /* __CONFIG_H */ |