All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] USB support for DRA7-evm
@ 2014-03-07 13:09 ` Roger Quadros
  0 siblings, 0 replies; 74+ messages in thread
From: Roger Quadros @ 2014-03-07 13:09 UTC (permalink / raw)
  To: balbi, tony
  Cc: devicetree, george.cherian, linux-usb, linux-kernel, kishon,
	linux-omap, linux-arm-kernel, rogerq

Hi,

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

Patches are based on on 3.14-rc4 with balbi/next, linux-phy/next,
omap-for-v3.15/dt merged and [1] applied.

[1] - http://article.gmane.org/gmane.linux.drivers.devicetree/65223.

cheers,
-roger

---
Roger Quadros (8):
  CLK: ti: dra7: Initialize USB_DPLL
  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"
  phy: omap-usb2: Add clock names to Documentation binding
  ARM: dts: omap4+: Add clocks to USB2 PHY node
  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                      | 110 +++++++++++++++++++++++
 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/clk/ti/clk-7xx.c                         |  11 +++
 drivers/phy/phy-omap-usb2.c                      |   8 +-
 9 files changed, 182 insertions(+), 16 deletions(-)

-- 
1.8.3.2

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

end of thread, other threads:[~2014-07-02 14:23 UTC | newest]

Thread overview: 74+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-07 13:09 [PATCH 0/8] USB support for DRA7-evm Roger Quadros
2014-03-07 13:09 ` Roger Quadros
2014-03-07 13:09 ` Roger Quadros
2014-03-07 13:09 ` [PATCH 1/8] CLK: ti: dra7: Initialize USB_DPLL Roger Quadros
2014-03-07 13:09   ` Roger Quadros
2014-03-07 13:09   ` Roger Quadros
2014-03-07 13:43   ` Tero Kristo
2014-03-07 13:43     ` Tero Kristo
2014-03-07 13:43     ` Tero Kristo
2014-03-07 16:55     ` Tony Lindgren
2014-03-07 16:55       ` Tony Lindgren
     [not found]   ` <1394197751-28984-2-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
2014-03-10 12:49     ` [PATCH v2 1/8] ARM: dts: " Roger Quadros
2014-03-10 12:49       ` Roger Quadros
2014-03-10 12:49       ` Roger Quadros
     [not found]       ` <1394455761-19226-1-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
2014-03-10 13:28         ` Tero Kristo
2014-03-10 13:28           ` Tero Kristo
2014-03-10 13:28           ` Tero Kristo
2014-03-10 13:32           ` Roger Quadros
2014-03-10 13:32             ` Roger Quadros
2014-03-10 13:32             ` Roger Quadros
2014-07-02 14:23   ` [PATCH 1/8] CLK: ti: " Tero Kristo
2014-07-02 14:23     ` Tero Kristo
2014-07-02 14:23     ` Tero Kristo
2014-03-07 13:09 ` [PATCH 2/8] ARM: dts: dra7-clock: Add "l3init_960m_gfclk" clock gate Roger Quadros
2014-03-07 13:09   ` Roger Quadros
2014-03-07 13:09   ` Roger Quadros
2014-03-07 13:59   ` Tero Kristo
2014-03-07 13:59     ` Tero Kristo
2014-03-07 13:59     ` Tero Kristo
2014-03-10 11:05     ` Roger Quadros
2014-03-10 11:05       ` Roger Quadros
2014-03-10 11:05       ` Roger Quadros
2014-03-07 13:09 ` [PATCH 3/8] ARM: DRA7: hwmod: Add SYSCONFIG for usb_otg_ss Roger Quadros
2014-03-07 13:09   ` Roger Quadros
2014-03-07 13:09   ` Roger Quadros
2014-03-07 13:09 ` [PATCH 4/8] phy: omap-usb2: Use generic clock names "wkupclk" and "refclk" Roger Quadros
2014-03-07 13:09   ` Roger Quadros
2014-03-07 13:09   ` Roger Quadros
2014-03-07 13:09 ` [PATCH 5/8] phy: omap-usb2: Add clock names to Documentation binding Roger Quadros
2014-03-07 13:09   ` Roger Quadros
2014-03-07 13:09   ` Roger Quadros
2014-03-07 16:04   ` Felipe Balbi
2014-03-07 16:04     ` Felipe Balbi
2014-03-07 16:04     ` Felipe Balbi
2014-03-07 16:23     ` Kishon Vijay Abraham I
2014-03-07 16:23       ` Kishon Vijay Abraham I
2014-03-07 16:23       ` Kishon Vijay Abraham I
2014-03-07 16:24       ` Felipe Balbi
2014-03-07 16:24         ` Felipe Balbi
2014-03-07 16:24         ` Felipe Balbi
2014-03-07 13:09 ` [PATCH 6/8] ARM: dts: omap4+: Add clocks to USB2 PHY node Roger Quadros
2014-03-07 13:09   ` Roger Quadros
2014-03-07 13:09   ` Roger Quadros
2014-03-07 13:09 ` [PATCH 7/8] ARM: dts: dra7: Add USB related nodes Roger Quadros
2014-03-07 13:09   ` Roger Quadros
2014-03-07 13:09   ` Roger Quadros
2014-03-14 10:38   ` Kishon Vijay Abraham I
2014-03-14 10:38     ` Kishon Vijay Abraham I
2014-03-14 10:38     ` Kishon Vijay Abraham I
     [not found]     ` <5322DC0E.1020600-l0cyMroinI0@public.gmane.org>
2014-03-14 12:11       ` Roger Quadros
2014-03-14 12:11         ` Roger Quadros
2014-03-14 12:11         ` Roger Quadros
2014-03-14 14:54         ` Kishon Vijay Abraham I
2014-03-14 14:54           ` Kishon Vijay Abraham I
2014-03-14 14:54           ` Kishon Vijay Abraham I
2014-03-14 15:34           ` Roger Quadros
2014-03-14 15:34             ` Roger Quadros
2014-03-14 15:34             ` Roger Quadros
2014-03-14 19:48             ` Felipe Balbi
2014-03-14 19:48               ` Felipe Balbi
2014-03-14 19:48               ` Felipe Balbi
2014-03-07 13:09 ` [PATCH 8/8] dts: dra7-evm: add USB support Roger Quadros
2014-03-07 13:09   ` Roger Quadros
2014-03-07 13:09   ` Roger Quadros

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.