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