All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] phy: for 4.8 merge window
@ 2016-07-05  5:23 Kishon Vijay Abraham I
  2016-07-05  5:23 ` [PATCH 01/10] phy: xgene: rename "enum phy_mode" to "enum xgene_phy_mode" Kishon Vijay Abraham I
                   ` (10 more replies)
  0 siblings, 11 replies; 14+ messages in thread
From: Kishon Vijay Abraham I @ 2016-07-05  5:23 UTC (permalink / raw)
  To: gregkh; +Cc: kishon, linux-kernel

Hi Greg,

Please find the pull request for 4.8 merge window below.

Now the controller can configure the mode in which the PHY should
work using the new phy_set_mode API. This was added by David Lechner
required for da8xx-usb phy (used by MUSB). For this I created a signed
tag 'phy-set-mode-v2' since the phy_set_mode API is called from musb
driver which is not part of this pull request. This also adds a new
phy driver for USB PHY in DA8xx SoC and includes other minor cleanups
and fixes.

Consider merging this for the next merge window. Let me know if I have
to change something.

The following changes since commit 04e59a0211ff012ba60c00baca673482570784e9:

  phy-sun4i-usb: Fix irq free conditions to match request conditions (2016-06-22 11:33:46 +0530)

are available in the git repository at:

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

for you to fetch changes up to c14f8a4032efa73d9c4e155add47c19252b3bdf4:

  phy: rcar-gen3-usb2: fix mutex_lock calling in interrupt (2016-07-04 18:07:39 +0530)

----------------------------------------------------------------
phy: for 4.8 -rc1

*) Add a new phy_ops for setting the phy mode
*) Add a new phy driver for DA8xx SoC USB PHY
*) Minor fixes and cleanups

Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>

----------------------------------------------------------------
David Lechner (3):
      phy: Add set_mode callback
      dt-bindings: Add bindings for phy-da8xx-usb
      phy: da8xx-usb: new driver for DA8xx SoC USB PHY

Hans de Goede (1):
      phy-sun4i-usb: Add workaround for missing Vbus det interrupts on A31

Heiko Stuebner (1):
      phy: rockchip-usb: should be a child device of the GRF

Kishon Vijay Abraham I (2):
      phy: xgene: rename "enum phy_mode" to "enum xgene_phy_mode"
      Merge tag 'phy-set-mode-v2' of git://git.kernel.org/.../kishon/linux-phy into next

Peter Griffin (2):
      phy: phy-qcom-ufs-qmp-20nm: Remove site specific OOM error message
      phy: phy-qcom-ufs-qmp-14nm: Remove site specific OOM error message

Sudip Mukherjee (1):
      phy: rockhip-usb: use devm_add_action_or_reset()

Yoshihiro Shimoda (1):
      phy: rcar-gen3-usb2: fix mutex_lock calling in interrupt

 .../devicetree/bindings/phy/phy-da8xx-usb.txt      |   40 ++++
 .../devicetree/bindings/phy/rockchip-usb-phy.txt   |   27 ++-
 drivers/phy/Kconfig                                |   10 +
 drivers/phy/Makefile                               |    1 +
 drivers/phy/phy-core.c                             |   15 ++
 drivers/phy/phy-da8xx-usb.c                        |  245 ++++++++++++++++++++
 drivers/phy/phy-qcom-ufs-qmp-14nm.c                |    1 -
 drivers/phy/phy-qcom-ufs-qmp-20nm.c                |    1 -
 drivers/phy/phy-rcar-gen3-usb2.c                   |   26 ++-
 drivers/phy/phy-rockchip-usb.c                     |   23 +-
 drivers/phy/phy-sun4i-usb.c                        |   34 ++-
 drivers/phy/phy-xgene.c                            |    4 +-
 include/linux/phy/phy.h                            |   17 ++
 13 files changed, 408 insertions(+), 36 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/phy/phy-da8xx-usb.txt
 create mode 100644 drivers/phy/phy-da8xx-usb.c

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

end of thread, other threads:[~2016-07-18  5:51 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-05  5:23 [GIT PULL] phy: for 4.8 merge window Kishon Vijay Abraham I
2016-07-05  5:23 ` [PATCH 01/10] phy: xgene: rename "enum phy_mode" to "enum xgene_phy_mode" Kishon Vijay Abraham I
2016-07-05  5:23 ` [PATCH 02/10] phy: Add set_mode callback Kishon Vijay Abraham I
2016-07-05  5:23 ` [PATCH 03/10] dt-bindings: Add bindings for phy-da8xx-usb Kishon Vijay Abraham I
2016-07-05  5:23 ` [PATCH 04/10] phy: da8xx-usb: new driver for DA8xx SoC USB PHY Kishon Vijay Abraham I
2016-07-15 21:14   ` Arnd Bergmann
2016-07-18  5:51     ` Kishon Vijay Abraham I
2016-07-05  5:23 ` [PATCH 05/10] phy: rockchip-usb: should be a child device of the GRF Kishon Vijay Abraham I
2016-07-05  5:23 ` [PATCH 06/10] phy: phy-qcom-ufs-qmp-20nm: Remove site specific OOM error message Kishon Vijay Abraham I
2016-07-05  5:23 ` [PATCH 07/10] phy: phy-qcom-ufs-qmp-14nm: " Kishon Vijay Abraham I
2016-07-05  5:23 ` [PATCH 08/10] phy-sun4i-usb: Add workaround for missing Vbus det interrupts on A31 Kishon Vijay Abraham I
2016-07-05  5:23 ` [PATCH 09/10] phy: rockhip-usb: use devm_add_action_or_reset() Kishon Vijay Abraham I
2016-07-05  5:23 ` [PATCH 10/10] phy: rcar-gen3-usb2: fix mutex_lock calling in interrupt Kishon Vijay Abraham I
2016-07-14  3:04 ` [GIT PULL] phy: for 4.8 merge window Greg KH

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.