blob: 4e2eaa9952c4c826f12612cd18908c09c208fa32 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Dirk Behme7b84a7b2009-01-28 21:39:58 +01002/*
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -05003 * (C) Copyright 2008-2010
4 * GraÅžvydas Ignotas <notasas@gmail.com>
Dirk Behme7b84a7b2009-01-28 21:39:58 +01005 *
6 * Configuration settings for the OMAP3 Pandora.
Dirk Behme7b84a7b2009-01-28 21:39:58 +01007 */
8
9#ifndef __CONFIG_H
10#define __CONFIG_H
Dirk Behme7b84a7b2009-01-28 21:39:58 +010011
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030012/* override base for compatibility with MLO the device ships with */
Vaibhav Hiremath558d23d2010-06-07 15:20:34 -040013
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030014#include <configs/ti_omap3_common.h>
Dirk Behme7b84a7b2009-01-28 21:39:58 +010015
Dirk Behme7b84a7b2009-01-28 21:39:58 +010016#define CONFIG_REVISION_TAG 1
17
Sandeep Paulraj6a87b3f2009-09-09 11:50:40 -040018#define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030019
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030020#define CONFIG_SYS_DEVICE_NULLDEV 1
Dirk Behme7b84a7b2009-01-28 21:39:58 +010021
22/*
23 * Hardware drivers
24 */
25
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030026/* TWL4030 LED */
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -050027
Dirk Behme7b84a7b2009-01-28 21:39:58 +010028/*
29 * NS16550 Configuration
30 */
Thomas Chou52ac4432015-11-19 21:48:12 +080031#undef CONFIG_SYS_NS16550_CLK
Dirk Behme7b84a7b2009-01-28 21:39:58 +010032#define CONFIG_SYS_NS16550_SERIAL
33#define CONFIG_SYS_NS16550_REG_SIZE (-4)
34#define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
Dirk Behme7b84a7b2009-01-28 21:39:58 +010035#define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
36#define CONFIG_SERIAL3 3
37
Dirk Behme7b84a7b2009-01-28 21:39:58 +010038/* commands to include */
Dirk Behme7b84a7b2009-01-28 21:39:58 +010039
Tom Rix0f2a8042009-06-28 12:52:30 -050040/*
Dirk Behme7b84a7b2009-01-28 21:39:58 +010041 * Board NAND Info.
42 */
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030043#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
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -050046
Dirk Behme7b84a7b2009-01-28 21:39:58 +010047
48#define CONFIG_BOOTCOMMAND \
Vagrant Cascadiand6ff05e2016-08-30 13:16:31 -070049 "run distro_bootcmd; " \
Vagrant Cascadian1f7fbf02016-08-30 13:16:32 -070050 "setenv bootargs ${bootargs_ubi}; " \
Vagrant Cascadian1daf3782016-08-29 00:56:06 -070051 "if mmc rescan && load mmc 0:1 ${loadaddr} autoboot.scr; then " \
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -050052 "source ${loadaddr}; " \
53 "fi; " \
Joe Hershberger108458a2012-11-01 16:54:18 +000054 "ubi part boot && ubifsmount ubi:boot && " \
55 "ubifsload ${loadaddr} uImage && bootm ${loadaddr}"
Dirk Behme7b84a7b2009-01-28 21:39:58 +010056
Vagrant Cascadiand6ff05e2016-08-30 13:16:31 -070057#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" \
Vagrant Cascadian1f7fbf02016-08-30 13:16:32 -070065 "bootargs_ubi=ubi.mtd=4 ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs " \
Vagrant Cascadiand6ff05e2016-08-30 13:16:31 -070066 "rw rootflags=bulk_read vram=6272K omapfb.vram=0:3000K\0" \
Tom Rini5ad8e112017-10-22 17:55:07 -040067 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
Vagrant Cascadiand6ff05e2016-08-30 13:16:31 -070068 BOOTENV \
69
Dirk Behme7b84a7b2009-01-28 21:39:58 +010070/* 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
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030075#if defined(CONFIG_NAND)
pekon gupta0a9ec452014-07-18 17:59:41 +053076#define CONFIG_SYS_FLASH_BASE NAND_BASE
Luca Ceresoli9783a2c2011-04-20 11:02:05 -040077#endif
Dirk Behme7b84a7b2009-01-28 21:39:58 +010078
79/* Monitor at start of flash */
80#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
Dirk Behme7b84a7b2009-01-28 21:39:58 +010081
Dirk Behme7b84a7b2009-01-28 21:39:58 +010082
Luca Ceresoli9783a2c2011-04-20 11:02:05 -040083#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
Adam Ford6b1c1652017-09-04 21:08:02 -050084#define CONFIG_ENV_OFFSET 0x260000
85#define CONFIG_ENV_ADDR 0x260000
Dirk Behme7b84a7b2009-01-28 21:39:58 +010086
Dirk Behme7b84a7b2009-01-28 21:39:58 +010087#endif /* __CONFIG_H */