common/Kconfig: Add DISPLAY_CPUINFO
[oweals/u-boot.git] / include / configs / omap3_zoom1.h
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_BOARDINFO        1
38
39 #define CONFIG_MISC_INIT_R
40
41 #define CONFIG_REVISION_TAG             1
42
43 #define CONFIG_ENV_SIZE                 (128 << 10)     /* 128 KiB */
44
45 /*
46  * Hardware drivers
47  */
48
49 /* USB */
50 #define CONFIG_USB_MUSB_UDC                     1
51 #define CONFIG_USB_OMAP3                1
52 #define CONFIG_TWL4030_USB              1
53
54 /* USB device configuration */
55 #define CONFIG_USB_DEVICE               1
56 #define CONFIG_USB_TTY                  1
57 #define CONFIG_SYS_CONSOLE_IS_IN_ENV    1
58 /* Change these to suit your needs */
59 #define CONFIG_USBD_VENDORID            0x0451
60 #define CONFIG_USBD_PRODUCTID           0x5678
61 #define CONFIG_USBD_MANUFACTURER        "Texas Instruments"
62 #define CONFIG_USBD_PRODUCT_NAME        "Zoom1"
63
64 #define MTDIDS_DEFAULT                  "nand0=nand"
65 #define MTDPARTS_DEFAULT                "mtdparts=nand:512k(x-loader),"\
66                                         "1920k(u-boot),128k(u-boot-env),"\
67                                         "4m(kernel),-(fs)"
68
69 #if defined(CONFIG_CMD_NAND)
70 /* NAND: SPL falcon mode configs */
71 #ifdef CONFIG_SPL_OS_BOOT
72 #define CONFIG_CMD_SPL_NAND_OFS         0x240000
73 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
74 #define CONFIG_CMD_SPL_WRITE_SIZE       0x2000
75 #endif
76 #define CONFIG_CMD_NAND_LOCK_UNLOCK /* Enable lock/unlock support */
77 #endif
78
79 #undef CONFIG_SYS_I2C_OMAP24XX
80 #define CONFIG_SYS_I2C_OMAP34XX
81
82 /*
83  * TWL4030
84  */
85 #define CONFIG_TWL4030_LED              1
86
87 /*
88  * Board NAND Info.
89  */
90 #define CONFIG_SYS_NAND_ADDR            NAND_BASE       /* physical address */
91                                                         /* to access nand */
92 #define CONFIG_SYS_NAND_BASE            NAND_BASE       /* physical address */
93                                                         /* to access nand at */
94                                                         /* CS0 */
95 #define CONFIG_SYS_NAND_BUSWIDTH_16BIT
96
97 /* Environment information */
98
99 #define CONFIG_EXTRA_ENV_SETTINGS \
100         "loadaddr=0x82000000\0" \
101         "fdtaddr=0x80f80000\0" \
102         "bootfile=uImage\0" \
103         "fdtfile=omap3-ldp.dtb\0" \
104         "bootdir=/\0" \
105         "bootpart=0:1\0" \
106         "usbtty=cdc_acm\0" \
107         "console=ttyO2,115200n8\0" \
108         "mmcdev=0\0" \
109         "videomode=1024x768@60,vxres=1024,vyres=768\0" \
110         "videospec=omapfb:vram:2M,vram:4M\0" \
111         "mmcargs=setenv bootargs console=${console} " \
112                 "video=${videospec},mode:${videomode} " \
113                 "root=/dev/mmcblk0p2 rw " \
114                 "rootfstype=ext3 rootwait\0" \
115         "nandargs=setenv bootargs console=${console} " \
116                 "video=${videospec},mode:${videomode} " \
117                 "root=/dev/mtdblock4 rw " \
118                 "rootfstype=jffs2\0" \
119         "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
120         "bootscript=echo Running bootscript from mmc ...; " \
121                 "source ${loadaddr}\0" \
122         "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
123         "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
124         "loadzimage=setenv bootfile zImage; if run loadimage; then run loadfdt;fi\0"\
125         "mmcboot=echo Booting from mmc ...; " \
126                 "run mmcargs; " \
127                 "bootm ${loadaddr}\0" \
128         "mmczboot=echo Booting from mmc ...; " \
129                 "run mmcargs; " \
130                 "bootz ${loadaddr} - ${fdtaddr}\0" \
131         "nandboot=echo Booting from nand ...; " \
132                 "run nandargs; " \
133                 "nand read ${loadaddr} 280000 400000; " \
134                 "bootm ${loadaddr}\0" \
135
136 #define CONFIG_BOOTCOMMAND \
137         "mmc dev ${mmcdev}; if mmc rescan; then " \
138                 "if run loadbootscript; then " \
139                         "run bootscript; " \
140                 "else " \
141                         "if run loadimage; then " \
142                                 "run mmcboot; " \
143                         "else if run loadzimage; then " \
144                                 "run mmczboot; " \
145                         "else run nandboot; " \
146                         "fi; fi;" \
147                 "fi; " \
148         "else run nandboot; fi"
149
150 /*
151  * Miscellaneous configurable options
152  */
153 #define CONFIG_SYS_MEMTEST_START        (PHYS_SDRAM_1)  /* memtest */
154 #define CONFIG_SYS_MEMTEST_END          (PHYS_SDRAM_2 + \
155                                         0x01F00000) /* 31MB */
156
157 /*-----------------------------------------------------------------------
158  * FLASH and environment organization
159  */
160
161 /* **** PISMO SUPPORT *** */
162 #if defined(CONFIG_CMD_NAND)
163 #define CONFIG_SYS_FLASH_BASE           NAND_BASE
164 #endif
165
166 /* Monitor at start of flash */
167 #define CONFIG_SYS_MONITOR_BASE         CONFIG_SYS_FLASH_BASE
168 #define CONFIG_SYS_ONENAND_BASE         ONENAND_MAP
169
170 #define CONFIG_ENV_IS_IN_NAND           1
171 #define ONENAND_ENV_OFFSET              0x260000 /* environment starts here */
172 #define SMNAND_ENV_OFFSET               0x260000 /* environment starts here */
173
174 #define CONFIG_SYS_ENV_SECT_SIZE        (128 << 10)     /* 128 KiB */
175 #define CONFIG_ENV_OFFSET               SMNAND_ENV_OFFSET
176 #define CONFIG_ENV_ADDR                 SMNAND_ENV_OFFSET
177
178 #ifdef CONFIG_CMD_NET
179 /* Ethernet (LAN9211 from SMSC9118 family) */
180 #define CONFIG_SMC911X
181 #define CONFIG_SMC911X_32_BIT
182 #define CONFIG_SMC911X_BASE             DEBUG_BASE
183
184 #endif
185
186 #endif                          /* __CONFIG_H */