]>
Commit | Line | Data |
---|---|---|
2be2c6cc | 1 | /* |
73225245 GI |
2 | * (C) Copyright 2008-2010 |
3 | * GraÅžvydas Ignotas <[email protected]> | |
2be2c6cc DB |
4 | * |
5 | * Configuration settings for the OMAP3 Pandora. | |
6 | * | |
3765b3e7 | 7 | * SPDX-License-Identifier: GPL-2.0+ |
2be2c6cc DB |
8 | */ |
9 | ||
10 | #ifndef __CONFIG_H | |
11 | #define __CONFIG_H | |
2be2c6cc | 12 | |
76375454 | 13 | #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */ |
2be2c6cc | 14 | |
76375454 | 15 | /* override base for compatibility with MLO the device ships with */ |
cae377b5 | 16 | |
76375454 | 17 | #include <configs/ti_omap3_common.h> |
2be2c6cc | 18 | |
2be2c6cc | 19 | #define CONFIG_MISC_INIT_R |
2be2c6cc DB |
20 | #define CONFIG_REVISION_TAG 1 |
21 | ||
9c44ddcc | 22 | #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */ |
76375454 | 23 | |
76375454 | 24 | #define CONFIG_SYS_DEVICE_NULLDEV 1 |
2be2c6cc DB |
25 | |
26 | /* | |
27 | * Hardware drivers | |
28 | */ | |
29 | ||
76375454 GI |
30 | /* TWL4030 LED */ |
31 | #define CONFIG_TWL4030_LED | |
73225245 | 32 | |
2be2c6cc DB |
33 | /* |
34 | * NS16550 Configuration | |
35 | */ | |
c7b9686d | 36 | #undef CONFIG_SYS_NS16550_CLK |
2be2c6cc DB |
37 | #define CONFIG_SYS_NS16550_SERIAL |
38 | #define CONFIG_SYS_NS16550_REG_SIZE (-4) | |
39 | #define CONFIG_SYS_NS16550_CLK V_NS16550_CLK | |
2be2c6cc DB |
40 | #define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3 |
41 | #define CONFIG_SERIAL3 3 | |
42 | ||
2be2c6cc | 43 | /* commands to include */ |
2be2c6cc | 44 | |
2be2c6cc DB |
45 | /* |
46 | * Board NAND Info. | |
47 | */ | |
2be2c6cc DB |
48 | #define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */ |
49 | /* to access nand */ | |
76375454 GI |
50 | #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_HAM1_CODE_SW |
51 | #define CONFIG_SYS_NAND_PAGE_SIZE 2048 | |
52 | #define CONFIG_SYS_NAND_OOBSIZE 64 | |
53 | ||
54 | #ifdef CONFIG_NAND | |
76375454 | 55 | #define CONFIG_MTD_PARTITIONS /* required for UBI partition support */ |
73225245 | 56 | #endif |
2be2c6cc | 57 | |
2be2c6cc DB |
58 | |
59 | #define CONFIG_BOOTCOMMAND \ | |
40abfeec | 60 | "run distro_bootcmd; " \ |
db18a24f | 61 | "setenv bootargs ${bootargs_ubi}; " \ |
4667c833 | 62 | "if mmc rescan && load mmc 0:1 ${loadaddr} autoboot.scr; then " \ |
73225245 GI |
63 | "source ${loadaddr}; " \ |
64 | "fi; " \ | |
949a7710 JH |
65 | "ubi part boot && ubifsmount ubi:boot && " \ |
66 | "ubifsload ${loadaddr} uImage && bootm ${loadaddr}" | |
2be2c6cc | 67 | |
40abfeec VC |
68 | #define BOOT_TARGET_DEVICES(func) \ |
69 | func(MMC, mmc, 0) \ | |
70 | ||
71 | #include <config_distro_bootcmd.h> | |
72 | ||
73 | #define CONFIG_EXTRA_ENV_SETTINGS \ | |
74 | DEFAULT_LINUX_BOOT_ENV \ | |
75 | "usbtty=cdc_acm\0" \ | |
db18a24f | 76 | "bootargs_ubi=ubi.mtd=4 ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs " \ |
40abfeec | 77 | "rw rootflags=bulk_read vram=6272K omapfb.vram=0:3000K\0" \ |
43ede0bc | 78 | "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \ |
40abfeec VC |
79 | BOOTENV \ |
80 | ||
2be2c6cc DB |
81 | /* memtest works on */ |
82 | #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0) | |
83 | #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \ | |
84 | 0x01F00000) /* 31MB */ | |
85 | ||
76375454 | 86 | #if defined(CONFIG_NAND) |
222a3113 | 87 | #define CONFIG_SYS_FLASH_BASE NAND_BASE |
6cbec7b3 | 88 | #endif |
2be2c6cc DB |
89 | |
90 | /* Monitor at start of flash */ | |
91 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE | |
2be2c6cc | 92 | |
2be2c6cc | 93 | |
6cbec7b3 | 94 | #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */ |
7672d9d5 AF |
95 | #define CONFIG_ENV_OFFSET 0x260000 |
96 | #define CONFIG_ENV_ADDR 0x260000 | |
2be2c6cc | 97 | |
2be2c6cc | 98 | #endif /* __CONFIG_H */ |