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