summaryrefslogtreecommitdiffstats
path: root/board/afeb9260
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2009-03-21 21:07:59 +0100
committerJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2009-03-22 13:22:06 +0100
commit7ebafb7ec1a0285af8380623c009576f92583b98 (patch)
tree9b528c7f1987245db991bb540473bd6f43fb2680 /board/afeb9260
parent1332a2a0694c8e10a5bade397cf83645b2c3fd7e (diff)
downloadblackbird-obmc-uboot-7ebafb7ec1a0285af8380623c009576f92583b98.tar.gz
blackbird-obmc-uboot-7ebafb7ec1a0285af8380623c009576f92583b98.zip
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.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/board/afeb9260/afeb9260.c b/board/afeb9260/afeb9260.c
index dd29d91631..0f9c50486a 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
OpenPOWER on IntegriCloud