From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>,
xen-devel@lists.xensource.com
Cc: linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
Stefano.Stabellini@eu.citrix.com, Ian.Campbell@citrix.com
Subject: Re: [PATCH RFC 4/8] xen/arm,arm64: move Xen initialization earlier
Date: Wed, 31 Jul 2013 20:35:32 -0400 [thread overview]
Message-ID: <dc5fc8ce-2248-443c-87c5-6bd3c0c259b2@email.android.com> (raw)
In-Reply-To: <1375292732-7627-4-git-send-email-stefano.stabellini@eu.citrix.com>
Stefano Stabellini <stefano.stabellini@eu.citrix.com> wrote:
>Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
>---
> arch/arm/include/asm/xen/hypervisor.h | 6 ++++++
> arch/arm/kernel/setup.c | 2 ++
> arch/arm/xen/enlighten.c | 21 ++++++++++++++-------
> arch/arm64/kernel/setup.c | 2 ++
> 4 files changed, 24 insertions(+), 7 deletions(-)
>
>diff --git a/arch/arm/include/asm/xen/hypervisor.h
>b/arch/arm/include/asm/xen/hypervisor.h
>index d7ab99a..17b3ea2 100644
>--- a/arch/arm/include/asm/xen/hypervisor.h
>+++ b/arch/arm/include/asm/xen/hypervisor.h
>@@ -16,4 +16,10 @@ static inline enum paravirt_lazy_mode
>paravirt_get_lazy_mode(void)
> return PARAVIRT_LAZY_NONE;
> }
>
>+#ifdef CONFIG_XEN
>+void xen_early_init(void);
You look to be missing an __init here
>+#else
>+static inline void xen_early_init(void) { return; }
>+#endif
>+
> #endif /* _ASM_ARM_XEN_HYPERVISOR_H */
>diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c
>index 63af9a7..cb7b8e2 100644
>--- a/arch/arm/kernel/setup.c
>+++ b/arch/arm/kernel/setup.c
>@@ -45,6 +45,7 @@
> #include <asm/cacheflush.h>
> #include <asm/cachetype.h>
> #include <asm/tlbflush.h>
>+#include <asm/xen/hypervisor.h>
>
> #include <asm/prom.h>
> #include <asm/mach/arch.h>
>@@ -889,6 +890,7 @@ void __init setup_arch(char **cmdline_p)
>
> arm_dt_init_cpu_maps();
> psci_init();
>+ xen_early_init();
> #ifdef CONFIG_SMP
> if (is_smp()) {
> if (!mdesc->smp_init || !mdesc->smp_init()) {
>diff --git a/arch/arm/xen/enlighten.c b/arch/arm/xen/enlighten.c
>index c9770ba..14d17ab 100644
>--- a/arch/arm/xen/enlighten.c
>+++ b/arch/arm/xen/enlighten.c
>@@ -195,21 +195,19 @@ static void xen_power_off(void)
> * documentation of the Xen Device Tree format.
> */
> #define GRANT_TABLE_PHYSADDR 0
>-static int __init xen_guest_init(void)
>+void __init xen_early_init(void)
> {
>- struct xen_add_to_physmap xatp;
>- static struct shared_info *shared_info_page = 0;
>+ struct resource res;
> struct device_node *node;
> int len;
> const char *s = NULL;
> const char *version = NULL;
> const char *xen_prefix = "xen,xen-";
>- struct resource res;
>
> node = of_find_compatible_node(NULL, NULL, "xen,xen");
> if (!node) {
> pr_debug("No Xen support\n");
>- return 0;
>+ return;
> }
> s = of_get_property(node, "compatible", &len);
> if (strlen(xen_prefix) + 3 < len &&
>@@ -217,10 +215,10 @@ static int __init xen_guest_init(void)
> version = s + strlen(xen_prefix);
> if (version == NULL) {
> pr_debug("Xen version not found\n");
>- return 0;
>+ return;
> }
> if (of_address_to_resource(node, GRANT_TABLE_PHYSADDR, &res))
>- return 0;
>+ return;
> xen_hvm_resume_frames = res.start >> PAGE_SHIFT;
> xen_events_irq = irq_of_parse_and_map(node, 0);
> pr_info("Xen %s support found, events_irq=%d gnttab_frame_pfn=%lx\n",
>@@ -232,6 +230,15 @@ static int __init xen_guest_init(void)
> xen_start_info->flags |= SIF_INITDOMAIN|SIF_PRIVILEGED;
> else
> xen_start_info->flags &= ~(SIF_INITDOMAIN|SIF_PRIVILEGED);
>+}
>+
>+static int __init xen_guest_init(void)
>+{
>+ struct xen_add_to_physmap xatp;
>+ static struct shared_info *shared_info_page = 0;
>+
>+ if (!xen_domain())
>+ return 0;
>
> if (!shared_info_page)
> shared_info_page = (struct shared_info *)
>diff --git a/arch/arm64/kernel/setup.c b/arch/arm64/kernel/setup.c
>index add6ea6..e0d438a 100644
>--- a/arch/arm64/kernel/setup.c
>+++ b/arch/arm64/kernel/setup.c
>@@ -53,6 +53,7 @@
> #include <asm/traps.h>
> #include <asm/memblock.h>
> #include <asm/psci.h>
>+#include <asm/xen/hypervisor.h>
>
> unsigned int processor_id;
> EXPORT_SYMBOL(processor_id);
>@@ -267,6 +268,7 @@ void __init setup_arch(char **cmdline_p)
> unflatten_device_tree();
>
> psci_init();
>+ xen_early_init();
>
> cpu_logical_map(0) = read_cpuid_mpidr() & MPIDR_HWID_BITMASK;
> #ifdef CONFIG_SMP
next prev parent reply other threads:[~2013-08-01 0:36 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-31 17:44 [PATCH RFC 0/8] enable swiotlb-xen on arm and arm64 Stefano Stabellini
2013-07-31 17:45 ` [PATCH RFC 1/8] arm: make SWIOTLB available Stefano Stabellini
2013-08-01 0:32 ` Konrad Rzeszutek Wilk
2013-08-02 11:59 ` Stefano Stabellini
2013-08-02 12:13 ` Konrad Rzeszutek Wilk
2013-08-02 12:18 ` Stefano Stabellini
2013-08-01 11:09 ` Russell King - ARM Linux
2013-08-02 12:09 ` Stefano Stabellini
2013-07-31 17:45 ` [PATCH RFC 2/8] arm: introduce a global dma_ops pointer Stefano Stabellini
2013-07-31 17:45 ` [PATCH RFC 3/8] arm64: do not initialize arm64_swiotlb if dma_ops is already set Stefano Stabellini
2013-07-31 17:45 ` [PATCH RFC 4/8] xen/arm,arm64: move Xen initialization earlier Stefano Stabellini
2013-08-01 0:35 ` Konrad Rzeszutek Wilk [this message]
2013-07-31 17:45 ` [PATCH RFC 5/8] xen: introduce XENMEM_get_dma_buf and xen_put_dma_buf Stefano Stabellini
2013-08-01 0:36 ` Konrad Rzeszutek Wilk
2013-08-01 15:13 ` Stefano Stabellini
2013-07-31 17:45 ` [PATCH RFC 6/8] xen: make xen_create_contiguous_region return the dma address Stefano Stabellini
2013-08-01 11:34 ` David Vrabel
2013-07-31 17:45 ` [PATCH RFC 7/8] swiotlb-xen: support autotranslate guests Stefano Stabellini
2013-07-31 19:03 ` Stefano Stabellini
2013-08-02 12:37 ` Konrad Rzeszutek Wilk
2013-08-02 16:12 ` Stefano Stabellini
2013-07-31 17:45 ` [PATCH RFC 8/8] xen/arm,arm64: enable SWIOTLB_XEN Stefano Stabellini
2013-08-02 12:40 ` Konrad Rzeszutek Wilk
2013-08-02 16:25 ` Stefano Stabellini
2013-07-31 19:44 ` [PATCH RFC 0/8] enable swiotlb-xen on arm and arm64 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=dc5fc8ce-2248-443c-87c5-6bd3c0c259b2@email.android.com \
--to=konrad.wilk@oracle.com \
--cc=Ian.Campbell@citrix.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=stefano.stabellini@eu.citrix.com \
--cc=xen-devel@lists.xensource.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
all inboxes | Powered by JetHome®