All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 0/8] ARM: sunxi: Add driver for SD/MMC hosts found on allwinner sunxi SOCs
@ 2014-02-11 19:33 ` David Lanzendörfer
  0 siblings, 0 replies; 42+ messages in thread
From: David Lanzendörfer @ 2014-02-11 19:33 UTC (permalink / raw)
  To: devicetree, Ulf Hansson, Laurent Pinchart, Mike Turquette,
	Simon Baatz, Hans de Goede, Emilio López, linux-mmc,
	Chris Ball, linux-kernel, H Hartley Sweeten, linux-sunxi,
	Tejun Heo, Maxime Ripard, Guennadi Liakhovetski,
	linux-arm-kernel

Hello
The following patchset adds support for the SD/MMC host found in the Allwinner SoCs.
It contains all the necessary modifications for clock environment and also the device
tree script modification which add it to all the boards using it.
The clock environment function needed for phase offset configuration has
been proposed and implemented by Emilio.
A lot of work and cleanup has been done by Hans de Goede. Special thanks to him!
This patchset is the 4th attempt to send this driver upstream.

Changes since v1:
-Using mmc_of_parse instead of diy dt parsing
-Adding nodes for all mmc controller to the dtsi files,
 including sofar unused controllers
-Using generic GPIO slot library for WP/CD
-Adding additional MMC device nodes into DTSI files

Changes since v2:
-Add missing Signed-off-by tags
-Stop using __raw_readl / __raw_writel so that barriers are properly used
-Adding missing new lines
-Adding missing patch for automatic reparenting of clocks

Changes since v3:
-Move clk_enable / disable into host_init / exit (Hans)
-Fix hang on boot caused by irq storm (Hans)

Changes since v4:
-moving sunxi-mci.{c/h} to sunxi-mmc.{c/h}
-removing camel cases from the defines in  sunxi-mmc.h
-moving defines out of the struct definition
 since this is bad coding style
-adding documentation for the device tree binding

---

David Lanzendörfer (5):
      ARM: sunxi: Add driver for SD/MMC hosts found on Allwinner sunxi SoCs
      ARM: dts: sun7i: Add support for mmc
      ARM: dts: sun4i: Add support for mmc
      ARM: dts: sun5i: Add support for mmc
      ARM: sunxi: Add documentation for driver for SD/MMC hosts found on Allwinner sunxi SoCs

Emilio López (2):
      clk: sunxi: factors: automatic reparenting support
      clk: sunxi: Implement MMC phase control

Hans de Goede (1):
      ARM: sunxi: clk: export clk_sunxi_mmc_phase_control


 .../devicetree/bindings/mmc/sunxi-mmc.txt          |   32 +
 arch/arm/boot/dts/sun4i-a10-a1000.dts              |    8 
 arch/arm/boot/dts/sun4i-a10-cubieboard.dts         |    8 
 arch/arm/boot/dts/sun4i-a10.dtsi                   |   54 +
 arch/arm/boot/dts/sun5i-a10s-olinuxino-micro.dts   |   30 +
 arch/arm/boot/dts/sun5i-a10s.dtsi                  |   44 +
 arch/arm/boot/dts/sun5i-a13-olinuxino-micro.dts    |   15 
 arch/arm/boot/dts/sun5i-a13-olinuxino.dts          |   15 
 arch/arm/boot/dts/sun5i-a13.dtsi                   |   37 +
 arch/arm/boot/dts/sun7i-a20-cubieboard2.dts        |    8 
 arch/arm/boot/dts/sun7i-a20-cubietruck.dts         |    8 
 arch/arm/boot/dts/sun7i-a20-olinuxino-micro.dts    |   23 +
 arch/arm/boot/dts/sun7i-a20.dtsi                   |   61 +
 drivers/clk/sunxi/clk-factors.c                    |   36 +
 drivers/clk/sunxi/clk-sunxi.c                      |   35 +
 drivers/mmc/host/Kconfig                           |    7 
 drivers/mmc/host/Makefile                          |    2 
 drivers/mmc/host/sunxi-mmc.c                       |  872 ++++++++++++++++++++
 drivers/mmc/host/sunxi-mmc.h                       |  239 +++++
 include/linux/clk/sunxi.h                          |   22 +
 20 files changed, 1556 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/mmc/sunxi-mmc.txt
 create mode 100644 drivers/mmc/host/sunxi-mmc.c
 create mode 100644 drivers/mmc/host/sunxi-mmc.h
 create mode 100644 include/linux/clk/sunxi.h

-- 
Signature

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

end of thread, other threads:[~2014-03-11 16:22 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-11 19:33 [PATCH v5 0/8] ARM: sunxi: Add driver for SD/MMC hosts found on allwinner sunxi SOCs David Lanzendörfer
2014-02-11 19:33 ` David Lanzendörfer
2014-02-11 19:33 ` David Lanzendörfer
2014-02-11 19:33 ` [PATCH v5 1/8] clk: sunxi: factors: automatic reparenting support David Lanzendörfer
2014-02-11 19:33   ` David Lanzendörfer
2014-02-11 19:33   ` David Lanzendörfer
2014-02-11 19:33 ` [PATCH v5 2/8] clk: sunxi: Implement MMC phase control David Lanzendörfer
2014-02-11 19:33   ` David Lanzendörfer
2014-02-11 19:33   ` David Lanzendörfer
2014-02-11 19:33 ` [PATCH v5 3/8] ARM: sunxi: clk: export clk_sunxi_mmc_phase_control David Lanzendörfer
2014-02-11 19:33   ` David Lanzendörfer
2014-02-11 19:33   ` David Lanzendörfer
2014-02-11 19:33 ` [PATCH v5 4/8] ARM: sunxi: Add driver for SD/MMC hosts found on Allwinner sunxi SoCs David Lanzendörfer
2014-02-11 19:33   ` David Lanzendörfer
2014-02-11 19:33   ` David Lanzendörfer
2014-02-13  7:24   ` [linux-sunxi] " Chen-Yu Tsai
2014-02-13  7:24     ` Chen-Yu Tsai
2014-02-13  7:24     ` Chen-Yu Tsai
2014-02-11 19:34 ` [PATCH v5 5/8] ARM: dts: sun7i: Add support for mmc David Lanzendörfer
2014-02-11 19:34   ` David Lanzendörfer
2014-02-11 19:34   ` David Lanzendörfer
2014-02-11 19:34 ` [PATCH v5 6/8] ARM: dts: sun4i: " David Lanzendörfer
2014-02-11 19:34   ` David Lanzendörfer
2014-02-11 19:34   ` David Lanzendörfer
2014-03-10 21:49   ` mr.nuke.me
2014-03-10 21:49     ` mr.nuke.me at gmail.com
2014-03-10 21:49     ` mr.nuke.me-Re5JQEeQqe8AvxtiuMwx3w
2014-03-11 15:55     ` Hans de Goede
2014-03-11 15:55       ` Hans de Goede
2014-03-11 15:55       ` Hans de Goede
2014-03-11 16:20       ` David Lanzendörfer
2014-03-11 16:20         ` David Lanzendörfer
2014-03-11 16:20       ` David Lanzendörfer
2014-03-11 16:20       ` David Lanzendörfer
     [not found]       ` <531F3203.3010807-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2014-03-11 16:20         ` David Lanzendörfer
2014-03-11 16:20       ` David Lanzendörfer
2014-02-11 19:34 ` [PATCH v5 7/8] ARM: dts: sun5i: " David Lanzendörfer
2014-02-11 19:34   ` David Lanzendörfer
2014-02-11 19:34   ` David Lanzendörfer
2014-02-11 19:34 ` [PATCH v5 8/8] ARM: sunxi: Add documentation for driver for SD/MMC hosts found on Allwinner sunxi SoCs David Lanzendörfer
2014-02-11 19:34   ` David Lanzendörfer
2014-02-11 19:34   ` David Lanzendörfer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.