public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/11] Add support for CompuLab cm-t3517 SoM
@ 2014-11-03  9:32 Igor Grinberg
  2014-11-03  9:32 ` [U-Boot] [PATCH 01/11] am335x: make get_board_rev() function weak Igor Grinberg
                   ` (10 more replies)
  0 siblings, 11 replies; 39+ messages in thread
From: Igor Grinberg @ 2014-11-03  9:32 UTC (permalink / raw)
  To: u-boot

* Move reusable code to a CompuLab common location
* Switch omap_hsmmc cd gpio to active low
* Add CompuLab cm-t3517 support

Igor Grinberg (11):
  am335x: make get_board_rev() function weak
  compulab: refactor board revision handling
  omap3: cm-t35: move the USB hub reset code
  omap3: cm-t35: extract the splash code from board
  omap3: cm-t35: move the SMC911x code
  omap3: cm-t35: move get_board_serial() fallback
  omap: hsmmc: assume cd gpio is active low
  omap3: cm-t3517: add basic board support
  omap3: cm-t3517: add USB support
  omap3: cm-t3517: add Ethernet support
  omap3: cm-t3517: add LCD/DVI and splash support

 arch/arm/cpu/armv7/am33xx/sys_info.c  |   3 +-
 arch/arm/cpu/armv7/omap3/Kconfig      |   4 +
 board/compulab/cm_t35/cm_t35.c        | 157 ++--------------
 board/compulab/cm_t3517/Kconfig       |  12 ++
 board/compulab/cm_t3517/MAINTAINERS   |   6 +
 board/compulab/cm_t3517/Makefile      |   9 +
 board/compulab/cm_t3517/cm_t3517.c    | 231 ++++++++++++++++++++++++
 board/compulab/cm_t3517/mux.c         | 236 ++++++++++++++++++++++++
 board/compulab/cm_t54/cm_t54.c        |   7 +-
 board/compulab/common/Makefile        |   7 +-
 board/compulab/common/common.c        |  59 ++++++
 board/compulab/common/common.h        |  47 +++++
 board/compulab/common/eeprom.c        |  14 +-
 board/compulab/common/omap3_smc911x.c |  93 ++++++++++
 board/compulab/common/splash.c        |  72 ++++++++
 configs/cm_t3517_defconfig            |   4 +
 drivers/mmc/omap_hsmmc.c              |   4 +-
 include/configs/cm_t3517.h            | 325 ++++++++++++++++++++++++++++++++++
 18 files changed, 1134 insertions(+), 156 deletions(-)
 create mode 100644 board/compulab/cm_t3517/Kconfig
 create mode 100644 board/compulab/cm_t3517/MAINTAINERS
 create mode 100644 board/compulab/cm_t3517/Makefile
 create mode 100644 board/compulab/cm_t3517/cm_t3517.c
 create mode 100644 board/compulab/cm_t3517/mux.c
 create mode 100644 board/compulab/common/common.c
 create mode 100644 board/compulab/common/common.h
 create mode 100644 board/compulab/common/omap3_smc911x.c
 create mode 100644 board/compulab/common/splash.c
 create mode 100644 configs/cm_t3517_defconfig
 create mode 100644 include/configs/cm_t3517.h

-- 
2.0.4

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

end of thread, other threads:[~2014-11-05 21:33 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-03  9:32 [U-Boot] [PATCH 00/11] Add support for CompuLab cm-t3517 SoM Igor Grinberg
2014-11-03  9:32 ` [U-Boot] [PATCH 01/11] am335x: make get_board_rev() function weak Igor Grinberg
2014-11-04 16:45   ` Tom Rini
2014-11-05 11:29     ` [U-Boot] [PATCH v2] " Igor Grinberg
2014-11-05 21:33       ` [U-Boot] [U-Boot, " Tom Rini
2014-11-03  9:32 ` [U-Boot] [PATCH 02/11] compulab: refactor board revision handling Igor Grinberg
2014-11-04 16:45   ` Tom Rini
2014-11-05 21:30   ` [U-Boot] [U-Boot, " Tom Rini
2014-11-03  9:32 ` [U-Boot] [PATCH 03/11] omap3: cm-t35: move the USB hub reset code Igor Grinberg
2014-11-04 16:45   ` Tom Rini
2014-11-05 21:30   ` [U-Boot] [U-Boot, " Tom Rini
2014-11-03  9:32 ` [U-Boot] [PATCH 04/11] omap3: cm-t35: extract the splash code from board Igor Grinberg
2014-11-04 16:45   ` Tom Rini
2014-11-05 21:30   ` [U-Boot] [U-Boot, " Tom Rini
2014-11-03  9:32 ` [U-Boot] [PATCH 05/11] omap3: cm-t35: move the SMC911x code Igor Grinberg
2014-11-04 16:45   ` Tom Rini
2014-11-05 21:30   ` [U-Boot] [U-Boot,05/11] " Tom Rini
2014-11-03  9:32 ` [U-Boot] [PATCH 06/11] omap3: cm-t35: move get_board_serial() fallback Igor Grinberg
2014-11-04 16:45   ` Tom Rini
2014-11-05 21:30   ` [U-Boot] [U-Boot, " Tom Rini
2014-11-03  9:32 ` [U-Boot] [PATCH 07/11] omap: hsmmc: assume cd gpio is active low Igor Grinberg
2014-11-04 16:45   ` Tom Rini
2014-11-05 21:31   ` [U-Boot] [U-Boot, " Tom Rini
2014-11-03  9:32 ` [U-Boot] [PATCH 08/11] omap3: cm-t3517: add basic board support Igor Grinberg
2014-11-04 16:46   ` Tom Rini
2014-11-05 12:16     ` Igor Grinberg
2014-11-05 12:23       ` Tom Rini
2014-11-05 12:53         ` Igor Grinberg
2014-11-05 12:25     ` [U-Boot] [PATCH v2 8/11] " Igor Grinberg
2014-11-05 21:33       ` [U-Boot] [U-Boot, v2, " Tom Rini
2014-11-03  9:32 ` [U-Boot] [PATCH 09/11] omap3: cm-t3517: add USB support Igor Grinberg
2014-11-04 16:45   ` Tom Rini
2014-11-05 21:31   ` [U-Boot] [U-Boot,09/11] " Tom Rini
2014-11-03  9:32 ` [U-Boot] [PATCH 10/11] omap3: cm-t3517: add Ethernet support Igor Grinberg
2014-11-04 16:45   ` Tom Rini
2014-11-05 21:31   ` [U-Boot] [U-Boot,10/11] " Tom Rini
2014-11-03  9:32 ` [U-Boot] [PATCH 11/11] omap3: cm-t3517: add LCD/DVI and splash support Igor Grinberg
2014-11-04 16:45   ` Tom Rini
2014-11-05 21:31   ` [U-Boot] [U-Boot, " Tom Rini

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