From: Eric Nelson Date: Tue, 31 Jan 2012 07:52:09 +0000 (+0000) Subject: mx6q: mx6qsabrelite: Provide default serial flash bus and chip-select X-Git-Tag: v2012.04-rc1~135 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ba54b9276af6c5cf44f466ebc6356dfba7f21c0b;p=u-boot mx6q: mx6qsabrelite: Provide default serial flash bus and chip-select Signed-off-by: Eric Nelson Acked-by: Dirk Behme Acked-by: Stefano Babic Acked-by: Jason Liu Tested-by: Jason Liu --- diff --git a/board/freescale/mx6qsabrelite/mx6qsabrelite.c b/board/freescale/mx6qsabrelite/mx6qsabrelite.c index 97a77e841b..03a088a6a8 100644 --- a/board/freescale/mx6qsabrelite/mx6qsabrelite.c +++ b/board/freescale/mx6qsabrelite/mx6qsabrelite.c @@ -208,7 +208,7 @@ iomux_v3_cfg_t ecspi1_pads[] = { void setup_spi(void) { - gpio_direction_output(GPIO_NUMBER(3, 19), 1); + gpio_direction_output(CONFIG_SF_DEFAULT_CS, 1); imx_iomux_v3_setup_multiple_pads(ecspi1_pads, ARRAY_SIZE(ecspi1_pads)); } diff --git a/include/configs/mx6qsabrelite.h b/include/configs/mx6qsabrelite.h index bcb1a427e3..28c07a6770 100644 --- a/include/configs/mx6qsabrelite.h +++ b/include/configs/mx6qsabrelite.h @@ -49,6 +49,8 @@ #define CONFIG_SPI_FLASH #define CONFIG_SPI_FLASH_SST #define CONFIG_MXC_SPI +#define CONFIG_SF_DEFAULT_BUS 0 +#define CONFIG_SF_DEFAULT_CS (0|(GPIO_NUMBER(3, 19)<<8)) #define CONFIG_SF_DEFAULT_SPEED 25000000 #define CONFIG_SF_DEFAULT_MODE (SPI_MODE_0) #endif