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