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