mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 00/11] Convert MVEBU SoCs to DT and PBL_MULTI_IMAGE
@ 2014-06-23 20:10 Sebastian Hesselbarth
  2014-06-23 20:10 ` [PATCH 01/11] ARM: dts: sort pbl entries by alphabet Sebastian Hesselbarth
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: Sebastian Hesselbarth @ 2014-06-23 20:10 UTC (permalink / raw)
  To: Sebastian Hesselbarth; +Cc: barebox

This patch set converts Kirkwood and Armada 370/XP to DT and provides
PBL_MULTI_IMAGE support as we already have for Dove.

Patch 1 resorts pbl entries in arch/arm/dts/Makefile back to alphabetical
order.

Patch 2 reworks mvebu pbl image Makefile to ease integration of other SoCs.

Patches 3 and 4 convert Kirkwood and Armada 370/XP SoC init to DT probing.

Patches 5-9 convert existing Kirkwood and Armada 370/XP boards to
PBL_MULTI_IMAGES.

Patch 10 then reworks MVEBU related Kconfig to allow multiple board selection
per-SoC.

Patch 11 removes now redundant dtb Makefile targets.

The patches are based on today's next with previously sent cleanup patches
applied. They have been tested on Guruplug (Kirkwood) and Mirabox (Armada 370).

A branch based on *unstable* next with cleanup applied is available at:
https://github.com/shesselba/barebox-dove.git mvebu/soc

Sebastian Hesselbarth (11):
  ARM: dts: sort pbl entries by alphabet
  ARM: mvebu: sort pbl image target by board
  ARM: mvebu: convert Kirkwood devices to be probed from DT
  ARM: mvebu: convert Armada 370/XP devices to be probed from DT
  ARM: mvebu: convert Globalscale Guruplug to PBL_MULTI_IMAGES
  ARM: mvebu: convert USI Topkick to PBL_MULTI_IMAGES
  ARM: mvebu: convert Globalscale Mirabox to PBL_MULTI_IMAGES
  ARM: mvebu: convert Marvell Armada XP GP to PBL_MULTI_IMAGES
  ARM: mvebu: convert PlatHome Openblocks AX3-4 to PBL_MULTI_IMAGES
  ARM: mvebu: convert to multiple board selection
  ARM: mvebu: remove dtb Makefile entries

 arch/arm/Kconfig                                   |  1 +
 arch/arm/Makefile                                  |  6 --
 arch/arm/boards/Makefile                           |  6 ++
 arch/arm/boards/globalscale-guruplug/Makefile      |  1 +
 arch/arm/boards/globalscale-guruplug/lowlevel.c    | 35 +++++++++++
 arch/arm/boards/globalscale-mirabox/Makefile       |  1 +
 arch/arm/boards/globalscale-mirabox/kwbimage.cfg   |  2 +-
 arch/arm/boards/globalscale-mirabox/lowlevel.c     | 35 +++++++++++
 arch/arm/boards/marvell-armada-xp-gp/Makefile      |  1 +
 arch/arm/boards/marvell-armada-xp-gp/kwbimage.cfg  |  2 +-
 arch/arm/boards/marvell-armada-xp-gp/lowlevel.c    | 34 ++++++++++
 arch/arm/boards/plathome-openblocks-ax3/Makefile   |  1 +
 .../boards/plathome-openblocks-ax3/kwbimage.cfg    |  2 +-
 arch/arm/boards/plathome-openblocks-ax3/lowlevel.c | 35 +++++++++++
 arch/arm/boards/usi-topkick/Makefile               |  1 +
 arch/arm/boards/usi-topkick/lowlevel.c             | 34 ++++++++++
 arch/arm/dts/Makefile                              | 32 +++++-----
 arch/arm/dts/armada-370-mirabox-bb.dts             | 25 ++++++++
 arch/arm/dts/armada-xp-gp-bb.dts                   | 12 ++++
 arch/arm/dts/armada-xp-openblocks-ax3-4-bb.dts     | 26 ++++++++
 arch/arm/dts/kirkwood-guruplug-server-plus-bb.dts  | 14 +++++
 arch/arm/dts/kirkwood-topkick-bb.dts               | 14 +++++
 arch/arm/mach-mvebu/Kconfig                        | 21 -------
 arch/arm/mach-mvebu/armada-370-xp.c                | 66 +-------------------
 arch/arm/mach-mvebu/kirkwood.c                     | 46 --------------
 images/Makefile.mvebu                              | 72 +++++++++++++++++++---
 26 files changed, 363 insertions(+), 162 deletions(-)
 create mode 100644 arch/arm/boards/globalscale-guruplug/lowlevel.c
 create mode 100644 arch/arm/boards/globalscale-mirabox/lowlevel.c
 create mode 100644 arch/arm/boards/marvell-armada-xp-gp/lowlevel.c
 create mode 100644 arch/arm/boards/plathome-openblocks-ax3/lowlevel.c
 create mode 100644 arch/arm/boards/usi-topkick/lowlevel.c
 create mode 100644 arch/arm/dts/armada-370-mirabox-bb.dts
 create mode 100644 arch/arm/dts/armada-xp-gp-bb.dts
 create mode 100644 arch/arm/dts/armada-xp-openblocks-ax3-4-bb.dts
 create mode 100644 arch/arm/dts/kirkwood-guruplug-server-plus-bb.dts
 create mode 100644 arch/arm/dts/kirkwood-topkick-bb.dts

---
Cc: barebox@lists.infradead.org
-- 
2.0.0


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

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

end of thread, other threads:[~2014-06-24  6:57 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-23 20:10 [PATCH 00/11] Convert MVEBU SoCs to DT and PBL_MULTI_IMAGE Sebastian Hesselbarth
2014-06-23 20:10 ` [PATCH 01/11] ARM: dts: sort pbl entries by alphabet Sebastian Hesselbarth
2014-06-23 20:10 ` [PATCH 02/11] ARM: mvebu: sort pbl image target by board Sebastian Hesselbarth
2014-06-23 20:10 ` [PATCH 03/11] ARM: mvebu: convert Kirkwood devices to be probed from DT Sebastian Hesselbarth
2014-06-23 20:10 ` [PATCH 04/11] ARM: mvebu: convert Armada 370/XP " Sebastian Hesselbarth
2014-06-23 20:10 ` [PATCH 05/11] ARM: mvebu: convert Globalscale Guruplug to PBL_MULTI_IMAGES Sebastian Hesselbarth
2014-06-23 20:10 ` [PATCH 06/11] ARM: mvebu: convert USI Topkick " Sebastian Hesselbarth
2014-06-23 20:10 ` [PATCH 07/11] ARM: mvebu: convert Globalscale Mirabox " Sebastian Hesselbarth
2014-06-23 20:10 ` [PATCH 08/11] ARM: mvebu: convert Marvell Armada XP GP " Sebastian Hesselbarth
2014-06-23 20:11 ` [PATCH 09/11] ARM: mvebu: convert PlatHome Openblocks AX3-4 " Sebastian Hesselbarth
2014-06-23 20:11 ` [PATCH 10/11] ARM: mvebu: convert to multiple board selection Sebastian Hesselbarth
2014-06-23 20:11 ` [PATCH 11/11] ARM: mvebu: remove dtb Makefile entries Sebastian Hesselbarth
2014-06-24  6:57 ` [PATCH 00/11] Convert MVEBU SoCs to DT and PBL_MULTI_IMAGE Sascha Hauer

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