blob: d6f260287534338532c50c0b8157b361ba76b91d [file] [log] [blame]
wdenk4989f872004-03-14 15:06:13 +00001/*
2 * (C) Copyright 2003
3 * Texas Instruments.
4 * Kshitij Gupta <kshitij@ti.com>
5 * Configuation settings for the TI OMAP Innovator board.
6 *
7 * (C) Copyright 2004
8 * ARM Ltd.
9 * Philippe Robin, <philippe.robin@arm.com>
10 * Configuration for Compact Integrator board.
11 *
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +020012 * SPDX-License-Identifier: GPL-2.0+
wdenk4989f872004-03-14 15:06:13 +000013 */
14
15#ifndef __CONFIG_H
16#define __CONFIG_H
17
Linus Walleij717b0a82012-08-04 05:21:28 +000018#include "integrator-common.h"
Linus Walleijdfe90942012-01-31 12:20:17 +000019
Linus Walleij717b0a82012-08-04 05:21:28 +000020/* Integrator CP-specific configuration */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020021#define CONFIG_SYS_HZ_CLOCK 1000000 /* Timer 1 is clocked at 1Mhz */
Linus Walleijdfe90942012-01-31 12:20:17 +000022
wdenk4989f872004-03-14 15:06:13 +000023/*
wdenk4989f872004-03-14 15:06:13 +000024 * Hardware drivers
25 */
Ben Warren0fd6aae2009-10-04 22:37:03 -070026#define CONFIG_SMC91111
wdenk4989f872004-03-14 15:06:13 +000027#define CONFIG_SMC_USE_32_BIT
28#define CONFIG_SMC91111_BASE 0xC8000000
29#undef CONFIG_SMC91111_EXT_PHY
30
Linus Walleij717b0a82012-08-04 05:21:28 +000031/* PL011 configuration */
Andreas Engel0813b122008-09-08 14:30:53 +020032#define CONFIG_PL011_SERIAL
wdenkda04a8b2004-08-02 23:22:59 +000033#define CONFIG_PL011_CLOCK 14745600
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020034#define CONFIG_PL01x_PORTS { (void *)CONFIG_SYS_SERIAL0, (void *)CONFIG_SYS_SERIAL1 }
wdenk4989f872004-03-14 15:06:13 +000035#define CONFIG_CONS_INDEX 0
wdenkc86cdb92005-01-12 00:38:03 +000036#define CONFIG_BAUDRATE 38400
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020037#define CONFIG_SYS_SERIAL0 0x16000000
38#define CONFIG_SYS_SERIAL1 0x17000000
wdenk4989f872004-03-14 15:06:13 +000039
Jon Loeliger5c4ddae2007-07-10 10:12:10 -050040/*
Jon Loeliger860435b2007-07-04 22:32:32 -050041 * Command line configuration.
42 */
wdenk4989f872004-03-14 15:06:13 +000043#define CONFIG_BOOTDELAY 2
Linus Walleijdfe90942012-01-31 12:20:17 +000044#define CONFIG_BOOTARGS "root=/dev/mtdblock0 console=ttyAMA0 console=tty ip=dhcp netdev=27,0,0xfc800000,0xfc800010,eth0 video=clcdfb:0"
45#define CONFIG_BOOTCOMMAND "tftpboot ; bootm"
46#define CONFIG_SERVERIP 192.168.1.100
47#define CONFIG_IPADDR 192.168.1.104
48#define CONFIG_BOOTFILE "uImage"
Wolfgang Denkadf20a12005-09-25 01:48:28 +020049
wdenk4989f872004-03-14 15:06:13 +000050/*
51 * Miscellaneous configurable options
52 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020053#define CONFIG_SYS_PROMPT "Integrator-CP # " /* Monitor Command Prompt */
wdenk4989f872004-03-14 15:06:13 +000054
Jean-Christophe PLAGNIOL-VILLARD07efe4c2009-05-17 00:58:36 +020055#define PHYS_FLASH_SIZE 0x01000000 /* 16MB */
Linus Walleij48fd6152015-04-05 01:48:33 +020056#define CONFIG_SYS_MAX_FLASH_SECT 64
Jean-Christophe PLAGNIOL-VILLARD53db4cd2008-09-10 22:48:04 +020057#define CONFIG_ENV_IS_IN_FLASH 1
Linus Walleij48fd6152015-04-05 01:48:33 +020058#define CONFIG_SYS_MONITOR_LEN 0x00100000
Wolfgang Denk03f9ba32005-10-04 23:10:28 +020059
60/*
61 * Move up the U-Boot & monitor area if more flash is fitted.
62 * If this U-Boot is to be run on Integrators with varying flash sizes,
Marcel Ziswileraea68562007-12-30 03:30:46 +010063 * drivers/mtd/cfi_flash.c::flash_init() can read the Integrator CP_FLASHPROG
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020064 * register and dynamically assign CONFIG_ENV_ADDR & CONFIG_SYS_MONITOR_BASE
65 * - CONFIG_SYS_MONITOR_BASE is set to indicate that the environment is not
Wolfgang Denk03f9ba32005-10-04 23:10:28 +020066 * embedded in the boot monitor(s) area
67 */
68#if ( PHYS_FLASH_SIZE == 0x04000000 )
69
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +020070#define CONFIG_ENV_ADDR 0x27F00000
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020071#define CONFIG_SYS_MONITOR_BASE 0x27F40000
Wolfgang Denk03f9ba32005-10-04 23:10:28 +020072
73#elif (PHYS_FLASH_SIZE == 0x02000000 )
74
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +020075#define CONFIG_ENV_ADDR 0x25F00000
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020076#define CONFIG_SYS_MONITOR_BASE 0x25F40000
Wolfgang Denk03f9ba32005-10-04 23:10:28 +020077
78#else
79
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +020080#define CONFIG_ENV_ADDR 0x24F00000
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020081#define CONFIG_SYS_MONITOR_BASE 0x27F40000
Wolfgang Denk03f9ba32005-10-04 23:10:28 +020082
83#endif
84
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +020085#define CONFIG_ENV_SECT_SIZE 0x40000 /* 256KB */
86#define CONFIG_ENV_SIZE 8192 /* 8KB */
Wolfgang Denkadf20a12005-09-25 01:48:28 +020087
wdenkc86cdb92005-01-12 00:38:03 +000088#endif /* __CONFIG_H */