diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-03-21 21:07:59 +0100 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-03-22 13:22:06 +0100 |
commit | 7ebafb7ec1a0285af8380623c009576f92583b98 (patch) | |
tree | 9b528c7f1987245db991bb540473bd6f43fb2680 /board/afeb9260 | |
parent | 1332a2a0694c8e10a5bade397cf83645b2c3fd7e (diff) | |
download | u-boot-imx-7ebafb7ec1a0285af8380623c009576f92583b98.zip u-boot-imx-7ebafb7ec1a0285af8380623c009576f92583b98.tar.gz u-boot-imx-7ebafb7ec1a0285af8380623c009576f92583b98.tar.bz2 |
at91sam9/at91cap: move common spi initialisation to cpu
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'board/afeb9260')
-rw-r--r-- | board/afeb9260/afeb9260.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/board/afeb9260/afeb9260.c b/board/afeb9260/afeb9260.c index dd29d91..0f9c504 100644 --- a/board/afeb9260/afeb9260.c +++ b/board/afeb9260/afeb9260.c @@ -78,19 +78,6 @@ static void afeb9260_nand_hw_init(void) at91_set_gpio_output(AT91_PIN_PC14, 1); } -static void afeb9260_spi_hw_init(void) -{ - at91_set_A_periph(AT91_PIN_PA3, 0); /* SPI0_NPCS0 */ - at91_set_B_periph(AT91_PIN_PC11, 0); /* SPI0_NPCS1 */ - - at91_set_A_periph(AT91_PIN_PA0, 0); /* SPI0_MISO */ - at91_set_A_periph(AT91_PIN_PA1, 0); /* SPI0_MOSI */ - at91_set_A_periph(AT91_PIN_PA2, 0); /* SPI0_SPCK */ - - /* Enable clock */ - at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9260_ID_SPI0); -} - #ifdef CONFIG_MACB static void afeb9260_macb_hw_init(void) { @@ -179,7 +166,7 @@ int board_init(void) #ifdef CONFIG_CMD_NAND afeb9260_nand_hw_init(); #endif - afeb9260_spi_hw_init(); + at91_spi0_hw_init((1 << 0) || (1 << 1)); #ifdef CONFIG_MACB afeb9260_macb_hw_init(); #endif |