From: Roger Quadros <rogerq@ti.com>
To: <tony@atomide.com>, <gregkh@linuxfoundation.org>
Cc: Roger Quadros <rogerq@ti.com>, <linux@arm.linux.org.uk>,
<sameo@linux.intel.com>, <balbi@ti.com>,
<stern@rowland.harvard.edu>, <eballetbo@gmail.com>,
<javier@dowhile0.org>, <sshtylyov@mvista.com>,
<linux-usb@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
"ABRAHAM, KISHON VIJAY" <kishon@ti.com>
Subject: Re: [PATCH v2 00/30] USB: omap-ehci: Move PHY management to PHY driver
Date: Tue, 5 Feb 2013 13:28:51 +0200 [thread overview]
Message-ID: <5110ECF3.7010908@ti.com> (raw)
In-Reply-To: <1359372631-8180-1-git-send-email-rogerq@ti.com>
Hi Tony & Greg,
What's the best way to get these patches in?
All patches have been acked by respective maintainers.
If Tony can Ack the arch/arm/mach-omap2 stuff then should I send a
pull request directly to Greg? or the other way round?
Tony,
fyi, these patches should not interfere with the dw3c/musb stuff
sent by Felipe & Kishon.
cheers,
-roger
On 01/28/2013 01:30 PM, Roger Quadros wrote:
> Hi,
>
> The OMAP's High Speed Host controller can interface to ULPI/UTMI
> PHYs transparently i.e. whithout requiring the device drivers to
> access the PHY. However, the OS must ensure that the PHY has the necessary
> resources (power/clock/reset) enabled before it is used.
>
> Till now, the omap-ehci driver was managing the power and reset of the PHY
> whereas, clock enabling was left to the bootloader or board files.
>
> In this patchset we make the NOP PHY driver (nop-usb-xceiv.c) handle
> all the PHY resources that are available so that it can be used by
> platforms like OMAP.
>
> The board files add the PHY as a platform device and use usb_bind_phy()
> (API introduced in [2]) to bind the PHY device to the controller's port.
> The ehci-omap driver then uses usb_get_phy_dev() to get the PHY device
> associated to the controller's port.
>
> All this results in a much cleaner code and makes USB PHY resource management
> work properly on OMAP.
>
> NOTE: Tested on 4460ES-B1 Panda and BeagleBoard C4 only. Other boards are only
> build tested.
>
> Patches are based on Linux-3.8-rc5 and depend on
>
> [1] [PATCH v9 00/20] OMAP USB Host cleanup
> https://lkml.org/lkml/2013/1/23/155
>
> [2] [PATCH v2 0/6] USB: Add support for multiple PHYs of same type
> https://lkml.org/lkml/2013/1/24/876
>
> v2:
> - Added Alan's patch to split ehci-omap into separate driver
> - Addressed Russell King's comments on usage of clk/regulator framework.
> - Adapted all board using ehci-omap to using the PHY mechanism.
>
> The following changes since commit e18d48b7f7e563664a41d4658b8cc15679ee4745:
>
> usb: otg: utils: add facilities in phy lib to support multiple PHYs of same type (2013-01-28 12:20:54 +0200)
>
> git://github.com/rogerq/linux.git linux-usbhost15
>
> ---
> Alan Stern (1):
> USB: EHCI: split ehci-omap out to a separate driver
>
> Roger Quadros (29):
> usb: phy: nop: use devm_kzalloc()
> usb: phy: nop: Manage PHY clock
> usb: phy: nop: Handle power supply regulator for the PHY
> usb: phy: nop: Handle RESET for the PHY
> usb: phy: nop: use new PHY API to register PHY
> mfd: omap-usb-host: update nports in platform_data
> mfd: omap-usb-host: Remove PHY reset handling code
> USB: ehci-omap: Use devm_request_and_ioremap()
> USB: ehci-omap: Use PHY APIs to get the PHY device and put it out of
> suspend
> usb: ehci-omap: Remove PHY reset handling code
> usb: ehci-omap: Remove PHY regulator handling code
> ARM: OMAP2+: omap4panda: Provide USB Host's PHY platform data
> ARM: OMAP2+: omap4panda: Adapt to ehci-omap changes
> ARM: OMAP3: Beagle: Adapt to ehci-omap changes
> ARM: OMAP3: 3430SDP: Adapt to ehci-omap changes
> ARM: OMAP3: 3630SDP: Adapt to ehci-omap changes
> ARM: OMAP: AM3517crane: Adapt to ehci-omap changes
> ARM: OMAP: AM3517evm: Adapt to ehci-omap changes
> ARM: OMAP3: cm-t35: Adapt to ehci-omap changes
> ARM: OMAP3: cm-t3517: Adapt to ehci-omap changes
> ARM: OMAP: devkit8000: Adapt to ehci-omap changes
> ARM: OMAP3: igep0020: Adapt to ehci-omap changes
> ARM: OMAP3: omap3evm: Adapt to ehci-omap changes
> ARM: OMAP3: omap3pandora: Adapt to ehci-omap changes
> ARM: OMAP3: omap3stalker: Adapt to ehci-omap changes
> ARM: OMAP3: omap3touchbook: Adapt to ehci-omap changes
> ARM: OMAP3: overo: Adapt to ehci-omap changes
> ARM: OMAP: zoom: Adapt to ehci-omap changes
> ARM: OMAP: USB: Remove unused fields from struct
> usbhs_omap_platform_data
>
> arch/arm/mach-omap2/board-3430sdp.c | 99 +++++++++++-
> arch/arm/mach-omap2/board-3630sdp.c | 100 +++++++++++-
> arch/arm/mach-omap2/board-am3517crane.c | 95 ++++++++++--
> arch/arm/mach-omap2/board-am3517evm.c | 66 +++++++-
> arch/arm/mach-omap2/board-cm-t35.c | 95 ++++++++++-
> arch/arm/mach-omap2/board-cm-t3517.c | 97 +++++++++++-
> arch/arm/mach-omap2/board-devkit8000.c | 20 ++-
> arch/arm/mach-omap2/board-igep0020.c | 112 +++++++++++--
> arch/arm/mach-omap2/board-omap3beagle.c | 93 ++++++++++-
> arch/arm/mach-omap2/board-omap3evm.c | 63 ++++++--
> arch/arm/mach-omap2/board-omap3pandora.c | 54 +++++-
> arch/arm/mach-omap2/board-omap3stalker.c | 52 +++++-
> arch/arm/mach-omap2/board-omap3touchbook.c | 62 ++++++-
> arch/arm/mach-omap2/board-omap4panda.c | 123 ++++++++++----
> arch/arm/mach-omap2/board-overo.c | 55 ++++++-
> arch/arm/mach-omap2/board-zoom.c | 56 ++++++-
> drivers/mfd/omap-usb-host.c | 48 +------
> drivers/usb/host/Kconfig | 2 +-
> drivers/usb/host/Makefile | 1 +
> drivers/usb/host/ehci-hcd.c | 6 +-
> drivers/usb/host/ehci-omap.c | 245 +++++++++++-----------------
> drivers/usb/otg/nop-usb-xceiv.c | 106 +++++++++++--
> include/linux/platform_data/usb-omap.h | 3 -
> include/linux/usb/nop-usb-xceiv.h | 1 +
> 24 files changed, 1288 insertions(+), 366 deletions(-)
>
next prev parent reply other threads:[~2013-02-05 11:29 UTC|newest]
Thread overview: 101+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-28 11:30 [PATCH v2 00/30] USB: omap-ehci: Move PHY management to PHY driver Roger Quadros
2013-01-28 11:30 ` [PATCH 01/30] USB: EHCI: split ehci-omap out to a separate driver Roger Quadros
2013-02-05 9:11 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 02/30] usb: phy: nop: use devm_kzalloc() Roger Quadros
2013-02-05 9:14 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH v2 03/30] usb: phy: nop: Manage PHY clock Roger Quadros
2013-02-05 9:17 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH v2 04/30] usb: phy: nop: Handle power supply regulator for the PHY Roger Quadros
2013-02-05 9:20 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH v2 05/30] usb: phy: nop: Handle RESET " Roger Quadros
2013-02-05 9:22 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 06/30] usb: phy: nop: use new PHY API to register PHY Roger Quadros
2013-02-05 9:23 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 07/30] mfd: omap-usb-host: update nports in platform_data Roger Quadros
2013-02-05 9:24 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 08/30] mfd: omap-usb-host: Remove PHY reset handling code Roger Quadros
2013-02-05 9:25 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 09/30] USB: ehci-omap: Use devm_request_and_ioremap() Roger Quadros
2013-01-28 15:17 ` Alan Stern
2013-01-28 15:20 ` Russell King - ARM Linux
2013-01-29 15:34 ` Alan Stern
2013-01-29 16:01 ` Russell King - ARM Linux
2013-01-29 22:08 ` Greg KH
2013-02-05 9:25 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH v2 10/30] USB: ehci-omap: Use PHY APIs to get the PHY device and put it out of suspend Roger Quadros
2013-01-28 15:40 ` Alan Stern
2013-01-28 15:58 ` Roger Quadros
2013-01-29 9:50 ` [PATCH v3 " Roger Quadros
2013-01-29 9:57 ` Felipe Balbi
2013-01-29 10:08 ` Roger Quadros
2013-01-29 10:12 ` Felipe Balbi
2013-01-29 15:30 ` Alan Stern
2013-01-29 15:33 ` Roger Quadros
2013-02-05 9:13 ` Felipe Balbi
2013-02-05 9:26 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH v2 11/30] usb: ehci-omap: Remove PHY reset handling code Roger Quadros
2013-01-28 17:34 ` Alan Stern
2013-02-05 9:27 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH v2 12/30] usb: ehci-omap: Remove PHY regulator " Roger Quadros
2013-01-28 17:35 ` Alan Stern
2013-02-05 9:27 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH v2 13/30] ARM: OMAP2+: omap4panda: Provide USB Host's PHY platform data Roger Quadros
2013-02-05 9:28 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH v2 14/30] ARM: OMAP2+: omap4panda: Adapt to ehci-omap changes Roger Quadros
2013-02-05 9:31 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 15/30] ARM: OMAP3: Beagle: " Roger Quadros
2013-02-05 9:31 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 16/30] ARM: OMAP3: 3430SDP: " Roger Quadros
2013-02-05 9:31 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 17/30] ARM: OMAP3: 3630SDP: " Roger Quadros
2013-02-05 9:31 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 18/30] ARM: OMAP: AM3517crane: " Roger Quadros
2013-02-05 9:32 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 19/30] ARM: OMAP: AM3517evm: " Roger Quadros
2013-02-05 9:32 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 20/30] ARM: OMAP3: cm-t35: " Roger Quadros
2013-02-05 9:32 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 21/30] ARM: OMAP3: cm-t3517: " Roger Quadros
2013-02-05 9:32 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 22/30] ARM: OMAP: devkit8000: " Roger Quadros
2013-02-05 9:33 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 23/30] ARM: OMAP3: igep0020: " Roger Quadros
2013-02-05 9:33 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 24/30] ARM: OMAP3: omap3evm: " Roger Quadros
2013-02-05 9:33 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 25/30] ARM: OMAP3: omap3pandora: " Roger Quadros
2013-02-05 9:33 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 26/30] ARM: OMAP3: omap3stalker: " Roger Quadros
2013-02-05 9:34 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 27/30] ARM: OMAP3: omap3touchbook: " Roger Quadros
2013-02-05 9:34 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 28/30] ARM: OMAP3: overo: " Roger Quadros
2013-02-05 9:40 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 29/30] ARM: OMAP: zoom: " Roger Quadros
2013-02-05 9:40 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 30/30] ARM: OMAP: USB: Remove unused fields from struct usbhs_omap_platform_data Roger Quadros
2013-02-05 9:40 ` Felipe Balbi
2013-01-30 12:08 ` [PATCH v2 00/30] USB: omap-ehci: Move PHY management to PHY driver Mohammed, Afzal
2013-01-30 12:48 ` Roger Quadros
2013-01-30 13:12 ` Mohammed, Afzal
2013-01-30 13:15 ` Roger Quadros
2013-01-30 13:15 ` Felipe Balbi
2013-01-30 13:19 ` Mohammed, Afzal
2013-02-01 14:21 ` Mohammed, Afzal
2013-02-01 14:25 ` Roger Quadros
2013-02-01 14:27 ` Mohammed, Afzal
2013-02-01 14:31 ` Roger Quadros
2013-02-01 14:35 ` Mohammed, Afzal
2013-02-01 14:58 ` Roger Quadros
2013-02-04 14:35 ` [PATCH v2 09/31] USB: ehci-omap: Use devm_ioremap_resource() Roger Quadros
2013-02-04 21:11 ` Alan Stern
2013-02-04 14:46 ` [PATCH 31/31] USB: ehci-omap: Select NOP USB transceiver driver Roger Quadros
2013-02-04 21:03 ` Alan Stern
2013-02-05 9:41 ` Felipe Balbi
2013-02-05 11:28 ` Roger Quadros [this message]
2013-02-05 16:58 ` [PATCH v2 00/30] USB: omap-ehci: Move PHY management to PHY driver Greg KH
2013-02-05 17:17 ` Tony Lindgren
2013-02-06 9:49 ` Roger Quadros
2013-02-06 17:11 ` Tony Lindgren
2013-02-06 17:48 ` Greg KH
2013-02-07 15:28 ` Roger Quadros
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5110ECF3.7010908@ti.com \
--to=rogerq@ti.com \
--cc=balbi@ti.com \
--cc=eballetbo@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=javier@dowhile0.org \
--cc=kishon@ti.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=sameo@linux.intel.com \
--cc=sshtylyov@mvista.com \
--cc=stern@rowland.harvard.edu \
--cc=tony@atomide.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox