mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Kishon Vijay Abraham I <kishon@ti.com>
To: <gregkh@linuxfoundation.org>
Cc: <kishon@ti.com>, <linux-kernel@vger.kernel.org>
Subject: [GIT PULL 0/9] phy: for 3.20 merge window
Date: Sat, 31 Jan 2015 19:58:07 +0530	[thread overview]
Message-ID: <1422714496-423-1-git-send-email-kishon@ti.com> (raw)

Hi Greg,

Please find the PULL REQUEST for 3.20 merge window. It's a rather
short pull request which includes a new PHY driver for rockchip and contains few
misc fixes.

There is a patch which modifies the dt data for stih416 and I've included it
in this pull request after getting ack from STI maintainer (Maxime Coquelin).

Let me know If I have to change something.

Cheers
Kishon

The following changes since commit ec6f34e5b552fb0a52e6aae1a5afbbb1605cc6cc:

  Linux 3.19-rc5 (2015-01-18 18:02:20 +1200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git tags/for-3.20

for you to fetch changes up to bbd3ce86c768928d5db334881e20116c6da4d0c7:

  phy: miphy365x: Pass sysconfig register offsets via syscfg dt property. (2015-01-30 18:12:05 +0530)

----------------------------------------------------------------
Adds a new Rockchip PHY driver and contains miscellaneous fixes.

----------------------------------------------------------------
Gabriel FERNANDEZ (1):
      phy: miphy28lp: Pass sysconfig register offsets via syscfg dt property.

Peter Griffin (2):
      phy: phy-stih407-usb: Pass sysconfig register offsets via syscfg property.
      phy: miphy365x: Pass sysconfig register offsets via syscfg dt property.

Roger Quadros (2):
      phy: ti-pipe3: Disable clocks on system suspend
      phy: ti-pipe3: Fix SATA across suspend/resume

Sylwester Nawrocki (1):
      phy: exynos-video-mipi: Fix regression by adding support for PMU regmap

Wei Yongjun (1):
      phy: fix return value check in armada375_usb_phy_probe()

Yunzhi Li (2):
      Documentation: bindings: add dt documentation for Rockchip usb PHY
      phy: add a driver for the Rockchip SoC internal USB2.0 PHY

 .../devicetree/bindings/phy/phy-miphy28lp.txt      |   43 ++----
 .../devicetree/bindings/phy/phy-miphy365x.txt      |   15 +-
 .../devicetree/bindings/phy/phy-stih407-usb.txt    |   10 +-
 .../devicetree/bindings/phy/rockchip-usb-phy.txt   |   37 +++++
 .../devicetree/bindings/phy/samsung-phy.txt        |    2 +-
 arch/arm/boot/dts/stih416.dtsi                     |   10 +-
 drivers/phy/Kconfig                                |    7 +
 drivers/phy/Makefile                               |    1 +
 drivers/phy/phy-armada375-usb2.c                   |    4 +-
 drivers/phy/phy-exynos-mipi-video.c                |   89 +++++++----
 drivers/phy/phy-miphy28lp.c                        |   61 ++++----
 drivers/phy/phy-miphy365x.c                        |   29 ++--
 drivers/phy/phy-rockchip-usb.c                     |  158 ++++++++++++++++++++
 drivers/phy/phy-stih407-usb.c                      |   25 ++--
 drivers/phy/phy-ti-pipe3.c                         |  143 ++++++++++++++----
 include/linux/mfd/syscon/exynos4-pmu.h             |   21 +++
 16 files changed, 483 insertions(+), 172 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/phy/rockchip-usb-phy.txt
 create mode 100644 drivers/phy/phy-rockchip-usb.c
 create mode 100644 include/linux/mfd/syscon/exynos4-pmu.h

-- 
1.7.9.5


             reply	other threads:[~2015-01-31 14:28 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-31 14:28 Kishon Vijay Abraham I [this message]
2015-01-31 14:28 ` [PATCH 1/9] phy: ti-pipe3: Disable clocks on system suspend Kishon Vijay Abraham I
2015-01-31 14:28 ` [PATCH 2/9] phy: ti-pipe3: Fix SATA across suspend/resume Kishon Vijay Abraham I
2015-01-31 14:28 ` [PATCH 3/9] phy: fix return value check in armada375_usb_phy_probe() Kishon Vijay Abraham I
2015-01-31 14:28 ` [PATCH 4/9] phy: miphy28lp: Pass sysconfig register offsets via syscfg dt property Kishon Vijay Abraham I
2015-01-31 14:28 ` [PATCH 5/9] phy: phy-stih407-usb: Pass sysconfig register offsets via syscfg property Kishon Vijay Abraham I
2015-01-31 14:28 ` [PATCH 6/9] Documentation: bindings: add dt documentation for Rockchip usb PHY Kishon Vijay Abraham I
2015-01-31 14:28 ` [PATCH 7/9] phy: add a driver for the Rockchip SoC internal USB2.0 PHY Kishon Vijay Abraham I
2015-01-31 14:28 ` [PATCH 8/9] phy: exynos-video-mipi: Fix regression by adding support for PMU regmap Kishon Vijay Abraham I
2015-01-31 14:28 ` [PATCH 9/9] phy: miphy365x: Pass sysconfig register offsets via syscfg dt property Kishon Vijay Abraham I
2015-01-31 16:54 ` [GIT PULL 0/9] phy: for 3.20 merge window Greg KH

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=1422714496-423-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

Powered by JetHome