All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] phy: Add new Exynos USB PHY driver
@ 2013-10-25 14:15 ` Kamil Debski
  0 siblings, 0 replies; 46+ messages in thread
From: Kamil Debski @ 2013-10-25 14:15 UTC (permalink / raw)
  To: linux-kernel, linux-samsung-soc, linux-usb, devicetree, linux-arm
  Cc: kyungmin.park, kishon, t.figa, s.nawrocki, m.szyprowski,
	gautam.vivek, mat.krawczuk, Kamil Debski

Hi,

This is the second version of the patch adding support for USB PHY module
of the Exynos series of SoCs by Samsung. The driver is utilising the newly
added Generic PHY Framework by Kishon Vijay Abraham I [1].

In addition to the PHY driver this patchset contains:
- work in progress support for Exynos 5250
  (based on the drivers/usb/phy/phy-samsung-usb2.c driver)
- support for S5PV210 added by Mateusz Krawczuk during his summer internship at
  Samsung
- change to the ehci-s5p driver which modifies the driver to use the General
  PHY Framework
- change to the s3c-hsotg driver which modifies the driver to use the General
  PHY Framework

Best wishes,
Kamil Debski
----------------
Changes from v1:
- the changes include minor fixes of the hardware initialization of the PHY
  module
- some other minor fixes were introduced

----------------------
Original cover letter:

Hi,

This patch adds a new drive for USB PHYs for Samsung SoCs. The driver is using
the Generic PHY Framework created by Kishon Vijay Abrahan I. It can be found
here https://lkml.org/lkml/2013/8/21/29. This patch adds support to Exynos4
family of SoCs. Support for Exynos3 and Exynos5 is planned to be added in the
near future.

I welcome your comments.

----------------------

[1] https://lkml.org/lkml/2013/8/21/29

Kamil Debski (4):
  phy: Add new Exynos USB PHY driver
  phy: Add WIP Exynos 5250 support to the Exynos USB PHY driver
  usb: ehci-s5p: Change to use phy provided by the generic phy
    framework
  usb: s3c-hsotg: Use the new Exynos USB phy driver with the generic
    phy framework

Mateusz Krawczuk (1):
  phy: Add support for S5PV210 to the Exynos USB PHY driver

 .../devicetree/bindings/phy/samsung-usbphy.txt     |   51 +++
 drivers/phy/Kconfig                                |   35 ++
 drivers/phy/Makefile                               |    4 +
 drivers/phy/phy-exynos-usb.c                       |  265 +++++++++++++
 drivers/phy/phy-exynos-usb.h                       |   96 +++++
 drivers/phy/phy-exynos4210-usb.c                   |  295 ++++++++++++++
 drivers/phy/phy-exynos4212-usb.c                   |  343 ++++++++++++++++
 drivers/phy/phy-exynos5250-usb.c                   |  411 ++++++++++++++++++++
 drivers/phy/phy-s5pv210-usb.c                      |  236 +++++++++++
 drivers/usb/gadget/s3c-hsotg.c                     |   13 +-
 drivers/usb/host/ehci-s5p.c                        |   21 +-
 11 files changed, 1755 insertions(+), 15 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/phy/samsung-usbphy.txt
 create mode 100644 drivers/phy/phy-exynos-usb.c
 create mode 100644 drivers/phy/phy-exynos-usb.h
 create mode 100644 drivers/phy/phy-exynos4210-usb.c
 create mode 100644 drivers/phy/phy-exynos4212-usb.c
 create mode 100644 drivers/phy/phy-exynos5250-usb.c
 create mode 100644 drivers/phy/phy-s5pv210-usb.c

-- 
1.7.9.5


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

end of thread, other threads:[~2013-10-29 10:51 UTC | newest]

Thread overview: 46+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-25 14:15 [PATCH 0/5] phy: Add new Exynos USB PHY driver Kamil Debski
2013-10-25 14:15 ` Kamil Debski
2013-10-25 14:15 ` [PATCH v2 1/5] " Kamil Debski
2013-10-25 14:15   ` Kamil Debski
2013-10-25 15:39   ` Kishon Vijay Abraham I
2013-10-25 15:39     ` Kishon Vijay Abraham I
2013-10-28 13:52     ` Kamil Debski
2013-10-28 13:52       ` Kamil Debski
2013-10-28 20:00       ` Tomasz Figa
2013-10-29 10:16         ` Kamil Debski
2013-10-29  9:52       ` Kishon Vijay Abraham I
2013-10-29  9:52         ` Kishon Vijay Abraham I
2013-10-25 21:36   ` Kumar Gala
2013-10-25 21:36     ` Kumar Gala
2013-10-28 13:52     ` Kamil Debski
2013-10-25 14:15 ` [RFC PATCH 2/5] phy: Add WIP Exynos 5250 support to the " Kamil Debski
2013-10-25 15:43   ` Kishon Vijay Abraham I
2013-10-25 15:43     ` Kishon Vijay Abraham I
2013-10-28 13:52     ` Kamil Debski
2013-10-28 13:52       ` Kamil Debski
2013-10-28 14:41     ` Vivek Gautam
2013-10-28 14:41       ` Vivek Gautam
2013-10-29  9:55       ` Kishon Vijay Abraham I
2013-10-29  9:55         ` Kishon Vijay Abraham I
2013-10-29 10:14         ` Kamil Debski
2013-10-29 10:51           ` Kishon Vijay Abraham I
2013-10-29 10:51             ` Kishon Vijay Abraham I
2013-10-25 14:15 ` [PATCH 3/5] phy: Add support for S5PV210 " Kamil Debski
2013-10-25 15:50   ` Kishon Vijay Abraham I
2013-10-25 15:50     ` Kishon Vijay Abraham I
2013-10-26  1:40     ` Jingoo Han
2013-10-26  1:40       ` Jingoo Han
2013-10-25 14:15 ` [PATCH 4/5] usb: ehci-s5p: Change to use phy provided by the generic phy framework Kamil Debski
2013-10-25 15:52   ` Kishon Vijay Abraham I
2013-10-25 15:52     ` Kishon Vijay Abraham I
2013-10-26  1:27   ` Jingoo Han
2013-10-28 13:52     ` Kamil Debski
2013-10-28 13:52       ` Kamil Debski
2013-10-26  9:41   ` Vivek Gautam
2013-10-26  9:41     ` Vivek Gautam
2013-10-28 13:53     ` Kamil Debski
2013-10-28 14:36       ` Vivek Gautam
2013-10-28 14:36         ` Vivek Gautam
2013-10-25 14:15 ` [PATCH 5/5] usb: s3c-hsotg: Use the new Exynos USB phy driver with " Kamil Debski
2013-10-25 15:53   ` Kishon Vijay Abraham I
2013-10-25 15:53     ` Kishon Vijay Abraham I

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.