blob: d38114662e9e92026b16fa41f76f3805b7d7dd12 [file] [log] [blame]
Dirk Behme2be2c6c2009-01-28 21:39:58 +01001/*
Grazvydas Ignotas73225242010-11-19 11:25:36 -05002 * (C) Copyright 2008-2010
3 * GraÅžvydas Ignotas <notasas@gmail.com>
Dirk Behme2be2c6c2009-01-28 21:39:58 +01004 *
5 * Configuration settings for the OMAP3 Pandora.
6 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02007 * SPDX-License-Identifier: GPL-2.0+
Dirk Behme2be2c6c2009-01-28 21:39:58 +01008 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
Dirk Behme2be2c6c2009-01-28 21:39:58 +010012
Grazvydas Ignotas76375452015-04-09 02:14:33 +030013#define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
Dirk Behme2be2c6c2009-01-28 21:39:58 +010014
Grazvydas Ignotas76375452015-04-09 02:14:33 +030015/* override base for compatibility with MLO the device ships with */
16#define CONFIG_SYS_TEXT_BASE 0x80008000
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040017
Grazvydas Ignotas76375452015-04-09 02:14:33 +030018#include <configs/ti_omap3_common.h>
Dirk Behme2be2c6c2009-01-28 21:39:58 +010019
Dirk Behme2be2c6c2009-01-28 21:39:58 +010020#define CONFIG_MISC_INIT_R
Dirk Behme2be2c6c2009-01-28 21:39:58 +010021#define CONFIG_REVISION_TAG 1
22
Sandeep Paulraj9c44ddc2009-09-09 11:50:40 -040023#define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
Grazvydas Ignotas76375452015-04-09 02:14:33 +030024
Grazvydas Ignotas76375452015-04-09 02:14:33 +030025#define CONFIG_SYS_DEVICE_NULLDEV 1
Dirk Behme2be2c6c2009-01-28 21:39:58 +010026
27/*
28 * Hardware drivers
29 */
30
Grazvydas Ignotas76375452015-04-09 02:14:33 +030031/* TWL4030 LED */
32#define CONFIG_TWL4030_LED
Grazvydas Ignotas73225242010-11-19 11:25:36 -050033
Dirk Behme2be2c6c2009-01-28 21:39:58 +010034/*
35 * NS16550 Configuration
36 */
Thomas Chouc7b96862015-11-19 21:48:12 +080037#undef CONFIG_SYS_NS16550_CLK
Dirk Behme2be2c6c2009-01-28 21:39:58 +010038#define CONFIG_SYS_NS16550_SERIAL
39#define CONFIG_SYS_NS16550_REG_SIZE (-4)
40#define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
Dirk Behme2be2c6c2009-01-28 21:39:58 +010041#define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
42#define CONFIG_SERIAL3 3
43
Dirk Behme2be2c6c2009-01-28 21:39:58 +010044/* commands to include */
Dirk Behme2be2c6c2009-01-28 21:39:58 +010045
Tom Rix2c155132009-06-28 12:52:30 -050046/*
Dirk Behme2be2c6c2009-01-28 21:39:58 +010047 * Board NAND Info.
48 */
Dirk Behme2be2c6c2009-01-28 21:39:58 +010049#define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
50 /* to access nand */
Grazvydas Ignotas76375452015-04-09 02:14:33 +030051#define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_HAM1_CODE_SW
52#define CONFIG_SYS_NAND_PAGE_SIZE 2048
53#define CONFIG_SYS_NAND_OOBSIZE 64
Grazvydas Ignotas73225242010-11-19 11:25:36 -050054
Grazvydas Ignotas76375452015-04-09 02:14:33 +030055#ifdef CONFIG_NAND
Grazvydas Ignotas76375452015-04-09 02:14:33 +030056#define CONFIG_MTD_PARTITIONS /* required for UBI partition support */
Grazvydas Ignotas73225242010-11-19 11:25:36 -050057#endif
Dirk Behme2be2c6c2009-01-28 21:39:58 +010058
Vagrant Cascadian40abfee2016-08-30 13:16:31 -070059
60#define CONFIG_BOOTCOMMAND \
61 "run distro_bootcmd; " \
Vagrant Cascadiandb18a242016-08-30 13:16:32 -070062 "setenv bootargs ${bootargs_ubi}; " \
Vagrant Cascadian40abfee2016-08-30 13:16:31 -070063 "if mmc rescan && load mmc 0:1 ${loadaddr} autoboot.scr; then " \
64 "source ${loadaddr}; " \
65 "fi; " \
66 "ubi part boot && ubifsmount ubi:boot && " \
67 "ubifsload ${loadaddr} uImage && bootm ${loadaddr}"
68
69#define BOOT_TARGET_DEVICES(func) \
70 func(MMC, mmc, 0) \
71
72#include <config_distro_bootcmd.h>
73
Dirk Behme2be2c6c2009-01-28 21:39:58 +010074#define CONFIG_EXTRA_ENV_SETTINGS \
Grazvydas Ignotas76375452015-04-09 02:14:33 +030075 DEFAULT_LINUX_BOOT_ENV \
Grazvydas Ignotas73225242010-11-19 11:25:36 -050076 "usbtty=cdc_acm\0" \
Vagrant Cascadiandb18a242016-08-30 13:16:32 -070077 "bootargs_ubi=ubi.mtd=4 ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs " \
Grazvydas Ignotas9baa37b2012-03-22 13:49:23 +000078 "rw rootflags=bulk_read vram=6272K omapfb.vram=0:3000K\0" \
Tom Rini43ede0b2017-10-22 17:55:07 -040079 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
Vagrant Cascadian40abfee2016-08-30 13:16:31 -070080 BOOTENV \
Dirk Behme2be2c6c2009-01-28 21:39:58 +010081
Dirk Behme2be2c6c2009-01-28 21:39:58 +010082/* memtest works on */
83#define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0)
84#define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \
85 0x01F00000) /* 31MB */
86
Grazvydas Ignotas76375452015-04-09 02:14:33 +030087#if defined(CONFIG_NAND)
pekon gupta222a3112014-07-18 17:59:41 +053088#define CONFIG_SYS_FLASH_BASE NAND_BASE
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -040089#endif
Dirk Behme2be2c6c2009-01-28 21:39:58 +010090
91/* Monitor at start of flash */
92#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
Dirk Behme2be2c6c2009-01-28 21:39:58 +010093
Dirk Behme2be2c6c2009-01-28 21:39:58 +010094
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -040095#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
Adam Ford7672d9d2017-09-04 21:08:02 -050096#define CONFIG_ENV_OFFSET 0x260000
97#define CONFIG_ENV_ADDR 0x260000
Dirk Behme2be2c6c2009-01-28 21:39:58 +010098
Dirk Behme2be2c6c2009-01-28 21:39:58 +010099#endif /* __CONFIG_H */