From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: barebox@lists.infradead.org
Cc: Rob Herring <rob.herring@calxeda.com>
Subject: [PATCH 0/6 v3] arm: add Calxeda Highbank support
Date: Wed, 13 Feb 2013 11:02:49 +0100 [thread overview]
Message-ID: <20130213100249.GL19322@game.jcrosoft.org> (raw)
Hi,
v3:
reset: add missing wfi
gpio: move probe to board
add oftree probe support
v2:
fix cc tag so Rob can receive the patch
add oftree support to xgmac
The following patch serie add the support of the Quad Core Cortex-A9
Highbank from Calxeda
As I do not have the real hardware this is only tested on qemu
Rob could confirm if this work on real hw
This patch serie depends on the amba sp804 patch and the ahci patch serie
The following changes since commit ddec6455ac75cad442be1247ae265b539c54ebfe:
amba: add oftree probe support (2013-02-13 02:35:56 +0800)
are available in the git repository at:
git://git.jcrosoft.org/barebox.git delivery/highbank
for you to fetch changes up to 1d6b912a9a89b0bdf7915026d938f40aba13b581:
highbank: use the provided dtb by the firmware to probe barebox device and mem size (2013-02-13 02:35:56 +0800)
----------------------------------------------------------------
Jean-Christophe PLAGNIOL-VILLARD (6):
ahci-generic: add oftree support
of: make of_add_memory available for other board
highbank: add xgmac support
arm: add highbank support
highbank: add l2x0 support
highbank: use the provided dtb by the firmware to probe barebox device and mem size
arch/arm/Kconfig | 12 ++++
arch/arm/Makefile | 2 +
arch/arm/boards/highbank/Makefile | 4 ++
arch/arm/boards/highbank/config.h | 5 ++
arch/arm/boards/highbank/env/bin/init_board | 7 +++
arch/arm/boards/highbank/env/config | 34 +++++++++++
arch/arm/boards/highbank/init.c | 86 ++++++++++++++++++++++++++
arch/arm/boards/highbank/lowlevel.c | 17 ++++++
arch/arm/configs/highbank_defconfig | 61 +++++++++++++++++++
arch/arm/mach-highbank/Kconfig | 18 ++++++
arch/arm/mach-highbank/Makefile | 4 ++
arch/arm/mach-highbank/cache-l2x0.c | 45 ++++++++++++++
arch/arm/mach-highbank/core.c | 49 +++++++++++++++
arch/arm/mach-highbank/core.h | 2 +
arch/arm/mach-highbank/devices.c | 74 +++++++++++++++++++++++
arch/arm/mach-highbank/include/mach/clkdev.h | 7 +++
arch/arm/mach-highbank/include/mach/debug_ll.h | 26 ++++++++
arch/arm/mach-highbank/include/mach/devices.h | 17 ++++++
arch/arm/mach-highbank/include/mach/gpio.h | 1 +
arch/arm/mach-highbank/reset.c | 21 +++++++
arch/arm/mach-highbank/smc.S | 27 +++++++++
arch/arm/mach-highbank/sysregs.h | 52 ++++++++++++++++
drivers/ata/ahci.c | 9 +++
drivers/net/Kconfig | 3 +
drivers/net/Makefile | 1 +
drivers/net/xgmac.c | 740 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
drivers/of/base.c | 20 ++++--
include/of.h | 6 ++
28 files changed, 1344 insertions(+), 6 deletions(-)
create mode 100644 arch/arm/boards/highbank/Makefile
create mode 100644 arch/arm/boards/highbank/config.h
create mode 100644 arch/arm/boards/highbank/env/bin/init_board
create mode 100644 arch/arm/boards/highbank/env/config
create mode 100644 arch/arm/boards/highbank/init.c
create mode 100644 arch/arm/boards/highbank/lowlevel.c
create mode 100644 arch/arm/configs/highbank_defconfig
create mode 100644 arch/arm/mach-highbank/Kconfig
create mode 100644 arch/arm/mach-highbank/Makefile
create mode 100644 arch/arm/mach-highbank/cache-l2x0.c
create mode 100644 arch/arm/mach-highbank/core.c
create mode 100644 arch/arm/mach-highbank/core.h
create mode 100644 arch/arm/mach-highbank/devices.c
create mode 100644 arch/arm/mach-highbank/include/mach/clkdev.h
create mode 100644 arch/arm/mach-highbank/include/mach/debug_ll.h
create mode 100644 arch/arm/mach-highbank/include/mach/devices.h
create mode 100644 arch/arm/mach-highbank/include/mach/gpio.h
create mode 100644 arch/arm/mach-highbank/reset.c
create mode 100644 arch/arm/mach-highbank/smc.S
create mode 100644 arch/arm/mach-highbank/sysregs.h
create mode 100644 drivers/net/xgmac.c
Best Regards,
J.
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2013-02-13 10:04 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-13 10:02 Jean-Christophe PLAGNIOL-VILLARD [this message]
2013-02-13 10:06 ` [PATCH 1/6] ahci-generic: add oftree support Jean-Christophe PLAGNIOL-VILLARD
2013-02-13 10:06 ` [PATCH 2/6] of: make of_add_memory available for other board Jean-Christophe PLAGNIOL-VILLARD
2013-02-13 17:31 ` Sascha Hauer
2013-02-13 17:59 ` Jean-Christophe PLAGNIOL-VILLARD
2013-02-13 18:09 ` [PATCH 1/1] of_add_memory: check the device_type is memory Jean-Christophe PLAGNIOL-VILLARD
2013-02-13 10:06 ` [PATCH 3/6] highbank: add xgmac support Jean-Christophe PLAGNIOL-VILLARD
2013-02-13 10:06 ` [PATCH 4/6] arm: add highbank support Jean-Christophe PLAGNIOL-VILLARD
2013-02-13 10:06 ` [PATCH 5/6] highbank: add l2x0 support Jean-Christophe PLAGNIOL-VILLARD
2013-02-13 10:06 ` [PATCH 6/6] highbank: use the provided dtb by the firmware to probe barebox device and mem size Jean-Christophe PLAGNIOL-VILLARD
2013-02-14 13:47 ` [PATCH 0/6 v3] arm: add Calxeda Highbank support 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=20130213100249.GL19322@game.jcrosoft.org \
--to=plagnioj@jcrosoft.com \
--cc=barebox@lists.infradead.org \
--cc=rob.herring@calxeda.com \
/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