]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/bf537-stamp.h
Blackfin: move CONFIG_BFIN_CPU back to board config.h
[people/ms/u-boot.git] / include / configs / bf537-stamp.h
CommitLineData
26bf7dec
AL
1/*
2 * U-boot - Configuration file for BF537 STAMP board
3 */
4
cf6f469e
MF
5#ifndef __CONFIG_BF537_STAMP_H__
6#define __CONFIG_BF537_STAMP_H__
26bf7dec 7
f348ab85 8#include <asm/config-pre.h>
f7ce12cb 9
26bf7dec 10
cf6f469e
MF
11/*
12 * Processor Settings
13 */
fbcf8e8c 14#define CONFIG_BFIN_CPU bf537-0.2
cf6f469e 15#define CONFIG_BFIN_BOOT_MODE BFIN_BOOT_BYPASS
26bf7dec 16
26bf7dec 17
cf6f469e
MF
18/*
19 * Clock Settings
20 * CCLK = (CLKIN * VCO_MULT) / CCLK_DIV
21 * SCLK = (CLKIN * VCO_MULT) / SCLK_DIV
22 */
23/* CONFIG_CLKIN_HZ is any value in Hz */
24#define CONFIG_CLKIN_HZ 25000000
25/* CLKIN_HALF controls the DF bit in PLL_CTL 0 = CLKIN */
26/* 1 = CLKIN / 2 */
27#define CONFIG_CLKIN_HALF 0
28/* PLL_BYPASS controls the BYPASS bit in PLL_CTL 0 = do not bypass */
29/* 1 = bypass PLL */
30#define CONFIG_PLL_BYPASS 0
31/* VCO_MULT controls the MSEL (multiplier) bits in PLL_CTL */
32/* Values can range from 0-63 (where 0 means 64) */
26bf7dec 33#define CONFIG_VCO_MULT 20
cf6f469e
MF
34/* CCLK_DIV controls the core clock divider */
35/* Values can be 1, 2, 4, or 8 ONLY */
26bf7dec 36#define CONFIG_CCLK_DIV 1
cf6f469e
MF
37/* SCLK_DIV controls the system clock divider */
38/* Values can range from 1-15 */
f82caacc 39#define CONFIG_SCLK_DIV 4
26bf7dec 40
26bf7dec
AL
41
42/*
cf6f469e 43 * Memory Settings
26bf7dec 44 */
cf6f469e
MF
45#define CONFIG_MEM_ADD_WDTH 10
46#define CONFIG_MEM_SIZE 64
47
48#define CONFIG_EBIU_SDRRC_VAL 0x306
49#define CONFIG_EBIU_SDGCTL_VAL 0x91114d
50
51#define CONFIG_EBIU_AMGCTL_VAL 0xFF
52#define CONFIG_EBIU_AMBCTL0_VAL 0x7BB07BB0
53#define CONFIG_EBIU_AMBCTL1_VAL 0xFFC27BB0
54
6f5fd56f 55#define CONFIG_SYS_MONITOR_LEN (512 * 1024)
cf6f469e
MF
56#define CONFIG_SYS_MALLOC_LEN (384 * 1024)
57
26bf7dec
AL
58
59/*
60 * Network Settings
61 */
cf6f469e
MF
62#ifndef __ADSPBF534__
63#define ADI_CMDS_NETWORK 1
64#define CONFIG_BFIN_MAC
65#define CONFIG_NETCONSOLE 1
66#define CONFIG_NET_MULTI 1
26bf7dec 67#endif
cf6f469e 68#define CONFIG_HOSTNAME bf537-stamp
26bf7dec
AL
69/* Uncomment next line to use fixed MAC address */
70/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
26bf7dec 71
26bf7dec 72
079a136c 73/*
cf6f469e 74 * Flash Settings
079a136c 75 */
cf6f469e
MF
76#define CONFIG_FLASH_CFI_DRIVER
77#define CONFIG_SYS_FLASH_BASE 0x20000000
78#define CONFIG_SYS_FLASH_CFI
79#define CONFIG_SYS_FLASH_PROTECTION
80#define CONFIG_SYS_MAX_FLASH_BANKS 1
81/* some have 67 sectors (M29W320DB), but newer have 71 (M29W320EB) */
82#define CONFIG_SYS_MAX_FLASH_SECT 71
079a136c
JL
83
84
ba2351f9 85/*
cf6f469e 86 * SPI Settings
ba2351f9 87 */
cf6f469e
MF
88#define CONFIG_BFIN_SPI
89#define CONFIG_ENV_SPI_MAX_HZ 30000000
afac8b07 90#define CONFIG_SF_DEFAULT_SPEED 30000000
cf6f469e 91#define CONFIG_SPI_FLASH
f453220c 92#define CONFIG_SPI_FLASH_ALL
ba2351f9 93
ba2351f9 94
cf6f469e
MF
95/*
96 * Env Storage Settings
97 */
98#if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_SPI_MASTER)
99#define CONFIG_ENV_IS_IN_SPI_FLASH
bc43a8d8 100#define CONFIG_ENV_OFFSET 0x10000
cf6f469e 101#define CONFIG_ENV_SIZE 0x2000
bc43a8d8 102#define CONFIG_ENV_SECT_SIZE 0x10000
26bf7dec 103#else
cf6f469e
MF
104#define CONFIG_ENV_IS_IN_FLASH
105#define CONFIG_ENV_OFFSET 0x4000
106#define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET)
107#define CONFIG_ENV_SIZE 0x2000
108#define CONFIG_ENV_SECT_SIZE 0x2000
26bf7dec 109#endif
cf6f469e
MF
110#if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_BYPASS)
111#define ENV_IS_EMBEDDED
26bf7dec 112#else
76d82187 113#define CONFIG_ENV_IS_EMBEDDED_IN_LDR
26bf7dec 114#endif
9ff67e5e
MF
115#ifdef ENV_IS_EMBEDDED
116/* WARNING - the following is hand-optimized to fit within
117 * the sector before the environment sector. If it throws
118 * an error during compilation remove an object here to get
119 * it linked after the configuration sector.
120 */
121# define LDS_BOARD_TEXT \
c70e7ddb
MF
122 arch/blackfin/lib/libblackfin.o (.text*); \
123 arch/blackfin/cpu/libblackfin.o (.text*); \
9ff67e5e 124 . = DEFINED(env_offset) ? env_offset : .; \
c70e7ddb 125 common/env_embedded.o (.text*);
9ff67e5e 126#endif
6d0f6bcf 127
26bf7dec 128
cf6f469e
MF
129/*
130 * I2C Settings
131 */
132#define CONFIG_BFIN_TWI_I2C 1
133#define CONFIG_HARD_I2C 1
26bf7dec 134
26bf7dec
AL
135
136/*
cf6f469e 137 * SPI_MMC Settings
26bf7dec 138 */
cf6f469e 139#define CONFIG_MMC
ac41c7a0 140#define CONFIG_SPI_MMC
26bf7dec 141
26bf7dec
AL
142
143/*
cf6f469e 144 * NAND Settings
26bf7dec 145 */
cd84423a
MF
146/* #define CONFIG_NAND_PLAT */
147#define CONFIG_SYS_NAND_BASE 0x20212000
6d0f6bcf 148#define CONFIG_SYS_MAX_NAND_DEVICE 1
cd84423a
MF
149
150#define BFIN_NAND_CLE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 2))
151#define BFIN_NAND_ALE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 1))
cd84423a 152#define BFIN_NAND_WRITE(addr, cmd) \
cf6f469e 153 do { \
cd84423a
MF
154 bfin_write8(addr, cmd); \
155 SSYNC(); \
26bf7dec
AL
156 } while (0)
157
cd84423a
MF
158#define NAND_PLAT_WRITE_CMD(chip, cmd) BFIN_NAND_WRITE(BFIN_NAND_CLE(chip), cmd)
159#define NAND_PLAT_WRITE_ADR(chip, cmd) BFIN_NAND_WRITE(BFIN_NAND_ALE(chip), cmd)
67ceefa7 160#define NAND_PLAT_GPIO_DEV_READY GPIO_PF3
26bf7dec 161
26bf7dec
AL
162
163/*
cf6f469e 164 * CF-CARD IDE-HDD Support
26bf7dec 165 */
aa7b248a
MH
166
167/*
168 * Add CF flash card support in TRUE-IDE Mode (CF-IDE-NAND Card)
169 * Strange address mapping Blackfin A13 connects to CF_A0
170 */
171
172/* #define CONFIG_BFIN_TRUE_IDE */
173
174/*
175 * Add CF flash card support in Common Memory Mode (CF-IDE-NAND Card)
176 * This should be the preferred mode
177 */
178
179/* #define CONFIG_BFIN_CF_IDE */
180
181/*
182 * Add IDE Disk Drive (HDD) support
183 * See example interface here:
184 * http://docs.blackfin.uclinux.org/doku.php?id=linux-kernel:drivers:ide-blackfin
185 */
186
187/* #define CONFIG_BFIN_HDD_IDE */
26bf7dec 188
cf6f469e
MF
189#if defined(CONFIG_BFIN_CF_IDE) || \
190 defined(CONFIG_BFIN_HDD_IDE) || \
191 defined(CONFIG_BFIN_TRUE_IDE)
192# define CONFIG_BFIN_IDE 1
193# define CONFIG_CMD_IDE
194#endif
26bf7dec 195
26bf7dec
AL
196#if defined(CONFIG_BFIN_IDE)
197
198#define CONFIG_DOS_PARTITION 1
199/*
200 * IDE/ATA stuff
201 */
202#undef CONFIG_IDE_8xx_DIRECT /* no pcmcia interface required */
203#undef CONFIG_IDE_LED /* no led for ide supported */
204#undef CONFIG_IDE_RESET /* no reset for ide supported */
205
cf6f469e
MF
206#define CONFIG_SYS_IDE_MAXBUS 1
207#define CONFIG_SYS_IDE_MAXDEVICE (CONFIG_SYS_IDE_MAXBUS * 1)
26bf7dec 208
cf6f469e
MF
209#undef CONFIG_EBIU_AMBCTL1_VAL
210#define CONFIG_EBIU_AMBCTL1_VAL 0xFFC3FFC3
26bf7dec
AL
211
212#define CONFIG_CF_ATASEL_DIS 0x20311800
213#define CONFIG_CF_ATASEL_ENA 0x20311802
214
215#if defined(CONFIG_BFIN_TRUE_IDE)
216/*
217 * Note that these settings aren't for the most part used in include/ata.h
218 * when all of the ATA registers are setup
219 */
6d0f6bcf
JCPV
220#define CONFIG_SYS_ATA_BASE_ADDR 0x2031C000
221#define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
cf6f469e
MF
222#define CONFIG_SYS_ATA_DATA_OFFSET 0x0020 /* data I/O */
223#define CONFIG_SYS_ATA_REG_OFFSET 0x0020 /* normal register accesses */
224#define CONFIG_SYS_ATA_ALT_OFFSET 0x001C /* alternate registers */
aa7b248a 225#define CONFIG_SYS_ATA_STRIDE 2 /* CF.A0 --> Blackfin.A13 */
26bf7dec 226
cf6f469e 227#elif defined(CONFIG_BFIN_CF_IDE)
6d0f6bcf
JCPV
228#define CONFIG_SYS_ATA_BASE_ADDR 0x20211800
229#define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
cf6f469e
MF
230#define CONFIG_SYS_ATA_DATA_OFFSET 0x0000 /* data I/O */
231#define CONFIG_SYS_ATA_REG_OFFSET 0x0000 /* normal register accesses */
232#define CONFIG_SYS_ATA_ALT_OFFSET 0x000E /* alternate registers */
aa7b248a 233#define CONFIG_SYS_ATA_STRIDE 1 /* CF_A0=0, with /CE1 /CE2 odd/even byte selects */
26bf7dec 234
cf6f469e 235#elif defined(CONFIG_BFIN_HDD_IDE)
6d0f6bcf
JCPV
236#define CONFIG_SYS_ATA_BASE_ADDR 0x20314000
237#define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
cf6f469e
MF
238#define CONFIG_SYS_ATA_DATA_OFFSET 0x0020 /* data I/O */
239#define CONFIG_SYS_ATA_REG_OFFSET 0x0020 /* normal register accesses */
240#define CONFIG_SYS_ATA_ALT_OFFSET 0x001C /* alternate registers */
6d0f6bcf 241#define CONFIG_SYS_ATA_STRIDE 2 /* CF.A0 --> Blackfin.A1 */
26bf7dec
AL
242#undef CONFIG_SCLK_DIV
243#define CONFIG_SCLK_DIV 8
cf6f469e
MF
244#endif
245
246#endif
26bf7dec 247
cf6f469e
MF
248
249/*
250 * Misc Settings
251 */
252#define CONFIG_MISC_INIT_R
253#define CONFIG_RTC_BFIN
254#define CONFIG_UART_CONSOLE 0
255
cf6f469e
MF
256/* Define if want to do post memory test */
257#undef CONFIG_POST
258#ifdef CONFIG_POST
259#define FLASH_START_POST_BLOCK 11 /* Should > = 11 */
260#define FLASH_END_POST_BLOCK 71 /* Should < = 71 */
261#endif
800eb096 262#define CONFIG_SYS_POST_WORD_ADDR 0xFF903FFC
cf6f469e 263
216818c1
MF
264/* These are for board tests */
265#if 0
266#define CONFIG_BOOTCOMMAND "bootldr 0x203f0100"
267#define CONFIG_AUTOBOOT_KEYED
268#define CONFIG_AUTOBOOT_PROMPT \
269 "autoboot in %d seconds: press space to stop\n", bootdelay
270#define CONFIG_AUTOBOOT_STOP_STR " "
271#endif
272
cf6f469e
MF
273
274/*
275 * Pull in common ADI header for remaining command/environment setup
276 */
277#include <configs/bfin_adi_common.h>
26bf7dec
AL
278
279#endif