mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH v3 0/5] GEIP DA923RC board support
@ 2013-11-05 15:36 Renaud Barbier
  2013-11-05 15:36 ` [PATCH 1/5] ppc: mpc85xx: mpc8544 support Renaud Barbier
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Renaud Barbier @ 2013-11-05 15:36 UTC (permalink / raw)
  To: barebox

This patch set addresses comments by using the GPIO API
to set gpio out pins, using the I2C API where necessary
but still allowing for early I2C access for future early
configuration.

This patch set adds support to the GEIP DA923RC extending
the CPU support to the MPC8544 and allowing the use of the
DDR driver.

Renaud Barbier (5):
  ppc: mpc85xx: mpc8544 support
  ppc: mpc85xx: define Ethernet port count
  ppc: mpc85xx: enable DDR driver
  ppc: DA923RC: add board support
  ppc: mpc85xx: build directives

 arch/ppc/Makefile                                  |    1 +
 arch/ppc/boards/geip-da923rc/Makefile              |    7 +
 arch/ppc/boards/geip-da923rc/barebox.lds.S         |  155 ++++++++++++++
 arch/ppc/boards/geip-da923rc/config.h              |   54 +++++
 arch/ppc/boards/geip-da923rc/da923rc.c             |  212 ++++++++++++++++++++
 arch/ppc/boards/geip-da923rc/ddr.c                 |  169 ++++++++++++++++
 arch/ppc/boards/geip-da923rc/env/bin/init          |    4 +
 arch/ppc/boards/geip-da923rc/env/config            |    4 +
 arch/ppc/boards/geip-da923rc/law.c                 |   24 +++
 arch/ppc/boards/geip-da923rc/nand.c                |   94 +++++++++
 arch/ppc/boards/geip-da923rc/product_data.c        |   66 ++++++
 arch/ppc/boards/geip-da923rc/product_data.h        |   62 ++++++
 arch/ppc/boards/geip-da923rc/tlb.c                 |   69 +++++++
 arch/ppc/configs/da923rc_defconfig                 |   57 ++++++
 arch/ppc/ddr-8xxx/Makefile                         |    2 +
 arch/ppc/include/asm/fsl_lbc.h                     |   12 +
 arch/ppc/include/asm/processor.h                   |    2 +
 arch/ppc/mach-mpc85xx/Kconfig                      |   32 +++-
 arch/ppc/mach-mpc85xx/Makefile                     |    3 +
 arch/ppc/mach-mpc85xx/cpu.c                        |    6 +-
 arch/ppc/mach-mpc85xx/cpuid.c                      |    2 +
 arch/ppc/mach-mpc85xx/eth-devices.c                |    2 +-
 arch/ppc/mach-mpc85xx/fsl_gpio.c                   |   47 +++++
 arch/ppc/mach-mpc85xx/include/mach/clock.h         |    1 +
 .../ppc/mach-mpc85xx/include/mach/config_mpc85xx.h |    7 +
 arch/ppc/mach-mpc85xx/include/mach/gpio.h          |   17 ++
 arch/ppc/mach-mpc85xx/include/mach/immap_85xx.h    |   23 ++
 arch/ppc/mach-mpc85xx/speed.c                      |   18 ++
 28 files changed, 1142 insertions(+), 10 deletions(-)
 create mode 100644 arch/ppc/boards/geip-da923rc/Makefile
 create mode 100644 arch/ppc/boards/geip-da923rc/barebox.lds.S
 create mode 100644 arch/ppc/boards/geip-da923rc/config.h
 create mode 100644 arch/ppc/boards/geip-da923rc/da923rc.c
 create mode 100644 arch/ppc/boards/geip-da923rc/ddr.c
 create mode 100644 arch/ppc/boards/geip-da923rc/env/bin/init
 create mode 100644 arch/ppc/boards/geip-da923rc/env/config
 create mode 100644 arch/ppc/boards/geip-da923rc/law.c
 create mode 100644 arch/ppc/boards/geip-da923rc/nand.c
 create mode 100644 arch/ppc/boards/geip-da923rc/product_data.c
 create mode 100644 arch/ppc/boards/geip-da923rc/product_data.h
 create mode 100644 arch/ppc/boards/geip-da923rc/tlb.c
 create mode 100644 arch/ppc/configs/da923rc_defconfig
 create mode 100644 arch/ppc/ddr-8xxx/Makefile
 create mode 100644 arch/ppc/mach-mpc85xx/fsl_gpio.c
 create mode 100644 arch/ppc/mach-mpc85xx/include/mach/gpio.h


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

^ permalink raw reply	[flat|nested] 8+ messages in thread
* [PATCH v2 0/5] GEIP DA923RC board support
@ 2013-10-30 10:22 Renaud Barbier
  2013-10-30 10:22 ` [PATCH 2/5] ppc: mpc85xx: define Ethernet port count Renaud Barbier
  0 siblings, 1 reply; 8+ messages in thread
From: Renaud Barbier @ 2013-10-30 10:22 UTC (permalink / raw)
  To: barebox

This patch set v2 addresses the comment about registering a MAC address
for an Ethernet port. The consequence is that there are now only five
patches.

This patch set adds support for the GEIP DA923RC board.
It extends SOC support to the MPC8544 and enables the DDR driver.
The gianfar driver support is updated so that the board MAC address
can be passed to the driver.

Renaud Barbier (5):
  ppc: mpc85xx: mpc8544 support
  ppc: mpc85xx: define Ethernet port count
  ppc: mpc85xx: enable DDR driver
  ppc: DA923RC: add board support
  ppc: mpc85xx: build directives

 arch/ppc/Makefile                                  |    1 +
 arch/ppc/boards/geip-da923rc/Makefile              |    7 +
 arch/ppc/boards/geip-da923rc/barebox.lds.S         |  159 ++++++++++++
 arch/ppc/boards/geip-da923rc/config.h              |   48 ++++
 arch/ppc/boards/geip-da923rc/da923rc.c             |  270 ++++++++++++++++++++
 arch/ppc/boards/geip-da923rc/ddr.c                 |  110 ++++++++
 arch/ppc/boards/geip-da923rc/env/bin/init          |    4 +
 arch/ppc/boards/geip-da923rc/env/config            |    4 +
 arch/ppc/boards/geip-da923rc/law.c                 |   24 ++
 arch/ppc/boards/geip-da923rc/nand.c                |   94 +++++++
 arch/ppc/boards/geip-da923rc/product_data.c        |   64 +++++
 arch/ppc/boards/geip-da923rc/product_data.h        |   56 ++++
 arch/ppc/boards/geip-da923rc/tlb.c                 |   69 +++++
 arch/ppc/configs/da923rc_defconfig                 |   58 +++++
 arch/ppc/ddr-8xxx/Makefile                         |    2 +
 arch/ppc/include/asm/fsl_lbc.h                     |   12 +
 arch/ppc/include/asm/processor.h                   |    2 +
 arch/ppc/mach-mpc85xx/Kconfig                      |   32 ++-
 arch/ppc/mach-mpc85xx/Makefile                     |    2 +
 arch/ppc/mach-mpc85xx/cpu.c                        |    6 +-
 arch/ppc/mach-mpc85xx/cpuid.c                      |    2 +
 arch/ppc/mach-mpc85xx/eth-devices.c                |    2 +-
 arch/ppc/mach-mpc85xx/include/mach/clock.h         |    1 +
 .../ppc/mach-mpc85xx/include/mach/config_mpc85xx.h |    7 +
 arch/ppc/mach-mpc85xx/include/mach/immap_85xx.h    |   23 ++
 arch/ppc/mach-mpc85xx/speed.c                      |   18 ++
 26 files changed, 1067 insertions(+), 10 deletions(-)
 create mode 100644 arch/ppc/boards/geip-da923rc/Makefile
 create mode 100644 arch/ppc/boards/geip-da923rc/barebox.lds.S
 create mode 100644 arch/ppc/boards/geip-da923rc/config.h
 create mode 100644 arch/ppc/boards/geip-da923rc/da923rc.c
 create mode 100644 arch/ppc/boards/geip-da923rc/ddr.c
 create mode 100644 arch/ppc/boards/geip-da923rc/env/bin/init
 create mode 100644 arch/ppc/boards/geip-da923rc/env/config
 create mode 100644 arch/ppc/boards/geip-da923rc/law.c
 create mode 100644 arch/ppc/boards/geip-da923rc/nand.c
 create mode 100644 arch/ppc/boards/geip-da923rc/product_data.c
 create mode 100644 arch/ppc/boards/geip-da923rc/product_data.h
 create mode 100644 arch/ppc/boards/geip-da923rc/tlb.c
 create mode 100644 arch/ppc/configs/da923rc_defconfig
 create mode 100644 arch/ppc/ddr-8xxx/Makefile


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

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

end of thread, other threads:[~2013-11-06 10:05 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-05 15:36 [PATCH v3 0/5] GEIP DA923RC board support Renaud Barbier
2013-11-05 15:36 ` [PATCH 1/5] ppc: mpc85xx: mpc8544 support Renaud Barbier
2013-11-05 15:36 ` [PATCH 2/5] ppc: mpc85xx: define Ethernet port count Renaud Barbier
2013-11-05 15:36 ` [PATCH 3/5] ppc: mpc85xx: enable DDR driver Renaud Barbier
2013-11-05 15:36 ` [PATCH 4/5] ppc: DA923RC: add board support Renaud Barbier
2013-11-05 15:36 ` [PATCH 5/5] ppc: mpc85xx: build directives Renaud Barbier
2013-11-06 10:05 ` [PATCH v3 0/5] GEIP DA923RC board support Sascha Hauer
  -- strict thread matches above, loose matches on Subject: below --
2013-10-30 10:22 [PATCH v2 " Renaud Barbier
2013-10-30 10:22 ` [PATCH 2/5] ppc: mpc85xx: define Ethernet port count Renaud Barbier

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