blob: 3e8bd67d27fb1bf3d18221243c19def4756f9633 [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 Denk1a459662013-07-08 09:37:19 +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
13/*
14 * High Level Configuration Options
15 */
Dirk Behme2be2c6c2009-01-28 21:39:58 +010016#define CONFIG_OMAP 1 /* in a TI OMAP core */
17#define CONFIG_OMAP34XX 1 /* which is a 34XX */
Dirk Behme2be2c6c2009-01-28 21:39:58 +010018#define CONFIG_OMAP3_PANDORA 1 /* working with pandora */
Marek Vasut308252a2012-07-21 05:02:23 +000019#define CONFIG_OMAP_GPIO
Dirk Behme2be2c6c2009-01-28 21:39:58 +010020
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040021#define CONFIG_SDRC /* The chip has SDRC controller */
22
Dirk Behme2be2c6c2009-01-28 21:39:58 +010023#include <asm/arch/cpu.h> /* get chip and board defs */
24#include <asm/arch/omap3.h>
25
Sanjeev Premi6a6b62e2009-04-27 21:27:27 +053026/*
27 * Display CPU and Board information
28 */
29#define CONFIG_DISPLAY_CPUINFO 1
30#define CONFIG_DISPLAY_BOARDINFO 1
31
Dirk Behme2be2c6c2009-01-28 21:39:58 +010032/* Clock Defines */
33#define V_OSCK 26000000 /* Clock output from T2 */
34#define V_SCLK (V_OSCK >> 1)
35
Dirk Behme2be2c6c2009-01-28 21:39:58 +010036#define CONFIG_MISC_INIT_R
37
38#define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
39#define CONFIG_SETUP_MEMORY_TAGS 1
40#define CONFIG_INITRD_TAG 1
41#define CONFIG_REVISION_TAG 1
42
Grant Likely2fa8ca92011-03-28 09:59:07 +000043#define CONFIG_OF_LIBFDT 1
44
Dirk Behme2be2c6c2009-01-28 21:39:58 +010045/*
46 * Size of malloc() pool
47 */
Sandeep Paulraj9c44ddc2009-09-09 11:50:40 -040048#define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
Grazvydas Ignotas73225242010-11-19 11:25:36 -050049#define CONFIG_SYS_MALLOC_LEN (1024 * 1024 + CONFIG_ENV_SIZE)
Dirk Behme2be2c6c2009-01-28 21:39:58 +010050
51/*
52 * Hardware drivers
53 */
54
Grazvydas Ignotas73225242010-11-19 11:25:36 -050055#define CONFIG_SYS_CONSOLE_IS_IN_ENV 1
56#define CONFIG_SYS_DEVICE_NULLDEV 1
57
58/* USB */
59#define CONFIG_MUSB_UDC 1
60#define CONFIG_USB_OMAP3 1
61#define CONFIG_TWL4030_USB 1
62
63/* USB device configuration */
64#define CONFIG_USB_DEVICE 1
65#define CONFIG_USB_TTY 1
66
Dirk Behme2be2c6c2009-01-28 21:39:58 +010067/*
68 * NS16550 Configuration
69 */
70#define V_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */
71
72#define CONFIG_SYS_NS16550
73#define CONFIG_SYS_NS16550_SERIAL
74#define CONFIG_SYS_NS16550_REG_SIZE (-4)
75#define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
76
77/*
78 * select serial console configuration
79 */
80#define CONFIG_CONS_INDEX 3
81#define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
82#define CONFIG_SERIAL3 3
83
84/* allow to overwrite serial and ethaddr */
85#define CONFIG_ENV_OVERWRITE
86#define CONFIG_BAUDRATE 115200
87#define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600, \
88 115200}
Tom Rini86c5c542011-09-03 21:51:25 -040089#define CONFIG_GENERIC_MMC 1
Dirk Behme2be2c6c2009-01-28 21:39:58 +010090#define CONFIG_MMC 1
Tom Rini86c5c542011-09-03 21:51:25 -040091#define CONFIG_OMAP_HSMMC 1
Dirk Behme2be2c6c2009-01-28 21:39:58 +010092#define CONFIG_DOS_PARTITION 1
93
94/* commands to include */
95#include <config_cmd_default.h>
96
97#define CONFIG_CMD_EXT2 /* EXT2 Support */
98#define CONFIG_CMD_FAT /* FAT support */
Dirk Behme2be2c6c2009-01-28 21:39:58 +010099
100#define CONFIG_CMD_I2C /* I2C serial bus support */
101#define CONFIG_CMD_MMC /* MMC support */
102#define CONFIG_CMD_NAND /* NAND support */
Grazvydas Ignotas73225242010-11-19 11:25:36 -0500103#define CONFIG_CMD_CACHE /* Cache control */
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100104
105#undef CONFIG_CMD_FLASH /* flinfo, erase, protect */
106#undef CONFIG_CMD_FPGA /* FPGA configuration Support */
107#undef CONFIG_CMD_IMI /* iminfo */
108#undef CONFIG_CMD_IMLS /* List all found images */
109#undef CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */
110#undef CONFIG_CMD_NFS /* NFS support */
111
112#define CONFIG_SYS_NO_FLASH
Tom Rix0297ec72009-09-29 10:19:49 -0400113#define CONFIG_HARD_I2C 1
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100114#define CONFIG_SYS_I2C_SPEED 100000
115#define CONFIG_SYS_I2C_SLAVE 1
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100116#define CONFIG_DRIVER_OMAP34XX_I2C 1
117
118/*
Tom Rix2c155132009-06-28 12:52:30 -0500119 * TWL4030
120 */
121#define CONFIG_TWL4030_POWER 1
122#define CONFIG_TWL4030_LED 1
123
124/*
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100125 * Board NAND Info.
126 */
127#define CONFIG_NAND_OMAP_GPMC
128#define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
129 /* to access nand */
130#define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */
131 /* to access nand */
132 /* at CS0 */
133#define GPMC_NAND_ECC_LP_x16_LAYOUT 1
134
135#define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND */
136 /* devices */
Grazvydas Ignotas73225242010-11-19 11:25:36 -0500137
138#ifdef CONFIG_CMD_NAND
139#define CONFIG_CMD_MTDPARTS
140#define CONFIG_MTD_PARTITIONS
141#define CONFIG_MTD_DEVICE
142#define CONFIG_CMD_UBI
143#define CONFIG_CMD_UBIFS
144#define CONFIG_RBTREE
145#define CONFIG_LZO
146
147#define MTDIDS_DEFAULT "nand0=nand"
148#define MTDPARTS_DEFAULT "mtdparts=nand:512k(xloader),"\
149 "1920k(uboot),128k(uboot-env),"\
150 "10m(boot),-(rootfs)"
151#else
152#define MTDPARTS_DEFAULT
153#endif
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100154
155/* Environment information */
156#define CONFIG_BOOTDELAY 1
157
158#define CONFIG_EXTRA_ENV_SETTINGS \
Grazvydas Ignotas73225242010-11-19 11:25:36 -0500159 "usbtty=cdc_acm\0" \
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100160 "loadaddr=0x82000000\0" \
Grazvydas Ignotas73225242010-11-19 11:25:36 -0500161 "bootargs=ubi.mtd=4 ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs " \
Grazvydas Ignotas9baa37b2012-03-22 13:49:23 +0000162 "rw rootflags=bulk_read vram=6272K omapfb.vram=0:3000K\0" \
Grazvydas Ignotas73225242010-11-19 11:25:36 -0500163 "mtdparts=" MTDPARTS_DEFAULT "\0" \
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100164
165#define CONFIG_BOOTCOMMAND \
Tom Rini86c5c542011-09-03 21:51:25 -0400166 "if mmc rescan && fatload mmc1 0 ${loadaddr} autoboot.scr || " \
Grazvydas Ignotas73225242010-11-19 11:25:36 -0500167 "ext2load mmc1 0 ${loadaddr} autoboot.scr; then " \
168 "source ${loadaddr}; " \
169 "fi; " \
Joe Hershberger949a7712012-11-01 16:54:18 +0000170 "ubi part boot && ubifsmount ubi:boot && " \
171 "ubifsload ${loadaddr} uImage && bootm ${loadaddr}"
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100172
173#define CONFIG_AUTO_COMPLETE 1
174/*
175 * Miscellaneous configurable options
176 */
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100177#define CONFIG_SYS_LONGHELP /* undef to save memory */
178#define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
Robert P. J. Day1270ec12009-12-12 12:10:33 -0500179#define CONFIG_SYS_PROMPT "Pandora # "
Vaibhav Hiremathf62b1252011-09-03 21:24:19 -0400180#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100181/* Print Buffer Size */
182#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
183 sizeof(CONFIG_SYS_PROMPT) + 16)
184#define CONFIG_SYS_MAXARGS 16 /* max number of command */
185 /* args */
186/* Boot Argument Buffer Size */
187#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
188/* memtest works on */
189#define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0)
190#define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \
191 0x01F00000) /* 31MB */
192
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100193#define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) /* default load */
194 /* address */
195
196/*
Manikandan Pillaid3a513c2009-04-21 17:29:05 +0200197 * OMAP3 has 12 GP timers, they can be driven by the system clock
198 * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
199 * This rate is divided by a local divisor.
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100200 */
Manikandan Pillaid3a513c2009-04-21 17:29:05 +0200201#define CONFIG_SYS_TIMERBASE OMAP34XX_GPT2
202#define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
203#define CONFIG_SYS_HZ 1000
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100204
205/*-----------------------------------------------------------------------
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100206 * Physical Memory Map
207 */
208#define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
209#define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100210#define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1
211
Grazvydas Ignotas23df4f62010-11-19 11:25:31 -0500212#define CONFIG_SYS_TEXT_BASE 0x80008000
213#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
214#define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800
215#define CONFIG_SYS_INIT_RAM_SIZE 0x800
216#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
217 CONFIG_SYS_INIT_RAM_SIZE - \
218 GENERATED_GBL_DATA_SIZE)
219
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100220/*-----------------------------------------------------------------------
221 * FLASH and environment organization
222 */
223
224/* **** PISMO SUPPORT *** */
225
226/* Configure the PISMO */
227#define PISMO1_NAND_SIZE GPMC_SIZE_128M
228#define PISMO1_ONEN_SIZE GPMC_SIZE_128M
229
Sandeep Paulraj9c44ddc2009-09-09 11:50:40 -0400230#define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 2 sectors */
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100231
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -0400232#if defined(CONFIG_CMD_NAND)
233#define CONFIG_SYS_FLASH_BASE PISMO1_NAND_BASE
234#endif
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100235
236/* Monitor at start of flash */
237#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100238
239#define CONFIG_ENV_IS_IN_NAND 1
Grazvydas Ignotas73225242010-11-19 11:25:36 -0500240#define SMNAND_ENV_OFFSET 0x260000 /* environment starts here */
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100241
Luca Ceresoli6cbec7b2011-04-20 11:02:05 -0400242#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
243#define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100244#define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET
245
Aneesh V8e408522011-11-21 23:38:59 +0000246#define CONFIG_SYS_CACHELINE_SIZE 64
247
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100248#endif /* __CONFIG_H */