blob: 7518b60fb2b1e75d653c62747b18994153d096aa [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 */
Linus Walleijdfe90942012-01-31 12:20:17 +000043#include <config_cmd_default.h>
wdenkc86cdb92005-01-12 00:38:03 +000044
wdenk4989f872004-03-14 15:06:13 +000045#define CONFIG_BOOTDELAY 2
Linus Walleijdfe90942012-01-31 12:20:17 +000046#define CONFIG_BOOTARGS "root=/dev/mtdblock0 console=ttyAMA0 console=tty ip=dhcp netdev=27,0,0xfc800000,0xfc800010,eth0 video=clcdfb:0"
47#define CONFIG_BOOTCOMMAND "tftpboot ; bootm"
48#define CONFIG_SERVERIP 192.168.1.100
49#define CONFIG_IPADDR 192.168.1.104
50#define CONFIG_BOOTFILE "uImage"
Wolfgang Denkadf20a12005-09-25 01:48:28 +020051
wdenk4989f872004-03-14 15:06:13 +000052/*
53 * Miscellaneous configurable options
54 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020055#define CONFIG_SYS_PROMPT "Integrator-CP # " /* Monitor Command Prompt */
wdenk4989f872004-03-14 15:06:13 +000056
Jean-Christophe PLAGNIOL-VILLARD07efe4c2009-05-17 00:58:36 +020057#define PHYS_FLASH_SIZE 0x01000000 /* 16MB */
Linus Walleij48fd6152015-04-05 01:48:33 +020058#define CONFIG_SYS_MAX_FLASH_SECT 64
Jean-Christophe PLAGNIOL-VILLARD53db4cd2008-09-10 22:48:04 +020059#define CONFIG_ENV_IS_IN_FLASH 1
Linus Walleij48fd6152015-04-05 01:48:33 +020060#define CONFIG_SYS_MONITOR_LEN 0x00100000
Wolfgang Denk03f9ba32005-10-04 23:10:28 +020061
62/*
63 * Move up the U-Boot & monitor area if more flash is fitted.
64 * If this U-Boot is to be run on Integrators with varying flash sizes,
Marcel Ziswileraea68562007-12-30 03:30:46 +010065 * drivers/mtd/cfi_flash.c::flash_init() can read the Integrator CP_FLASHPROG
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020066 * register and dynamically assign CONFIG_ENV_ADDR & CONFIG_SYS_MONITOR_BASE
67 * - CONFIG_SYS_MONITOR_BASE is set to indicate that the environment is not
Wolfgang Denk03f9ba32005-10-04 23:10:28 +020068 * embedded in the boot monitor(s) area
69 */
70#if ( PHYS_FLASH_SIZE == 0x04000000 )
71
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +020072#define CONFIG_ENV_ADDR 0x27F00000
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020073#define CONFIG_SYS_MONITOR_BASE 0x27F40000
Wolfgang Denk03f9ba32005-10-04 23:10:28 +020074
75#elif (PHYS_FLASH_SIZE == 0x02000000 )
76
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +020077#define CONFIG_ENV_ADDR 0x25F00000
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020078#define CONFIG_SYS_MONITOR_BASE 0x25F40000
Wolfgang Denk03f9ba32005-10-04 23:10:28 +020079
80#else
81
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +020082#define CONFIG_ENV_ADDR 0x24F00000
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020083#define CONFIG_SYS_MONITOR_BASE 0x27F40000
Wolfgang Denk03f9ba32005-10-04 23:10:28 +020084
85#endif
86
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +020087#define CONFIG_ENV_SECT_SIZE 0x40000 /* 256KB */
88#define CONFIG_ENV_SIZE 8192 /* 8KB */
Wolfgang Denkadf20a12005-09-25 01:48:28 +020089
wdenkc86cdb92005-01-12 00:38:03 +000090#endif /* __CONFIG_H */