Convert CONFIG_TWL4030_LED et al to Kconfig
[oweals/u-boot.git] / include / configs / omap3_pandora.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2008-2010
4  * GraÅžvydas Ignotas <notasas@gmail.com>
5  *
6  * Configuration settings for the OMAP3 Pandora.
7  */
8
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11
12 /* override base for compatibility with MLO the device ships with */
13
14 #include <configs/ti_omap3_common.h>
15
16 #define CONFIG_REVISION_TAG             1
17
18 #define CONFIG_ENV_SIZE                 (128 << 10)     /* 128 KiB */
19
20 #define CONFIG_SYS_DEVICE_NULLDEV       1
21
22 /*
23  * Hardware drivers
24  */
25
26 /* TWL4030 LED */
27
28 /*
29  * NS16550 Configuration
30  */
31 #undef CONFIG_SYS_NS16550_CLK
32 #define CONFIG_SYS_NS16550_SERIAL
33 #define CONFIG_SYS_NS16550_REG_SIZE     (-4)
34 #define CONFIG_SYS_NS16550_CLK          V_NS16550_CLK
35 #define CONFIG_SYS_NS16550_COM3         OMAP34XX_UART3
36 #define CONFIG_SERIAL3                  3
37
38 /* commands to include */
39
40 /*
41  * Board NAND Info.
42  */
43 #define CONFIG_NAND_OMAP_ECCSCHEME      OMAP_ECC_HAM1_CODE_SW
44 #define CONFIG_SYS_NAND_PAGE_SIZE       2048
45 #define CONFIG_SYS_NAND_OOBSIZE         64
46
47
48 #define CONFIG_BOOTCOMMAND \
49         "run distro_bootcmd; " \
50         "setenv bootargs ${bootargs_ubi}; " \
51         "if mmc rescan && load mmc 0:1 ${loadaddr} autoboot.scr; then " \
52                 "source ${loadaddr}; " \
53         "fi; " \
54         "ubi part boot && ubifsmount ubi:boot && " \
55                 "ubifsload ${loadaddr} uImage && bootm ${loadaddr}"
56
57 #define BOOT_TARGET_DEVICES(func) \
58         func(MMC, mmc, 0) \
59
60 #include <config_distro_bootcmd.h>
61
62 #define CONFIG_EXTRA_ENV_SETTINGS \
63         DEFAULT_LINUX_BOOT_ENV \
64         "usbtty=cdc_acm\0" \
65         "bootargs_ubi=ubi.mtd=4 ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs " \
66                 "rw rootflags=bulk_read vram=6272K omapfb.vram=0:3000K\0" \
67         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
68         BOOTENV \
69
70 /* memtest works on */
71 #define CONFIG_SYS_MEMTEST_START        (OMAP34XX_SDRC_CS0)
72 #define CONFIG_SYS_MEMTEST_END          (OMAP34XX_SDRC_CS0 + \
73                                         0x01F00000) /* 31MB */
74
75 #if defined(CONFIG_NAND)
76 #define CONFIG_SYS_FLASH_BASE           NAND_BASE
77 #endif
78
79 /* Monitor at start of flash */
80 #define CONFIG_SYS_MONITOR_BASE         CONFIG_SYS_FLASH_BASE
81
82
83 #define CONFIG_SYS_ENV_SECT_SIZE        (128 << 10)     /* 128 KiB */
84 #define CONFIG_ENV_OFFSET               0x260000
85 #define CONFIG_ENV_ADDR                 0x260000
86
87 #endif                          /* __CONFIG_H */