Convert CONFIG_SYS_I2C_OMAP24XX to Kconfig
[oweals/u-boot.git] / include / configs / omap3_pandora.h
1 /*
2  * (C) Copyright 2008-2010
3  * GraÅžvydas Ignotas <notasas@gmail.com>
4  *
5  * Configuration settings for the OMAP3 Pandora.
6  *
7  * SPDX-License-Identifier:     GPL-2.0+
8  */
9
10 #ifndef __CONFIG_H
11 #define __CONFIG_H
12
13 #define CONFIG_NR_DRAM_BANKS    2       /* CS1 may or may not be populated */
14 #define CONFIG_NAND
15
16 /* override base for compatibility with MLO the device ships with */
17 #define CONFIG_SYS_TEXT_BASE            0x80008000
18
19 #include <configs/ti_omap3_common.h>
20
21 #define CONFIG_MISC_INIT_R
22 #define CONFIG_REVISION_TAG             1
23
24 #define CONFIG_ENV_SIZE                 (128 << 10)     /* 128 KiB */
25
26 #define CONFIG_SYS_DEVICE_NULLDEV       1
27
28 /*
29  * Hardware drivers
30  */
31
32 /* TWL4030 LED */
33 #define CONFIG_TWL4030_LED
34
35 /*
36  * NS16550 Configuration
37  */
38 #undef CONFIG_SYS_NS16550_CLK
39 #define CONFIG_SYS_NS16550_SERIAL
40 #define CONFIG_SYS_NS16550_REG_SIZE     (-4)
41 #define CONFIG_SYS_NS16550_CLK          V_NS16550_CLK
42 #define CONFIG_SYS_NS16550_COM3         OMAP34XX_UART3
43 #define CONFIG_SERIAL3                  3
44
45 /* commands to include */
46
47 /*
48  * Board NAND Info.
49  */
50 #define CONFIG_SYS_NAND_ADDR            NAND_BASE       /* physical address */
51                                                         /* to access nand */
52 #define CONFIG_SYS_NAND_BUSWIDTH_16BIT
53 #define CONFIG_NAND_OMAP_ECCSCHEME      OMAP_ECC_HAM1_CODE_SW
54 #define CONFIG_SYS_NAND_PAGE_SIZE       2048
55 #define CONFIG_SYS_NAND_OOBSIZE         64
56
57 #ifdef CONFIG_NAND
58 #define CONFIG_MTD_PARTITIONS   /* required for UBI partition support */
59
60 #define MTDIDS_DEFAULT                  "nand0=omap2-nand.0"
61 #define MTDPARTS_DEFAULT                "mtdparts=omap2-nand.0:512k(xloader),"\
62                                         "1920k(uboot),128k(uboot-env),"\
63                                         "10m(boot),-(rootfs)"
64 #else
65 #define MTDPARTS_DEFAULT
66 #endif
67
68
69 #define CONFIG_BOOTCOMMAND \
70         "run distro_bootcmd; " \
71         "setenv bootargs ${bootargs_ubi}; " \
72         "if mmc rescan && load mmc 0:1 ${loadaddr} autoboot.scr; then " \
73                 "source ${loadaddr}; " \
74         "fi; " \
75         "ubi part boot && ubifsmount ubi:boot && " \
76                 "ubifsload ${loadaddr} uImage && bootm ${loadaddr}"
77
78 #define BOOT_TARGET_DEVICES(func) \
79         func(MMC, mmc, 0) \
80
81 #include <config_distro_bootcmd.h>
82
83 #define CONFIG_EXTRA_ENV_SETTINGS \
84         DEFAULT_LINUX_BOOT_ENV \
85         "usbtty=cdc_acm\0" \
86         "bootargs_ubi=ubi.mtd=4 ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs " \
87                 "rw rootflags=bulk_read vram=6272K omapfb.vram=0:3000K\0" \
88         "mtdparts=" MTDPARTS_DEFAULT "\0" \
89         BOOTENV \
90
91 /* memtest works on */
92 #define CONFIG_SYS_MEMTEST_START        (OMAP34XX_SDRC_CS0)
93 #define CONFIG_SYS_MEMTEST_END          (OMAP34XX_SDRC_CS0 + \
94                                         0x01F00000) /* 31MB */
95
96 #if defined(CONFIG_NAND)
97 #define CONFIG_SYS_FLASH_BASE           NAND_BASE
98 #endif
99
100 /* Monitor at start of flash */
101 #define CONFIG_SYS_MONITOR_BASE         CONFIG_SYS_FLASH_BASE
102
103 #define SMNAND_ENV_OFFSET               0x260000 /* environment starts here */
104
105 #define CONFIG_SYS_ENV_SECT_SIZE        (128 << 10)     /* 128 KiB */
106 #define CONFIG_ENV_OFFSET               SMNAND_ENV_OFFSET
107 #define CONFIG_ENV_ADDR                 SMNAND_ENV_OFFSET
108
109 #endif                          /* __CONFIG_H */