blob: de23375cd5eacaaae7e0a14916ca8215c11a0b13 [file] [log] [blame]
wdenk3d3befa2004-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 Versatile PB.
11 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +020012 * SPDX-License-Identifier: GPL-2.0+
wdenk3d3befa2004-03-14 15:06:13 +000013 */
14
15#ifndef __CONFIG_H
16#define __CONFIG_H
17
18/*
19 * High Level Configuration Options
20 * (easy to change)
21 */
Masahiro Yamada5d7b1312014-11-06 14:59:36 +090022#define CONFIG_VERSATILE 1 /* This is Versatile Platform Board */
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +020023#define CONFIG_ARCH_VERSATILE 1 /* Specifically, a Versatile */
wdenk3d3befa2004-03-14 15:06:13 +000024
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +020025#define CONFIG_SYS_MEMTEST_START 0x100000
26#define CONFIG_SYS_MEMTEST_END 0x10000000
wdenk3d3befa2004-03-14 15:06:13 +000027
Rob Herring5b6da282013-10-04 10:22:48 -050028#define CONFIG_SYS_TIMERBASE 0x101E2000 /* Timer 0 and 1 base */
29#define CONFIG_SYS_TIMER_RATE (1000000 / 256)
30#define CONFIG_SYS_TIMER_COUNTER (CONFIG_SYS_TIMERBASE + 0x4)
31#define CONFIG_SYS_TIMER_COUNTS_DOWN
wdenk3d3befa2004-03-14 15:06:13 +000032
33/*
34 * control registers
35 */
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +020036#define VERSATILE_SCTL_BASE 0x101E0000 /* System controller */
wdenk3d3befa2004-03-14 15:06:13 +000037
38/*
39 * System controller bit assignment
40 */
41#define VERSATILE_REFCLK 0
42#define VERSATILE_TIMCLK 1
43
44#define VERSATILE_TIMER1_EnSel 15
45#define VERSATILE_TIMER2_EnSel 17
46#define VERSATILE_TIMER3_EnSel 19
47#define VERSATILE_TIMER4_EnSel 21
48
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +020049#define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
wdenk3d3befa2004-03-14 15:06:13 +000050#define CONFIG_SETUP_MEMORY_TAGS 1
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +020051#define CONFIG_MISC_INIT_R 1
wdenk3d3befa2004-03-14 15:06:13 +000052/*
53 * Size of malloc() pool
54 */
Stefano Babicd3882982011-06-24 03:04:38 +000055#define CONFIG_ENV_SIZE 8192
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +020056#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 128 * 1024)
wdenk3d3befa2004-03-14 15:06:13 +000057
58/*
59 * Hardware drivers
60 */
61
Ben Warren7194ab82009-10-04 22:37:03 -070062#define CONFIG_SMC91111
wdenk3d3befa2004-03-14 15:06:13 +000063#define CONFIG_SMC_USE_32_BIT
Wolfgang Denk53677ef2008-05-20 16:00:29 +020064#define CONFIG_SMC91111_BASE 0x10010000
wdenk3d3befa2004-03-14 15:06:13 +000065#undef CONFIG_SMC91111_EXT_PHY
66
67/*
68 * NS16550 Configuration
69 */
Andreas Engel48d01922008-09-08 14:30:53 +020070#define CONFIG_PL011_SERIAL
wdenk6705d812004-08-02 23:22:59 +000071#define CONFIG_PL011_CLOCK 24000000
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +020072#define CONFIG_PL01x_PORTS \
73 {(void *)CONFIG_SYS_SERIAL0, \
74 (void *)CONFIG_SYS_SERIAL1 }
wdenk3d3befa2004-03-14 15:06:13 +000075#define CONFIG_CONS_INDEX 0
wdenk6705d812004-08-02 23:22:59 +000076
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +020077#define CONFIG_BAUDRATE 38400
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020078#define CONFIG_SYS_SERIAL0 0x101F1000
79#define CONFIG_SYS_SERIAL1 0x101F2000
wdenk3d3befa2004-03-14 15:06:13 +000080
Jon Loeligerdca3b3d2007-07-04 22:33:46 -050081/*
82 * Command line configuration.
83 */
Jon Loeligerdca3b3d2007-07-04 22:33:46 -050084#define CONFIG_CMD_DHCP
Jon Loeligerdca3b3d2007-07-04 22:33:46 -050085#define CONFIG_CMD_PING
Jon Loeligerdca3b3d2007-07-04 22:33:46 -050086
Jon Loeligerd3b8c1a2007-07-09 21:57:31 -050087/*
88 * BOOTP options
89 */
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +020090#define CONFIG_BOOTP_BOOTPATH
Jon Loeligerd3b8c1a2007-07-09 21:57:31 -050091#define CONFIG_BOOTP_GATEWAY
92#define CONFIG_BOOTP_HOSTNAME
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +020093#define CONFIG_BOOTP_SUBNETMASK
wdenk3d3befa2004-03-14 15:06:13 +000094
wdenk3d3befa2004-03-14 15:06:13 +000095#define CONFIG_BOOTDELAY 2
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +020096#define CONFIG_BOOTARGS "root=/dev/nfs mem=128M ip=dhcp "\
Linus Walleij7d7c4972013-11-27 10:33:49 +010097 "netdev=25,0,0xf1010000,0xf1010010,eth0 "\
98 "console=ttyAMA0,38400n1"
wdenk3d3befa2004-03-14 15:06:13 +000099
100/*
101 * Static configuration when assigning fixed address
102 */
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +0200103#define CONFIG_BOOTFILE "/tftpboot/uImage" /* file to load */
wdenk3d3befa2004-03-14 15:06:13 +0000104
105/*
106 * Miscellaneous configurable options
107 */
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +0200108#define CONFIG_SYS_LONGHELP /* undef to save memory */
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +0200109#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
Jean-Christophe PLAGNIOL-VILLARDd6e8ed82009-05-02 11:53:49 +0200110/* Monitor Command Prompt */
111#ifdef CONFIG_ARCH_VERSATILE_AB
112# define CONFIG_SYS_PROMPT "VersatileAB # "
113#else
114# define CONFIG_SYS_PROMPT "VersatilePB # "
115#endif
wdenk3d3befa2004-03-14 15:06:13 +0000116/* Print Buffer Size */
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +0200117#define CONFIG_SYS_PBSIZE \
118 (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
119#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
120#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
wdenk3d3befa2004-03-14 15:06:13 +0000121
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200122#define CONFIG_SYS_LOAD_ADDR 0x7fc0 /* default load address */
wdenk3d3befa2004-03-14 15:06:13 +0000123
124/*-----------------------------------------------------------------------
wdenk3d3befa2004-03-14 15:06:13 +0000125 * Physical Memory Map
126 */
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +0200127#define CONFIG_NR_DRAM_BANKS 1 /* we have 1 bank of DRAM */
128#define PHYS_SDRAM_1 0x00000000 /* SDRAM Bank #1 */
129#define PHYS_SDRAM_1_SIZE 0x08000000 /* 128 MB */
Jean-Christophe PLAGNIOL-VILLARD98692272009-05-02 11:53:50 +0200130#define PHYS_FLASH_SIZE 0x04000000 /* 64MB */
wdenk3d3befa2004-03-14 15:06:13 +0000131
Stefano Babicd3882982011-06-24 03:04:38 +0000132#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
133#define CONFIG_SYS_INIT_RAM_ADDR 0x00800000
134#define CONFIG_SYS_INIT_RAM_SIZE 0x000FFFFF
135#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - \
136 GENERATED_GBL_DATA_SIZE)
137#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
138 CONFIG_SYS_GBL_DATA_OFFSET)
139
140#define CONFIG_BOARD_EARLY_INIT_F
141
wdenk3d3befa2004-03-14 15:06:13 +0000142/*-----------------------------------------------------------------------
143 * FLASH and environment organization
144 */
Stefano Babicd3882982011-06-24 03:04:38 +0000145#ifdef CONFIG_ARCH_VERSATILE_QEMU
146#define CONFIG_SYS_TEXT_BASE 0x10000
147#define CONFIG_SYS_NO_FLASH
148#define CONFIG_ENV_IS_NOWHERE
149#define CONFIG_SYS_MONITOR_LEN 0x80000
150#else
151#define CONFIG_SYS_TEXT_BASE 0x01000000
Jean-Christophe PLAGNIOL-VILLARD98692272009-05-02 11:53:50 +0200152/*
153 * Use the CFI flash driver for ease of use
154 */
155#define CONFIG_SYS_FLASH_CFI
156#define CONFIG_FLASH_CFI_DRIVER
157#define CONFIG_ENV_IS_IN_FLASH 1
158/*
159 * System control register
160 */
Jean-Christophe PLAGNIOL-VILLARD2600b852009-06-20 11:02:17 +0200161#define VERSATILE_SYS_BASE 0x10000000
162#define VERSATILE_SYS_FLASH_OFFSET 0x4C
163#define VERSATILE_FLASHCTRL \
164 (VERSATILE_SYS_BASE + VERSATILE_SYS_FLASH_OFFSET)
165/* Enable writing to flash */
166#define VERSATILE_FLASHPROG_FLVPPEN (1 << 0)
wdenkd407bf52004-10-11 22:51:13 +0000167
wdenk3d3befa2004-03-14 15:06:13 +0000168/* timeout values are in ticks */
Jean-Christophe PLAGNIOL-VILLARD98692272009-05-02 11:53:50 +0200169#define CONFIG_SYS_FLASH_ERASE_TOUT (2 * CONFIG_SYS_HZ) /* Erase Timeout */
170#define CONFIG_SYS_FLASH_WRITE_TOUT (2 * CONFIG_SYS_HZ) /* Write Timeout */
wdenk3d3befa2004-03-14 15:06:13 +0000171
Jean-Christophe PLAGNIOL-VILLARD98692272009-05-02 11:53:50 +0200172/*
173 * Note that CONFIG_SYS_MAX_FLASH_SECT allows for a parameter block
174 * i.e.
175 * the bottom "sector" (bottom boot), or top "sector"
176 * (top boot), is a seperate erase region divided into
177 * 4 (equal) smaller sectors. This, notionally, allows
178 * quicker erase/rewrire of the most frequently changed
179 * area......
180 * CONFIG_SYS_MAX_FLASH_SECT is padded up to a multiple of 4
181 */
wdenk3d3befa2004-03-14 15:06:13 +0000182
Jean-Christophe PLAGNIOL-VILLARD98692272009-05-02 11:53:50 +0200183#ifdef CONFIG_ARCH_VERSATILE_AB
184#define FLASH_SECTOR_SIZE 0x00020000 /* 128 KB sectors */
185#define CONFIG_ENV_SECT_SIZE (2 * FLASH_SECTOR_SIZE)
186#define CONFIG_SYS_MAX_FLASH_SECT (520)
187#endif
wdenkd407bf52004-10-11 22:51:13 +0000188
Jean-Christophe PLAGNIOL-VILLARD98692272009-05-02 11:53:50 +0200189#ifdef CONFIG_ARCH_VERSATILE_PB /* Versatile PB is default */
190#define FLASH_SECTOR_SIZE 0x00040000 /* 256 KB sectors */
191#define CONFIG_ENV_SECT_SIZE FLASH_SECTOR_SIZE
192#define CONFIG_SYS_MAX_FLASH_SECT (260)
193#endif
194
195#define CONFIG_SYS_FLASH_BASE 0x34000000
196#define CONFIG_SYS_MAX_FLASH_BANKS 1
197
198#define CONFIG_SYS_MONITOR_LEN (4 * CONFIG_ENV_SECT_SIZE)
199
200/* The ARM Boot Monitor is shipped in the lowest sector of flash */
201
202#define FLASH_TOP (CONFIG_SYS_FLASH_BASE + PHYS_FLASH_SIZE)
Jean-Christophe PLAGNIOL-VILLARD98692272009-05-02 11:53:50 +0200203#define CONFIG_ENV_ADDR (FLASH_TOP - CONFIG_ENV_SECT_SIZE)
204#define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR - CONFIG_SYS_FLASH_BASE)
205#define CONFIG_SYS_MONITOR_BASE (CONFIG_ENV_ADDR - CONFIG_SYS_MONITOR_LEN)
206
207#define CONFIG_SYS_FLASH_PROTECTION /* The devices have real protection */
208#define CONFIG_SYS_FLASH_EMPTY_INFO /* flinfo indicates empty blocks */
209
402jagan@gmail.comde1f9ac2012-07-29 04:26:08 +0000210#define CONFIG_SYS_FLASH_USE_BUFFER_WRITE /* use buffered writes */
Stefano Babicd3882982011-06-24 03:04:38 +0000211#endif
212
Jean-Christophe PLAGNIOL-VILLARD98692272009-05-02 11:53:50 +0200213#endif /* __CONFIG_H */