From: Sascha Hauer <s.hauer@pengutronix.de>
To: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 0/3 v2] arm: add ARM Vexpress support
Date: Tue, 12 Feb 2013 09:05:23 +0100 [thread overview]
Message-ID: <20130212080523.GN1906@pengutronix.de> (raw)
In-Reply-To: <20130211120049.GX19322@game.jcrosoft.org>
On Mon, Feb 11, 2013 at 01:00:49PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> Hi,
>
> The following changes since commit e43e1498f65fe03cfc6b2744247eeccf27b26876:
>
> MIPS: pbl: fix none compression support (2013-02-05 09:43:17 +0100)
>
> are available in the git repository at:
>
> git://git.jcrosoft.org/barebox.git delivery/vexpress
Applied, thanks
Sascha
>
> for you to fetch changes up to b57ea102c02881da1400537d61dbec9e5c6a6ea1:
>
> arm: add vexpress board support (2013-02-11 04:56:09 +0800)
>
> ----------------------------------------------------------------
> Jean-Christophe PLAGNIOL-VILLARD (3):
> clocksource: add ARM AMBA SP804 support
> arm: add macro cpu_is_xxx
> arm: add vexpress board support
>
> arch/arm/Kconfig | 10 ++++++++
> arch/arm/Makefile | 2 ++
> arch/arm/boards/vexpress/Kconfig | 10 ++++++++
> arch/arm/boards/vexpress/Makefile | 4 ++++
> arch/arm/boards/vexpress/config.h | 5 ++++
> arch/arm/boards/vexpress/env/config | 41 ++++++++++++++++++++++++++++++++
> arch/arm/boards/vexpress/init.c | 142 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> arch/arm/boards/vexpress/lowlevel.c | 20 ++++++++++++++++
> arch/arm/configs/vexpress_ca9_defconfig | 61 +++++++++++++++++++++++++++++++++++++++++++++++
> arch/arm/configs/vexpress_defconfig | 60 ++++++++++++++++++++++++++++++++++++++++++++++
> arch/arm/include/asm/hardware/arm_timer.h | 5 ++++
> arch/arm/include/asm/hardware/sp810.h | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++
> arch/arm/include/asm/system_info.h | 63 ++++++++++++++++++++++++++++++++++++++++++++++++
> arch/arm/mach-vexpress/Kconfig | 18 ++++++++++++++
> arch/arm/mach-vexpress/Makefile | 3 +++
> arch/arm/mach-vexpress/devices.c | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> arch/arm/mach-vexpress/include/mach/clkdev.h | 7 ++++++
> arch/arm/mach-vexpress/include/mach/debug_ll.h | 33 ++++++++++++++++++++++++++
> arch/arm/mach-vexpress/include/mach/devices.h | 22 +++++++++++++++++
> arch/arm/mach-vexpress/reset.c | 22 +++++++++++++++++
> arch/arm/mach-vexpress/v2m.c | 85 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> drivers/clocksource/Kconfig | 4 ++++
> drivers/clocksource/Makefile | 1 +
> drivers/clocksource/amba-sp804.c | 94 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> include/linux/amba/sp805.h | 32 +++++++++++++++++++++++++
> 25 files changed, 885 insertions(+)
> create mode 100644 arch/arm/boards/vexpress/Kconfig
> create mode 100644 arch/arm/boards/vexpress/Makefile
> create mode 100644 arch/arm/boards/vexpress/config.h
> create mode 100644 arch/arm/boards/vexpress/env/config
> create mode 100644 arch/arm/boards/vexpress/init.c
> create mode 100644 arch/arm/boards/vexpress/lowlevel.c
> create mode 100644 arch/arm/configs/vexpress_ca9_defconfig
> create mode 100644 arch/arm/configs/vexpress_defconfig
> create mode 100644 arch/arm/include/asm/hardware/sp810.h
> create mode 100644 arch/arm/mach-vexpress/Kconfig
> create mode 100644 arch/arm/mach-vexpress/Makefile
> create mode 100644 arch/arm/mach-vexpress/devices.c
> create mode 100644 arch/arm/mach-vexpress/include/mach/clkdev.h
> create mode 100644 arch/arm/mach-vexpress/include/mach/debug_ll.h
> create mode 100644 arch/arm/mach-vexpress/include/mach/devices.h
> create mode 100644 arch/arm/mach-vexpress/reset.c
> create mode 100644 arch/arm/mach-vexpress/v2m.c
> create mode 100644 drivers/clocksource/amba-sp804.c
> create mode 100644 include/linux/amba/sp805.h
>
> Best Regards,
> J.
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
prev parent reply other threads:[~2013-02-12 8:05 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-11 12:00 Jean-Christophe PLAGNIOL-VILLARD
2013-02-11 12:03 ` [PATCH 1/3] clocksource: add ARM AMBA SP804 support Jean-Christophe PLAGNIOL-VILLARD
2013-02-11 12:03 ` [PATCH 2/3] arm: add macro cpu_is_xxx Jean-Christophe PLAGNIOL-VILLARD
2013-02-11 12:03 ` [PATCH 3/3] arm: add vexpress board support Jean-Christophe PLAGNIOL-VILLARD
2013-02-12 8:05 ` Sascha Hauer [this message]
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=20130212080523.GN1906@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=plagnioj@jcrosoft.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