public inbox for cip-dev@lists.cip-project.org
 help / color / mirror / Atom feed
* [cip-dev] [PATCH 4.4.y-cip 00/22] Add RZ/G1C SD/eMMC support
@ 2019-11-27 13:46 Biju Das
  2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 01/22] mmc: sdhi: Add EXT_ACC register busy check Biju Das
                   ` (23 more replies)
  0 siblings, 24 replies; 27+ messages in thread
From: Biju Das @ 2019-11-27 13:46 UTC (permalink / raw)
  To: cip-dev

This patch series add SD/eMMC support support for RZ/G1C sbc.

RZ/G1C eMMC IP is different from other RZ/G1 SoC's. It is having an internal DMA for data transfer which is similar to R-Car Gen3.

Support for internal DMAC is added in 4.14 kernel and support for RZ/G1C added on 4.20 kernel.

Backported the relevent patches to linux-4.4.y-cip.

Fabrizio Castro (6):
  dt-bindings: mmc: renesas_sdhi: Add r8a77470 support
  mmc: renesas_sdhi: Add r8a77470 SDHI1 support
  ARM: dts: r8a77470: Add SDHI2 support
  ARM: dts: r8a77470: Add SDHI0 support
  ARM: dts: r8a77470: Add SDHI1 support
  ARM: dts: iwg23s-sbc: Add uSD and eMMC support

Masahiro Yamada (1):
  mmc: renesas_sdhi: consolidate DMAC CONFIG options

Shinobu Uehara (1):
  mmc: sdhi: Add EXT_ACC register busy check

Simon Horman (9):
  mmc: tmio: rename tmio_mmc_{pio => core}.c
  mmc: renesas-sdhi: rename tmio_mmc_dma.c => renesas_sdhi_sys_dmac.c
  mmc: renesas-sdhi: rename sh_mobile_sdhi.c => renesas_sdhi_core.c
  mmc: renesas-sdhi: make renesas_sdhi_sys_dmac main module file
  mmc: renesas-sdhi: improve checkpatch cleanness
  mmc: tmio, renesas-sdhi: add dataend to DMA ops
  mmc: renesas-sdhi: add support for R-Car Gen3 SDHI DMAC
  dt-bindings: mmc: renesas_sdhi: add R-Car Gen[123] fallback
    compatibility strings
  mmc: renesas_sdhi: implement R-Car Gen[123] fallback compatibility
    strings

Wolfram Sang (4):
  mmc: sh_mobile_sdhi: don't use array for DT configs
  mmc: sh_mobile_sdhi: simplify code for voltage switching
  mmc: sh_mobile_sdhi: enable SDIO IRQs for RCar Gen3
  mmc: tmio: always unmap DMA before waiting for interrupt

Yoshihiro Shimoda (1):
  mmc: tmio, renesas-sdhi: add max_{segs, blk_count} to tmio_mmc_data

 Documentation/devicetree/bindings/mmc/tmio_mmc.txt |   9 +
 arch/arm/boot/dts/r8a77470-iwg23s-sbc.dts          |  75 ++++++
 arch/arm/boot/dts/r8a77470.dtsi                    |  38 +++
 drivers/mmc/host/Kconfig                           |  21 +-
 drivers/mmc/host/Makefile                          |   5 +-
 drivers/mmc/host/renesas_sdhi.h                    |  41 ++++
 .../host/{sh_mobile_sdhi.c => renesas_sdhi_core.c} | 271 ++++++--------------
 drivers/mmc/host/renesas_sdhi_internal_dmac.c      | 273 +++++++++++++++++++++
 .../{tmio_mmc_dma.c => renesas_sdhi_sys_dmac.c}    | 191 +++++++++++---
 drivers/mmc/host/tmio_mmc.h                        |  11 +-
 .../mmc/host/{tmio_mmc_pio.c => tmio_mmc_core.c}   |  16 +-
 include/linux/mfd/tmio.h                           |   2 +
 12 files changed, 706 insertions(+), 247 deletions(-)
 create mode 100644 drivers/mmc/host/renesas_sdhi.h
 rename drivers/mmc/host/{sh_mobile_sdhi.c => renesas_sdhi_core.c} (65%)
 create mode 100644 drivers/mmc/host/renesas_sdhi_internal_dmac.c
 rename drivers/mmc/host/{tmio_mmc_dma.c => renesas_sdhi_sys_dmac.c} (55%)
 rename drivers/mmc/host/{tmio_mmc_pio.c => tmio_mmc_core.c} (99%)

-- 
2.7.4

^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2019-11-28 11:13 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-27 13:46 [cip-dev] [PATCH 4.4.y-cip 00/22] Add RZ/G1C SD/eMMC support Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 01/22] mmc: sdhi: Add EXT_ACC register busy check Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 02/22] mmc: sh_mobile_sdhi: don't use array for DT configs Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 03/22] mmc: sh_mobile_sdhi: simplify code for voltage switching Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 04/22] mmc: sh_mobile_sdhi: enable SDIO IRQs for RCar Gen3 Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 05/22] mmc: tmio: always unmap DMA before waiting for interrupt Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 06/22] mmc: tmio: rename tmio_mmc_{pio => core}.c Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 07/22] mmc: renesas-sdhi: rename tmio_mmc_dma.c => renesas_sdhi_sys_dmac.c Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 08/22] mmc: renesas-sdhi: rename sh_mobile_sdhi.c => renesas_sdhi_core.c Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 09/22] mmc: renesas-sdhi: make renesas_sdhi_sys_dmac main module file Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 10/22] mmc: renesas-sdhi: improve checkpatch cleanness Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 11/22] mmc: tmio, renesas-sdhi: add max_{segs, blk_count} to tmio_mmc_data Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 12/22] mmc: tmio, renesas-sdhi: add dataend to DMA ops Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 13/22] mmc: renesas-sdhi: add support for R-Car Gen3 SDHI DMAC Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 14/22] mmc: renesas_sdhi: consolidate DMAC CONFIG options Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 15/22] dt-bindings: mmc: renesas_sdhi: add R-Car Gen[123] fallback compatibility strings Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 16/22] mmc: renesas_sdhi: implement " Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 17/22] dt-bindings: mmc: renesas_sdhi: Add r8a77470 support Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 18/22] mmc: renesas_sdhi: Add r8a77470 SDHI1 support Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 19/22] ARM: dts: r8a77470: Add SDHI2 support Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 20/22] ARM: dts: r8a77470: Add SDHI0 support Biju Das
2019-11-27 13:46 ` [cip-dev] [PATCH 4.4.y-cip 21/22] ARM: dts: r8a77470: Add SDHI1 support Biju Das
2019-11-27 13:47 ` [cip-dev] [PATCH 4.4.y-cip 22/22] ARM: dts: iwg23s-sbc: Add uSD and eMMC support Biju Das
2019-11-27 17:59 ` [cip-dev] [PATCH 4.4.y-cip 00/22] Add RZ/G1C SD/eMMC support Pavel Machek
2019-11-27 19:21 ` Pavel Machek
2019-11-28  7:56   ` Biju Das
2019-11-28 11:13     ` Pavel Machek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox