linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL 00/22] PHY: for 3.18
@ 2014-09-24 13:46 Kishon Vijay Abraham I
  2014-09-24 13:46 ` [PATCH 01/22] phy: Renesas R-Car Gen2 PHY driver Kishon Vijay Abraham I
                   ` (22 more replies)
  0 siblings, 23 replies; 25+ messages in thread
From: Kishon Vijay Abraham I @ 2014-09-24 13:46 UTC (permalink / raw)
  To: gregkh; +Cc: kishon, linux-kernel

Hi Greg,

Here's the PULL Request for 3.18 merge window.
It includes 3 new PHY drivers adapted to the PHY framework and 
misc cleanups and fixes.

Let me know if I have to change something.

Cheers
Kishon

The following changes since commit 452b6361c4d9baf6940adb7b1316e0f386c39799:

  Merge tag 'rdma-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband (2014-09-23 16:47:34 -0700)

are available in the git repository at:


  git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git tags/phy-for_3.18

for you to fetch changes up to 4f0eb5d7efe375859b15c97f453113a242bf057b:

  phy: remove .owner field for drivers using module_platform_driver (2014-09-24 15:18:34 +0530)

----------------------------------------------------------------
Adds 3 new PHY drivers stih407, stih41x and rcar gen2 PHY. It also
includes miscellaneous cleanup of other PHY drivers.

----------------------------------------------------------------
Peter Griffin (15):
      phy: phy-omap-control: Remove unncessary site specific OOM messages
      phy: phy-mvebu-sata: Add missing error check for devm_kzalloc
      phy: phy-omap-usb2: Remove unncessary site specific OOM messages
      phy: phy-ti-pipe3: Remove unncessary site specific OOM messages
      phy: phy-spear1310-miphy: Remove unncessary site specific OOM messages
      phy: phy-spear1340-miphy: Remove unncessary site specific OOM messages
      phy: phy-spear1310-miphy: Use module_platform_driver to register driver.
      phy: phy-spear1340-miphy: Use module_platform_driver to register driver.
      phy: phy-stih407-usb: Add usb picoPHY driver found on stih407 SoC family
      phy: phy-stih407-usb: Add dt documentation for USB picophy found on stih407 SoC family
      MAINTAINERS: Add phy-stih407-usb.c file to ARCH/STI architecture
      phy: phy-stih41x-usb: Add usb phy support for STiH41x SoCs.
      phy: phy-stih41x-usb: Add dt documentation for USB phy on STiH415/6
      MAINTAINERS: Add phy-stih41x-usb.c to ARCH/STI architecture
      phy: remove .owner field for drivers using module_platform_driver

Sergei Shtylyov (1):
      phy: Renesas R-Car Gen2 PHY driver

Tony Lindgren (5):
      usb: phy: twl4030-usb: Remove unused irq_enabled
      usb: phy: twl4030-usb: Simplify phy init to use runtime PM
      usb: phy: twl4030-usb: Move code from twl4030_phy_power to the runtime PM calls
      usb: phy: twl4030-usb: Remove asleep and rely on runtime PM
      usb: phy: twl4030-usb: Use mutex instead of spinlock for protecting the data

Vivek Gautam (1):
      phy: exynos-dp-video: Use syscon support to control pmu register

 .../devicetree/bindings/phy/phy-stih407-usb.txt    |   30 ++
 .../devicetree/bindings/phy/phy-stih41x-usb.txt    |   24 ++
 .../devicetree/bindings/phy/rcar-gen2-phy.txt      |   51 +++
 .../devicetree/bindings/phy/samsung-phy.txt        |    7 +-
 MAINTAINERS                                        |    2 +
 drivers/phy/Kconfig                                |   24 ++
 drivers/phy/Makefile                               |    3 +
 drivers/phy/phy-bcm-kona-usb2.c                    |    1 -
 drivers/phy/phy-berlin-sata.c                      |    1 -
 drivers/phy/phy-exynos-dp-video.c                  |   80 +++--
 drivers/phy/phy-exynos-mipi-video.c                |    1 -
 drivers/phy/phy-exynos5-usbdrd.c                   |    1 -
 drivers/phy/phy-exynos5250-sata.c                  |    1 -
 drivers/phy/phy-hix5hd2-sata.c                     |    1 -
 drivers/phy/phy-miphy365x.c                        |    1 -
 drivers/phy/phy-mvebu-sata.c                       |    3 +-
 drivers/phy/phy-omap-control.c                     |    5 +-
 drivers/phy/phy-omap-usb2.c                        |    9 +-
 drivers/phy/phy-qcom-apq8064-sata.c                |    1 -
 drivers/phy/phy-qcom-ipq806x-sata.c                |    1 -
 drivers/phy/phy-rcar-gen2.c                        |  341 ++++++++++++++++++++
 drivers/phy/phy-samsung-usb2.c                     |    1 -
 drivers/phy/phy-spear1310-miphy.c                  |   17 +-
 drivers/phy/phy-spear1340-miphy.c                  |   17 +-
 drivers/phy/phy-stih407-usb.c                      |  177 ++++++++++
 drivers/phy/phy-stih41x-usb.c                      |  187 +++++++++++
 drivers/phy/phy-sun4i-usb.c                        |    1 -
 drivers/phy/phy-ti-pipe3.c                         |    6 +-
 drivers/phy/phy-twl4030-usb.c                      |  125 +++----
 drivers/phy/phy-xgene.c                            |    1 -
 30 files changed, 955 insertions(+), 165 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/phy/phy-stih407-usb.txt
 create mode 100644 Documentation/devicetree/bindings/phy/phy-stih41x-usb.txt
 create mode 100644 Documentation/devicetree/bindings/phy/rcar-gen2-phy.txt
 create mode 100644 drivers/phy/phy-rcar-gen2.c
 create mode 100644 drivers/phy/phy-stih407-usb.c
 create mode 100644 drivers/phy/phy-stih41x-usb.c

-- 
1.7.9.5


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

end of thread, other threads:[~2014-09-25 12:29 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-24 13:46 [GIT PULL 00/22] PHY: for 3.18 Kishon Vijay Abraham I
2014-09-24 13:46 ` [PATCH 01/22] phy: Renesas R-Car Gen2 PHY driver Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 02/22] phy: phy-omap-control: Remove unncessary site specific OOM messages Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 03/22] phy: phy-mvebu-sata: Add missing error check for devm_kzalloc Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 04/22] phy: phy-omap-usb2: Remove unncessary site specific OOM messages Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 05/22] phy: phy-ti-pipe3: " Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 06/22] phy: phy-spear1310-miphy: " Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 07/22] phy: phy-spear1340-miphy: " Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 08/22] phy: phy-spear1310-miphy: Use module_platform_driver to register driver Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 09/22] phy: phy-spear1340-miphy: " Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 10/22] usb: phy: twl4030-usb: Remove unused irq_enabled Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 11/22] usb: phy: twl4030-usb: Simplify phy init to use runtime PM Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 12/22] usb: phy: twl4030-usb: Move code from twl4030_phy_power to the runtime PM calls Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 13/22] usb: phy: twl4030-usb: Remove asleep and rely on runtime PM Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 14/22] usb: phy: twl4030-usb: Use mutex instead of spinlock for protecting the data Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 15/22] phy: phy-stih407-usb: Add usb picoPHY driver found on stih407 SoC family Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 16/22] phy: phy-stih407-usb: Add dt documentation for USB picophy " Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 17/22] MAINTAINERS: Add phy-stih407-usb.c file to ARCH/STI architecture Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 18/22] phy: phy-stih41x-usb: Add usb phy support for STiH41x SoCs Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 19/22] phy: phy-stih41x-usb: Add dt documentation for USB phy on STiH415/6 Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 20/22] MAINTAINERS: Add phy-stih41x-usb.c to ARCH/STI architecture Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 21/22] phy: exynos-dp-video: Use syscon support to control pmu register Kishon Vijay Abraham I
2014-09-24 13:47 ` [PATCH 22/22] phy: remove .owner field for drivers using module_platform_driver Kishon Vijay Abraham I
2014-09-25 12:17 ` [GIT PULL 00/22] PHY: for 3.18 Greg KH
2014-09-25 12:29   ` Kishon Vijay Abraham I

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).