mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 00/13] OMAP/Beagleboard ehci support
@ 2010-08-04  9:59 Michael Grzeschik
  2010-08-04  9:59 ` [PATCH 01/13] i2c: Add missing defines for omap Michael Grzeschik
                   ` (13 more replies)
  0 siblings, 14 replies; 18+ messages in thread
From: Michael Grzeschik @ 2010-08-04  9:59 UTC (permalink / raw)
  To: barebox

Hi all,

this patchseries adds ehci support for the beagleboard, which includes
i2c-omap, twl4030 phy and ehci-omap support.

Michael Grzeschik (4):
  ehci: add remove function
  usb: add twl4030 phy support
  ehci: add omap support
  beagle: add usb support

Sascha Hauer (9):
  i2c: Add missing defines for omap
  arm omap: Add I2C driver
  add twl4030 support
  arm omap: Add gpio support
  arm omap: Add cpu_is_ macros
  beagle: Add missing pinmux for usb
  ehci: Make has_tt configurable via platform data
  ehci: set CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS to 16
  add beagle board defconfig

 arch/arm/boards/omap/Kconfig                      |    2 +
 arch/arm/boards/omap/board-beagle.c               |   58 ++
 arch/arm/configs/omap3530_beagle_defconfig        |  257 +++++++
 arch/arm/mach-omap/Kconfig                        |   15 +-
 arch/arm/mach-omap/Makefile                       |    1 +
 arch/arm/mach-omap/gpio.c                         |  206 ++++++
 arch/arm/mach-omap/include/mach/cm-regbits-34xx.h |  799 ++++++++++++++++++++
 arch/arm/mach-omap/include/mach/ehci.h            |  109 +++
 arch/arm/mach-omap/include/mach/generic.h         |   19 +
 arch/arm/mach-omap/include/mach/gpio.h            |   92 +++
 arch/arm/mach-omap/include/mach/omap3-clock.h     |   11 +
 arch/arm/mach-omap/include/mach/omap3-silicon.h   |    6 +
 drivers/i2c/Kconfig                               |    8 +
 drivers/i2c/Makefile                              |    2 +
 drivers/i2c/i2c-omap.c                            |  803 +++++++++++++++++++++
 drivers/i2c/twl4030.c                             |  186 +++++
 drivers/usb/host/Kconfig                          |    4 +
 drivers/usb/host/Makefile                         |    1 +
 drivers/usb/host/ehci-hcd.c                       |   21 +-
 drivers/usb/host/ehci-omap.c                      |  260 +++++++
 drivers/usb/host/ehci.h                           |    2 +-
 drivers/usb/otg/Kconfig                           |    3 +
 drivers/usb/otg/Makefile                          |    2 +
 drivers/usb/otg/twl4030.c                         |  199 +++++
 include/i2c/i2c.h                                 |    2 +
 include/i2c/twl4030.h                             |  461 ++++++++++++
 include/usb/ehci.h                                |    2 +
 include/usb/twl4030.h                             |   28 +
 28 files changed, 3550 insertions(+), 9 deletions(-)
 create mode 100644 arch/arm/configs/omap3530_beagle_defconfig
 create mode 100644 arch/arm/mach-omap/gpio.c
 create mode 100644 arch/arm/mach-omap/include/mach/cm-regbits-34xx.h
 create mode 100644 arch/arm/mach-omap/include/mach/ehci.h
 create mode 100644 arch/arm/mach-omap/include/mach/generic.h
 create mode 100644 arch/arm/mach-omap/include/mach/gpio.h
 create mode 100644 drivers/i2c/i2c-omap.c
 create mode 100644 drivers/i2c/twl4030.c
 create mode 100644 drivers/usb/host/ehci-omap.c
 create mode 100644 drivers/usb/otg/twl4030.c
 create mode 100644 include/i2c/twl4030.h
 create mode 100644 include/usb/twl4030.h

cheers,
Michael

--
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2010-10-10  8:37 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-04  9:59 [PATCH 00/13] OMAP/Beagleboard ehci support Michael Grzeschik
2010-08-04  9:59 ` [PATCH 01/13] i2c: Add missing defines for omap Michael Grzeschik
2010-08-04  9:59 ` [PATCH 02/13] arm omap: Add I2C driver Michael Grzeschik
2010-08-04  9:59 ` [PATCH 03/13] add twl4030 support Michael Grzeschik
2010-08-04  9:59 ` [PATCH 04/13] arm omap: Add gpio support Michael Grzeschik
2010-08-04  9:59 ` [PATCH 05/13] arm omap: Add cpu_is_ macros Michael Grzeschik
2010-08-04  9:59 ` [PATCH 06/13] beagle: Add missing pinmux for usb Michael Grzeschik
2010-08-04  9:59 ` [PATCH 07/13] ehci: Make has_tt configurable via platform data Michael Grzeschik
2010-08-04  9:59 ` [PATCH 08/13] ehci: set CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS to 16 Michael Grzeschik
2010-08-04  9:59 ` [PATCH 09/13] ehci: add remove function Michael Grzeschik
2010-08-04  9:59 ` [PATCH 10/13] usb: add twl4030 phy support Michael Grzeschik
2010-08-04  9:59 ` [PATCH 11/13] ehci: add omap support Michael Grzeschik
2010-08-04  9:59 ` [PATCH 12/13] beagle: add usb support Michael Grzeschik
2010-08-17  8:40   ` [PATCH] beagle: fix usb dependencies Michael Grzeschik
2010-08-17 10:09     ` Nishanth Menon
2010-08-04  9:59 ` [PATCH 13/13] add beagle board defconfig Michael Grzeschik
2010-08-17  8:42   ` [PATCH] beagle: defconfig cleanup for v2010.08.0 Michael Grzeschik
2010-10-10  8:37 ` [PATCH 00/13] OMAP/Beagleboard ehci support Anand Gadiyar

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