From: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
To: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Cc: barebox@lists.infradead.org
Subject: [PATCH 00/11] Convert MVEBU SoCs to DT and PBL_MULTI_IMAGE
Date: Mon, 23 Jun 2014 22:10:51 +0200 [thread overview]
Message-ID: <1403554262-12777-1-git-send-email-sebastian.hesselbarth@gmail.com> (raw)
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
next reply other threads:[~2014-06-23 20:11 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-23 20:10 Sebastian Hesselbarth [this message]
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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1403554262-12777-1-git-send-email-sebastian.hesselbarth@gmail.com \
--to=sebastian.hesselbarth@gmail.com \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox