From: Arnd Bergmann <arnd@arndb.de>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: [GIT PULL 11/13] arm-soc device tree conversions
Date: Wed, 2 Nov 2011 03:03:05 +0100 [thread overview]
Message-ID: <201111020303.05784.arnd@arndb.de> (raw)
In-Reply-To: <201111010348.13214.arnd@arndb.de>
This branch adds support for device tree based probing in the msm, imx,
at91, and omap subarchitectures, moving us closer to obsoleting board
specific files in those platforms.
Arnd
The following changes since commit 38b9c2164fc27127d4a3347c4774c70085b2a77e:
Merge branch 'next/cleanup2' into for-linus (2011-11-01 17:09:10 +0100)
are available in the git repository at:
git://git.linaro.org/people/arnd/arm-soc.git next/dt
Arnd Bergmann (5):
Merge branches 'msm/dt', 'imx/dt' and 'at91/dt' into next/dt
Merge branch 'omap/dt' into next/dt
Merge branch 'dt/gic' into next/dt
ARM: gic: use module.h instead of export.h
Merge branch 'imx/devel' into next/dt
David Brown (3):
msm_serial: Use relative resources for iomem
msm_serial: Add devicetree support
ARM: msm: Add devicetree support for msm8660-surf
Jean-Christophe PLAGNIOL-VILLARD (1):
ARM: at91: add at91sam9g20 and Calao USB A9G20 DT support
Nicolas Ferre (1):
ARM: at91: dt: at91sam9g45 family and board device tree files
Rob Herring (6):
Merge remote-tracking branch 'rmk/devel-stable' into HEAD
of/irq: introduce of_irq_init
irq: support domains with non-zero hwirq base
ARM: gic: add irq_domain support
ARM: gic: add OF based initialization
ARM: gic: fix irq_alloc_descs handling for sparse irq
Shawn Guo (2):
arm/mx5: add device tree support for imx53 boards
arm/mx5: add device tree support for imx51 babbage
Documentation/devicetree/bindings/arm/fsl.txt | 19 ++
Documentation/devicetree/bindings/arm/gic.txt | 55 ++++
.../devicetree/bindings/tty/serial/msm_serial.txt | 27 ++
arch/arm/boot/dts/at91sam9g20.dtsi | 119 ++++++++
arch/arm/boot/dts/at91sam9g45.dtsi | 106 +++++++
arch/arm/boot/dts/at91sam9m10g45ek.dts | 35 +++
arch/arm/boot/dts/imx51-babbage.dts | 135 +++++++++
arch/arm/boot/dts/imx51.dtsi | 246 ++++++++++++++++
arch/arm/boot/dts/imx53-ard.dts | 113 ++++++++
arch/arm/boot/dts/imx53-evk.dts | 120 ++++++++
arch/arm/boot/dts/imx53-qsb.dts | 125 ++++++++
arch/arm/boot/dts/imx53-smd.dts | 169 +++++++++++
arch/arm/boot/dts/imx53.dtsi | 301 ++++++++++++++++++++
arch/arm/boot/dts/msm8660-surf.dts | 24 ++
arch/arm/boot/dts/usb_a9g20.dts | 30 ++
arch/arm/common/Kconfig | 1 +
arch/arm/common/gic.c | 188 ++++++++----
arch/arm/include/asm/hardware/gic.h | 10 +-
arch/arm/mach-at91/Kconfig | 11 +
arch/arm/mach-at91/Makefile | 3 +
arch/arm/mach-at91/Makefile.boot | 2 +
arch/arm/mach-at91/at91sam9260.c | 8 +
arch/arm/mach-at91/at91sam9g45.c | 6 +
arch/arm/mach-at91/board-dt.c | 123 ++++++++
arch/arm/mach-msm/board-msm8x60.c | 58 ++++-
arch/arm/mach-mx5/Kconfig | 21 ++
arch/arm/mach-mx5/Makefile | 3 +
arch/arm/mach-mx5/board-mx51_babbage.c | 9 +-
arch/arm/mach-mx5/board-mx53_ard.c | 12 +-
arch/arm/mach-mx5/board-mx53_evk.c | 9 +-
arch/arm/mach-mx5/board-mx53_loco.c | 9 +-
arch/arm/mach-mx5/board-mx53_smd.c | 9 +-
arch/arm/mach-mx5/clock-mx51-mx53.c | 39 +++
arch/arm/mach-mx5/imx51-dt.c | 116 ++++++++
arch/arm/mach-mx5/imx53-dt.c | 126 ++++++++
arch/arm/plat-mxc/include/mach/common.h | 7 +
drivers/of/irq.c | 107 +++++++
drivers/tty/serial/msm_serial.c | 30 ++-
include/linux/irqdomain.h | 16 +-
include/linux/of_irq.h | 3 +
kernel/irq/irqdomain.c | 12 +-
41 files changed, 2461 insertions(+), 101 deletions(-)
next prev parent reply other threads:[~2011-11-02 2:25 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <201111010348.13214.arnd@arndb.de>
2011-11-01 3:01 ` [GIT PULL 1/13] arm-soc bug fixes Arnd Bergmann
2011-11-01 3:13 ` [GIT PULL 2/13] arm-soc cleanups Arnd Bergmann
2011-11-01 3:15 ` [GIT PULL 3/13] arm-soc driver Arnd Bergmann
2011-11-02 2:35 ` Arnd Bergmann
2011-11-01 3:21 ` [GIT PULL 5/13] arm-soc power management updates Arnd Bergmann
2011-11-01 3:24 ` [GIT PULL 4/13] arm-soc timer updates Arnd Bergmann
2011-11-01 3:27 ` [GIT PULL 6/13] arm-soc platform removal Arnd Bergmann
2011-11-01 3:45 ` [GIT PULL 7/13] arm-soc board dsupport Arnd Bergmann
2011-11-01 3:51 ` [GIT PULL 8/13] arm-soc general updates Arnd Bergmann
2011-11-01 12:32 ` [GIT PULL 9/13] arm-soc updates spanning multiple platforms Arnd Bergmann
2011-11-02 2:34 ` Arnd Bergmann
2011-11-02 1:57 ` [GIT PULL 10/13] arm-soc cleanups, part 2 Arnd Bergmann
2011-11-02 2:03 ` Arnd Bergmann [this message]
2011-11-02 2:21 ` [GIT PULL 12/12] arm-soc new soc ports Arnd Bergmann
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=201111020303.05784.arnd@arndb.de \
--to=arnd@arndb.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@linux-foundation.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