All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/7] OMAP3: Add support for mvBlueLYNX-X
@ 2011-07-15  9:09 Michael Jones
  2011-07-15  9:09 ` [U-Boot] [PATCH 1/7] fpga: add #define for Altera Cyclone EP3C5 Michael Jones
                   ` (8 more replies)
  0 siblings, 9 replies; 48+ messages in thread
From: Michael Jones @ 2011-07-15  9:09 UTC (permalink / raw)
  To: u-boot

Add support for the Matrix Vision mvBlueLYNX-X, an OMAP3-based 
intelligent camera.

These patches were created on top of v2011.06, but they also apply cleanly to
master and u-boot-arm/master. What should I use as base to submit such a patch?

Howard D. Gray (1):
  Add 37xx ESx revision numbers.

Michael Jones (5):
  fpga: support FPP Cyclone configuration
  mmc: rescan fails on empty slot
  mv_common.c: don't compile reset_environment if ENV_IS_NOWHERE
  ARMV7: OMAP: I2C driver: Write more than 1 byte at a time in
    i2c_write
  mvblx: Initial support for mvBlueLYNX-X

 MAINTAINERS                             |    4 +
 MAKEALL                                 |    1 +
 arch/arm/cpu/armv7/omap3/sys_info.c     |   13 +-
 arch/arm/include/asm/arch-omap3/omap3.h |   10 +
 board/matrix_vision/common/mv_common.c  |    2 +
 board/matrix_vision/mvblx/Makefile      |   53 ++++
 board/matrix_vision/mvblx/config.mk     |   33 +++
 board/matrix_vision/mvblx/fpga.c        |  222 +++++++++++++++++
 board/matrix_vision/mvblx/fpga.h        |   32 +++
 board/matrix_vision/mvblx/mvblx.c       |  171 +++++++++++++
 board/matrix_vision/mvblx/mvblx.h       |  362 ++++++++++++++++++++++++++++
 board/matrix_vision/mvblx/sys_eeprom.c  |  396 +++++++++++++++++++++++++++++++
 boards.cfg                              |    1 +
 common/cmd_mmc.c                        |    6 +-
 doc/README.omap3                        |    5 +
 drivers/fpga/cyclon2.c                  |   10 +
 drivers/i2c/omap24xx_i2c.c              |  134 +++++------
 include/configs/omap3_mvblx.h           |  312 ++++++++++++++++++++++++
 18 files changed, 1686 insertions(+), 81 deletions(-)
 create mode 100644 board/matrix_vision/mvblx/Makefile
 create mode 100644 board/matrix_vision/mvblx/config.mk
 create mode 100644 board/matrix_vision/mvblx/fpga.c
 create mode 100644 board/matrix_vision/mvblx/fpga.h
 create mode 100644 board/matrix_vision/mvblx/mvblx.c
 create mode 100644 board/matrix_vision/mvblx/mvblx.h
 create mode 100644 board/matrix_vision/mvblx/sys_eeprom.c
 create mode 100644 include/configs/omap3_mvblx.h

-- 
1.7.5.4


MATRIX VISION GmbH, Talstrasse 16, DE-71570 Oppenweiler
Registergericht: Amtsgericht Stuttgart, HRB 271090
Geschaeftsfuehrer: Gerhard Thullner, Werner Armingeon, Uwe Furtner, Erhard Meier

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

end of thread, other threads:[~2011-12-03 12:32 UTC | newest]

Thread overview: 48+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-15  9:09 [U-Boot] [PATCH 0/7] OMAP3: Add support for mvBlueLYNX-X Michael Jones
2011-07-15  9:09 ` [U-Boot] [PATCH 1/7] fpga: add #define for Altera Cyclone EP3C5 Michael Jones
2011-07-28 14:46   ` Wolfgang Denk
2011-07-15  9:09 ` [U-Boot] [PATCH 2/7] fpga: support FPP Cyclone configuration Michael Jones
2011-07-28 14:47   ` Wolfgang Denk
2011-07-15  9:09 ` [U-Boot] [PATCH 3/7] ARMV7: OMAP3: Add 37xx ESx revision numbers Michael Jones
2011-07-18 14:36   ` [U-Boot] [PATCH v2 " Michael Jones
2011-07-15  9:09 ` [U-Boot] [PATCH 4/7] mmc: rescan fails on empty slot Michael Jones
2011-07-18 14:40   ` [U-Boot] [PATCH v2 " Michael Jones
2011-08-17  2:15     ` Andy Fleming
2011-08-17  2:30       ` Andy Fleming
2011-08-17  7:46         ` Michael Jones
2011-07-19  2:06   ` [U-Boot] [PATCH " Jaehoon Chung
2011-07-20  8:51     ` Michael Jones
2011-07-20  9:52       ` Jaehoon Chung
2011-07-15  9:09 ` [U-Boot] [PATCH 5/7] mv_common.c: don't compile reset_environment if ENV_IS_NOWHERE Michael Jones
2011-07-18 14:45   ` [U-Boot] [PATCH v2 " Michael Jones
2011-07-28 14:49     ` Wolfgang Denk
2011-07-18 17:39   ` [U-Boot] [PATCH " Mike Frysinger
2011-07-15  9:09 ` [U-Boot] [PATCH 6/7] ARMV7: OMAP: I2C driver: Write more than 1 byte at a time in i2c_write Michael Jones
2011-07-18 14:58   ` [U-Boot] [PATCH v2 " Michael Jones
2011-07-27  6:07     ` Heiko Schocher
2011-07-27  7:42       ` Michael Jones
2011-07-27  7:53         ` Heiko Schocher
2011-07-27 12:41           ` [U-Boot] [PATCH v3] " Michael Jones
2011-07-27 12:41             ` [U-Boot] [PATCH] ARMV7: OMAP: I2C driver: cosmetic: make checkpatch-compatible Michael Jones
2011-08-01  9:12             ` [U-Boot] [PATCH v3] ARMV7: OMAP: I2C driver: Write more than 1 byte at a time in i2c_write Heiko Schocher
2011-08-01 10:14               ` [U-Boot] [PATCH v4] " Michael Jones
2011-08-02  6:37                 ` Heiko Schocher
2011-09-04 17:59                   ` Paulraj, Sandeep
2011-09-05  5:34                     ` Heiko Schocher
2011-07-27 21:00         ` [U-Boot] [PATCH v2 6/7] " Wolfgang Denk
2011-07-15  9:09 ` [U-Boot] [PATCH 7/7] OMAP3: mvblx: Initial support for mvBlueLYNX-X Michael Jones
2011-07-18 15:00   ` [U-Boot] [PATCH v2 " Michael Jones
2011-07-27  9:57     ` Igor Grinberg
2011-08-04 13:46     ` [U-Boot] [PATCH v3] " Michael Jones
2011-10-06 22:06       ` Wolfgang Denk
2011-08-17  8:55 ` [U-Boot] [PATCH v4] " Michael Jones
2011-10-06 21:51   ` Wolfgang Denk
2011-10-07  9:06     ` Michael Jones
2011-10-09 19:59       ` Wolfgang Denk
2011-10-05 15:08 ` [U-Boot] [PATCH v5] " Michael Jones
2011-10-10 15:08   ` [U-Boot] [PATCH v6] " Michael Jones
2011-10-18 17:31   ` [U-Boot] [PATCH v5] " Tom Rini
2011-10-19  8:16     ` Michael Jones
2011-10-20 11:37     ` [U-Boot] [PATCH] mv_common.c: get rid of 'defined but not used' warning Michael Jones
2011-10-20 11:48       ` Andre Schwarz
2011-12-03 12:32       ` Anatolij Gustschin

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.