1 /* 2 * (C) Copyright 2006-2008 3 * Texas Instruments. 4 * Richard Woodruff <r-woodruff2@ti.com> 5 * Syed Mohammed Khasim <x0khasim@ti.com> 6 * Nishanth Menon <nm@ti.com> 7 * 8 * Configuration settings for the TI OMAP3430 Zoom MDK board. 9 * 10 * SPDX-License-Identifier: GPL-2.0+ 11 */ 12 13 #ifndef __CONFIG_H 14 #define __CONFIG_H 15 16 /* 17 * High Level Configuration Options 18 */ 19 #define CONFIG_OMAP3_ZOOM1 1 /* working with Zoom MDK Rev1 */ 20 21 #define CONFIG_NAND 22 #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */ 23 #include <asm/arch/cpu.h> /* get chip and board defs */ 24 #include <asm/arch/omap.h> 25 #include <configs/ti_omap3_common.h> 26 27 /* Remove SPL boot option - we do not support that on LDP yet */ 28 #undef CONFIG_SPL_FRAMEWORK 29 #undef CONFIG_SPL_OS_BOOT 30 31 /* Generic NAND definition conflicts with debug_base */ 32 #undef CONFIG_SYS_NAND_BASE 33 34 /* 35 * Display CPU and Board information 36 */ 37 #define CONFIG_DISPLAY_CPUINFO 1 38 #define CONFIG_DISPLAY_BOARDINFO 1 39 40 #define CONFIG_MISC_INIT_R 41 42 #define CONFIG_REVISION_TAG 1 43 44 #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */ 45 46 /* 47 * Hardware drivers 48 */ 49 50 /* USB */ 51 #define CONFIG_USB_MUSB_UDC 1 52 #define CONFIG_USB_OMAP3 1 53 #define CONFIG_TWL4030_USB 1 54 55 /* USB device configuration */ 56 #define CONFIG_USB_DEVICE 1 57 #define CONFIG_USB_TTY 1 58 #define CONFIG_SYS_CONSOLE_IS_IN_ENV 1 59 /* Change these to suit your needs */ 60 #define CONFIG_USBD_VENDORID 0x0451 61 #define CONFIG_USBD_PRODUCTID 0x5678 62 #define CONFIG_USBD_MANUFACTURER "Texas Instruments" 63 #define CONFIG_USBD_PRODUCT_NAME "Zoom1" 64 65 #define MTDIDS_DEFAULT "nand0=nand" 66 #define MTDPARTS_DEFAULT "mtdparts=nand:512k(x-loader),"\ 67 "1920k(u-boot),128k(u-boot-env),"\ 68 "4m(kernel),-(fs)" 69 70 #if defined(CONFIG_CMD_NAND) 71 /* NAND: SPL falcon mode configs */ 72 #ifdef CONFIG_SPL_OS_BOOT 73 #define CONFIG_CMD_SPL_NAND_OFS 0x240000 74 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000 75 #define CONFIG_CMD_SPL_WRITE_SIZE 0x2000 76 #endif 77 #define CONFIG_CMD_NAND_LOCK_UNLOCK /* Enable lock/unlock support */ 78 #endif 79 80 81 #undef CONFIG_SYS_I2C_OMAP24XX 82 #define CONFIG_SYS_I2C_OMAP34XX 83 84 /* 85 * TWL4030 86 */ 87 #define CONFIG_TWL4030_LED 1 88 89 /* 90 * Board NAND Info. 91 */ 92 #define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */ 93 /* to access nand */ 94 #define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */ 95 /* to access nand at */ 96 /* CS0 */ 97 #define CONFIG_SYS_NAND_BUSWIDTH_16BIT 98 99 /* Environment information */ 100 101 #define CONFIG_EXTRA_ENV_SETTINGS \ 102 "loadaddr=0x82000000\0" \ 103 "fdtaddr=0x80f80000\0" \ 104 "bootfile=uImage\0" \ 105 "fdtfile=omap3-ldp.dtb\0" \ 106 "bootdir=/\0" \ 107 "bootpart=0:1\0" \ 108 "usbtty=cdc_acm\0" \ 109 "console=ttyO2,115200n8\0" \ 110 "mmcdev=0\0" \ 111 "videomode=1024x768@60,vxres=1024,vyres=768\0" \ 112 "videospec=omapfb:vram:2M,vram:4M\0" \ 113 "mmcargs=setenv bootargs console=${console} " \ 114 "video=${videospec},mode:${videomode} " \ 115 "root=/dev/mmcblk0p2 rw " \ 116 "rootfstype=ext3 rootwait\0" \ 117 "nandargs=setenv bootargs console=${console} " \ 118 "video=${videospec},mode:${videomode} " \ 119 "root=/dev/mtdblock4 rw " \ 120 "rootfstype=jffs2\0" \ 121 "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \ 122 "bootscript=echo Running bootscript from mmc ...; " \ 123 "source ${loadaddr}\0" \ 124 "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \ 125 "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \ 126 "loadzimage=setenv bootfile zImage; if run loadimage; then run loadfdt;fi\0"\ 127 "mmcboot=echo Booting from mmc ...; " \ 128 "run mmcargs; " \ 129 "bootm ${loadaddr}\0" \ 130 "mmczboot=echo Booting from mmc ...; " \ 131 "run mmcargs; " \ 132 "bootz ${loadaddr} - ${fdtaddr}\0" \ 133 "nandboot=echo Booting from nand ...; " \ 134 "run nandargs; " \ 135 "nand read ${loadaddr} 280000 400000; " \ 136 "bootm ${loadaddr}\0" \ 137 138 #define CONFIG_BOOTCOMMAND \ 139 "mmc dev ${mmcdev}; if mmc rescan; then " \ 140 "if run loadbootscript; then " \ 141 "run bootscript; " \ 142 "else " \ 143 "if run loadimage; then " \ 144 "run mmcboot; " \ 145 "else if run loadzimage; then " \ 146 "run mmczboot; " \ 147 "else run nandboot; " \ 148 "fi; fi;" \ 149 "fi; " \ 150 "else run nandboot; fi" 151 152 /* 153 * Miscellaneous configurable options 154 */ 155 #define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1) /* memtest */ 156 #define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_2 + \ 157 0x01F00000) /* 31MB */ 158 159 /*----------------------------------------------------------------------- 160 * FLASH and environment organization 161 */ 162 163 /* **** PISMO SUPPORT *** */ 164 #if defined(CONFIG_CMD_NAND) 165 #define CONFIG_SYS_FLASH_BASE NAND_BASE 166 #endif 167 168 /* Monitor at start of flash */ 169 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE 170 #define CONFIG_SYS_ONENAND_BASE ONENAND_MAP 171 172 #define CONFIG_ENV_IS_IN_NAND 1 173 #define ONENAND_ENV_OFFSET 0x260000 /* environment starts here */ 174 #define SMNAND_ENV_OFFSET 0x260000 /* environment starts here */ 175 176 #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */ 177 #define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET 178 #define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET 179 180 #define CONFIG_SYS_CACHELINE_SIZE 64 181 182 #ifdef CONFIG_CMD_NET 183 /* Ethernet (LAN9211 from SMSC9118 family) */ 184 #define CONFIG_SMC911X 185 #define CONFIG_SMC911X_32_BIT 186 #define CONFIG_SMC911X_BASE DEBUG_BASE 187 188 #endif 189 190 #endif /* __CONFIG_H */ 191