1 /* 2 * (C) Copyright 2011 Logic Product Development <www.logicpd.com> 3 * Peter Barada <peter.barada@logicpd.com> 4 * 5 * Configuration settings for the Logic OMAP35x/DM37x SOM LV/Torpedo 6 * reference boards. 7 * 8 * SPDX-License-Identifier: GPL-2.0+ 9 */ 10 11 #ifndef __CONFIG_H 12 #define __CONFIG_H 13 14 /* High Level Configuration Options */ 15 16 #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */ 17 18 #include <configs/ti_omap3_common.h> 19 20 /* 21 * We are only ever GP parts and will utilize all of the "downloaded image" 22 * area in SRAM which starts at 0x40200000 and ends at 0x4020FFFF (64KB) in 23 * order to allow for BCH8 to fit in. 24 */ 25 #undef CONFIG_SPL_TEXT_BASE 26 #define CONFIG_SPL_TEXT_BASE 0x40200000 27 28 #define CONFIG_BOARD_LATE_INIT 29 #define CONFIG_MISC_INIT_R /* misc_init_r dumps the die id */ 30 #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */ 31 #define CONFIG_SETUP_MEMORY_TAGS 32 #define CONFIG_INITRD_TAG 33 #define CONFIG_REVISION_TAG 34 #define CONFIG_CMDLINE_EDITING /* cmd line edit/history */ 35 36 /* Hardware drivers */ 37 38 /* GPIO banks */ 39 #define CONFIG_OMAP3_GPIO_6 /* GPIO160..191 is in GPIO bank 6 */ 40 41 #define CONFIG_USB_OMAP3 42 43 /* select serial console configuration */ 44 #undef CONFIG_CONS_INDEX 45 #define CONFIG_CONS_INDEX 1 46 #define CONFIG_SYS_NS16550_COM1 OMAP34XX_UART1 47 #define CONFIG_SERIAL1 1 /* UART1 on OMAP Logic boards */ 48 49 /* commands to include */ 50 #define CONFIG_CMD_NAND 51 #define CONFIG_CMD_MTDPARTS 52 #define CONFIG_CMD_NAND_LOCK_UNLOCK /* nand (un)lock commands */ 53 54 /* I2C */ 55 #define CONFIG_SYS_I2C_OMAP34XX 56 #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* EEPROM AT24C64 */ 57 #define EXPANSION_EEPROM_I2C_BUS 2 /* I2C Bus for AT24C64 */ 58 #define CONFIG_OMAP3_LOGIC_USE_NEW_PRODUCT_ID 59 60 /* USB */ 61 #define CONFIG_USB_MUSB_OMAP2PLUS 62 #define CONFIG_USB_MUSB_PIO_ONLY 63 #define CONFIG_USB_ETHER 64 #define CONFIG_USB_ETHER_RNDIS 65 #define CONFIG_USB_FUNCTION_FASTBOOT 66 #define CONFIG_CMD_FASTBOOT 67 #define CONFIG_ANDROID_BOOT_IMAGE 68 #define CONFIG_FASTBOOT_BUF_ADDR CONFIG_SYS_LOAD_ADDR 69 #define CONFIG_FASTBOOT_BUF_SIZE 0x07000000 70 71 /* TWL4030 */ 72 #define CONFIG_TWL4030_PWM 73 #define CONFIG_TWL4030_USB 74 75 /* Board NAND Info. */ 76 #ifdef CONFIG_NAND 77 #define CONFIG_NAND_OMAP_GPMC 78 79 #define CONFIG_CMD_UBIFS /* Read-only UBI volume operations */ 80 #define CONFIG_RBTREE /* required by CONFIG_CMD_UBI */ 81 #define CONFIG_LZO /* required by CONFIG_CMD_UBIFS */ 82 83 #define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */ 84 /* to access nand */ 85 #define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of */ 86 /* NAND devices */ 87 #define CONFIG_SYS_NAND_BUSWIDTH_16BIT 88 #define CONFIG_SYS_NAND_5_ADDR_CYCLE 89 #define CONFIG_SYS_NAND_PAGE_COUNT 64 90 #define CONFIG_SYS_NAND_PAGE_SIZE 2048 91 #define CONFIG_SYS_NAND_OOBSIZE 64 92 #define CONFIG_SYS_NAND_BLOCK_SIZE (128 * 1024) 93 #define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS 94 #define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, \ 95 13, 14, 16, 17, 18, 19, 20, 21, 22, \ 96 23, 24, 25, 26, 27, 28, 30, 31, 32, \ 97 33, 34, 35, 36, 37, 38, 39, 40, 41, \ 98 42, 44, 45, 46, 47, 48, 49, 50, 51, \ 99 52, 53, 54, 55, 56} 100 101 #define CONFIG_SYS_NAND_ECCSIZE 512 102 #define CONFIG_SYS_NAND_ECCBYTES 13 103 #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW_DETECTION_SW 104 #define CONFIG_BCH 105 #define CONFIG_SYS_NAND_MAX_OOBFREE 2 106 #define CONFIG_SYS_NAND_MAX_ECCPOS 56 107 #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000 108 #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */ 109 #define CONFIG_MTD_PARTITIONS /* required for UBI partition support */ 110 #define MTDIDS_DEFAULT "nand0=omap2-nand.0" 111 #define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:512k(MLO),"\ 112 "1920k(u-boot),128k(u-boot-env),"\ 113 "4m(kernel),-(fs)" 114 #endif 115 116 /* Environment information */ 117 118 #define CONFIG_PREBOOT \ 119 "setenv preboot;" \ 120 "nand unlock;" \ 121 "saveenv;" 122 123 #define CONFIG_EXTRA_ENV_SETTINGS \ 124 "loadaddr=0x81000000\0" \ 125 "uimage=uImage\0" \ 126 "zimage=zImage\0" \ 127 "mtdids=" MTDIDS_DEFAULT "\0" \ 128 "mtdparts=" MTDPARTS_DEFAULT "\0" \ 129 "mmcdev=0\0" \ 130 "mmcroot=/dev/mmcblk0p2 rw\0" \ 131 "mmcrootfstype=ext4 rootwait\0" \ 132 "nandroot=ubi0:rootfs rw ubi.mtd=fs noinitrd\0" \ 133 "nandrootfstype=ubifs rootwait\0" \ 134 "autoboot=mmc dev ${mmcdev}; if mmc rescan; then " \ 135 "if run loadbootscript; then " \ 136 "run bootscript; " \ 137 "else " \ 138 "run defaultboot;" \ 139 "fi; " \ 140 "else run defaultboot; fi\0" \ 141 "defaultboot=run mmcramboot\0" \ 142 "consoledevice=ttyO0\0" \ 143 "display=15\0" \ 144 "setconsole=setenv console ${consoledevice},${baudrate}n8\0" \ 145 "dump_bootargs=echo 'Bootargs: '; echo $bootargs\0" \ 146 "rotation=0\0" \ 147 "vrfb_arg=if itest ${rotation} -ne 0; then " \ 148 "setenv bootargs ${bootargs} omapfb.vrfb=y " \ 149 "omapfb.rotate=${rotation}; " \ 150 "fi\0" \ 151 "optargs=ignore_loglevel early_printk no_console_suspend\0" \ 152 "addmtdparts=setenv bootargs ${bootargs} ${mtdparts}\0" \ 153 "common_bootargs=setenv bootargs ${bootargs} display=${display} " \ 154 "${optargs};" \ 155 "run addmtdparts; " \ 156 "run vrfb_arg\0" \ 157 "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \ 158 "bootscript=echo 'Running bootscript from mmc ...'; " \ 159 "source ${loadaddr}\0" \ 160 "loaduimage=mmc rescan; " \ 161 "fatload mmc ${mmcdev} ${loadaddr} ${uimage}\0" \ 162 "loadzimage=mmc rescan; " \ 163 "fatload mmc ${mmcdev} ${loadaddr} ${zimage}\0" \ 164 "ramdisksize=64000\0" \ 165 "ramdiskaddr=0x82000000\0" \ 166 "ramdiskimage=rootfs.ext2.gz.uboot\0" \ 167 "loadramdisk=mmc rescan; " \ 168 "fatload mmc ${mmcdev} ${ramdiskaddr} ${ramdiskimage}\0" \ 169 "ramargs=run setconsole; setenv bootargs console=${console} " \ 170 "root=/dev/ram rw ramdisk_size=${ramdisksize}\0" \ 171 "mmcargs=run setconsole; setenv bootargs console=${console} " \ 172 "${optargs} " \ 173 "root=${mmcroot} " \ 174 "rootfstype=${mmcrootfstype}\0" \ 175 "nandargs=run setconsole; setenv bootargs console=${console} " \ 176 "${optargs} " \ 177 "root=${nandroot} " \ 178 "rootfstype=${nandrootfstype}\0" \ 179 "nfsargs=run setconsole; setenv serverip ${tftpserver}; " \ 180 "setenv bootargs console=${console} root=/dev/nfs " \ 181 "nfsroot=${nfsrootpath} " \ 182 "ip=${ipaddr}:${tftpserver}:${gatewayip}:${netmask}::eth0:off\0" \ 183 "nfsrootpath=/opt/nfs-exports/omap\0" \ 184 "autoload=no\0" \ 185 "fdtaddr=0x86000000\0" \ 186 "loadfdtimage=mmc rescan; " \ 187 "fatload mmc ${mmcdev} ${fdtaddr} ${fdtimage}\0" \ 188 "mmcbootz=echo Booting with DT from mmc${mmcdev} ...; " \ 189 "run mmcargs; " \ 190 "run common_bootargs; " \ 191 "run dump_bootargs; " \ 192 "run loadzimage; " \ 193 "run loadfdtimage; " \ 194 "bootz ${loadaddr} - ${fdtaddr}\0" \ 195 "mmcramboot=echo 'Booting uImage kernel from mmc w/ramdisk...'; " \ 196 "run ramargs; " \ 197 "run common_bootargs; " \ 198 "run dump_bootargs; " \ 199 "run loaduimage; " \ 200 "run loadramdisk; " \ 201 "bootm ${loadaddr} ${ramdiskaddr}\0" \ 202 "mmcrambootz=echo 'Booting zImage kernel from mmc w/ramdisk...'; " \ 203 "run ramargs; " \ 204 "run common_bootargs; " \ 205 "run dump_bootargs; " \ 206 "run loadzimage; " \ 207 "run loadramdisk; " \ 208 "run loadfdtimage; " \ 209 "bootz ${loadaddr} ${ramdiskaddr} ${fdtaddr};\0" \ 210 "tftpboot=echo 'Booting kernel/ramdisk rootfs from tftp...'; " \ 211 "run ramargs; " \ 212 "run common_bootargs; " \ 213 "run dump_bootargs; " \ 214 "tftpboot ${loadaddr} ${zimage}; " \ 215 "tftpboot ${ramdiskaddr} ${ramdiskimage}; " \ 216 "bootm ${loadaddr} ${ramdiskaddr}\0" \ 217 "tftpbootz=echo 'Booting kernel NFS rootfs...'; " \ 218 "dhcp;" \ 219 "run nfsargs;" \ 220 "run common_bootargs;" \ 221 "run dump_bootargs;" \ 222 "tftpboot $loadaddr zImage;" \ 223 "bootz $loadaddr\0" 224 225 #define CONFIG_BOOTCOMMAND \ 226 "run autoboot" 227 228 /* Miscellaneous configurable options */ 229 #define CONFIG_AUTO_COMPLETE 230 231 /* memtest works on */ 232 #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0) 233 #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \ 234 0x01F00000) /* 31MB */ 235 236 /* FLASH and environment organization */ 237 238 /* **** PISMO SUPPORT *** */ 239 #if defined(CONFIG_CMD_NAND) 240 #define CONFIG_SYS_FLASH_BASE NAND_BASE 241 #elif defined(CONFIG_CMD_ONENAND) 242 #define CONFIG_SYS_FLASH_BASE ONENAND_MAP 243 #endif 244 245 /* Monitor at start of flash */ 246 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE 247 248 #define CONFIG_ENV_IS_IN_NAND 1 249 #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */ 250 #define ONENAND_ENV_OFFSET 0x260000 /* environment starts here */ 251 #define SMNAND_ENV_OFFSET 0x260000 /* environment starts here */ 252 253 #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */ 254 #define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET 255 #define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET 256 257 /* SMSC922x Ethernet */ 258 #if defined(CONFIG_CMD_NET) 259 #define CONFIG_SMC911X 260 #define CONFIG_SMC911X_32_BIT 261 #define CONFIG_SMC911X_BASE 0x08000000 262 #endif /* (CONFIG_CMD_NET) */ 263 264 /* Defines for SPL */ 265 266 #define CONFIG_SPL_OMAP3_ID_NAND 267 268 /* NAND: SPL falcon mode configs */ 269 #ifdef CONFIG_SPL_OS_BOOT 270 #define CONFIG_CMD_SPL_NAND_OFS 0x240000 271 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000 272 #define CONFIG_CMD_SPL_WRITE_SIZE 0x2000 273 #endif 274 275 #endif /* __CONFIG_H */ 276