blob: 22d31508eb98a380b738fdf8ad47a31ff2b8ddb9 [file] [log] [blame]
Aubrey Li10ebdd92007-03-19 01:24:52 +08001/*
2 * U-boot - Configuration file for BF537 STAMP board
3 */
4
Mike Frysinger62d2a232008-06-01 09:09:48 -04005#ifndef __CONFIG_BF537_STAMP_H__
6#define __CONFIG_BF537_STAMP_H__
Aubrey Li10ebdd92007-03-19 01:24:52 +08007
Mike Frysinger18a407c2009-04-24 17:22:40 -04008#include <asm/config-pre.h>
Mike Frysingerf0dd7922008-02-18 05:26:48 -05009
Aubrey Li10ebdd92007-03-19 01:24:52 +080010
Mike Frysinger62d2a232008-06-01 09:09:48 -040011/*
12 * Processor Settings
13 */
Mike Frysinger62d2a232008-06-01 09:09:48 -040014#define CONFIG_BFIN_BOOT_MODE BFIN_BOOT_BYPASS
Aubrey Li10ebdd92007-03-19 01:24:52 +080015
Aubrey Li10ebdd92007-03-19 01:24:52 +080016
Mike Frysinger62d2a232008-06-01 09:09:48 -040017/*
18 * Clock Settings
19 * CCLK = (CLKIN * VCO_MULT) / CCLK_DIV
20 * SCLK = (CLKIN * VCO_MULT) / SCLK_DIV
21 */
22/* CONFIG_CLKIN_HZ is any value in Hz */
23#define CONFIG_CLKIN_HZ 25000000
24/* CLKIN_HALF controls the DF bit in PLL_CTL 0 = CLKIN */
25/* 1 = CLKIN / 2 */
26#define CONFIG_CLKIN_HALF 0
27/* PLL_BYPASS controls the BYPASS bit in PLL_CTL 0 = do not bypass */
28/* 1 = bypass PLL */
29#define CONFIG_PLL_BYPASS 0
30/* VCO_MULT controls the MSEL (multiplier) bits in PLL_CTL */
31/* Values can range from 0-63 (where 0 means 64) */
Aubrey Li10ebdd92007-03-19 01:24:52 +080032#define CONFIG_VCO_MULT 20
Mike Frysinger62d2a232008-06-01 09:09:48 -040033/* CCLK_DIV controls the core clock divider */
34/* Values can be 1, 2, 4, or 8 ONLY */
Aubrey Li10ebdd92007-03-19 01:24:52 +080035#define CONFIG_CCLK_DIV 1
Mike Frysinger62d2a232008-06-01 09:09:48 -040036/* SCLK_DIV controls the system clock divider */
37/* Values can range from 1-15 */
Mike Frysinger40069e12008-12-08 16:16:11 -050038#define CONFIG_SCLK_DIV 4
Aubrey Li10ebdd92007-03-19 01:24:52 +080039
Aubrey Li10ebdd92007-03-19 01:24:52 +080040
Mike Frysinger62d2a232008-06-01 09:09:48 -040041/*
42 * Memory Settings
43 */
44#define CONFIG_MEM_ADD_WDTH 10
45#define CONFIG_MEM_SIZE 64
Aubrey Li10ebdd92007-03-19 01:24:52 +080046
Mike Frysinger62d2a232008-06-01 09:09:48 -040047#define CONFIG_EBIU_SDRRC_VAL 0x306
48#define CONFIG_EBIU_SDGCTL_VAL 0x91114d
Aubrey Li10ebdd92007-03-19 01:24:52 +080049
Mike Frysinger62d2a232008-06-01 09:09:48 -040050#define CONFIG_EBIU_AMGCTL_VAL 0xFF
51#define CONFIG_EBIU_AMBCTL0_VAL 0x7BB07BB0
52#define CONFIG_EBIU_AMBCTL1_VAL 0xFFC27BB0
Aubrey Li10ebdd92007-03-19 01:24:52 +080053
Mike Frysingere120afd2009-01-21 20:47:12 -050054#define CONFIG_SYS_MONITOR_LEN (512 * 1024)
Mike Frysinger62d2a232008-06-01 09:09:48 -040055#define CONFIG_SYS_MALLOC_LEN (384 * 1024)
56
Aubrey Li10ebdd92007-03-19 01:24:52 +080057
58/*
59 * Network Settings
60 */
Mike Frysinger62d2a232008-06-01 09:09:48 -040061#ifndef __ADSPBF534__
62#define ADI_CMDS_NETWORK 1
63#define CONFIG_BFIN_MAC
64#define CONFIG_NETCONSOLE 1
65#define CONFIG_NET_MULTI 1
Aubrey Li10ebdd92007-03-19 01:24:52 +080066#endif
Mike Frysinger62d2a232008-06-01 09:09:48 -040067#define CONFIG_HOSTNAME bf537-stamp
Aubrey Li10ebdd92007-03-19 01:24:52 +080068/* Uncomment next line to use fixed MAC address */
69/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
Aubrey Li10ebdd92007-03-19 01:24:52 +080070
Aubrey Li10ebdd92007-03-19 01:24:52 +080071
Jon Loeliger8262ada2007-07-04 22:31:49 -050072/*
Mike Frysinger62d2a232008-06-01 09:09:48 -040073 * Flash Settings
Jon Loeliger5c4ddae2007-07-10 10:12:10 -050074 */
Mike Frysinger62d2a232008-06-01 09:09:48 -040075#define CONFIG_FLASH_CFI_DRIVER
76#define CONFIG_SYS_FLASH_BASE 0x20000000
77#define CONFIG_SYS_FLASH_CFI
78#define CONFIG_SYS_FLASH_PROTECTION
79#define CONFIG_SYS_MAX_FLASH_BANKS 1
80/* some have 67 sectors (M29W320DB), but newer have 71 (M29W320EB) */
81#define CONFIG_SYS_MAX_FLASH_SECT 71
Jon Loeliger5c4ddae2007-07-10 10:12:10 -050082
83
84/*
Mike Frysinger62d2a232008-06-01 09:09:48 -040085 * SPI Settings
Jon Loeliger8262ada2007-07-04 22:31:49 -050086 */
Mike Frysinger62d2a232008-06-01 09:09:48 -040087#define CONFIG_BFIN_SPI
88#define CONFIG_ENV_SPI_MAX_HZ 30000000
Mike Frysinger9a4406462009-06-14 22:29:35 -040089#define CONFIG_SF_DEFAULT_SPEED 30000000
Mike Frysinger62d2a232008-06-01 09:09:48 -040090#define CONFIG_SPI_FLASH
Mike Frysingercf01ec92010-09-19 16:26:55 -040091#define CONFIG_SPI_FLASH_ALL
Jon Loeliger8262ada2007-07-04 22:31:49 -050092
Jon Loeliger8262ada2007-07-04 22:31:49 -050093
Mike Frysinger62d2a232008-06-01 09:09:48 -040094/*
95 * Env Storage Settings
96 */
97#if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_SPI_MASTER)
98#define CONFIG_ENV_IS_IN_SPI_FLASH
Vivi Li535ec1f2009-06-12 10:53:22 +000099#define CONFIG_ENV_OFFSET 0x10000
Mike Frysinger62d2a232008-06-01 09:09:48 -0400100#define CONFIG_ENV_SIZE 0x2000
Vivi Li535ec1f2009-06-12 10:53:22 +0000101#define CONFIG_ENV_SECT_SIZE 0x10000
Aubrey Li10ebdd92007-03-19 01:24:52 +0800102#else
Mike Frysinger62d2a232008-06-01 09:09:48 -0400103#define CONFIG_ENV_IS_IN_FLASH
104#define CONFIG_ENV_OFFSET 0x4000
105#define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET)
106#define CONFIG_ENV_SIZE 0x2000
107#define CONFIG_ENV_SECT_SIZE 0x2000
Aubrey Li10ebdd92007-03-19 01:24:52 +0800108#endif
Mike Frysinger62d2a232008-06-01 09:09:48 -0400109#if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_BYPASS)
110#define ENV_IS_EMBEDDED
Aubrey Li10ebdd92007-03-19 01:24:52 +0800111#else
Mike Frysinger45b57bd2009-07-21 22:17:36 -0400112#define CONFIG_ENV_IS_EMBEDDED_IN_LDR
Aubrey Li10ebdd92007-03-19 01:24:52 +0800113#endif
Mike Frysinger37f48702009-06-14 06:29:07 -0400114#ifdef ENV_IS_EMBEDDED
115/* WARNING - the following is hand-optimized to fit within
116 * the sector before the environment sector. If it throws
117 * an error during compilation remove an object here to get
118 * it linked after the configuration sector.
119 */
120# define LDS_BOARD_TEXT \
Peter Tyser12e57652010-04-12 22:28:13 -0500121 arch/blackfin/cpu/traps.o (.text .text.*); \
122 arch/blackfin/cpu/interrupt.o (.text .text.*); \
123 arch/blackfin/cpu/serial.o (.text .text.*); \
Mike Frysinger37f48702009-06-14 06:29:07 -0400124 common/dlmalloc.o (.text .text.*); \
Peter Tyser685b7f52010-04-12 22:28:05 -0500125 lib/crc32.o (.text .text.*); \
Mike Frysinger37f48702009-06-14 06:29:07 -0400126 . = DEFINED(env_offset) ? env_offset : .; \
127 common/env_embedded.o (.text .text.*);
128#endif
Aubrey Li10ebdd92007-03-19 01:24:52 +0800129
Aubrey Li10ebdd92007-03-19 01:24:52 +0800130
Mike Frysinger62d2a232008-06-01 09:09:48 -0400131/*
132 * I2C Settings
133 */
134#define CONFIG_BFIN_TWI_I2C 1
135#define CONFIG_HARD_I2C 1
Aubrey Li10ebdd92007-03-19 01:24:52 +0800136
Aubrey Li10ebdd92007-03-19 01:24:52 +0800137
138/*
Mike Frysinger62d2a232008-06-01 09:09:48 -0400139 * SPI_MMC Settings
Aubrey Li10ebdd92007-03-19 01:24:52 +0800140 */
Mike Frysinger62d2a232008-06-01 09:09:48 -0400141#define CONFIG_MMC
Mike Frysingere9214392009-10-15 14:55:21 -0400142#define CONFIG_SPI_MMC
Aubrey Li10ebdd92007-03-19 01:24:52 +0800143
Aubrey Li10ebdd92007-03-19 01:24:52 +0800144
145/*
Mike Frysinger62d2a232008-06-01 09:09:48 -0400146 * NAND Settings
Aubrey Li10ebdd92007-03-19 01:24:52 +0800147 */
Mike Frysingerc0e7c7a2009-05-25 22:42:28 -0400148/* #define CONFIG_NAND_PLAT */
149#define CONFIG_SYS_NAND_BASE 0x20212000
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200150#define CONFIG_SYS_MAX_NAND_DEVICE 1
Aubrey Li10ebdd92007-03-19 01:24:52 +0800151
Mike Frysingerc0e7c7a2009-05-25 22:42:28 -0400152#define BFIN_NAND_CLE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 2))
153#define BFIN_NAND_ALE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 1))
Mike Frysingerc0e7c7a2009-05-25 22:42:28 -0400154#define BFIN_NAND_WRITE(addr, cmd) \
Mike Frysinger62d2a232008-06-01 09:09:48 -0400155 do { \
Mike Frysingerc0e7c7a2009-05-25 22:42:28 -0400156 bfin_write8(addr, cmd); \
157 SSYNC(); \
Aubrey Li10ebdd92007-03-19 01:24:52 +0800158 } while (0)
159
Mike Frysingerc0e7c7a2009-05-25 22:42:28 -0400160#define NAND_PLAT_WRITE_CMD(chip, cmd) BFIN_NAND_WRITE(BFIN_NAND_CLE(chip), cmd)
161#define NAND_PLAT_WRITE_ADR(chip, cmd) BFIN_NAND_WRITE(BFIN_NAND_ALE(chip), cmd)
Mike Frysinger0892b0c2010-07-05 04:55:05 -0400162#define NAND_PLAT_GPIO_DEV_READY GPIO_PF3
Aubrey Li10ebdd92007-03-19 01:24:52 +0800163
Aubrey Li10ebdd92007-03-19 01:24:52 +0800164
165/*
Mike Frysinger62d2a232008-06-01 09:09:48 -0400166 * CF-CARD IDE-HDD Support
Aubrey Li10ebdd92007-03-19 01:24:52 +0800167 */
Michael Hennerichccb0d4e2009-06-18 09:12:50 +0000168
169/*
170 * Add CF flash card support in TRUE-IDE Mode (CF-IDE-NAND Card)
171 * Strange address mapping Blackfin A13 connects to CF_A0
172 */
173
174/* #define CONFIG_BFIN_TRUE_IDE */
175
176/*
177 * Add CF flash card support in Common Memory Mode (CF-IDE-NAND Card)
178 * This should be the preferred mode
179 */
180
181/* #define CONFIG_BFIN_CF_IDE */
182
183/*
184 * Add IDE Disk Drive (HDD) support
185 * See example interface here:
186 * http://docs.blackfin.uclinux.org/doku.php?id=linux-kernel:drivers:ide-blackfin
187 */
188
189/* #define CONFIG_BFIN_HDD_IDE */
Aubrey Li10ebdd92007-03-19 01:24:52 +0800190
Mike Frysinger62d2a232008-06-01 09:09:48 -0400191#if defined(CONFIG_BFIN_CF_IDE) || \
192 defined(CONFIG_BFIN_HDD_IDE) || \
193 defined(CONFIG_BFIN_TRUE_IDE)
194# define CONFIG_BFIN_IDE 1
195# define CONFIG_CMD_IDE
196#endif
Aubrey Li10ebdd92007-03-19 01:24:52 +0800197
Aubrey Li10ebdd92007-03-19 01:24:52 +0800198#if defined(CONFIG_BFIN_IDE)
199
200#define CONFIG_DOS_PARTITION 1
201/*
202 * IDE/ATA stuff
203 */
204#undef CONFIG_IDE_8xx_DIRECT /* no pcmcia interface required */
205#undef CONFIG_IDE_LED /* no led for ide supported */
206#undef CONFIG_IDE_RESET /* no reset for ide supported */
207
Mike Frysinger62d2a232008-06-01 09:09:48 -0400208#define CONFIG_SYS_IDE_MAXBUS 1
209#define CONFIG_SYS_IDE_MAXDEVICE (CONFIG_SYS_IDE_MAXBUS * 1)
Aubrey Li10ebdd92007-03-19 01:24:52 +0800210
Mike Frysinger62d2a232008-06-01 09:09:48 -0400211#undef CONFIG_EBIU_AMBCTL1_VAL
212#define CONFIG_EBIU_AMBCTL1_VAL 0xFFC3FFC3
Aubrey Li10ebdd92007-03-19 01:24:52 +0800213
214#define CONFIG_CF_ATASEL_DIS 0x20311800
215#define CONFIG_CF_ATASEL_ENA 0x20311802
216
217#if defined(CONFIG_BFIN_TRUE_IDE)
218/*
219 * Note that these settings aren't for the most part used in include/ata.h
220 * when all of the ATA registers are setup
221 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200222#define CONFIG_SYS_ATA_BASE_ADDR 0x2031C000
223#define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
Mike Frysinger62d2a232008-06-01 09:09:48 -0400224#define CONFIG_SYS_ATA_DATA_OFFSET 0x0020 /* data I/O */
225#define CONFIG_SYS_ATA_REG_OFFSET 0x0020 /* normal register accesses */
226#define CONFIG_SYS_ATA_ALT_OFFSET 0x001C /* alternate registers */
Michael Hennerichccb0d4e2009-06-18 09:12:50 +0000227#define CONFIG_SYS_ATA_STRIDE 2 /* CF.A0 --> Blackfin.A13 */
Aubrey Li10ebdd92007-03-19 01:24:52 +0800228
Mike Frysinger62d2a232008-06-01 09:09:48 -0400229#elif defined(CONFIG_BFIN_CF_IDE)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200230#define CONFIG_SYS_ATA_BASE_ADDR 0x20211800
231#define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
Mike Frysinger62d2a232008-06-01 09:09:48 -0400232#define CONFIG_SYS_ATA_DATA_OFFSET 0x0000 /* data I/O */
233#define CONFIG_SYS_ATA_REG_OFFSET 0x0000 /* normal register accesses */
234#define CONFIG_SYS_ATA_ALT_OFFSET 0x000E /* alternate registers */
Michael Hennerichccb0d4e2009-06-18 09:12:50 +0000235#define CONFIG_SYS_ATA_STRIDE 1 /* CF_A0=0, with /CE1 /CE2 odd/even byte selects */
Aubrey Li10ebdd92007-03-19 01:24:52 +0800236
Mike Frysinger62d2a232008-06-01 09:09:48 -0400237#elif defined(CONFIG_BFIN_HDD_IDE)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200238#define CONFIG_SYS_ATA_BASE_ADDR 0x20314000
239#define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
Mike Frysinger62d2a232008-06-01 09:09:48 -0400240#define CONFIG_SYS_ATA_DATA_OFFSET 0x0020 /* data I/O */
241#define CONFIG_SYS_ATA_REG_OFFSET 0x0020 /* normal register accesses */
242#define CONFIG_SYS_ATA_ALT_OFFSET 0x001C /* alternate registers */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200243#define CONFIG_SYS_ATA_STRIDE 2 /* CF.A0 --> Blackfin.A1 */
Aubrey Li10ebdd92007-03-19 01:24:52 +0800244#undef CONFIG_SCLK_DIV
245#define CONFIG_SCLK_DIV 8
Mike Frysinger62d2a232008-06-01 09:09:48 -0400246#endif
247
248#endif
249
250
251/*
252 * Misc Settings
253 */
254#define CONFIG_MISC_INIT_R
255#define CONFIG_RTC_BFIN
256#define CONFIG_UART_CONSOLE 0
Aubrey Li10ebdd92007-03-19 01:24:52 +0800257
Mike Frysinger62d2a232008-06-01 09:09:48 -0400258/* Define if want to do post memory test */
259#undef CONFIG_POST
260#ifdef CONFIG_POST
261#define FLASH_START_POST_BLOCK 11 /* Should > = 11 */
262#define FLASH_END_POST_BLOCK 71 /* Should < = 71 */
263#endif
Michael Zaidmanf969a682010-09-20 08:51:53 +0200264#define CONFIG_SYS_POST_WORD_ADDR 0xFF903FFC
Mike Frysinger62d2a232008-06-01 09:09:48 -0400265
Mike Frysingerafd0fbf2010-01-21 23:29:18 -0500266/* These are for board tests */
267#if 0
268#define CONFIG_BOOTCOMMAND "bootldr 0x203f0100"
269#define CONFIG_AUTOBOOT_KEYED
270#define CONFIG_AUTOBOOT_PROMPT \
271 "autoboot in %d seconds: press space to stop\n", bootdelay
272#define CONFIG_AUTOBOOT_STOP_STR " "
273#endif
274
Mike Frysinger62d2a232008-06-01 09:09:48 -0400275
276/*
277 * Pull in common ADI header for remaining command/environment setup
278 */
279#include <configs/bfin_adi_common.h>
Aubrey Li10ebdd92007-03-19 01:24:52 +0800280
Aubrey Li10ebdd92007-03-19 01:24:52 +0800281#endif