public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3 0/7] Clean up ehci-omap and extend support for omap3/4 socs
@ 2012-02-03 13:38 Govindraj.R
  2012-02-03 13:38 ` [U-Boot] [PATCH v3 1/7] ehci-omap: driver for EHCI host on OMAP3 Govindraj.R
                   ` (7 more replies)
  0 siblings, 8 replies; 20+ messages in thread
From: Govindraj.R @ 2012-02-03 13:38 UTC (permalink / raw)
  To: u-boot

From: "Govindraj.R" <govindraj.raja@ti.com>

Clean up ehci-omap added and make it generic to extend support for omap4 socs.
Adds omap-ulpi-viewport for ulpi access from ehci-omap.
Adds ehci support for omap4-panda.

Based on latest denx master branch commit:
	137703b811502dfea364650fb3e17f20b4c21333

Changes from v2:
---------------
* Added omap-ulpi-viepwort for ulpi access.
* Fixed comments as in this thread
	http://lists.denx.de/pipermail/u-boot/2012-January/115310.html
	http://lists.denx.de/pipermail/u-boot/2012-January/116185.html

This patch series long with above dependent patch is avialable at:
	git://gitorious.org/denx_u-boot/denx_uboot_omap.git
	v3_ehci_omap4

Dependent Patch:
----------------
	http://patchwork.ozlabs.org/patch/138844/
	(omap4 boot will fail without this patch)

Govindraj.R (6):
  ehci-omap: Clean up added ehci-omap.c
  OMAP3+: Clock: Adding ehci clock enabling
  OMAP4: clock-common: Move the usb dppl configuration to new func
  OMAP3+: ehci-omap: enable usb host ports for beagle/panda
  usb: ulpi: Extend the existing ulpi framework.
  usb: ulpi: Add omap-ulpi-view port support

Ilya Yanok (1):
  ehci-omap: driver for EHCI host on OMAP3

 arch/arm/cpu/armv7/omap-common/clocks-common.c |   52 +++--
 arch/arm/cpu/armv7/omap3/board.c               |    4 +
 arch/arm/cpu/armv7/omap3/clock.c               |   20 ++
 arch/arm/cpu/armv7/omap4/clocks.c              |    5 +
 arch/arm/include/asm/arch-omap3/ehci.h         |   55 +++++
 arch/arm/include/asm/arch-omap3/ehci_omap3.h   |   58 ------
 arch/arm/include/asm/arch-omap3/sys_proto.h    |    1 +
 arch/arm/include/asm/arch-omap4/ehci.h         |   49 +++++
 arch/arm/include/asm/ehci-omap.h               |  148 ++++++++++++++
 board/efikamx/efikamx-usb.c                    |   24 ++-
 board/ti/beagle/beagle.c                       |  111 ++---------
 board/ti/panda/panda.c                         |   41 ++++
 board/ti/panda/panda_mux_data.h                |   16 +-
 doc/README.omap-ulpi-viewport                  |   27 +++
 drivers/usb/host/Makefile                      |    1 +
 drivers/usb/host/ehci-omap.c                   |  256 ++++++++++++++++++++++++
 drivers/usb/ulpi/Makefile                      |    1 +
 drivers/usb/ulpi/omap-ulpi-viewport.c          |  105 ++++++++++
 drivers/usb/ulpi/ulpi-viewport.c               |   30 ++--
 drivers/usb/ulpi/ulpi.c                        |   54 +++---
 include/configs/omap3_beagle.h                 |    6 +
 include/configs/omap4_panda.h                  |   25 +++-
 include/usb/ulpi.h                             |   36 +++-
 23 files changed, 884 insertions(+), 241 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-omap3/ehci.h
 delete mode 100644 arch/arm/include/asm/arch-omap3/ehci_omap3.h
 create mode 100644 arch/arm/include/asm/arch-omap4/ehci.h
 create mode 100644 arch/arm/include/asm/ehci-omap.h
 create mode 100644 doc/README.omap-ulpi-viewport
 create mode 100644 drivers/usb/host/ehci-omap.c
 create mode 100644 drivers/usb/ulpi/omap-ulpi-viewport.c

-- 
1.7.5.4

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

end of thread, other threads:[~2012-02-09  6:32 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-03 13:38 [U-Boot] [PATCH v3 0/7] Clean up ehci-omap and extend support for omap3/4 socs Govindraj.R
2012-02-03 13:38 ` [U-Boot] [PATCH v3 1/7] ehci-omap: driver for EHCI host on OMAP3 Govindraj.R
2012-02-03 13:38 ` [U-Boot] [PATCH v3 2/7] ehci-omap: Clean up added ehci-omap.c Govindraj.R
2012-02-06 11:26   ` Igor Grinberg
2012-02-03 13:38 ` [U-Boot] [PATCH v3 3/7] OMAP3+: Clock: Adding ehci clock enabling Govindraj.R
2012-02-06 11:42   ` Igor Grinberg
2012-02-06 11:57     ` Govindraj
2012-02-06 12:17       ` Igor Grinberg
2012-02-03 13:38 ` [U-Boot] [PATCH v3 4/7] OMAP4: clock-common: Move the usb dppl configuration to new func Govindraj.R
2012-02-03 13:38 ` [U-Boot] [PATCH v3 5/7] OMAP3+: ehci-omap: enable usb host ports for beagle/panda Govindraj.R
2012-02-06 12:03   ` Igor Grinberg
2012-02-03 13:38 ` [U-Boot] [PATCH v3 6/7] usb: ulpi: Extend the existing ulpi framework Govindraj.R
2012-02-06  8:55   ` Igor Grinberg
2012-02-06  9:38     ` Govindraj
2012-02-06 10:03       ` Igor Grinberg
2012-02-08 17:42   ` SUBHASHINI MANNE
2012-02-09  6:32     ` Govindraj
2012-02-03 13:38 ` [U-Boot] [PATCH v3 7/7] usb: ulpi: Add omap-ulpi-view port support Govindraj.R
2012-02-06  9:10   ` Igor Grinberg
2012-02-03 15:25 ` [U-Boot] [PATCH v3 0/7] Clean up ehci-omap and extend support for omap3/4 socs Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox