From: Shannon Zhao <zhaoshenglong@huawei.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: ian.campbell@citrix.com, peter.huangpeng@huawei.com,
xen-devel@lists.xen.org, stefano.stabellini@citrix.com,
shannon.zhao@linaro.org, Jan Beulich <jbeulich@suse.com>
Subject: Re: [PATCH v4 17/24] arm/acpi: Create min DT stub for Dom0
Date: Thu, 3 Mar 2016 20:31:41 +0800 [thread overview]
Message-ID: <56D82EAD.3000406@huawei.com> (raw)
In-Reply-To: <alpine.DEB.2.02.1602291443410.17938@kaball.uk.xensource.com>
On 2016/2/29 23:05, Stefano Stabellini wrote:
>> +static int acpi_make_hypervisor_node(const struct kernel_info *kinfo,
>> > + struct membank tbl_add[])
>> > +{
>> > + const char compat[] =
>> > + "xen,xen-"__stringify(XEN_VERSION)"."__stringify(XEN_SUBVERSION)"\0"
>> > + "xen,xen";
>> > + int res;
>> > + /* Convenience alias */
>> > + void *fdt = kinfo->fdt;
>> > +
>> > + DPRINT("Create hypervisor node\n");
>> > +
>> > + /* See linux Documentation/devicetree/bindings/arm/xen.txt */
>> > + res = fdt_begin_node(fdt, "hypervisor");
>> > + if ( res )
>> > + return res;
>> > +
>> > + /* Cannot use fdt_property_string due to embedded nulls */
>> > + res = fdt_property(fdt, "compatible", compat, sizeof(compat));
>> > + if ( res )
>> > + return res;
>> > +
>> > + res = arm_acpi_make_efi_nodes(fdt, tbl_add);
>> > + if ( res )
>> > + return res;
>> > +
>> > + res = fdt_end_node(fdt);
>> > +
>> > + return res;
>> > +}
> Please refactor the existing make_hypervisor_node into a shared function
> and use that instead.
>
Not sure this works since the parameters of them are different and it
will add a uefi node under hypervisor node in new function.
--
Shannon
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-03-03 12:31 UTC|newest]
Thread overview: 73+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-28 11:18 [PATCH v4 00/24] Prepare UEFI and ACPI tables for Dom0 on ARM64 Shannon Zhao
2016-02-28 11:18 ` [PATCH v4 01/24] arm/acpi: Define a enum for reserved tables Shannon Zhao
2016-02-29 14:02 ` Stefano Stabellini
2016-02-29 15:16 ` Jan Beulich
2016-02-28 11:18 ` [PATCH v4 02/24] arm/acpi: Add placeholder for efi and acpi load address Shannon Zhao
2016-02-29 14:01 ` Stefano Stabellini
2016-02-28 11:18 ` [PATCH v4 03/24] arm/acpi: Read acpi memory info from uefi Shannon Zhao
2016-02-29 14:57 ` Jan Beulich
2016-02-29 15:07 ` Stefano Stabellini
2016-02-29 15:20 ` Jan Beulich
2016-02-28 11:19 ` [PATCH v4 04/24] arm/acpi: Estimate memory required for acpi/efi tables Shannon Zhao
2016-02-29 11:11 ` Jan Beulich
2016-02-29 12:13 ` Stefano Stabellini
2016-03-01 2:09 ` Shannon Zhao
2016-03-01 14:41 ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 05/24] arm/acpi: Add a helper function to get the acpi table offset Shannon Zhao
2016-02-29 12:17 ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 06/24] arm/acpi: Prepare FADT table for Dom0 Shannon Zhao
2016-02-29 12:22 ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 07/24] arm/gic: Add a new callback for creating MADT " Shannon Zhao
2016-02-29 12:50 ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 08/24] arm/acpi: Prepare " Shannon Zhao
2016-02-29 12:52 ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 09/24] arm/acpi: Prepare STAO " Shannon Zhao
2016-02-29 14:07 ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 10/24] arm/acpi: Prepare XSDT " Shannon Zhao
2016-02-28 11:19 ` [PATCH v4 11/24] arm/acpi: Prepare RSDP " Shannon Zhao
2016-02-28 11:19 ` [PATCH v4 12/24] arm/p2m: Add helper functions to map memory regions Shannon Zhao
2016-02-29 14:11 ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 13/24] arm/acpi: Map all other tables for Dom0 Shannon Zhao
2016-02-29 14:15 ` Stefano Stabellini
2016-02-29 19:06 ` Shannon Zhao
2016-03-01 15:28 ` Stefano Stabellini
2016-03-01 17:01 ` Stefano Stabellini
2016-03-02 12:43 ` Shannon Zhao
2016-03-02 15:00 ` Stefano Stabellini
2016-03-02 16:00 ` Jan Beulich
2016-02-28 11:19 ` [PATCH v4 14/24] arm/acpi: Prepare EFI system table " Shannon Zhao
2016-02-29 11:19 ` Jan Beulich
2016-02-29 14:25 ` Stefano Stabellini
2016-02-29 14:36 ` Jan Beulich
2016-02-29 14:39 ` Stefano Stabellini
2016-03-01 2:35 ` Shannon Zhao
2016-03-01 9:27 ` Jan Beulich
2016-03-01 12:49 ` Stefano Stabellini
2016-03-04 3:55 ` Shannon Zhao
2016-03-04 10:46 ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 15/24] arm/acpi: Prepare EFI memory descriptor " Shannon Zhao
2016-02-29 14:37 ` Stefano Stabellini
2016-03-01 3:00 ` Shannon Zhao
2016-03-01 14:57 ` Stefano Stabellini
2016-03-01 15:07 ` Jan Beulich
2016-02-28 11:19 ` [PATCH v4 16/24] arm/acpi: Map the new created EFI and ACPI tables to Dom0 Shannon Zhao
2016-02-29 14:42 ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 17/24] arm/acpi: Create min DT stub for Dom0 Shannon Zhao
2016-02-29 15:05 ` Stefano Stabellini
2016-03-03 12:31 ` Shannon Zhao [this message]
2016-02-28 11:19 ` [PATCH v4 18/24] arm/acpi: Permit access all Xen unused SPIs " Shannon Zhao
2016-02-29 15:13 ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 19/24] arm/acpi: Configure SPI interrupt type and route to Dom0 dynamically Shannon Zhao
2016-02-29 16:58 ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 20/24] arm/acpi: Permit MMIO access of Xen unused devices for Dom0 Shannon Zhao
2016-02-29 17:02 ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 21/24] hvm/params: Add a new dilivery type for event-channel in HVM_PARAM_CALLBACK_IRQ Shannon Zhao
2016-02-29 11:23 ` Jan Beulich
2016-02-29 17:04 ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 22/24] xen/acpi: Fix event-channel interrupt when booting with ACPI Shannon Zhao
2016-02-29 17:08 ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 23/24] xen/arm: Add a hypercall for device mmio mapping Shannon Zhao
2016-02-29 11:32 ` Jan Beulich
2016-02-28 11:19 ` [PATCH v4 24/24] xen/arm64: Add ACPI support Shannon Zhao
2016-02-29 11:34 ` Jan Beulich
2016-02-29 17:15 ` Stefano Stabellini
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=56D82EAD.3000406@huawei.com \
--to=zhaoshenglong@huawei.com \
--cc=ian.campbell@citrix.com \
--cc=jbeulich@suse.com \
--cc=peter.huangpeng@huawei.com \
--cc=shannon.zhao@linaro.org \
--cc=stefano.stabellini@citrix.com \
--cc=stefano.stabellini@eu.citrix.com \
--cc=xen-devel@lists.xen.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.