From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-devel@nongnu.org
Cc: Anthony Liguori <aliguori@us.ibm.com>,
patches@linaro.org, Alexander Graf <agraf@suse.de>,
Peter Crosthwaite <peter.crosthwaite@xilinx.com>,
David Gibson <david@gibson.dropbear.id.au>,
kvmarm@lists.cs.columbia.edu,
KONRAD Frederic <fred.konrad@greensocs.com>
Subject: [Qemu-devel] [PATCH v3 6/8] arm/boot: Allow boards to modify the FDT blob
Date: Tue, 16 Jul 2013 13:25:10 +0100 [thread overview]
Message-ID: <1373977512-28932-7-git-send-email-peter.maydell@linaro.org> (raw)
In-Reply-To: <1373977512-28932-1-git-send-email-peter.maydell@linaro.org>
Add a callback hook in arm_boot_info to allow board models to
modify the device tree blob if they need to. (The major expected
use case is to add virtio-mmio nodes for virtio-mmio transports
that exist in QEMU but not in the hardware.)
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
hw/arm/boot.c | 5 +++++
include/hw/arm/arm.h | 4 ++++
2 files changed, 9 insertions(+)
diff --git a/hw/arm/boot.c b/hw/arm/boot.c
index 1780316..9fbe5d2 100644
--- a/hw/arm/boot.c
+++ b/hw/arm/boot.c
@@ -294,6 +294,11 @@ static int load_dtb(hwaddr addr, const struct arm_boot_info *binfo)
goto fail;
}
}
+
+ if (binfo->modify_dtb) {
+ binfo->modify_dtb(binfo, fdt);
+ }
+
qemu_devtree_dumpdtb(fdt, size);
cpu_physical_memory_write(addr, fdt, size);
diff --git a/include/hw/arm/arm.h b/include/hw/arm/arm.h
index 7b2b02d..bae87c6 100644
--- a/include/hw/arm/arm.h
+++ b/include/hw/arm/arm.h
@@ -55,6 +55,10 @@ struct arm_boot_info {
const struct arm_boot_info *info);
void (*secondary_cpu_reset_hook)(ARMCPU *cpu,
const struct arm_boot_info *info);
+ /* if a board needs to be able to modify a device tree provided by
+ * the user it should implement this hook.
+ */
+ void (*modify_dtb)(const struct arm_boot_info *info, void *fdt);
/* Used internally by arm_boot.c */
int is_linux;
hwaddr initrd_start;
--
1.7.9.5
next prev parent reply other threads:[~2013-07-16 12:54 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-16 12:25 [Qemu-devel] [PATCH v3 0/8] Add virtio-mmio and use it in vexpress Peter Maydell
2013-07-16 12:25 ` [Qemu-devel] [PATCH v3 1/8] device_tree: Add qemu_devtree_setprop_sized_cells() utility functions Peter Maydell
2013-07-16 13:26 ` Peter Crosthwaite
2013-07-16 12:25 ` [Qemu-devel] [PATCH v3 2/8] arm/boot: Use qemu_devtree_setprop_sized_cells() Peter Maydell
2013-07-16 14:31 ` Peter Crosthwaite
2013-07-16 14:43 ` Peter Maydell
2013-07-17 0:15 ` Peter Crosthwaite
2013-07-16 12:25 ` [Qemu-devel] [PATCH v3 3/8] virtio: Add support for guest setting of queue size Peter Maydell
2013-07-16 12:25 ` [Qemu-devel] [PATCH v3 4/8] virtio: Support transports which can specify the vring alignment Peter Maydell
2013-07-16 12:25 ` [Qemu-devel] [PATCH v3 5/8] virtio: Implement MMIO based virtio transport Peter Maydell
2013-07-16 12:25 ` Peter Maydell [this message]
2013-07-16 12:25 ` [Qemu-devel] [PATCH v3 7/8] vexpress: Make VEDBoardInfo extend arm_boot_info Peter Maydell
2013-07-16 12:25 ` [Qemu-devel] [PATCH v3 8/8] vexpress: Add virtio-mmio transports Peter Maydell
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=1373977512-28932-7-git-send-email-peter.maydell@linaro.org \
--to=peter.maydell@linaro.org \
--cc=agraf@suse.de \
--cc=aliguori@us.ibm.com \
--cc=david@gibson.dropbear.id.au \
--cc=fred.konrad@greensocs.com \
--cc=kvmarm@lists.cs.columbia.edu \
--cc=patches@linaro.org \
--cc=peter.crosthwaite@xilinx.com \
--cc=qemu-devel@nongnu.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).