blob: 4f861aa4321d0c22b70c4d0f86c04204afbe6e5b [file] [log] [blame]
Aubrey Li10ebdd92007-03-19 01:24:52 +08001/*
Bin Meng75574052016-02-05 19:30:11 -08002 * U-Boot - Configuration file for BF537 STAMP board
Aubrey Li10ebdd92007-03-19 01:24:52 +08003 */
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
Mike Frysinger62d2a232008-06-01 09:09:48 -040010/*
11 * Processor Settings
12 */
Mike Frysinger5b0c1282010-12-23 14:58:37 -050013#define CONFIG_BFIN_CPU bf537-0.2
Mike Frysinger62d2a232008-06-01 09:09:48 -040014#define CONFIG_BFIN_BOOT_MODE BFIN_BOOT_BYPASS
Aubrey Li10ebdd92007-03-19 01:24:52 +080015
Mike Frysinger62d2a232008-06-01 09:09:48 -040016/*
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) */
Aubrey Li10ebdd92007-03-19 01:24:52 +080031#define CONFIG_VCO_MULT 20
Mike Frysinger62d2a232008-06-01 09:09:48 -040032/* CCLK_DIV controls the core clock divider */
33/* Values can be 1, 2, 4, or 8 ONLY */
Aubrey Li10ebdd92007-03-19 01:24:52 +080034#define CONFIG_CCLK_DIV 1
Mike Frysinger62d2a232008-06-01 09:09:48 -040035/* SCLK_DIV controls the system clock divider */
36/* Values can range from 1-15 */
Mike Frysinger40069e12008-12-08 16:16:11 -050037#define CONFIG_SCLK_DIV 4
Aubrey Li10ebdd92007-03-19 01:24:52 +080038
Mike Frysinger62d2a232008-06-01 09:09:48 -040039/*
40 * Memory Settings
41 */
42#define CONFIG_MEM_ADD_WDTH 10
43#define CONFIG_MEM_SIZE 64
Aubrey Li10ebdd92007-03-19 01:24:52 +080044
Mike Frysinger62d2a232008-06-01 09:09:48 -040045#define CONFIG_EBIU_SDRRC_VAL 0x306
46#define CONFIG_EBIU_SDGCTL_VAL 0x91114d
Aubrey Li10ebdd92007-03-19 01:24:52 +080047
Mike Frysinger62d2a232008-06-01 09:09:48 -040048#define CONFIG_EBIU_AMGCTL_VAL 0xFF
49#define CONFIG_EBIU_AMBCTL0_VAL 0x7BB07BB0
50#define CONFIG_EBIU_AMBCTL1_VAL 0xFFC27BB0
Aubrey Li10ebdd92007-03-19 01:24:52 +080051
Sonic Zhangae26b402013-02-20 18:05:16 +080052#define CONFIG_SYS_MONITOR_LEN (768 * 1024)
Mike Frysinger62d2a232008-06-01 09:09:48 -040053#define CONFIG_SYS_MALLOC_LEN (384 * 1024)
54
Aubrey Li10ebdd92007-03-19 01:24:52 +080055/*
56 * Network Settings
57 */
Mike Frysinger62d2a232008-06-01 09:09:48 -040058#ifndef __ADSPBF534__
59#define ADI_CMDS_NETWORK 1
60#define CONFIG_BFIN_MAC
61#define CONFIG_NETCONSOLE 1
Aubrey Li10ebdd92007-03-19 01:24:52 +080062#endif
Mike Frysinger62d2a232008-06-01 09:09:48 -040063#define CONFIG_HOSTNAME bf537-stamp
Aubrey Li10ebdd92007-03-19 01:24:52 +080064
Jon Loeliger8262ada2007-07-04 22:31:49 -050065/*
Mike Frysinger62d2a232008-06-01 09:09:48 -040066 * Flash Settings
Jon Loeliger5c4ddae2007-07-10 10:12:10 -050067 */
Mike Frysinger62d2a232008-06-01 09:09:48 -040068#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
Jon Loeliger5c4ddae2007-07-10 10:12:10 -050075
Jon Loeliger5c4ddae2007-07-10 10:12:10 -050076/*
Mike Frysinger62d2a232008-06-01 09:09:48 -040077 * SPI Settings
Jon Loeliger8262ada2007-07-04 22:31:49 -050078 */
Mike Frysinger62d2a232008-06-01 09:09:48 -040079#define CONFIG_BFIN_SPI
80#define CONFIG_ENV_SPI_MAX_HZ 30000000
Mike Frysinger9a4406462009-06-14 22:29:35 -040081#define CONFIG_SF_DEFAULT_SPEED 30000000
Mike Frysingercf01ec92010-09-19 16:26:55 -040082#define CONFIG_SPI_FLASH_ALL
Jon Loeliger8262ada2007-07-04 22:31:49 -050083
Mike Frysinger62d2a232008-06-01 09:09:48 -040084/*
85 * Env Storage Settings
86 */
87#if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_SPI_MASTER)
88#define CONFIG_ENV_IS_IN_SPI_FLASH
Vivi Li535ec1f2009-06-12 10:53:22 +000089#define CONFIG_ENV_OFFSET 0x10000
Mike Frysinger62d2a232008-06-01 09:09:48 -040090#define CONFIG_ENV_SIZE 0x2000
Vivi Li535ec1f2009-06-12 10:53:22 +000091#define CONFIG_ENV_SECT_SIZE 0x10000
Aubrey Li10ebdd92007-03-19 01:24:52 +080092#else
Mike Frysinger62d2a232008-06-01 09:09:48 -040093#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
Aubrey Li10ebdd92007-03-19 01:24:52 +080098#endif
Mike Frysinger62d2a232008-06-01 09:09:48 -040099#if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_BYPASS)
100#define ENV_IS_EMBEDDED
Aubrey Li10ebdd92007-03-19 01:24:52 +0800101#else
Mike Frysinger45b57bd2009-07-21 22:17:36 -0400102#define CONFIG_ENV_IS_EMBEDDED_IN_LDR
Aubrey Li10ebdd92007-03-19 01:24:52 +0800103#endif
Mike Frysinger37f48702009-06-14 06:29:07 -0400104#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 \
Masahiro Yamada30a198b2013-11-11 14:36:00 +0900111 arch/blackfin/lib/built-in.o (.text*); \
112 arch/blackfin/cpu/built-in.o (.text*); \
Mike Frysinger37f48702009-06-14 06:29:07 -0400113 . = DEFINED(env_offset) ? env_offset : .; \
Mike Frysingera0d60412010-11-19 19:28:56 -0500114 common/env_embedded.o (.text*);
Mike Frysinger37f48702009-06-14 06:29:07 -0400115#endif
Aubrey Li10ebdd92007-03-19 01:24:52 +0800116
Mike Frysinger62d2a232008-06-01 09:09:48 -0400117/*
118 * I2C Settings
119 */
Scott Jiang80d27fa2014-11-13 15:30:55 +0800120#define CONFIG_SYS_I2C
Scott Jiang655761e2014-11-13 15:30:53 +0800121#define CONFIG_SYS_I2C_ADI
Aubrey Li10ebdd92007-03-19 01:24:52 +0800122
Aubrey Li10ebdd92007-03-19 01:24:52 +0800123/*
Mike Frysinger62d2a232008-06-01 09:09:48 -0400124 * SPI_MMC Settings
Aubrey Li10ebdd92007-03-19 01:24:52 +0800125 */
Sonic Zhangae26b402013-02-20 18:05:16 +0800126#define CONFIG_MMC_SPI
127#ifdef CONFIG_MMC_SPI
Mike Frysinger62d2a232008-06-01 09:09:48 -0400128#define CONFIG_MMC
Mike Frysingeraa5e9222010-12-24 12:53:47 -0500129#define CONFIG_GENERIC_MMC
Sonic Zhangae26b402013-02-20 18:05:16 +0800130#endif
Aubrey Li10ebdd92007-03-19 01:24:52 +0800131
132/*
Mike Frysinger62d2a232008-06-01 09:09:48 -0400133 * NAND Settings
Aubrey Li10ebdd92007-03-19 01:24:52 +0800134 */
Mike Frysingerc0e7c7a2009-05-25 22:42:28 -0400135/* #define CONFIG_NAND_PLAT */
Sonic Zhangae26b402013-02-20 18:05:16 +0800136#ifdef CONFIG_NAND_PLAT
Mike Frysingerc0e7c7a2009-05-25 22:42:28 -0400137#define CONFIG_SYS_NAND_BASE 0x20212000
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200138#define CONFIG_SYS_MAX_NAND_DEVICE 1
Aubrey Li10ebdd92007-03-19 01:24:52 +0800139
Mike Frysingerc0e7c7a2009-05-25 22:42:28 -0400140#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))
Mike Frysingerc0e7c7a2009-05-25 22:42:28 -0400142#define BFIN_NAND_WRITE(addr, cmd) \
Mike Frysinger62d2a232008-06-01 09:09:48 -0400143 do { \
Mike Frysingerc0e7c7a2009-05-25 22:42:28 -0400144 bfin_write8(addr, cmd); \
145 SSYNC(); \
Aubrey Li10ebdd92007-03-19 01:24:52 +0800146 } while (0)
147
Mike Frysingerc0e7c7a2009-05-25 22:42:28 -0400148#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)
Mike Frysinger0892b0c2010-07-05 04:55:05 -0400150#define NAND_PLAT_GPIO_DEV_READY GPIO_PF3
Sonic Zhangae26b402013-02-20 18:05:16 +0800151#endif /* CONFIG_NAND_PLAT */
Aubrey Li10ebdd92007-03-19 01:24:52 +0800152
153/*
Mike Frysinger62d2a232008-06-01 09:09:48 -0400154 * CF-CARD IDE-HDD Support
Aubrey Li10ebdd92007-03-19 01:24:52 +0800155 */
Michael Hennerichccb0d4e2009-06-18 09:12:50 +0000156
157/*
158 * Add CF flash card support in TRUE-IDE Mode (CF-IDE-NAND Card)
159 * Strange address mapping Blackfin A13 connects to CF_A0
160 */
161
162/* #define CONFIG_BFIN_TRUE_IDE */
163
164/*
165 * Add CF flash card support in Common Memory Mode (CF-IDE-NAND Card)
166 * This should be the preferred mode
167 */
168
169/* #define CONFIG_BFIN_CF_IDE */
170
171/*
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
175 */
176
177/* #define CONFIG_BFIN_HDD_IDE */
Aubrey Li10ebdd92007-03-19 01:24:52 +0800178
Mike Frysinger62d2a232008-06-01 09:09:48 -0400179#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
184#endif
Aubrey Li10ebdd92007-03-19 01:24:52 +0800185
Aubrey Li10ebdd92007-03-19 01:24:52 +0800186#if defined(CONFIG_BFIN_IDE)
187
188#define CONFIG_DOS_PARTITION 1
189/*
190 * IDE/ATA stuff
191 */
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 */
195
Mike Frysinger62d2a232008-06-01 09:09:48 -0400196#define CONFIG_SYS_IDE_MAXBUS 1
197#define CONFIG_SYS_IDE_MAXDEVICE (CONFIG_SYS_IDE_MAXBUS * 1)
Aubrey Li10ebdd92007-03-19 01:24:52 +0800198
Mike Frysinger62d2a232008-06-01 09:09:48 -0400199#undef CONFIG_EBIU_AMBCTL1_VAL
200#define CONFIG_EBIU_AMBCTL1_VAL 0xFFC3FFC3
Aubrey Li10ebdd92007-03-19 01:24:52 +0800201
202#define CONFIG_CF_ATASEL_DIS 0x20311800
203#define CONFIG_CF_ATASEL_ENA 0x20311802
204
205#if defined(CONFIG_BFIN_TRUE_IDE)
206/*
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
209 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200210#define CONFIG_SYS_ATA_BASE_ADDR 0x2031C000
211#define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
Mike Frysinger62d2a232008-06-01 09:09:48 -0400212#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 */
Michael Hennerichccb0d4e2009-06-18 09:12:50 +0000215#define CONFIG_SYS_ATA_STRIDE 2 /* CF.A0 --> Blackfin.A13 */
Aubrey Li10ebdd92007-03-19 01:24:52 +0800216
Mike Frysinger62d2a232008-06-01 09:09:48 -0400217#elif defined(CONFIG_BFIN_CF_IDE)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200218#define CONFIG_SYS_ATA_BASE_ADDR 0x20211800
219#define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
Mike Frysinger62d2a232008-06-01 09:09:48 -0400220#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 */
Michael Hennerichccb0d4e2009-06-18 09:12:50 +0000223#define CONFIG_SYS_ATA_STRIDE 1 /* CF_A0=0, with /CE1 /CE2 odd/even byte selects */
Aubrey Li10ebdd92007-03-19 01:24:52 +0800224
Mike Frysinger62d2a232008-06-01 09:09:48 -0400225#elif defined(CONFIG_BFIN_HDD_IDE)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200226#define CONFIG_SYS_ATA_BASE_ADDR 0x20314000
227#define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
Mike Frysinger62d2a232008-06-01 09:09:48 -0400228#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 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200231#define CONFIG_SYS_ATA_STRIDE 2 /* CF.A0 --> Blackfin.A1 */
Aubrey Li10ebdd92007-03-19 01:24:52 +0800232#undef CONFIG_SCLK_DIV
233#define CONFIG_SCLK_DIV 8
Mike Frysinger62d2a232008-06-01 09:09:48 -0400234#endif
235
236#endif
237
Mike Frysinger62d2a232008-06-01 09:09:48 -0400238/*
239 * Misc Settings
240 */
241#define CONFIG_MISC_INIT_R
242#define CONFIG_RTC_BFIN
243#define CONFIG_UART_CONSOLE 0
Aubrey Li10ebdd92007-03-19 01:24:52 +0800244
Mike Frysinger62d2a232008-06-01 09:09:48 -0400245/* Define if want to do post memory test */
246#undef CONFIG_POST
247#ifdef CONFIG_POST
Mike Frysinger8a4e1872011-05-10 13:00:30 -0400248#define CONFIG_SYS_POST_HOTKEYS_GPIO GPIO_PF5
Mike Frysinger32ed1fe2011-05-10 16:22:25 -0400249#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 \
254 10, 11, 12, 13,
Mike Frysinger368cfc82011-05-10 16:48:36 -0400255#define CONFIG_SYS_POST_FLASH_START 11
256#define CONFIG_SYS_POST_FLASH_END 71
Mike Frysinger62d2a232008-06-01 09:09:48 -0400257#endif
258
Mike Frysingerafd0fbf2010-01-21 23:29:18 -0500259/* These are for board tests */
260#if 0
261#define CONFIG_BOOTCOMMAND "bootldr 0x203f0100"
Mike Frysingerafd0fbf2010-01-21 23:29:18 -0500262#endif
263
Mike Frysinger62d2a232008-06-01 09:09:48 -0400264/*
265 * Pull in common ADI header for remaining command/environment setup
266 */
267#include <configs/bfin_adi_common.h>
Aubrey Li10ebdd92007-03-19 01:24:52 +0800268
Aubrey Li10ebdd92007-03-19 01:24:52 +0800269#endif