diff options
author | Yi Li <yi.li@analog.com> | 2009-03-31 06:36:51 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-06-12 06:03:43 -0400 |
commit | ffdf3ec8060c1089f92468ade63981a217b5aace (patch) | |
tree | 969bfee990d75fbe1690b92166dd40656515f440 /arch/blackfin/mach-bf527 | |
parent | c8342f872d7a3967fd09db54fece3f6c38d834df (diff) |
Blackfin: bf527-ezkit: add support for mmc-spi
Signed-off-by: Yi Li <yi.li@analog.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin/mach-bf527')
-rw-r--r-- | arch/blackfin/mach-bf527/boards/ezkit.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/blackfin/mach-bf527/boards/ezkit.c b/arch/blackfin/mach-bf527/boards/ezkit.c index d0864111ef59..9ab8d8cf4a05 100644 --- a/arch/blackfin/mach-bf527/boards/ezkit.c +++ b/arch/blackfin/mach-bf527/boards/ezkit.c | |||
@@ -509,6 +509,13 @@ static struct bfin5xx_spi_chip ad9960_spi_chip_info = { | |||
509 | }; | 509 | }; |
510 | #endif | 510 | #endif |
511 | 511 | ||
512 | #if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE) | ||
513 | static struct bfin5xx_spi_chip mmc_spi_chip_info = { | ||
514 | .enable_dma = 0, | ||
515 | .bits_per_word = 8, | ||
516 | }; | ||
517 | #endif | ||
518 | |||
512 | #if defined(CONFIG_PBX) | 519 | #if defined(CONFIG_PBX) |
513 | static struct bfin5xx_spi_chip spi_si3xxx_chip_info = { | 520 | static struct bfin5xx_spi_chip spi_si3xxx_chip_info = { |
514 | .ctl_reg = 0x4, /* send zero */ | 521 | .ctl_reg = 0x4, /* send zero */ |
@@ -624,6 +631,17 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = { | |||
624 | .controller_data = &ad9960_spi_chip_info, | 631 | .controller_data = &ad9960_spi_chip_info, |
625 | }, | 632 | }, |
626 | #endif | 633 | #endif |
634 | #if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE) | ||
635 | { | ||
636 | .modalias = "mmc_spi", | ||
637 | .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */ | ||
638 | .bus_num = 0, | ||
639 | .chip_select = 3, | ||
640 | .controller_data = &mmc_spi_chip_info, | ||
641 | .mode = SPI_MODE_0, | ||
642 | }, | ||
643 | #endif | ||
644 | |||
627 | #if defined(CONFIG_PBX) | 645 | #if defined(CONFIG_PBX) |
628 | { | 646 | { |
629 | .modalias = "fxs-spi", | 647 | .modalias = "fxs-spi", |