2 * U-Boot - Configuration file for BF537 STAMP board
5 #ifndef __CONFIG_BF537_STAMP_H__
6 #define __CONFIG_BF537_STAMP_H__
8 #include <asm/config-pre.h>
13 #define CONFIG_BFIN_CPU bf537-0.2
14 #define CONFIG_BFIN_BOOT_MODE BFIN_BOOT_BYPASS
18 * CCLK = (CLKIN * VCO_MULT) / CCLK_DIV
19 * SCLK = (CLKIN * VCO_MULT) / SCLK_DIV
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 */
25 #define CONFIG_CLKIN_HALF 0
26 /* PLL_BYPASS controls the BYPASS bit in PLL_CTL 0 = do not bypass */
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) */
31 #define CONFIG_VCO_MULT 20
32 /* CCLK_DIV controls the core clock divider */
33 /* Values can be 1, 2, 4, or 8 ONLY */
34 #define CONFIG_CCLK_DIV 1
35 /* SCLK_DIV controls the system clock divider */
36 /* Values can range from 1-15 */
37 #define CONFIG_SCLK_DIV 4
42 #define CONFIG_MEM_ADD_WDTH 10
43 #define CONFIG_MEM_SIZE 64
45 #define CONFIG_EBIU_SDRRC_VAL 0x306
46 #define CONFIG_EBIU_SDGCTL_VAL 0x91114d
48 #define CONFIG_EBIU_AMGCTL_VAL 0xFF
49 #define CONFIG_EBIU_AMBCTL0_VAL 0x7BB07BB0
50 #define CONFIG_EBIU_AMBCTL1_VAL 0xFFC27BB0
52 #define CONFIG_SYS_MONITOR_LEN (768 * 1024)
53 #define CONFIG_SYS_MALLOC_LEN (384 * 1024)
59 #define ADI_CMDS_NETWORK 1
60 #define CONFIG_BFIN_MAC
61 #define CONFIG_NETCONSOLE 1
63 #define CONFIG_HOSTNAME bf537-stamp
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
79 #define CONFIG_BFIN_SPI
80 #define CONFIG_ENV_SPI_MAX_HZ 30000000
81 #define CONFIG_SF_DEFAULT_SPEED 30000000
82 #define CONFIG_SPI_FLASH_ALL
85 * Env Storage Settings
87 #if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_SPI_MASTER)
88 #define CONFIG_ENV_IS_IN_SPI_FLASH
89 #define CONFIG_ENV_OFFSET 0x10000
90 #define CONFIG_ENV_SIZE 0x2000
91 #define CONFIG_ENV_SECT_SIZE 0x10000
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
99 #if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_BYPASS)
100 #define ENV_IS_EMBEDDED
102 #define CONFIG_ENV_IS_EMBEDDED_IN_LDR
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.
110 # define LDS_BOARD_TEXT \
111 arch/blackfin/lib/built-in.o (.text*); \
112 arch/blackfin/cpu/built-in.o (.text*); \
113 . = DEFINED(env_offset) ? env_offset : .; \
114 common/env_embedded.o (.text*);
120 #define CONFIG_SYS_I2C
121 #define CONFIG_SYS_I2C_ADI
126 #define CONFIG_MMC_SPI
127 #ifdef CONFIG_MMC_SPI
129 #define CONFIG_GENERIC_MMC
135 /* #define CONFIG_NAND_PLAT */
136 #ifdef CONFIG_NAND_PLAT
137 #define CONFIG_SYS_NAND_BASE 0x20212000
138 #define CONFIG_SYS_MAX_NAND_DEVICE 1
140 #define BFIN_NAND_CLE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 2))
141 #define BFIN_NAND_ALE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 1))
142 #define BFIN_NAND_WRITE(addr, cmd) \
144 bfin_write8(addr, cmd); \
148 #define NAND_PLAT_WRITE_CMD(chip, cmd) BFIN_NAND_WRITE(BFIN_NAND_CLE(chip), cmd)
149 #define NAND_PLAT_WRITE_ADR(chip, cmd) BFIN_NAND_WRITE(BFIN_NAND_ALE(chip), cmd)
150 #define NAND_PLAT_GPIO_DEV_READY GPIO_PF3
151 #endif /* CONFIG_NAND_PLAT */
154 * CF-CARD IDE-HDD Support
158 * Add CF flash card support in TRUE-IDE Mode (CF-IDE-NAND Card)
159 * Strange address mapping Blackfin A13 connects to CF_A0
162 /* #define CONFIG_BFIN_TRUE_IDE */
165 * Add CF flash card support in Common Memory Mode (CF-IDE-NAND Card)
166 * This should be the preferred mode
169 /* #define CONFIG_BFIN_CF_IDE */
172 * Add IDE Disk Drive (HDD) support
173 * See example interface here:
174 * http://docs.blackfin.uclinux.org/doku.php?id=linux-kernel:drivers:ide-blackfin
177 /* #define CONFIG_BFIN_HDD_IDE */
179 #if defined(CONFIG_BFIN_CF_IDE) || \
180 defined(CONFIG_BFIN_HDD_IDE) || \
181 defined(CONFIG_BFIN_TRUE_IDE)
182 # define CONFIG_BFIN_IDE 1
183 # define CONFIG_CMD_IDE
186 #if defined(CONFIG_BFIN_IDE)
188 #define CONFIG_DOS_PARTITION 1
192 #undef CONFIG_IDE_8xx_DIRECT /* no pcmcia interface required */
193 #undef CONFIG_IDE_LED /* no led for ide supported */
194 #undef CONFIG_IDE_RESET /* no reset for ide supported */
196 #define CONFIG_SYS_IDE_MAXBUS 1
197 #define CONFIG_SYS_IDE_MAXDEVICE (CONFIG_SYS_IDE_MAXBUS * 1)
199 #undef CONFIG_EBIU_AMBCTL1_VAL
200 #define CONFIG_EBIU_AMBCTL1_VAL 0xFFC3FFC3
202 #define CONFIG_CF_ATASEL_DIS 0x20311800
203 #define CONFIG_CF_ATASEL_ENA 0x20311802
205 #if defined(CONFIG_BFIN_TRUE_IDE)
207 * Note that these settings aren't for the most part used in include/ata.h
208 * when all of the ATA registers are setup
210 #define CONFIG_SYS_ATA_BASE_ADDR 0x2031C000
211 #define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
212 #define CONFIG_SYS_ATA_DATA_OFFSET 0x0020 /* data I/O */
213 #define CONFIG_SYS_ATA_REG_OFFSET 0x0020 /* normal register accesses */
214 #define CONFIG_SYS_ATA_ALT_OFFSET 0x001C /* alternate registers */
215 #define CONFIG_SYS_ATA_STRIDE 2 /* CF.A0 --> Blackfin.A13 */
217 #elif defined(CONFIG_BFIN_CF_IDE)
218 #define CONFIG_SYS_ATA_BASE_ADDR 0x20211800
219 #define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
220 #define CONFIG_SYS_ATA_DATA_OFFSET 0x0000 /* data I/O */
221 #define CONFIG_SYS_ATA_REG_OFFSET 0x0000 /* normal register accesses */
222 #define CONFIG_SYS_ATA_ALT_OFFSET 0x000E /* alternate registers */
223 #define CONFIG_SYS_ATA_STRIDE 1 /* CF_A0=0, with /CE1 /CE2 odd/even byte selects */
225 #elif defined(CONFIG_BFIN_HDD_IDE)
226 #define CONFIG_SYS_ATA_BASE_ADDR 0x20314000
227 #define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
228 #define CONFIG_SYS_ATA_DATA_OFFSET 0x0020 /* data I/O */
229 #define CONFIG_SYS_ATA_REG_OFFSET 0x0020 /* normal register accesses */
230 #define CONFIG_SYS_ATA_ALT_OFFSET 0x001C /* alternate registers */
231 #define CONFIG_SYS_ATA_STRIDE 2 /* CF.A0 --> Blackfin.A1 */
232 #undef CONFIG_SCLK_DIV
233 #define CONFIG_SCLK_DIV 8
241 #define CONFIG_MISC_INIT_R
242 #define CONFIG_RTC_BFIN
243 #define CONFIG_UART_CONSOLE 0
245 /* Define if want to do post memory test */
248 #define CONFIG_SYS_POST_HOTKEYS_GPIO GPIO_PF5
249 #define CONFIG_POST_BSPEC1_GPIO_LEDS \
250 GPIO_PF6, GPIO_PF7, GPIO_PF8, GPIO_PF9, GPIO_PF10, GPIO_PF11,
251 #define CONFIG_POST_BSPEC2_GPIO_BUTTONS \
252 GPIO_PF5, GPIO_PF4, GPIO_PF3, GPIO_PF2,
253 #define CONFIG_POST_BSPEC2_GPIO_NAMES \
255 #define CONFIG_SYS_POST_FLASH_START 11
256 #define CONFIG_SYS_POST_FLASH_END 71
259 /* These are for board tests */
261 #define CONFIG_BOOTCOMMAND "bootldr 0x203f0100"
265 * Pull in common ADI header for remaining command/environment setup
267 #include <configs/bfin_adi_common.h>