public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 0/4] Clean up ehci-omap and extend support for omap3/4 socs
@ 2012-01-06  9:03 Govindraj.R
  2012-01-06  9:03 ` [U-Boot] [PATCH v2 1/4] ehci-omap: Clean up added ehci-omap.c Govindraj.R
                   ` (4 more replies)
  0 siblings, 5 replies; 40+ messages in thread
From: Govindraj.R @ 2012-01-06  9:03 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.
Add ehci support for panda board.

Patch series depends on below patch:
	http://patchwork.ozlabs.org/patch/130952/

Patch series based commit id:
	9a420986cccc9bd2c37affd931d627b3c3e72952

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

Fatls, ping and tftp was tested with this patch series.
Test log for Panda available here:
	http://pastebin.pandaboard.org/index.php/view/55361716
Test log for Beagle-XM available here:
	http://pastebin.pandaboard.org/index.php/view/98437825	

Changes from v1:
---------------
* v1 was adding ehci-omap.c
  Now I have rebased my patch on top of Ilya Yanok's Patch
  http://patchwork.ozlabs.org/patch/130952/
* Fixed Tom Rini's Comments as in below thread.
  http://permalink.gmane.org/gmane.comp.boot-loaders.u-boot/120430
  http://patchwork.ozlabs.org/patch/131367/

Govindraj.R (4):
  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

 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               |  147 +++++++++++++++
 board/ti/beagle/beagle.c                       |   28 +++
 board/ti/panda/panda.c                         |   41 +++++
 board/ti/panda/panda_mux_data.h                |   16 +-
 drivers/usb/host/ehci-omap.c                   |  228 ++++++++++++++++++------
 include/configs/omap4_panda.h                  |   23 +++-
 14 files changed, 584 insertions(+), 143 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

-- 
1.7.5.4

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

end of thread, other threads:[~2012-02-27 16:29 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-06  9:03 [U-Boot] [PATCH v2 0/4] Clean up ehci-omap and extend support for omap3/4 socs Govindraj.R
2012-01-06  9:03 ` [U-Boot] [PATCH v2 1/4] ehci-omap: Clean up added ehci-omap.c Govindraj.R
2012-01-10 16:07   ` Marek Vasut
2012-01-11  6:07     ` Govindraj
2012-01-11 10:52       ` Marek Vasut
2012-01-11 11:32         ` Govindraj
2012-01-11 12:46           ` Marek Vasut
2012-01-11 13:00             ` Govindraj
2012-01-11 13:28               ` Marek Vasut
2012-01-11 14:13                 ` Govindraj
2012-01-11 14:34                   ` Marek Vasut
2012-01-11 15:03                     ` Igor Grinberg
2012-01-11 18:50                       ` Marek Vasut
2012-01-12  5:45                       ` Govindraj
2012-01-12  9:23                         ` Igor Grinberg
2012-01-12 10:52                           ` Govindraj
2012-01-17  6:10                             ` Govindraj
2012-01-18 17:51                               ` Igor Grinberg
2012-01-19  8:15                                 ` Govindraj
2012-01-22 12:20                                   ` Igor Grinberg
2012-01-25  9:04                                     ` Govindraj
2012-01-25 13:40                                       ` Igor Grinberg
2012-01-27 13:29                                         ` Govindraj
2012-01-29  9:42                                           ` Igor Grinberg
2012-01-29 11:42                                             ` Stefano Babic
2012-02-01 11:01                                               ` Igor Grinberg
2012-02-01 11:26                                                 ` Stefano Babic
2012-02-01 13:22                                                   ` Igor Grinberg
2012-02-03 12:52                                               ` Govindraj
2012-02-03 12:50                                             ` Govindraj
2012-02-03 13:18                                               ` Igor Grinberg
2012-01-17 18:17                             ` Igor Grinberg
2012-01-06  9:03 ` [U-Boot] [PATCH v2 2/4] OMAP3+: Clock: Adding ehci clock enabling Govindraj.R
2012-01-06  9:04 ` [U-Boot] [PATCH v2 3/4] OMAP4: clock-common: Move the usb dppl configuration to new func Govindraj.R
2012-01-06  9:04 ` [U-Boot] [PATCH v2 4/4] OMAP3+: ehci-omap: enable usb host ports for beagle/panda Govindraj.R
2012-02-26 23:13 ` [U-Boot] [PATCH v2 0/4] Clean up ehci-omap and extend support for omap3/4 socs Marek Vasut
2012-02-27  6:27   ` Govindraj
2012-02-27 13:51     ` Marek Vasut
2012-02-27 14:31       ` Tom Rini
2012-02-27 16:29         ` Marek Vasut

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