blob: 8d3531c8286c55e3338257cd566a6335d0c38cb5 [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 */
14#define CONFIG_NAND
Dirk Behme7b84a7b2009-01-28 21:39:58 +010015
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030016/* override base for compatibility with MLO the device ships with */
17#define CONFIG_SYS_TEXT_BASE 0x80008000
Vaibhav Hiremath558d23d2010-06-07 15:20:34 -040018
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030019#include <configs/ti_omap3_common.h>
Dirk Behme7b84a7b2009-01-28 21:39:58 +010020
Sanjeev Premie32ef2e2009-04-27 21:27:27 +053021/*
22 * Display CPU and Board information
23 */
24#define CONFIG_DISPLAY_CPUINFO 1
25#define CONFIG_DISPLAY_BOARDINFO 1
26
Dirk Behme7b84a7b2009-01-28 21:39:58 +010027#define CONFIG_MISC_INIT_R
Dirk Behme7b84a7b2009-01-28 21:39:58 +010028#define CONFIG_REVISION_TAG 1
29
Sandeep Paulraj6a87b3f2009-09-09 11:50:40 -040030#define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030031
32#define CONFIG_SYS_CONSOLE_IS_IN_ENV 1
33#define CONFIG_SYS_DEVICE_NULLDEV 1
Dirk Behme7b84a7b2009-01-28 21:39:58 +010034
35/*
36 * Hardware drivers
37 */
38
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030039/* I2C Support */
40#define CONFIG_SYS_I2C_OMAP34XX
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -050041
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030042/* TWL4030 LED */
43#define CONFIG_TWL4030_LED
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -050044
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030045/* Initialize GPIOs by default */
46#define CONFIG_OMAP3_GPIO_4 /* GPIO96..127 is in GPIO Bank 4 */
47#define CONFIG_OMAP3_GPIO_6 /* GPIO160..191 is in GPIO Bank 6 */
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -050048
Dirk Behme7b84a7b2009-01-28 21:39:58 +010049/*
50 * NS16550 Configuration
51 */
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030052#undef CONFIG_OMAP_SERIAL
Dirk Behme7b84a7b2009-01-28 21:39:58 +010053#define CONFIG_SYS_NS16550_SERIAL
54#define CONFIG_SYS_NS16550_REG_SIZE (-4)
55#define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
Dirk Behme7b84a7b2009-01-28 21:39:58 +010056#define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
57#define CONFIG_SERIAL3 3
58
Dirk Behme7b84a7b2009-01-28 21:39:58 +010059/* commands to include */
60#include <config_cmd_default.h>
61
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -050062#define CONFIG_CMD_CACHE /* Cache control */
Dirk Behme7b84a7b2009-01-28 21:39:58 +010063#undef CONFIG_CMD_FLASH /* flinfo, erase, protect */
64#undef CONFIG_CMD_FPGA /* FPGA configuration Support */
65#undef CONFIG_CMD_IMI /* iminfo */
66#undef CONFIG_CMD_IMLS /* List all found images */
67#undef CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */
68#undef CONFIG_CMD_NFS /* NFS support */
69
Tom Rix0f2a8042009-06-28 12:52:30 -050070/*
Dirk Behme7b84a7b2009-01-28 21:39:58 +010071 * Board NAND Info.
72 */
Dirk Behme7b84a7b2009-01-28 21:39:58 +010073#define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
74 /* to access nand */
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030075#define CONFIG_SYS_NAND_BUSWIDTH_16BIT 16
76#define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_HAM1_CODE_SW
77#define CONFIG_SYS_NAND_PAGE_SIZE 2048
78#define CONFIG_SYS_NAND_OOBSIZE 64
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -050079
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030080#ifdef CONFIG_NAND
81#define CONFIG_CMD_UBI /* UBI-formated MTD partition support */
82#define CONFIG_CMD_UBIFS /* Read-only UBI volume operations */
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -050083
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030084#define CONFIG_RBTREE /* required by CONFIG_CMD_UBI */
85#define CONFIG_LZO /* required by CONFIG_CMD_UBIFS */
86
87#define CONFIG_MTD_PARTITIONS /* required for UBI partition support */
88
89#define MTDIDS_DEFAULT "nand0=omap2-nand.0"
90#define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:512k(xloader),"\
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -050091 "1920k(uboot),128k(uboot-env),"\
92 "10m(boot),-(rootfs)"
93#else
94#define MTDPARTS_DEFAULT
95#endif
Dirk Behme7b84a7b2009-01-28 21:39:58 +010096
Dirk Behme7b84a7b2009-01-28 21:39:58 +010097#define CONFIG_EXTRA_ENV_SETTINGS \
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +030098 DEFAULT_LINUX_BOOT_ENV \
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -050099 "usbtty=cdc_acm\0" \
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -0500100 "bootargs=ubi.mtd=4 ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs " \
Grazvydas Ignotas0c8345b2012-03-22 13:49:23 +0000101 "rw rootflags=bulk_read vram=6272K omapfb.vram=0:3000K\0" \
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -0500102 "mtdparts=" MTDPARTS_DEFAULT "\0" \
Dirk Behme7b84a7b2009-01-28 21:39:58 +0100103
104#define CONFIG_BOOTCOMMAND \
Tom Rini83922512011-09-03 21:51:25 -0400105 "if mmc rescan && fatload mmc1 0 ${loadaddr} autoboot.scr || " \
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -0500106 "ext2load mmc1 0 ${loadaddr} autoboot.scr; then " \
107 "source ${loadaddr}; " \
108 "fi; " \
Joe Hershberger108458a2012-11-01 16:54:18 +0000109 "ubi part boot && ubifsmount ubi:boot && " \
110 "ubifsload ${loadaddr} uImage && bootm ${loadaddr}"
Dirk Behme7b84a7b2009-01-28 21:39:58 +0100111
Dirk Behme7b84a7b2009-01-28 21:39:58 +0100112/*
113 * Miscellaneous configurable options
114 */
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +0300115#undef CONFIG_SYS_PROMPT
Robert P. J. Day23f5a2d2009-12-12 12:10:33 -0500116#define CONFIG_SYS_PROMPT "Pandora # "
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +0300117
Dirk Behme7b84a7b2009-01-28 21:39:58 +0100118/* memtest works on */
119#define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0)
120#define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \
121 0x01F00000) /* 31MB */
122
Grazvydas Ignotas56f860f2015-04-09 02:14:33 +0300123#if defined(CONFIG_NAND)
pekon gupta0a9ec452014-07-18 17:59:41 +0530124#define CONFIG_SYS_FLASH_BASE NAND_BASE
Luca Ceresoli9783a2c2011-04-20 11:02:05 -0400125#endif
Dirk Behme7b84a7b2009-01-28 21:39:58 +0100126
127/* Monitor at start of flash */
128#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
Dirk Behme7b84a7b2009-01-28 21:39:58 +0100129
130#define CONFIG_ENV_IS_IN_NAND 1
Grazvydas Ignotas9f4de642010-11-19 11:25:36 -0500131#define SMNAND_ENV_OFFSET 0x260000 /* environment starts here */
Dirk Behme7b84a7b2009-01-28 21:39:58 +0100132
Luca Ceresoli9783a2c2011-04-20 11:02:05 -0400133#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
134#define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET
Dirk Behme7b84a7b2009-01-28 21:39:58 +0100135#define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET
136
Aneesh Vfa5c07a2011-11-21 23:38:59 +0000137#define CONFIG_SYS_CACHELINE_SIZE 64
138
Dirk Behme7b84a7b2009-01-28 21:39:58 +0100139#endif /* __CONFIG_H */