Skip to content

Commit 5b15fd9

Browse files
hsdenxtrini
authored andcommitted
arm, spl, at91: add spl support for the corvus board
replaces the at91bootstrap code with SPL code. make the spl image with: ./tools/mkimage -T atmelimage -d spl/u-boot-spl.bin spl/boot.bin this writes the length of the spl image into the 6th execption vector. This is needed from the ROM bootloader. Signed-off-by: Heiko Schocher <[email protected]> Reviewed-by: Bo Shen <[email protected]> Reviewed-by: Andreas Bießmann <[email protected]> Signed-off-by: Andreas Bießmann <[email protected]>
1 parent 237e379 commit 5b15fd9

File tree

4 files changed

+151
-18
lines changed

4 files changed

+151
-18
lines changed

arch/arm/Kconfig

+1
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ config TARGET_PM9G45
203203
select CPU_ARM926EJS
204204

205205
config TARGET_CORVUS
206+
select SUPPORT_SPL
206207
bool "Support corvus"
207208
select CPU_ARM926EJS
208209

board/siemens/corvus/board.c

+97-12
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,10 @@
3131

3232
DECLARE_GLOBAL_DATA_PTR;
3333

34-
#ifdef CONFIG_CMD_NAND
3534
static void corvus_nand_hw_init(void)
3635
{
3736
struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
3837
struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX;
39-
struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
4038
unsigned long csa;
4139

4240
/* Enable CS3 */
@@ -63,22 +61,111 @@ static void corvus_nand_hw_init(void)
6361
AT91_SMC_MODE_TDF_CYCLE(3),
6462
&smc->cs[3].mode);
6563

66-
writel(1 << ATMEL_ID_PIOC, &pmc->pcer);
67-
68-
/* Configure RDY/BSY */
69-
at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
64+
at91_periph_clk_enable(ATMEL_ID_PIOC);
7065

7166
/* Enable NandFlash */
7267
at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
7368
}
69+
70+
#if defined(CONFIG_SPL_BUILD)
71+
#include <spl.h>
72+
#include <nand.h>
73+
74+
void at91_spl_board_init(void)
75+
{
76+
/*
77+
* For on the sam9m10g45ek board, the chip wm9711 stay in the test
78+
* mode, so it need do some action to exit mode.
79+
*/
80+
at91_set_gpio_output(AT91_PIN_PD7, 0);
81+
at91_set_gpio_output(AT91_PIN_PD8, 0);
82+
at91_set_pio_pullup(AT91_PIO_PORTD, 7, 1);
83+
at91_set_pio_pullup(AT91_PIO_PORTD, 8, 1);
84+
at91_set_pio_pullup(AT91_PIO_PORTA, 12, 1);
85+
at91_set_pio_pullup(AT91_PIO_PORTA, 13, 1);
86+
at91_set_pio_pullup(AT91_PIO_PORTA, 15, 1);
87+
88+
corvus_nand_hw_init();
89+
90+
/* Configure recovery button PINs */
91+
at91_set_gpio_input(AT91_PIN_PB7, 1);
92+
93+
/* check if button is pressed */
94+
if (at91_get_gpio_value(AT91_PIN_PB7) == 0) {
95+
u32 boot_device;
96+
97+
debug("Recovery button pressed\n");
98+
boot_device = spl_boot_device();
99+
switch (boot_device) {
100+
#ifdef CONFIG_SPL_NAND_SUPPORT
101+
case BOOT_DEVICE_NAND:
102+
nand_init();
103+
spl_nand_erase_one(0, 0);
104+
break;
74105
#endif
106+
}
107+
}
108+
}
75109

76-
#ifdef CONFIG_CMD_USB
77-
static void taurus_usb_hw_init(void)
110+
#include <asm/arch/atmel_mpddrc.h>
111+
static void ddr2_conf(struct atmel_mpddr *ddr2)
112+
{
113+
ddr2->md = (ATMEL_MPDDRC_MD_DBW_16_BITS | ATMEL_MPDDRC_MD_DDR2_SDRAM);
114+
115+
ddr2->cr = (ATMEL_MPDDRC_CR_NC_COL_10 |
116+
ATMEL_MPDDRC_CR_NR_ROW_14 |
117+
ATMEL_MPDDRC_CR_DIC_DS |
118+
ATMEL_MPDDRC_CR_DQMS_SHARED |
119+
ATMEL_MPDDRC_CR_CAS_DDR_CAS3);
120+
ddr2->rtr = 0x24b;
121+
122+
ddr2->tpr0 = (6 << ATMEL_MPDDRC_TPR0_TRAS_OFFSET |/* 6*7.5 = 45 ns */
123+
2 << ATMEL_MPDDRC_TPR0_TRCD_OFFSET |/* 2*7.5 = 15 ns */
124+
2 << ATMEL_MPDDRC_TPR0_TWR_OFFSET | /* 2*7.5 = 15 ns */
125+
8 << ATMEL_MPDDRC_TPR0_TRC_OFFSET | /* 8*7.5 = 75 ns */
126+
2 << ATMEL_MPDDRC_TPR0_TRP_OFFSET | /* 2*7.5 = 15 ns */
127+
1 << ATMEL_MPDDRC_TPR0_TRRD_OFFSET | /* 1*7.5= 7.5 ns*/
128+
1 << ATMEL_MPDDRC_TPR0_TWTR_OFFSET | /* 1 clk cycle */
129+
2 << ATMEL_MPDDRC_TPR0_TMRD_OFFSET); /* 2 clk cycles */
130+
131+
ddr2->tpr1 = (2 << ATMEL_MPDDRC_TPR1_TXP_OFFSET | /* 2*7.5 = 15 ns */
132+
200 << ATMEL_MPDDRC_TPR1_TXSRD_OFFSET |
133+
16 << ATMEL_MPDDRC_TPR1_TXSNR_OFFSET |
134+
14 << ATMEL_MPDDRC_TPR1_TRFC_OFFSET);
135+
136+
ddr2->tpr2 = (1 << ATMEL_MPDDRC_TPR2_TRTP_OFFSET |
137+
0 << ATMEL_MPDDRC_TPR2_TRPA_OFFSET |
138+
7 << ATMEL_MPDDRC_TPR2_TXARDS_OFFSET |
139+
2 << ATMEL_MPDDRC_TPR2_TXARD_OFFSET);
140+
}
141+
142+
void mem_init(void)
78143
{
79144
struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
145+
struct at91_matrix *mat = (struct at91_matrix *)ATMEL_BASE_MATRIX;
146+
struct atmel_mpddr ddr2;
147+
unsigned long csa;
148+
149+
ddr2_conf(&ddr2);
80150

81-
writel(1 << ATMEL_ID_PIODE, &pmc->pcer);
151+
/* enable DDR2 clock */
152+
writel(0x4, &pmc->scer);
153+
154+
/* Chip select 1 is for DDR2/SDRAM */
155+
csa = readl(&mat->ebicsa);
156+
csa |= AT91_MATRIX_EBI_CS1A_SDRAMC;
157+
csa &= ~AT91_MATRIX_EBI_VDDIOMSEL_3_3V;
158+
writel(csa, &mat->ebicsa);
159+
160+
/* DDRAM2 Controller initialize */
161+
ddr2_init(ATMEL_BASE_CS6, &ddr2);
162+
}
163+
#endif
164+
165+
#ifdef CONFIG_CMD_USB
166+
static void taurus_usb_hw_init(void)
167+
{
168+
at91_periph_clk_enable(ATMEL_ID_PIODE);
82169

83170
at91_set_gpio_output(AT91_PIN_PD1, 0);
84171
at91_set_gpio_output(AT91_PIN_PD3, 0);
@@ -88,10 +175,8 @@ static void taurus_usb_hw_init(void)
88175
#ifdef CONFIG_MACB
89176
static void corvus_macb_hw_init(void)
90177
{
91-
struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
92-
93178
/* Enable clock */
94-
writel(1 << ATMEL_ID_EMAC, &pmc->pcer);
179+
at91_periph_clk_enable(ATMEL_ID_EMAC);
95180

96181
/*
97182
* Disable pull-up on:

configs/corvus_defconfig

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
CONFIG_SPL=y
12
CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9M10G45,SYS_USE_NANDFLASH"
2-
CONFIG_ARM=y
3-
CONFIG_TARGET_CORVUS=y
3+
+S:CONFIG_ARM=y
4+
+S:CONFIG_TARGET_CORVUS=y

include/configs/corvus.h

+50-4
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,14 @@
1919
#define MACH_TYPE_CORVUS 2066
2020

2121
#define CONFIG_SYS_GENERIC_BOARD
22-
2322
/*
2423
* Warning: changing CONFIG_SYS_TEXT_BASE requires
2524
* adapting the initial boot program.
2625
* Since the linker has to swallow that define, we must use a pure
2726
* hex number here!
2827
*/
2928

30-
#define CONFIG_SYS_TEXT_BASE 0x73f00000
29+
#define CONFIG_SYS_TEXT_BASE 0x72000000
3130

3231
#define CONFIG_ATMEL_LEGACY /* required until (g)pio is fixed */
3332

@@ -107,8 +106,6 @@
107106
/* our CLE is AD22 */
108107
#define CONFIG_SYS_NAND_MASK_CLE (1 << 22)
109108
#define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIN_PC14
110-
#define CONFIG_SYS_NAND_READY_PIN AT91_PIN_PC8
111-
112109
#endif
113110

114111
/* Ethernet */
@@ -159,5 +156,54 @@
159156
*/
160157
#define CONFIG_SYS_MALLOC_LEN ROUND(3 * CONFIG_ENV_SIZE + \
161158
128*1024, 0x1000)
159+
/* Defines for SPL */
160+
#define CONFIG_SPL_FRAMEWORK
161+
#define CONFIG_SPL_TEXT_BASE 0x300000
162+
#define CONFIG_SPL_MAX_SIZE (12 * 1024)
163+
#define CONFIG_SPL_STACK (16 * 1024)
164+
165+
#define CONFIG_SPL_BSS_START_ADDR CONFIG_SPL_MAX_SIZE
166+
#define CONFIG_SPL_BSS_MAX_SIZE (2 * 1024)
167+
168+
#define CONFIG_SPL_LIBCOMMON_SUPPORT
169+
#define CONFIG_SPL_LIBGENERIC_SUPPORT
170+
#define CONFIG_SPL_SERIAL_SUPPORT
171+
172+
#define CONFIG_SPL_BOARD_INIT
173+
#define CONFIG_SPL_GPIO_SUPPORT
174+
#define CONFIG_SYS_NAND_ENABLE_PIN_SPL (2*32 + 14)
175+
#define CONFIG_SPL_NAND_SUPPORT
176+
#define CONFIG_SPL_NAND_DRIVERS
177+
#define CONFIG_SPL_NAND_BASE
178+
#define CONFIG_SPL_NAND_ECC
179+
#define CONFIG_SPL_NAND_RAW_ONLY
180+
#define CONFIG_SPL_NAND_SOFTECC
181+
#define CONFIG_SYS_NAND_U_BOOT_OFFS 0x20000
182+
#define CONFIG_SYS_NAND_U_BOOT_SIZE 0x80000
183+
#define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
184+
#define CONFIG_SYS_NAND_U_BOOT_DST CONFIG_SYS_TEXT_BASE
185+
#define CONFIG_SYS_NAND_5_ADDR_CYCLE
186+
187+
#define CONFIG_SYS_NAND_SIZE (256*1024*1024)
188+
#define CONFIG_SYS_NAND_PAGE_SIZE 2048
189+
#define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
190+
#define CONFIG_SYS_NAND_PAGE_COUNT (CONFIG_SYS_NAND_BLOCK_SIZE / \
191+
CONFIG_SYS_NAND_PAGE_SIZE)
192+
#define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
193+
#define CONFIG_SYS_NAND_ECCSIZE 256
194+
#define CONFIG_SYS_NAND_ECCBYTES 3
195+
#define CONFIG_SYS_NAND_OOBSIZE 64
196+
#define CONFIG_SYS_NAND_ECCPOS { 40, 41, 42, 43, 44, 45, 46, 47, \
197+
48, 49, 50, 51, 52, 53, 54, 55, \
198+
56, 57, 58, 59, 60, 61, 62, 63, }
199+
200+
#define CONFIG_SPL_ATMEL_SIZE
201+
#define CONFIG_SYS_MASTER_CLOCK 132096000
202+
#define AT91_PLL_LOCK_TIMEOUT 1000000
203+
#define CONFIG_SYS_AT91_PLLA 0x20c73f03
204+
#define CONFIG_SYS_MCKR 0x1301
205+
#define CONFIG_SYS_MCKR_CSS 0x1302
206+
207+
#define ATMEL_BASE_MPDDRC ATMEL_BASE_DDRSDRC0
162208

163209
#endif

0 commit comments

Comments
 (0)