blob: ce4863c6f7c3eb7105d33933d3ddc70ef202ddf0 [file] [log] [blame]
Dirk Behme7b84a7b2009-01-28 21:39:58 +01001/*
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -05002 * (C) Copyright 2008-2010
3 * GraÅžvydas Ignotas <notasas@gmail.com>
Dirk Behme7b84a7b2009-01-28 21:39:58 +01004 *
5 * Configuration settings for the OMAP3 Pandora.
6 *
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +02007 * SPDX-License-Identifier: GPL-2.0+
Dirk Behme7b84a7b2009-01-28 21:39:58 +01008 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
Dirk Behme7b84a7b2009-01-28 21:39:58 +010012
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030013#define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
Dirk Behme7b84a7b2009-01-28 21:39:58 +010014
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030015/* override base for compatibility with MLO the device ships with */
Vaibhav Hiremath558d23d2010-06-07 15:20:34 -040016
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030017#include <configs/ti_omap3_common.h>
Dirk Behme7b84a7b2009-01-28 21:39:58 +010018
Dirk Behme7b84a7b2009-01-28 21:39:58 +010019#define CONFIG_MISC_INIT_R
Dirk Behme7b84a7b2009-01-28 21:39:58 +010020#define CONFIG_REVISION_TAG 1
21
Sandeep Paulraj6a87b3f2009-09-09 11:50:40 -040022#define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030023
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030024#define CONFIG_SYS_DEVICE_NULLDEV 1
Dirk Behme7b84a7b2009-01-28 21:39:58 +010025
26/*
27 * Hardware drivers
28 */
29
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030030/* TWL4030 LED */
31#define CONFIG_TWL4030_LED
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -050032
Dirk Behme7b84a7b2009-01-28 21:39:58 +010033/*
34 * NS16550 Configuration
35 */
Thomas Chou52ac4432015-11-19 21:48:12 +080036#undef CONFIG_SYS_NS16550_CLK
Dirk Behme7b84a7b2009-01-28 21:39:58 +010037#define CONFIG_SYS_NS16550_SERIAL
38#define CONFIG_SYS_NS16550_REG_SIZE (-4)
39#define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
Dirk Behme7b84a7b2009-01-28 21:39:58 +010040#define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
41#define CONFIG_SERIAL3 3
42
Dirk Behme7b84a7b2009-01-28 21:39:58 +010043/* commands to include */
Dirk Behme7b84a7b2009-01-28 21:39:58 +010044
Tom Rix0f2a8042009-06-28 12:52:30 -050045/*
Dirk Behme7b84a7b2009-01-28 21:39:58 +010046 * Board NAND Info.
47 */
Dirk Behme7b84a7b2009-01-28 21:39:58 +010048#define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
49 /* to access nand */
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030050#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
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -050053
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030054#ifdef CONFIG_NAND
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030055#define CONFIG_MTD_PARTITIONS /* required for UBI partition support */
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -050056#endif
Dirk Behme7b84a7b2009-01-28 21:39:58 +010057
Dirk Behme7b84a7b2009-01-28 21:39:58 +010058
59#define CONFIG_BOOTCOMMAND \
Vagrant Cascadiand6ff05e2016-08-30 13:16:31 -070060 "run distro_bootcmd; " \
Vagrant Cascadian1f7fbf02016-08-30 13:16:32 -070061 "setenv bootargs ${bootargs_ubi}; " \
Vagrant Cascadian1daf3782016-08-29 00:56:06 -070062 "if mmc rescan && load mmc 0:1 ${loadaddr} autoboot.scr; then " \
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -050063 "source ${loadaddr}; " \
64 "fi; " \
Joe Hershberger108458a2012-11-01 16:54:18 +000065 "ubi part boot && ubifsmount ubi:boot && " \
66 "ubifsload ${loadaddr} uImage && bootm ${loadaddr}"
Dirk Behme7b84a7b2009-01-28 21:39:58 +010067
Vagrant Cascadiand6ff05e2016-08-30 13:16:31 -070068#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" \
Vagrant Cascadian1f7fbf02016-08-30 13:16:32 -070076 "bootargs_ubi=ubi.mtd=4 ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs " \
Vagrant Cascadiand6ff05e2016-08-30 13:16:31 -070077 "rw rootflags=bulk_read vram=6272K omapfb.vram=0:3000K\0" \
Tom Rini5ad8e112017-10-22 17:55:07 -040078 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
Vagrant Cascadiand6ff05e2016-08-30 13:16:31 -070079 BOOTENV \
80
Dirk Behme7b84a7b2009-01-28 21:39:58 +010081/* 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
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030086#if defined(CONFIG_NAND)
pekon gupta0a9ec452014-07-18 17:59:41 +053087#define CONFIG_SYS_FLASH_BASE NAND_BASE
Luca Ceresoli9783a2c2011-04-20 11:02:05 -040088#endif
Dirk Behme7b84a7b2009-01-28 21:39:58 +010089
90/* Monitor at start of flash */
91#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
Dirk Behme7b84a7b2009-01-28 21:39:58 +010092
Dirk Behme7b84a7b2009-01-28 21:39:58 +010093
Luca Ceresoli9783a2c2011-04-20 11:02:05 -040094#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
Adam Ford6b1c1652017-09-04 21:08:02 -050095#define CONFIG_ENV_OFFSET 0x260000
96#define CONFIG_ENV_ADDR 0x260000
Dirk Behme7b84a7b2009-01-28 21:39:58 +010097
Dirk Behme7b84a7b2009-01-28 21:39:58 +010098#endif /* __CONFIG_H */