All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/5] usb: phy: samsung: Introducing usb phy driver for samsung SoCs
@ 2012-08-08  7:40 ` Praveen Paneri
  0 siblings, 0 replies; 32+ messages in thread
From: Praveen Paneri @ 2012-08-08  7:40 UTC (permalink / raw)
  To: linux-usb
  Cc: devicetree-discuss, linux-arm-kernel, linux-samsung-soc,
	kgene.kim, balbi, gregkh, thomas.abraham, ben-linux, broonie,
	l.majewski, kyungmin.park, grant.likely, heiko

Changes from v2:
Changed the driver filenames to samsung-usbphy
Changed 's3c' to 'samsung' for platform device as well as platform data
Moved platform data structure to a separate file
Rectified coding style related errors

Changes from v1:
Rebased patches to latest usb-next branch
Changed the name 'sec_usbphy' to 'samsung_usbphy'

This patch set introduces a phy driver for samsung SoCs. It uses the existing
transceiver infrastructure to provide phy control functions. Use of this driver
can be extended for usb host phy as well. Over the period of time all the phy
related code for most of the samsung SoCs can be integrated here.
Removing the existing phy code from mach-s3c64xx. Same can be done for other SoCs
when they start supporting this phy driver. 
This driver is tested with smdk6410 and Exynos4210(with DT).

Praveen Paneri (5):
  usb: phy: samsung: Introducing usb phy driver for hsotg
  usb: s3c-hsotg: Adding phy driver support
  ARM: S3C64XX: Removing old phy setup code
  ARM: S3C64XX: Enabling samsung-usbphy driver
  ARM: Exynos4210: Enabling samsung-usbphy driver

 .../devicetree/bindings/usb/samsung-usbphy.txt     |    9 +
 arch/arm/boot/dts/exynos4210.dtsi                  |    5 +
 arch/arm/mach-exynos/include/mach/map.h            |    1 +
 arch/arm/mach-exynos/mach-exynos4-dt.c             |    8 +
 arch/arm/mach-exynos/setup-usb-phy.c               |   13 +
 arch/arm/mach-s3c64xx/include/mach/map.h           |    2 +
 arch/arm/mach-s3c64xx/mach-crag6410.c              |    7 +-
 arch/arm/mach-s3c64xx/mach-smartq.c                |    8 +-
 arch/arm/mach-s3c64xx/mach-smdk6410.c              |    7 +-
 arch/arm/mach-s3c64xx/setup-usb-phy.c              |   79 +----
 arch/arm/plat-samsung/devs.c                       |   33 ++
 arch/arm/plat-samsung/include/plat/devs.h          |    1 +
 arch/arm/plat-samsung/include/plat/usb-phy.h       |    1 +
 drivers/usb/gadget/s3c-hsotg.c                     |   40 ++-
 drivers/usb/phy/Kconfig                            |    8 +
 drivers/usb/phy/Makefile                           |    1 +
 drivers/usb/phy/samsung-usbphy.c                   |  355 ++++++++++++++++++++
 drivers/usb/phy/samsung-usbphy.h                   |   48 +++
 include/linux/platform_data/samsung-usbphy.h       |   27 ++
 19 files changed, 562 insertions(+), 91 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/usb/samsung-usbphy.txt
 create mode 100644 drivers/usb/phy/samsung-usbphy.c
 create mode 100644 drivers/usb/phy/samsung-usbphy.h
 create mode 100644 include/linux/platform_data/samsung-usbphy.h

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

end of thread, other threads:[~2012-08-10  7:44 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-08-08  7:40 [PATCH v3 0/5] usb: phy: samsung: Introducing usb phy driver for samsung SoCs Praveen Paneri
2012-08-08  7:40 ` Praveen Paneri
     [not found] ` <1344411661-17821-1-git-send-email-p.paneri-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2012-08-08  7:40   ` [PATCH v3 1/5] usb: phy: samsung: Introducing usb phy driver for hsotg Praveen Paneri
2012-08-08  7:40     ` Praveen Paneri
2012-08-09  9:28     ` Felipe Balbi
2012-08-09  9:28       ` Felipe Balbi
     [not found]       ` <20120809092853.GJ12174-S8G//mZuvNWo5Im9Ml3/Zg@public.gmane.org>
2012-08-09  9:56         ` Praveen Paneri
2012-08-09  9:56           ` Praveen Paneri
2012-08-08  7:40 ` [PATCH v3 2/5] usb: s3c-hsotg: Adding phy driver support Praveen Paneri
2012-08-08  7:40   ` Praveen Paneri
2012-08-09  9:29   ` Felipe Balbi
2012-08-09  9:29     ` Felipe Balbi
2012-08-09 10:00     ` Praveen Paneri
2012-08-09 10:00       ` Praveen Paneri
2012-08-08  7:40 ` [PATCH v3 3/5] ARM: S3C64XX: Removing old phy setup code Praveen Paneri
2012-08-08  7:40   ` Praveen Paneri
2012-08-08  7:41 ` [PATCH v3 4/5] ARM: S3C64XX: Enabling samsung-usbphy driver Praveen Paneri
2012-08-08  7:41   ` Praveen Paneri
2012-08-10  6:54   ` Anton Tikhomirov
2012-08-10  6:54     ` Anton Tikhomirov
     [not found]     ` <004301cd76c4$f63d4310$e2b7c930$%tikhomirov-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2012-08-10  7:44       ` Praveen Paneri
2012-08-10  7:44         ` Praveen Paneri
2012-08-08  7:41 ` [PATCH v3 5/5] ARM: Exynos4210: " Praveen Paneri
2012-08-08  7:41   ` Praveen Paneri
2012-08-10  1:33 ` [PATCH v3 0/5] usb: phy: samsung: Introducing usb phy driver for samsung SoCs Joonyoung Shim
2012-08-10  1:33   ` Joonyoung Shim
2012-08-10  5:47   ` Praveen Paneri
2012-08-10  5:47     ` Praveen Paneri
     [not found]     ` <CAD6zSYP33PDrXwifQM=7q+Esk1X7m5+DNG_=A2a-qTENk4zq8w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2012-08-10  6:16       ` Felipe Balbi
2012-08-10  6:16         ` Felipe Balbi
2012-08-10  6:24         ` Praveen Paneri
2012-08-10  6:24           ` Praveen Paneri

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.