public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/11] Update gdsys ppc4xx-based boards
@ 2013-04-22 11:16 Dirk Eibach
  2013-04-22 11:16 ` [U-Boot] [PATCH 01/11] powerpc/ppc4xx: Add generic accessor functions for gdsys FPGA Dirk Eibach
                   ` (10 more replies)
  0 siblings, 11 replies; 26+ messages in thread
From: Dirk Eibach @ 2013-04-22 11:16 UTC (permalink / raw)
  To: u-boot




Dirk Eibach (11):
  powerpc/ppc4xx: Add generic accessor functions for gdsys FPGA
  powerpc/ppc4xx: Add gdsys mclink interface
  powerpc/ppc4xx: Add fpgad command for dumping gdsys fpga registers
  powerpc/ppc4xx: Add bitbang i2c interface for gdsys boards
  powerpc/ppc4xx: Use generic FPGA accessors in gdsys common code
  powerpc/ppc4xx: Support gdsys multichannel iocon hardware
  powerpc/ppc4xx: Use generic FPGA accessors on all gdsys 405ep/ex
    boards
  powerpc/ppc4xx: Fixup phy erratum on gdsys iocon hardware
  powerpc/ppc4xx: Increase timeout for gdsys mclink bus startup
  powerpc/ppc4xx: Consider gdsys FPGA OSD size
  powerpc/ppc4xx: Remove CONFIG_SYS_FLASH_PROTECTION from gdsys boards

 board/gdsys/405ep/405ep.c        |   12 +-
 board/gdsys/405ep/dlvision-10g.c |   20 +-
 board/gdsys/405ep/io.c           |   20 +-
 board/gdsys/405ep/iocon.c        |  467 ++++++++++++++++++++++++++++++++++----
 board/gdsys/405ep/neo.c          |   17 +-
 board/gdsys/405ex/405ex.c        |   14 +-
 board/gdsys/405ex/io64.c         |   38 ++--
 board/gdsys/common/Makefile      |    2 +-
 board/gdsys/common/bb_i2c.c      |  304 +++++++++++++++++++++++++
 board/gdsys/common/bb_i2c.h      |   76 +++++++
 board/gdsys/common/cmd_fpga.c    |   94 ++++++++
 board/gdsys/common/mclink.c      |  142 ++++++++++++
 board/gdsys/common/mclink.h      |   31 +++
 board/gdsys/common/osd.c         |  105 +++++----
 include/configs/dlvision-10g.h   |    3 +-
 include/configs/dlvision.h       |    3 +-
 include/configs/io.h             |    3 +-
 include/configs/iocon.h          |   43 ++--
 include/configs/neo.h            |    3 +-
 include/gdsys_fpga.h             |   20 +-
 20 files changed, 1249 insertions(+), 168 deletions(-)
 create mode 100644 board/gdsys/common/bb_i2c.c
 create mode 100644 board/gdsys/common/bb_i2c.h
 create mode 100644 board/gdsys/common/cmd_fpga.c
 create mode 100644 board/gdsys/common/mclink.c
 create mode 100644 board/gdsys/common/mclink.h

-- 
1.7.10.4

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

end of thread, other threads:[~2013-04-25 13:49 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-22 11:16 [U-Boot] [PATCH 0/11] Update gdsys ppc4xx-based boards Dirk Eibach
2013-04-22 11:16 ` [U-Boot] [PATCH 01/11] powerpc/ppc4xx: Add generic accessor functions for gdsys FPGA Dirk Eibach
2013-04-22 11:16 ` [U-Boot] [PATCH 02/11] powerpc/ppc4xx: Add gdsys mclink interface Dirk Eibach
2013-04-22 11:16 ` [U-Boot] [PATCH 03/11] powerpc/ppc4xx: Add fpgad command for dumping gdsys fpga registers Dirk Eibach
2013-04-22 17:14   ` Tom Rini
2013-04-23  9:53     ` [U-Boot] (WARNING!!! PGP with incorrect signature) " Eibach, Dirk
2013-04-23 11:40       ` Tom Rini
2013-04-22 11:16 ` [U-Boot] [PATCH 04/11] powerpc/ppc4xx: Add bitbang i2c interface for gdsys boards Dirk Eibach
2013-04-23  6:45   ` Stefan Roese
2013-04-23  6:16     ` Heiko Schocher
2013-04-23  7:35       ` [U-Boot] burst transaction test TigerLiu at viatech.com.cn
2013-04-23 12:16         ` Wolfgang Denk
2013-04-24 11:43       ` [U-Boot] [RFC] i2c, ppc4xx_i2c: switch to new multibus/multiadapter support Dirk Eibach
2013-04-24 12:48         ` Heiko Schocher
2013-04-24 13:00           ` Dirk Eibach
2013-04-24 13:04             ` Heiko Schocher
2013-04-24 13:11               ` Stefan Roese
2013-04-25 13:21               ` Dirk Eibach
2013-04-25 13:49                 ` Heiko Schocher
2013-04-22 11:16 ` [U-Boot] [PATCH 05/11] powerpc/ppc4xx: Use generic FPGA accessors in gdsys common code Dirk Eibach
2013-04-22 11:16 ` [U-Boot] [PATCH 06/11] powerpc/ppc4xx: Support gdsys multichannel iocon hardware Dirk Eibach
2013-04-22 11:16 ` [U-Boot] [PATCH 07/11] powerpc/ppc4xx: Use generic FPGA accessors on all gdsys 405ep/ex boards Dirk Eibach
2013-04-22 11:16 ` [U-Boot] [PATCH 08/11] powerpc/ppc4xx: Fixup phy erratum on gdsys iocon hardware Dirk Eibach
2013-04-22 11:16 ` [U-Boot] [PATCH 09/11] powerpc/ppc4xx: Increase timeout for gdsys mclink bus startup Dirk Eibach
2013-04-22 11:16 ` [U-Boot] [PATCH 10/11] powerpc/ppc4xx: Consider gdsys FPGA OSD size Dirk Eibach
2013-04-22 11:16 ` [U-Boot] [PATCH 11/11] powerpc/ppc4xx: Remove CONFIG_SYS_FLASH_PROTECTION from gdsys boards Dirk Eibach

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