mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 0/8][v2]Add OTG support for FSL socs
@ 2015-07-15 12:02 Ramneek Mehresh
  2015-07-15 12:02 ` [PATCH 1/8][v2]usb:fsl:otg: Make fsl otg driver as tristate Ramneek Mehresh
                   ` (7 more replies)
  0 siblings, 8 replies; 16+ messages in thread
From: Ramneek Mehresh @ 2015-07-15 12:02 UTC (permalink / raw)
  To: linux-kernel; +Cc: balbi, stern, gregkh, linux-usb, Ramneek Mehresh

Add support for otg for all freescale socs having internal
usb phy. 


Ramneek Mehresh (8):
  usb:fsl:otg: Make fsl otg driver as tristate
  usb:fsl:otg: Add controller version based ULPI and UTMI phy
  usb:fsl:otg: Add support to add/remove usb host driver
  usb:fsl:otg: Signal host drv when host is otg
  usb:fsl:otg: Modify otg_event to start host drv
  usb:fsl:otg: Combine host/gadget start/resume for ID change
  usb:fsl:otg: Remove host drv upon otg bring-up
  usb:fsl:otg: Add host-gadget drv sync delay

 drivers/usb/host/ehci-fsl.c   | 85 +++++++++++++++++++++++++++++++++----------
 drivers/usb/host/ehci-fsl.h   | 20 ++++++++++
 drivers/usb/phy/Kconfig       |  2 +-
 drivers/usb/phy/phy-fsl-usb.c | 58 ++++++++++++++++++++++-------
 drivers/usb/phy/phy-fsl-usb.h |  7 ++++
 include/linux/usb.h           |  1 +
 6 files changed, 139 insertions(+), 34 deletions(-)

--
Changes for v2:
	- moved struct ehci_fsl out of ehci-fsl.c
	  to ehci-fsl.h
	- made struct ehci_fsl private of struct ehci_hcd
1.8.3.1


^ permalink raw reply	[flat|nested] 16+ messages in thread
* [PATCH 0/8][v3] Add OTG support for FSL socs
@ 2015-08-13 18:24 Ramneek Mehresh
  2015-08-13 18:25 ` [PATCH 3/8][v2]usb:fsl:otg: Add support to add/remove usb host driver Ramneek Mehresh
  0 siblings, 1 reply; 16+ messages in thread
From: Ramneek Mehresh @ 2015-08-13 18:24 UTC (permalink / raw)
  To: linux-kernel; +Cc: balbi, stern, gregkh, linux-usb, Ramneek Mehresh

Add support for otg for all freescale socs having internal
usb phy.

Ramneek Mehresh (8):
  usb:fsl:otg: Make fsl otg driver as tristate
  usb:fsl:otg: Add controller version based ULPI and UTMI phy
  usb:fsl:otg: Add support to add/remove usb host driver
  usb:fsl:otg: Signal host drv when host is otg
  usb:fsl:otg: Modify otg_event to start host drv
  usb:fsl:otg: Combine host/gadget start/resume for ID change
  usb:fsl:otg: Remove host drv upon otg bring-up
  usb:fsl:otg: Add host-gadget drv sync delay

 drivers/usb/host/ehci-fsl.c   | 73 +++++++++++++++++++++++++++++++------------
 drivers/usb/host/ehci-fsl.h   | 18 +++++++++++
 drivers/usb/phy/Kconfig       |  2 +-
 drivers/usb/phy/phy-fsl-usb.c | 58 +++++++++++++++++++++++++---------
 drivers/usb/phy/phy-fsl-usb.h |  7 +++++
 include/linux/usb.h           |  1 +
 6 files changed, 124 insertions(+), 35 deletions(-)

--
Changes for v3:
	- removed CONFIG_FSL_USB2_OTG and CONFIG_FSL_USB2_OTG_MODULE
	  macros
	- removed call to usb_hcd_resume_root_hub(hcd) from 
	  ehci_fsl_drv_resume()
1.8.3.1


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

end of thread, other threads:[~2015-08-13 18:12 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-15 12:02 [PATCH 0/8][v2]Add OTG support for FSL socs Ramneek Mehresh
2015-07-15 12:02 ` [PATCH 1/8][v2]usb:fsl:otg: Make fsl otg driver as tristate Ramneek Mehresh
2015-07-15 12:02 ` [PATCH 2/8][v2]usb:fsl:otg: Add controller version based ULPI and UTMI phy Ramneek Mehresh
2015-07-15 12:02 ` [PATCH 3/8][v2]usb:fsl:otg: Add support to add/remove usb host driver Ramneek Mehresh
2015-08-07 20:33   ` Alan Stern
2015-08-10  9:23     ` Ramneek Mehresh
2015-08-10 14:44       ` Alan Stern
2015-08-10 15:35         ` Ramneek Mehresh
2015-08-10 15:42           ` Fabio Estevam
2015-08-10 14:36     ` Felipe Balbi
2015-07-15 12:02 ` [PATCH 4/8][v2]usb:fsl:otg: Signal host drv when host is otg Ramneek Mehresh
2015-07-15 12:02 ` [PATCH 5/8][v2]usb:fsl:otg: Modify otg_event to start host drv Ramneek Mehresh
2015-07-15 12:02 ` [PATCH 6/8][v2]usb:fsl:otg: Combine host/gadget start/resume for ID change Ramneek Mehresh
2015-07-15 12:02 ` [PATCH 7/8][v2]usb:fsl:otg: Remove host drv upon otg bring-up Ramneek Mehresh
2015-07-15 12:02 ` [PATCH 8/8][v2]usb:fsl:otg: Add host-gadget drv sync delay Ramneek Mehresh
2015-08-13 18:24 [PATCH 0/8][v3] Add OTG support for FSL socs Ramneek Mehresh
2015-08-13 18:25 ` [PATCH 3/8][v2]usb:fsl:otg: Add support to add/remove usb host driver Ramneek Mehresh

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