All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] Exynos7: Adding USB 3.0 support
@ 2014-11-21 13:35 ` Vivek Gautam
  0 siblings, 0 replies; 53+ messages in thread
From: Vivek Gautam @ 2014-11-21 13:35 UTC (permalink / raw)
  To: linux-kernel, linux-samsung-soc, linux-usb, devicetree, balbi, kishon
  Cc: linux-omap, gregkh, tomasz.figa, s.nawrocki, robh+dt, stern,
	kgene.kim, Vivek Gautam

The series has dependency on
a) "[PATCH v7 0/7] Enable support for Samsung Exynos7 SoC"
   http://www.spinics.net/lists/linux-samsung-soc/msg38734.html
b) "[GIT PULL] Samsung clock changes for 3.19" - specifically the clock dt
   bindings header.
   http://comments.gmane.org/gmane.linux.kernel.samsung-soc/39142
c) "tty: serial: samsung: Clean-up selection of number of available UARTs"
   http://www.spinics.net/lists/linux-samsung-soc/msg37418.html
d) "dts, kbuild: Implement support for dtb vendor subdirs"(merged in linux-next)
   https://lkml.org/lkml/2014/10/21/654
e) "Samsung pinctrl patches for v3.19"
   http://www.spinics.net/lists/linux-samsung-soc/msg38744.html

Tested on Exynos7-espresso board with 3.18-rc5 and above dependencies.

Clubbing the pinctrl, clk, and usb driver changes alongwith the dt changes
together in this series only so as to avoid having 'n' number of dependencies.

The USB driver patches in this series were part of [1] sent earlier.
[1] [PATCH v2 0/4] usb: dwc3/phy-exynos5-usbdrd: Extend support to Exynos7
    https://lkml.org/lkml/2014/10/7/191

Vivek Gautam (11):
  pinctrl: exynos: Add BUS1 pin controller for exynos7
  dwc3: exynos: Remove local variable for clock from probe
  dwc3: exynos: Add provision for suspend clock
  dwc3: exynos: Add provision for AXI UpScaler clock on exynos7
  phy: exynos5-usbdrd: Add pipe-clk, utmi-clk and itp-clk support
  phy: exynos5-usbdrd: Add facility for VBUS-BOOST-5V supply
  phy: exynos7-usbdrd: Update dependency for ARCH_EXYNOS
  clk: exynos7: Add required clock tree for USB
  arm64: exynos: Add bus1 pinctrl node on exynos7
  arm64: dts: Enable USB 3.0 controller on exynos7
  arm64: dts: exynos7-espresso: Add regulators for Vbus and Vbus-Boost

 .../devicetree/bindings/phy/samsung-phy.txt        |    6 +
 .../devicetree/bindings/usb/exynos-usb.txt         |    6 +-
 arch/arm64/boot/dts/exynos/exynos7-espresso.dts    |   43 +++++++
 arch/arm64/boot/dts/exynos/exynos7-pinctrl.dtsi    |   26 ++++
 arch/arm64/boot/dts/exynos/exynos7.dtsi            |   42 ++++++
 drivers/clk/samsung/clk-exynos7.c                  |   64 +++++++++
 drivers/phy/Kconfig                                |    2 +-
 drivers/phy/phy-exynos5-usbdrd.c                   |  136 +++++++++++++++++---
 drivers/pinctrl/samsung/pinctrl-exynos.c           |   12 ++
 drivers/usb/dwc3/dwc3-exynos.c                     |   39 +++++-
 include/dt-bindings/clock/exynos7-clk.h            |    9 +-
 11 files changed, 354 insertions(+), 31 deletions(-)

-- 
1.7.10.4


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

end of thread, other threads:[~2014-12-22 14:47 UTC | newest]

Thread overview: 53+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-11-21 13:35 [PATCH 00/11] Exynos7: Adding USB 3.0 support Vivek Gautam
2014-11-21 13:35 ` Vivek Gautam
2014-11-21 13:35 ` [PATCH 01/11] pinctrl: exynos: Add BUS1 pin controller for exynos7 Vivek Gautam
2014-11-22 13:37   ` Alim Akhtar
2014-11-22 13:37     ` Alim Akhtar
2014-11-24  5:00     ` Vivek Gautam
2014-11-24  5:00       ` Vivek Gautam
2014-11-24 13:02       ` [PATCH V2 1/2] " Vivek Gautam
2014-11-26 13:33         ` Alim Akhtar
2014-11-26 13:33           ` Alim Akhtar
2014-11-28  3:35           ` Vivek Gautam
2014-11-28  3:35             ` Vivek Gautam
2014-11-28  3:39             ` Vivek Gautam
2014-11-28  3:39               ` Vivek Gautam
2014-11-28 15:45               ` Linus Walleij
2014-11-28 15:45                 ` Linus Walleij
2014-12-01 14:21                 ` Vivek Gautam
2014-12-01 14:21                   ` Vivek Gautam
2014-12-03 13:41                   ` Linus Walleij
2014-12-03 13:41                     ` Linus Walleij
2014-12-01 16:07         ` Tomasz Figa
2014-12-01 16:07           ` Tomasz Figa
2014-12-10  8:21           ` Vivek Gautam
2014-12-10  8:21             ` Vivek Gautam
2014-11-21 13:35 ` [PATCH 02/11] dwc3: exynos: Remove local variable for clock from probe Vivek Gautam
2014-11-21 13:35 ` [PATCH 03/11] dwc3: exynos: Add provision for suspend clock Vivek Gautam
2014-11-21 13:35   ` Vivek Gautam
2014-11-21 13:35 ` [PATCH 04/11] dwc3: exynos: Add provision for AXI UpScaler clock on exynos7 Vivek Gautam
2014-11-21 13:35 ` [PATCH 05/11] phy: exynos5-usbdrd: Add pipe-clk, utmi-clk and itp-clk support Vivek Gautam
2014-11-21 13:35   ` Vivek Gautam
2014-11-21 13:35 ` [PATCH 06/11] phy: exynos5-usbdrd: Add facility for VBUS-BOOST-5V supply Vivek Gautam
2014-11-21 13:35 ` [PATCH 07/11] phy: exynos7-usbdrd: Update dependency for ARCH_EXYNOS Vivek Gautam
2014-11-21 13:35 ` [PATCH 08/11] clk: exynos7: Add required clock tree for USB Vivek Gautam
2014-11-21 13:35   ` Vivek Gautam
2014-11-21 13:35 ` [PATCH 09/11] arm64: exynos: Add bus1 pinctrl node on exynos7 Vivek Gautam
2014-11-22 13:41   ` Alim Akhtar
2014-11-22 13:41     ` Alim Akhtar
2014-11-24 13:06     ` [PATCH V2 2/2] " Vivek Gautam
2014-11-26 13:29       ` Alim Akhtar
2014-11-26 13:29         ` Alim Akhtar
2014-11-28  3:40         ` Vivek Gautam
2014-11-28  3:40           ` Vivek Gautam
2014-11-21 13:35 ` [PATCH 10/11] arm64: dts: Enable USB 3.0 controller " Vivek Gautam
2014-11-21 13:35 ` [PATCH 11/11] arm64: dts: exynos7-espresso: Add regulators for Vbus and Vbus-Boost Vivek Gautam
2014-11-21 15:11 ` [PATCH 00/11] Exynos7: Adding USB 3.0 support Felipe Balbi
2014-11-21 15:11   ` Felipe Balbi
2014-11-22  8:40   ` Kishon Vijay Abraham I
2014-11-22  8:40     ` Kishon Vijay Abraham I
2014-11-22 15:12     ` Kukjin Kim
2014-11-25 11:48       ` Vivek Gautam
2014-11-25 11:48         ` Vivek Gautam
2014-12-22 14:47         ` Sylwester Nawrocki
2014-12-22 14:47           ` Sylwester Nawrocki

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.