All of lore.kernel.org
 help / color / mirror / Atom feed
* OMAP4 support
@ 2012-07-10 13:41 Gary Thomas
  2012-07-10 17:05 ` Chris Lalancette
  0 siblings, 1 reply; 10+ messages in thread
From: Gary Thomas @ 2012-07-10 13:41 UTC (permalink / raw)
  To: Laurent Pinchart; +Cc: Linux Media Discussion

I'm looking for video support on OMAP4 platforms.  I've found the
PandaBoard camera project (http://www.omappedia.org/wiki/PandaBoard_Camera_Support)
and this is starting to work.  That said, I'm having some
issues with setting up the pipeline, etc.

Can this list help out?

Also, does anyone know of any support for the CPI input interface
which is available on the OMAP4460?

Thanks

-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------


^ permalink raw reply	[flat|nested] 10+ messages in thread
* OMAP4 support
@ 2011-04-11 14:39 Sascha Hauer
  0 siblings, 0 replies; 10+ messages in thread
From: Sascha Hauer @ 2011-04-11 14:39 UTC (permalink / raw)
  To: barebox


The following finally adds omap4 support along with panda and pcm049 board
support. Also included in this series are updates to the beagle board
to make a xloader image suitable for booting from nand and mmc.

Sascha Hauer (12):
      ARM omap: Add omap signGP tool and possibility to build ift images
      mci omap: hsmmc is also found on the omap3
      ARM omap: make sr32 a static inline function
      ARM omap: Add omap4 support
      ARM omap: add xload helper functions
      ARM omap4: panda board support
      add panda defconfigs
      ARM omap4: Add pcm049 board support
      ARM: add pcm049 defconfigs
      ARM omap beagle: Add noshell support for booting from MMC
      ARM omap beagle: update defconfig
      ARM beagle board: add xload defconfig

 arch/arm/Makefile                                |   10 +
 arch/arm/boards/omap/board-beagle.c              |   42 +++
 arch/arm/boards/panda/Makefile                   |    1 +
 arch/arm/boards/panda/board.c                    |  230 ++++++++++++
 arch/arm/boards/panda/config.h                   |    1 +
 arch/arm/boards/panda/env/config                 |   45 +++
 arch/arm/boards/panda/lowlevel.c                 |  121 +++++++
 arch/arm/boards/panda/mux.c                      |  257 +++++++++++++
 arch/arm/boards/pcm049/Makefile                  |    1 +
 arch/arm/boards/pcm049/board.c                   |  200 ++++++++++
 arch/arm/boards/pcm049/config.h                  |    1 +
 arch/arm/boards/pcm049/env/bin/nand_bootstrap    |   31 ++
 arch/arm/boards/pcm049/env/config                |   53 +++
 arch/arm/boards/pcm049/lowlevel.c                |  127 +++++++
 arch/arm/boards/pcm049/mux.c                     |  254 +++++++++++++
 arch/arm/configs/omap3530_beagle_defconfig       |   15 +-
 arch/arm/configs/omap3530_beagle_xload_defconfig |   38 ++
 arch/arm/configs/panda_defconfig                 |   60 +++
 arch/arm/configs/panda_xload_defconfig           |   26 ++
 arch/arm/configs/pcm049_defconfig                |   57 +++
 arch/arm/configs/pcm049_xload_defconfig          |   40 ++
 arch/arm/mach-omap/Kconfig                       |   37 ++-
 arch/arm/mach-omap/Makefile                      |    3 +-
 arch/arm/mach-omap/gpio.c                        |   18 +
 arch/arm/mach-omap/include/mach/omap4-clock.h    |  320 ++++++++++++++++
 arch/arm/mach-omap/include/mach/omap4-mux.h      |  344 ++++++++++++++++++
 arch/arm/mach-omap/include/mach/omap4-silicon.h  |  179 +++++++++
 arch/arm/mach-omap/include/mach/silicon.h        |    3 +
 arch/arm/mach-omap/include/mach/syslib.h         |   23 ++-
 arch/arm/mach-omap/include/mach/xload.h          |   16 +
 arch/arm/mach-omap/omap3_generic.c               |   14 +
 arch/arm/mach-omap/omap4_clock.c                 |  380 +++++++++++++++++++
 arch/arm/mach-omap/omap4_generic.c               |  420 ++++++++++++++++++++++
 arch/arm/mach-omap/syslib.c                      |   20 -
 arch/arm/mach-omap/xload.c                       |   54 +++
 drivers/mci/Kconfig                              |    2 +-
 scripts/Makefile                                 |    1 +
 scripts/omap_signGP.c                            |  313 ++++++++++++++++
 38 files changed, 3731 insertions(+), 26 deletions(-)
 create mode 100644 arch/arm/boards/panda/Makefile
 create mode 100644 arch/arm/boards/panda/board.c
 create mode 100644 arch/arm/boards/panda/config.h
 create mode 100644 arch/arm/boards/panda/env/config
 create mode 100644 arch/arm/boards/panda/lowlevel.c
 create mode 100644 arch/arm/boards/panda/mux.c
 create mode 100644 arch/arm/boards/pcm049/Makefile
 create mode 100644 arch/arm/boards/pcm049/board.c
 create mode 100644 arch/arm/boards/pcm049/config.h
 create mode 100644 arch/arm/boards/pcm049/env/bin/nand_bootstrap
 create mode 100644 arch/arm/boards/pcm049/env/config
 create mode 100644 arch/arm/boards/pcm049/lowlevel.c
 create mode 100644 arch/arm/boards/pcm049/mux.c
 create mode 100644 arch/arm/configs/omap3530_beagle_xload_defconfig
 create mode 100644 arch/arm/configs/panda_defconfig
 create mode 100644 arch/arm/configs/panda_xload_defconfig
 create mode 100644 arch/arm/configs/pcm049_defconfig
 create mode 100644 arch/arm/configs/pcm049_xload_defconfig
 create mode 100644 arch/arm/mach-omap/include/mach/omap4-clock.h
 create mode 100644 arch/arm/mach-omap/include/mach/omap4-mux.h
 create mode 100644 arch/arm/mach-omap/include/mach/omap4-silicon.h
 create mode 100644 arch/arm/mach-omap/include/mach/xload.h
 create mode 100644 arch/arm/mach-omap/omap4_clock.c
 create mode 100644 arch/arm/mach-omap/omap4_generic.c
 create mode 100644 arch/arm/mach-omap/xload.c
 create mode 100644 scripts/omap_signGP.c

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

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

end of thread, other threads:[~2012-07-25 14:17 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-10 13:41 OMAP4 support Gary Thomas
2012-07-10 17:05 ` Chris Lalancette
2012-07-10 19:31   ` Gary Thomas
2012-07-13  2:30     ` Sergio Aguirre
2012-07-13 10:24       ` Gary Thomas
2012-07-13 11:30         ` Gary Thomas
2012-07-15 14:31         ` Sergio Aguirre
2012-07-15 20:24           ` Gary Thomas
2012-07-25 14:10             ` Gary Thomas
  -- strict thread matches above, loose matches on Subject: below --
2011-04-11 14:39 Sascha Hauer

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.