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