blob: ecf308e3819ea65d9bdee7d2545b1af9db4569d1 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Dirk Behme2be2c6c2009-01-28 21:39:58 +01002/*
Grazvydas Ignotas73225242010-11-19 11:25:36 -05003 * (C) Copyright 2008-2010
4 * GraÅžvydas Ignotas <notasas@gmail.com>
Dirk Behme2be2c6c2009-01-28 21:39:58 +01005 *
6 * Configuration settings for the OMAP3 Pandora.
Dirk Behme2be2c6c2009-01-28 21:39:58 +01007 */
8
9#ifndef __CONFIG_H
10#define __CONFIG_H
Dirk Behme2be2c6c2009-01-28 21:39:58 +010011
Grazvydas Ignotas76375452015-04-09 02:14:33 +030012/* override base for compatibility with MLO the device ships with */
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040013
Grazvydas Ignotas76375452015-04-09 02:14:33 +030014#include <configs/ti_omap3_common.h>
Dirk Behme2be2c6c2009-01-28 21:39:58 +010015
Dirk Behme2be2c6c2009-01-28 21:39:58 +010016#define CONFIG_REVISION_TAG 1
17
Grazvydas Ignotas76375452015-04-09 02:14:33 +030018#define CONFIG_SYS_DEVICE_NULLDEV 1
Dirk Behme2be2c6c2009-01-28 21:39:58 +010019
20/*
Dirk Behme2be2c6c2009-01-28 21:39:58 +010021 * Board NAND Info.
22 */
Grazvydas Ignotas76375452015-04-09 02:14:33 +030023#define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_HAM1_CODE_SW
24#define CONFIG_SYS_NAND_PAGE_SIZE 2048
25#define CONFIG_SYS_NAND_OOBSIZE 64
Grazvydas Ignotas73225242010-11-19 11:25:36 -050026
Vagrant Cascadian40abfee2016-08-30 13:16:31 -070027
28#define CONFIG_BOOTCOMMAND \
29 "run distro_bootcmd; " \
Vagrant Cascadiandb18a242016-08-30 13:16:32 -070030 "setenv bootargs ${bootargs_ubi}; " \
Vagrant Cascadian40abfee2016-08-30 13:16:31 -070031 "if mmc rescan && load mmc 0:1 ${loadaddr} autoboot.scr; then " \
32 "source ${loadaddr}; " \
33 "fi; " \
34 "ubi part boot && ubifsmount ubi:boot && " \
35 "ubifsload ${loadaddr} uImage && bootm ${loadaddr}"
36
37#define BOOT_TARGET_DEVICES(func) \
38 func(MMC, mmc, 0) \
39
40#include <config_distro_bootcmd.h>
41
Dirk Behme2be2c6c2009-01-28 21:39:58 +010042#define CONFIG_EXTRA_ENV_SETTINGS \
Grazvydas Ignotas76375452015-04-09 02:14:33 +030043 DEFAULT_LINUX_BOOT_ENV \
Grazvydas Ignotas73225242010-11-19 11:25:36 -050044 "usbtty=cdc_acm\0" \
Vagrant Cascadiandb18a242016-08-30 13:16:32 -070045 "bootargs_ubi=ubi.mtd=4 ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs " \
Grazvydas Ignotas9baa37b2012-03-22 13:49:23 +000046 "rw rootflags=bulk_read vram=6272K omapfb.vram=0:3000K\0" \
Tom Rini43ede0b2017-10-22 17:55:07 -040047 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
Vagrant Cascadian40abfee2016-08-30 13:16:31 -070048 BOOTENV \
Dirk Behme2be2c6c2009-01-28 21:39:58 +010049
Dirk Behme2be2c6c2009-01-28 21:39:58 +010050/* memtest works on */
Dirk Behme2be2c6c2009-01-28 21:39:58 +010051
Miquel Raynal88718be2019-10-03 19:50:03 +020052#if defined(CONFIG_MTD_RAW_NAND)
pekon gupta222a3112014-07-18 17:59:41 +053053#define CONFIG_SYS_FLASH_BASE NAND_BASE
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -040054#endif
Dirk Behme2be2c6c2009-01-28 21:39:58 +010055
56/* Monitor at start of flash */
57#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
Dirk Behme2be2c6c2009-01-28 21:39:58 +010058
Dirk Behme2be2c6c2009-01-28 21:39:58 +010059
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -040060#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
Dirk Behme2be2c6c2009-01-28 21:39:58 +010061
Dirk Behme2be2c6c2009-01-28 21:39:58 +010062#endif /* __CONFIG_H */