From: grant.likely@secretlab.ca (Grant Likely)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 0/6] Basic ARM devicetree support
Date: Sat, 12 Feb 2011 01:14:27 -0700 [thread overview]
Message-ID: <20110212080634.15682.21141.stgit@localhost6.localdomain6> (raw)
Third posting. v3 reverts the v2 changes to the handling of the dtb
during early init. The real problem turned out to be using the wrong
function for allocating early memory. Switching to alloc_bootmem()
fixed the corruption issue. Memory reservation was never the issue.
v3 also simplifies the handling of reserved memory sections and adds
parsing of the dtb reserved map.
I'm not asking for these patches to be merged into mainline yet, but
I'm fairly confident that they should be pretty close to their final
form.
Not included in this series is Russell's patch to remove early vetting
of the machine type number and Rob's patch to map the region if atags
or the dtb are not within the first 1MB. However, I am carrying those
patches in my devicetree/arm and devicetree/test branches.
Please test.
...
This patch series allows CONFIG_OF to be enabled on ARM and allows the
kernel to accept a dtb pointer from boot firmware instead of atags.
If a dtb is passed, then the kernel will use the root 'compatible'
property to find a matching machine_desc, and it will use it to obtain
the memory layout, initrd location and kernel parameters string.
Only limited device tree support is enabled here. It does not perform
any kind of device registration from device tree data. That support
will be enabled in a later patch set. Rather, this series is a stable
base that other engineers can use to start working on device tree
support for their platforms.
Tested on Versatile (qemu) and nVidia Tegra Harmony. Kernel compiles
and boots with CONFIG_OF both on and off, both with and without passing
a device tree blob.
This series is reflected in the following branch (stable; will not be
rebased):
git://git.secretlab.ca/git/linux-2.6 devicetree/arm
The 'clean' patches (rebased) can be found here:
git://git.secretlab.ca/git/linux-2.6 devicetree/test
---
Grant Likely (5):
arm/dt: Make __vet_atags also accept a dtb image
arm/dt: consolidate atags setup into setup_machine_atags
arm/dt: probe for platforms via the device tree
arm/dt: Basic versatile devicetree support
arm/dt: Basic tegra devicetree support
Jeremy Kerr (1):
arm/dt: Allow CONFIG_OF on ARM
arch/arm/Kconfig | 7 ++
arch/arm/include/asm/mach/arch.h | 2
arch/arm/include/asm/prom.h | 37 +++++++++
arch/arm/include/asm/setup.h | 3 +
arch/arm/kernel/Makefile | 1
arch/arm/kernel/devtree.c | 136 ++++++++++++++++++++++++++++++++
arch/arm/kernel/head-common.S | 24 ++++--
arch/arm/kernel/head.S | 8 +-
arch/arm/kernel/setup.c | 78 ++++++++++--------
arch/arm/mach-tegra/board-harmony.c | 6 +
arch/arm/mach-versatile/versatile_ab.c | 6 +
arch/arm/mach-versatile/versatile_pb.c | 6 +
arch/arm/mm/init.c | 11 +++
13 files changed, 280 insertions(+), 45 deletions(-)
create mode 100644 arch/arm/include/asm/prom.h
create mode 100644 arch/arm/kernel/devtree.c
--
Signature
next reply other threads:[~2011-02-12 8:14 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-12 8:14 Grant Likely [this message]
2011-02-12 8:14 ` [PATCH v3 1/6] arm/dt: Make __vet_atags also accept a dtb image Grant Likely
2011-02-12 8:14 ` [PATCH v3 2/6] arm/dt: Allow CONFIG_OF on ARM Grant Likely
2011-02-12 8:14 ` [PATCH v3 3/6] arm/dt: consolidate atags setup into setup_machine_atags Grant Likely
2011-02-12 8:14 ` [PATCH v3 4/6] arm/dt: probe for platforms via the device tree Grant Likely
2011-02-12 8:14 ` [PATCH v3 5/6] arm/dt: Basic versatile devicetree support Grant Likely
2011-02-12 8:14 ` [PATCH v3 6/6] arm/dt: Basic tegra " Grant Likely
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=20110212080634.15682.21141.stgit@localhost6.localdomain6 \
--to=grant.likely@secretlab.ca \
--cc=linux-arm-kernel@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;
as well as URLs for NNTP newsgroup(s).