From: Kishon Vijay Abraham I <kishon@ti.com>
To: <gregkh@linuxfoundation.org>
Cc: <kishon@ti.com>, <linux-kernel@vger.kernel.org>
Subject: [GIT PULL 00/22] PHY: for 3.18
Date: Wed, 24 Sep 2014 19:16:58 +0530 [thread overview]
Message-ID: <1411566440-19169-1-git-send-email-kishon@ti.com> (raw)
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
next reply other threads:[~2014-09-24 13:47 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-24 13:46 Kishon Vijay Abraham I [this message]
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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1411566440-19169-1-git-send-email-kishon@ti.com \
--to=kishon@ti.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®