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