diff options
author | Olof Johansson <olof@lixom.net> | 2013-08-14 03:54:46 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-08-14 03:54:46 -0400 |
commit | 74f19946976edabe6432ac0005346b0611e2f8c1 (patch) | |
tree | 9c39cba7d0dd32f67f67f82f19e385d8bd34afed /arch/arm/mach-shmobile/board-armadillo800eva.c | |
parent | 13b837999f5cff1b0f40842704a18a2357dc22b2 (diff) | |
parent | f79d68da510bf1b95beff4d556b78d06801f11dc (diff) |
Merge tag 'renesas-boards-for-v3.12' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas into next/boards
From Simon Horman:
Renesas ARM-based SoC board updates for v3.12
* ape6evm: Add SDHI and MMCIF support
* lager: Add MMCIF support
* armadillo800eva: Add DMA support for MMCIF
* tag 'renesas-boards-for-v3.12' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas: (54 commits)
ARM: shmobile: ape6evm: add SDHI interfaces
ARM: shmobile: ape6evm: add MMCIF support
ARM: shmobile: select the fixed regulator driver on BockW
ARM: shmobile: lager: add MMCIF support
ARM: shmobile: armadillo800eva: add DMA support to MMCIF
ARM: shmobile: Setup r8a7790 arch timer based on MD pins
ARM: shmobile: Introduce r8a7790_read_mode_pins()
ARM: shmobile: r8a7740: add MMCIF DMA definitions
ARM: shmobile: Disconnect EMEV2 SMP code from clocks
ARM: shmobile: Make r8a73a4 Arch timer optional
ARM: shmobile: Add r8a73a4 CMT10 clock event
ARM: shmobile: Make r8a7790 Arch timer optional
ARM: shmobile: Add r8a7790 CMT00 clock event
ARM: shmobile: Sort r8a7790 MSTP entries
ARM: shmobile: r8a73a4: add clocks for I2C controllers
ARM: shmobile: r8a73a4: add Z2 clock support
ARM: shmobile: r8a73a4: safeguard against wrong clk_set_rate() uses
ARM: shmobile: r8a73a4: implement CPU clock scaling for CPUFreq
ARM: shmobile: r8a73a4: wait for completion when kicking the clock
ARM: shmobile: r8a7790: add thermal driver support
...
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-shmobile/board-armadillo800eva.c')
-rw-r--r-- | arch/arm/mach-shmobile/board-armadillo800eva.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/arch/arm/mach-shmobile/board-armadillo800eva.c b/arch/arm/mach-shmobile/board-armadillo800eva.c index 9457c763b797..2412fcae2c0d 100644 --- a/arch/arm/mach-shmobile/board-armadillo800eva.c +++ b/arch/arm/mach-shmobile/board-armadillo800eva.c | |||
@@ -724,15 +724,6 @@ static struct platform_device vcc_sdhi1 = { | |||
724 | }; | 724 | }; |
725 | 725 | ||
726 | /* SDHI0 */ | 726 | /* SDHI0 */ |
727 | /* | ||
728 | * FIXME | ||
729 | * | ||
730 | * It use polling mode here, since | ||
731 | * CD (= Card Detect) pin is not connected to SDHI0_CD. | ||
732 | * We can use IRQ31 as card detect irq, | ||
733 | * but it needs chattering removal operation | ||
734 | */ | ||
735 | #define IRQ31 irq_pin(31) | ||
736 | static struct sh_mobile_sdhi_info sdhi0_info = { | 727 | static struct sh_mobile_sdhi_info sdhi0_info = { |
737 | .dma_slave_tx = SHDMA_SLAVE_SDHI0_TX, | 728 | .dma_slave_tx = SHDMA_SLAVE_SDHI0_TX, |
738 | .dma_slave_rx = SHDMA_SLAVE_SDHI0_RX, | 729 | .dma_slave_rx = SHDMA_SLAVE_SDHI0_RX, |
@@ -833,6 +824,8 @@ static struct sh_mmcif_plat_data sh_mmcif_plat = { | |||
833 | .caps = MMC_CAP_4_BIT_DATA | | 824 | .caps = MMC_CAP_4_BIT_DATA | |
834 | MMC_CAP_8_BIT_DATA | | 825 | MMC_CAP_8_BIT_DATA | |
835 | MMC_CAP_NONREMOVABLE, | 826 | MMC_CAP_NONREMOVABLE, |
827 | .slave_id_tx = SHDMA_SLAVE_MMCIF_TX, | ||
828 | .slave_id_rx = SHDMA_SLAVE_MMCIF_RX, | ||
836 | }; | 829 | }; |
837 | 830 | ||
838 | static struct resource sh_mmcif_resources[] = { | 831 | static struct resource sh_mmcif_resources[] = { |