devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/7] USB support for DRA7-evm
@ 2014-04-28 14:01 Roger Quadros
       [not found] ` <1398693687-13967-1-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
  2014-04-28 14:01 ` [PATCH v2 7/7] dts: dra7-evm: add USB support Roger Quadros
  0 siblings, 2 replies; 22+ messages in thread
From: Roger Quadros @ 2014-04-28 14:01 UTC (permalink / raw)
  To: balbi-l0cyMroinI0, kishon-l0cyMroinI0,
	tony-4v6yS6AI5VpBDgjK7y7TUQ
  Cc: george.cherian-l0cyMroinI0, linux-omap-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-usb-u79uwXL29TY76Z2rM5mHXA, Roger Quadros

Hi,

This series enables the 2 USB ports on the DRA7-evm.

NOTE: USB1 port is hard coded to work in peripheral mode and USB2 port
in host mode. This is due to missing ID pin interrupt in pre ver.E boards.

USB1 port doesn't in peripheral mode out of the box due to missing VBUS detection
and mailbox write. To test this I had to do a manual write to enable VBUSVALID
in the USB_UTMI_OTG_STATUS register.
	omapconf set bit 0x48880084 1

USB2 port works well in host mode.

Patches are based on 3.15-rc3.

cheers,
-roger

Roger Quadros (7):
  ARM: dts: dra7-clock: Add "l3init_960m_gfclk" clock gate
  ARM: DRA7: hwmod: Add SYSCONFIG for usb_otg_ss
  phy: omap-usb2: Use generic clock names "wkupclk" and "refclk"
  ARM: dts: omap4+: Add clocks to USB2 PHY node
  phy: omap-usb2: Add clock names to Documentation binding
  ARM: dts: dra7: Add USB related nodes
  dts: dra7-evm: add USB support

 Documentation/devicetree/bindings/phy/ti-phy.txt |   7 ++
 arch/arm/boot/dts/dra7-evm.dts                   |  24 ++++
 arch/arm/boot/dts/dra7.dtsi                      | 149 +++++++++++++++++++++++
 arch/arm/boot/dts/dra7xx-clocks.dtsi             |  12 +-
 arch/arm/boot/dts/omap4.dtsi                     |   2 +
 arch/arm/boot/dts/omap5.dtsi                     |   2 +
 arch/arm/mach-omap2/omap_hwmod_7xx_data.c        |  22 ++--
 drivers/phy/phy-omap-usb2.c                      |   8 +-
 8 files changed, 210 insertions(+), 16 deletions(-)

-- 
1.8.3.2

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2014-05-05  9:23 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-28 14:01 [PATCH v2 0/7] USB support for DRA7-evm Roger Quadros
     [not found] ` <1398693687-13967-1-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
2014-04-28 14:01   ` [PATCH v2 1/7] ARM: dts: dra7-clock: Add "l3init_960m_gfclk" clock gate Roger Quadros
2014-04-28 14:01   ` [PATCH v2 2/7] ARM: DRA7: hwmod: Add SYSCONFIG for usb_otg_ss Roger Quadros
2014-04-28 14:01   ` [PATCH v2 3/7] phy: omap-usb2: Use generic clock names "wkupclk" and "refclk" Roger Quadros
     [not found]     ` <1398693687-13967-4-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
2014-04-28 16:03       ` Felipe Balbi
     [not found]         ` <20140428160347.GG30292-HgARHv6XitL9zxVx7UNMDg@public.gmane.org>
2014-04-29  7:50           ` Roger Quadros
     [not found]             ` <535F59CF.6050002-l0cyMroinI0@public.gmane.org>
2014-04-29 16:14               ` Felipe Balbi
     [not found]                 ` <20140429161420.GH633-HgARHv6XitL9zxVx7UNMDg@public.gmane.org>
2014-04-29 16:16                   ` Felipe Balbi
     [not found]                     ` <20140429161616.GI633-HgARHv6XitL9zxVx7UNMDg@public.gmane.org>
2014-04-30  7:16                       ` Roger Quadros
2014-04-30 15:20                     ` Nishanth Menon
2014-05-05  7:23                       ` Roger Quadros
2014-05-05  9:23                         ` Roger Quadros
2014-04-28 14:01   ` [PATCH v2 4/7] ARM: dts: omap4+: Add clocks to USB2 PHY node Roger Quadros
     [not found]     ` <1398693687-13967-5-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
2014-04-28 16:04       ` Felipe Balbi
2014-04-28 14:01   ` [PATCH v2 5/7] phy: omap-usb2: Add clock names to Documentation binding Roger Quadros
     [not found]     ` <1398693687-13967-6-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
2014-04-28 16:04       ` Felipe Balbi
2014-04-28 17:23       ` Sergei Shtylyov
2014-04-29  7:57         ` Roger Quadros
2014-04-28 14:01   ` [PATCH v2 6/7] ARM: dts: dra7: Add USB related nodes Roger Quadros
2014-04-28 16:05     ` Felipe Balbi
2014-04-28 14:01 ` [PATCH v2 7/7] dts: dra7-evm: add USB support Roger Quadros
     [not found]   ` <1398693687-13967-8-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
2014-04-28 16:07     ` Felipe Balbi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).