]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/bf537-pnav.h
Merge git://www.denx.de/git/u-boot-marvell
[people/ms/u-boot.git] / include / configs / bf537-pnav.h
CommitLineData
cb4b5e87 1/*
a187559e 2 * U-Boot - Configuration file for BF537 PNAV board
cb4b5e87
MF
3 */
4
5#ifndef __CONFIG_BF537_PNAV_H__
6#define __CONFIG_BF537_PNAV_H__
7
f348ab85 8#include <asm/config-pre.h>
cb4b5e87 9
cb4b5e87
MF
10/*
11 * Processor Settings
12 */
fbcf8e8c 13#define CONFIG_BFIN_CPU bf537-0.2
cb4b5e87
MF
14#define CONFIG_BFIN_BOOT_MODE BFIN_BOOT_SPI_MASTER
15
cb4b5e87
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 24576000
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) */
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
38
cb4b5e87
MF
39/*
40 * Memory Settings
41 */
42#define CONFIG_MEM_ADD_WDTH 10
43#define CONFIG_MEM_SIZE 64
44
45#define CONFIG_EBIU_SDRRC_VAL 0x3b7
46#define CONFIG_EBIU_SDGCTL_VAL 0x9111cd
47
48#define CONFIG_EBIU_AMGCTL_VAL 0xFF
49#define CONFIG_EBIU_AMBCTL0_VAL 0x7BB033B0
50#define CONFIG_EBIU_AMBCTL1_VAL 0xFFC27BB0
51
4c95ff64 52#define CONFIG_SYS_MONITOR_LEN (512 * 1024)
cb4b5e87
MF
53#define CONFIG_SYS_MALLOC_LEN (128 * 1024)
54
cb4b5e87
MF
55/*
56 * Network Settings
57 */
58#ifndef __ADSPBF534__
59#define ADI_CMDS_NETWORK 1
60#define CONFIG_BFIN_MAC
61#define CONFIG_RMII
cb4b5e87
MF
62#endif
63#define CONFIG_HOSTNAME bf537-pnav
cb4b5e87
MF
64
65/*
66 * Flash Settings
67 */
68#define CONFIG_FLASH_CFI_DRIVER
69#define CONFIG_SYS_FLASH_BASE 0x20000000
70#define CONFIG_SYS_FLASH_CFI
71#define CONFIG_SYS_MAX_FLASH_BANKS 1
72#define CONFIG_SYS_MAX_FLASH_SECT 71
73
cb4b5e87
MF
74/*
75 * SPI Settings
76 */
77#define CONFIG_BFIN_SPI
78#define CONFIG_ENV_SPI_MAX_HZ 30000000
afac8b07 79#define CONFIG_SF_DEFAULT_SPEED 30000000
cb4b5e87 80
cb4b5e87
MF
81/*
82 * Env Storage Settings
83 */
84#if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_SPI_MASTER)
76d82187 85#define CONFIG_ENV_IS_EMBEDDED_IN_LDR
cb4b5e87
MF
86#define CONFIG_ENV_IS_IN_SPI_FLASH
87#define CONFIG_ENV_OFFSET 0x4000
88#else
89#define ENV_IS_EMBEDDED
90#define CONFIG_ENV_IS_IN_FLASH 1
91#define CONFIG_ENV_ADDR 0x20004000
92#define CONFIG_ENV_OFFSET 0x4000
93#endif
94#define CONFIG_ENV_SIZE 0x1000
95#define CONFIG_ENV_SECT_SIZE 0x2000
9ff67e5e
MF
96#ifdef ENV_IS_EMBEDDED
97/* WARNING - the following is hand-optimized to fit within
98 * the sector before the environment sector. If it throws
99 * an error during compilation remove an object here to get
100 * it linked after the configuration sector.
101 */
102# define LDS_BOARD_TEXT \
e2906a59
MY
103 arch/blackfin/lib/built-in.o (.text*); \
104 arch/blackfin/cpu/built-in.o (.text*); \
9ff67e5e 105 . = DEFINED(env_offset) ? env_offset : .; \
c70e7ddb 106 common/env_embedded.o (.text*);
9ff67e5e 107#endif
cb4b5e87 108
cb4b5e87
MF
109/*
110 * NAND Settings
111 */
112#define CONFIG_NAND_PLAT
113
114#define CONFIG_SYS_NAND_BASE 0x20100000
115#define CONFIG_SYS_MAX_NAND_DEVICE 1
116
117#define BFIN_NAND_CLE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 2))
118#define BFIN_NAND_ALE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 1))
cb4b5e87
MF
119#define BFIN_NAND_WRITE(addr, cmd) \
120 do { \
121 bfin_write8(addr, cmd); \
122 SSYNC(); \
123 } while (0)
124
125#define NAND_PLAT_WRITE_CMD(chip, cmd) BFIN_NAND_WRITE(BFIN_NAND_CLE(chip), cmd)
126#define NAND_PLAT_WRITE_ADR(chip, cmd) BFIN_NAND_WRITE(BFIN_NAND_ALE(chip), cmd)
67ceefa7 127#define NAND_PLAT_GPIO_DEV_READY GPIO_PF12
cb4b5e87 128
cb4b5e87
MF
129/*
130 * I2C settings
131 */
c469703b 132#define CONFIG_SYS_I2C
fea9b69a 133#define CONFIG_SYS_I2C_ADI
cb4b5e87 134
cb4b5e87
MF
135/*
136 * Misc Settings
137 */
138#define CONFIG_BAUDRATE 115200
cb4b5e87
MF
139#define CONFIG_RTC_BFIN
140#define CONFIG_UART_CONSOLE 0
141
142/* JFFS Partition offset set */
143#define CONFIG_SYS_JFFS2_FIRST_BANK 0
144#define CONFIG_SYS_JFFS2_NUM_BANKS 1
145/* 512k reserved for u-boot */
146#define CONFIG_SYS_JFFS2_FIRST_SECTOR 15
147
148#define CONFIG_BOOTCOMMAND "run nandboot"
149#define CONFIG_BOOTARGS_ROOT "/dev/mtdblock1 rw rootfstype=yaffs"
150
cb4b5e87
MF
151/*
152 * Pull in common ADI header for remaining command/environment setup
153 */
154#include <configs/bfin_adi_common.h>
155
cb4b5e87 156#endif