public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL 00/20] phy: for 4.1 merge window
@ 2015-04-03 16:26 Kishon Vijay Abraham I
  2015-04-03 16:26 ` [PATCH 01/20] phy: berlin-usb: Use PTR_ERR_OR_ZERO Kishon Vijay Abraham I
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: Kishon Vijay Abraham I @ 2015-04-03 16:26 UTC (permalink / raw)
  To: gregkh; +Cc: kishon, linux-kernel

Hi Greg,

Please find the pull request for 4.1 merge window. This includes two new PHY
driver, bug fixes and few cleanups.

A patch to add MAINTAINER for miphy PHY drivers has also been included.
There is also a patch that modifies stih416.dtsi to use the generic phy type
constants for which I have got Acked by from the st device tree maintainer
(Maxime Coquelin) and there shouldn't be conflicts when it gets merged to
linus tree.

Let me know if you want me to change something.

Cheers
Kishon

The following changes since commit c517d838eb7d07bbe9507871fab3931deccff539:

  Linux 4.0-rc1 (2015-02-22 18:21:14 -0800)

are available in the git repository at:

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

for you to fetch changes up to e95cf393d2097a7744f98de1c7936fcbde0843e3:

  MAINTAINERS: Add phy-miphy28lp.c and phy-miphy365x.c to ARCH/STI architecture (2015-04-03 18:16:22 +0530)

----------------------------------------------------------------
New Features
============
*) Add driver for USB PHYs on sun9i
*) Add driver for USB PHY on dm816x
*) Modified exynos5-usbdrd driver to add support for Exynos5433 SoC

Fixes
=====
*) Fix power_on/power_off failure paths in some drivers
*) Make miphy365x use generic PHY type constants
*) Fix build errors due to missing export symbols in qcom-ufs driver
*) Make all the functions return proper error values

Cleanups
========
*) use PTR_ERR_OR_ZERO to simplify code
*) use devm_kcalloc instead of devm_kzalloc with multiply
*) remove un-necessary ifdef CONFIG_OF

----------------------------------------------------------------
Axel Lin (15):
      phy: berlin-usb: Use PTR_ERR_OR_ZERO
      phy: xgene: Use PTR_ERR_OR_ZERO
      phy: berlin-sata: Use devm_kcalloc at appropriate place
      phy: miphy28lp: Use PTR_ERR_OR_ZERO
      phy: omap-control: Remove unneeded ifdef CONFIG_OF guard and of_match_ptr
      phy: omap-usb2: Remove unneeded ifdef CONFIG_OF guard and of_match_ptr
      phy: ti-pipe3: Remove unneeded ifdef CONFIG_OF guard and of_match_ptr
      phy: berlin-usb: Set drvdata for phy and use it
      phy: stih41x-usb: Fixup stih41x_usb_phy_power_on failure path
      phy: qcom-ufs: Catch devm_phy_create failure in ufs_qcom_phy_generic_probe
      phy: samsung_usb2: Fixup samsung_usb2_phy_power_on/off paths
      phy: qcom-ufs: Fix build error due to missing export symbols
      phy: samsung_usb2: Fixup samsung_usb2_phy_power_on/off paths
      phy: qcom-ufs: Fix build error due to missing export symbols
      phy: qcom-ufs: Don't return error if fail to get optional resource
      phy: spear1310-miphy: Return proper error for spear1310_miphy_xlate
      phy: spear1340-miphy: Return proper error for spear1340_miphy_xlate

Chen-Yu Tsai (1):
      phy: Add driver to support individual USB PHYs on sun9i

Jaewon Kim (1):
      phy: exynos5-usbdrd: Add to support for Exynos5433 SoC

Peter Griffin (2):
      phy: miphy365x: Use the generic phy type constants in dt-bindings/phy/phy.h
      MAINTAINERS: Add phy-miphy28lp.c and phy-miphy365x.c to ARCH/STI architecture

Tony Lindgren (1):
      phy: Add a driver for dm816x USB PHY

 .../devicetree/bindings/phy/dm816x-phy.txt         |   24 ++
 .../devicetree/bindings/phy/phy-miphy365x.txt      |    8 +-
 .../devicetree/bindings/phy/samsung-phy.txt        |    3 +-
 .../devicetree/bindings/phy/sun9i-usb-phy.txt      |   38 +++
 MAINTAINERS                                        |    2 +
 arch/arm/boot/dts/stih416.dtsi                     |    4 +-
 drivers/phy/Kconfig                                |   18 ++
 drivers/phy/Makefile                               |    2 +
 drivers/phy/phy-berlin-sata.c                      |    2 +-
 drivers/phy/phy-berlin-usb.c                       |   19 +-
 drivers/phy/phy-dm816x-usb.c                       |  290 ++++++++++++++++++++
 drivers/phy/phy-exynos5-usbdrd.c                   |   10 +
 drivers/phy/phy-miphy28lp.c                        |    5 +-
 drivers/phy/phy-miphy365x.c                        |   14 +-
 drivers/phy/phy-omap-control.c                     |   10 +-
 drivers/phy/phy-omap-usb2.c                        |    6 +-
 drivers/phy/phy-qcom-ufs.c                         |   33 +--
 drivers/phy/phy-samsung-usb2.c                     |   10 +-
 drivers/phy/phy-spear1310-miphy.c                  |    4 +-
 drivers/phy/phy-spear1340-miphy.c                  |    4 +-
 drivers/phy/phy-stih41x-usb.c                      |    8 +-
 drivers/phy/phy-sun9i-usb.c                        |  202 ++++++++++++++
 drivers/phy/phy-ti-pipe3.c                         |    9 +-
 drivers/phy/phy-xgene.c                            |   23 +-
 include/dt-bindings/phy/phy-miphy365x.h            |   14 -
 include/linux/mfd/syscon/exynos5-pmu.h             |    3 +
 26 files changed, 655 insertions(+), 110 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/phy/dm816x-phy.txt
 create mode 100644 Documentation/devicetree/bindings/phy/sun9i-usb-phy.txt
 create mode 100644 drivers/phy/phy-dm816x-usb.c
 create mode 100644 drivers/phy/phy-sun9i-usb.c
 delete mode 100644 include/dt-bindings/phy/phy-miphy365x.h

-- 
1.7.9.5


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

end of thread, other threads:[~2015-04-10 11:50 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-03 16:26 [GIT PULL 00/20] phy: for 4.1 merge window Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 01/20] phy: berlin-usb: Use PTR_ERR_OR_ZERO Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 02/20] phy: xgene: " Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 03/20] phy: berlin-sata: Use devm_kcalloc at appropriate place Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 04/20] phy: miphy28lp: Use PTR_ERR_OR_ZERO Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 05/20] phy: omap-control: Remove unneeded ifdef CONFIG_OF guard and of_match_ptr Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 06/20] phy: omap-usb2: " Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 07/20] phy: ti-pipe3: " Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 08/20] phy: berlin-usb: Set drvdata for phy and use it Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 09/20] phy: stih41x-usb: Fixup stih41x_usb_phy_power_on failure path Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 10/20] phy: qcom-ufs: Catch devm_phy_create failure in ufs_qcom_phy_generic_probe Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 11/20] phy: exynos5-usbdrd: Add to support for Exynos5433 SoC Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 12/20] phy: samsung_usb2: Fixup samsung_usb2_phy_power_on/off paths Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 13/20] phy: qcom-ufs: Fix build error due to missing export symbols Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 14/20] phy: qcom-ufs: Don't return error if fail to get optional resource Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 15/20] phy: Add a driver for dm816x USB PHY Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 16/20] phy: Add driver to support individual USB PHYs on sun9i Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 17/20] phy: miphy365x: Use the generic phy type constants in dt-bindings/phy/phy.h Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 18/20] phy: spear1310-miphy: Return proper error for spear1310_miphy_xlate Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 19/20] phy: spear1340-miphy: Return proper error for spear1340_miphy_xlate Kishon Vijay Abraham I
2015-04-03 16:26 ` [PATCH 20/20] MAINTAINERS: Add phy-miphy28lp.c and phy-miphy365x.c to ARCH/STI architecture Kishon Vijay Abraham I
2015-04-08  5:50 ` [GIT PULL 00/20] phy: for 4.1 merge window Kishon Vijay Abraham I
2015-04-10 11:50 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox