linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Juergen Gross <jgross@suse.com>
To: linux-kernel@vger.kernel.org, linux-acpi@vger.kernel.org,
	xen-devel@lists.xenproject.org
Cc: lenb@kernel.org, rafael.j.wysocki@intel.com, mingo@redhat.com,
	boris.ostrovsky@oracle.com, Juergen Gross <jgross@suse.com>,
	stable@vger.kernel.org
Subject: [PATCH v2 2/2] xen: add acpi_arch_get_root_pointer() for pvh guests
Date: Thu, 25 Jan 2018 15:36:39 +0100	[thread overview]
Message-ID: <20180125143639.9969-3-jgross@suse.com> (raw)
In-Reply-To: <20180125143639.9969-1-jgross@suse.com>

Add acpi_arch_get_root_pointer() for Xen PVH guests to communicate
the address of the RSDP table given to the kernel via Xen start info.

This makes the kernel boot again in PVH mode after on recent Xen the
RSDP was moved to higher addresses. So up to that change it was pure
luck that the legacy method to locate the RSDP was working when
running as PVH mode.

Cc: <stable@vger.kernel.org> # 4.11
Signed-off-by: Juergen Gross <jgross@suse.com>
---
 arch/x86/xen/enlighten_pvh.c | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/arch/x86/xen/enlighten_pvh.c b/arch/x86/xen/enlighten_pvh.c
index 436c4f003e17..f08fd43f2aa2 100644
--- a/arch/x86/xen/enlighten_pvh.c
+++ b/arch/x86/xen/enlighten_pvh.c
@@ -16,15 +16,23 @@
 /*
  * PVH variables.
  *
- * xen_pvh and pvh_bootparams need to live in data segment since they
- * are used after startup_{32|64}, which clear .bss, are invoked.
+ * xen_pvh, pvh_bootparams and pvh_start_info need to live in data segment
+ * since they are used after startup_{32|64}, which clear .bss, are invoked.
  */
 bool xen_pvh __attribute__((section(".data"))) = 0;
 struct boot_params pvh_bootparams __attribute__((section(".data")));
+struct hvm_start_info pvh_start_info __attribute__((section(".data")));
 
-struct hvm_start_info pvh_start_info;
 unsigned int pvh_start_info_sz = sizeof(pvh_start_info);
 
+acpi_physical_address acpi_arch_get_root_pointer(void)
+{
+	if (xen_pvh)
+		return pvh_start_info.rsdp_paddr;
+
+	return 0;
+}
+
 static void __init init_pvh_bootparams(void)
 {
 	struct xen_memory_map memmap;
-- 
2.13.6

  parent reply	other threads:[~2018-01-25 14:36 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-25 14:36 [PATCH v2 0/2] xen: re-enable booting as Xen PVH guest Juergen Gross
2018-01-25 14:36 ` [PATCH v2 1/2] x86/acpi: add retrieval function for rsdp address Juergen Gross
2018-01-26 18:08   ` Andy Shevchenko
2018-01-26 18:21     ` Juergen Gross
2018-01-28 15:04       ` Andy Shevchenko
2018-01-29  3:02         ` Rafael J. Wysocki
2018-01-31 15:43           ` Andy Shevchenko
2018-02-01  7:57             ` Rafael J. Wysocki
2018-02-01 15:45               ` Andy Shevchenko
2018-02-02 12:02                 ` Rafael J. Wysocki
2018-01-29  3:01     ` Rafael J. Wysocki
2018-01-31 15:41       ` Andy Shevchenko
2018-01-25 14:36 ` Juergen Gross [this message]
2018-01-25 15:46   ` [PATCH v2 2/2] xen: add acpi_arch_get_root_pointer() for pvh guests Boris Ostrovsky

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=20180125143639.9969-3-jgross@suse.com \
    --to=jgross@suse.com \
    --cc=boris.ostrovsky@oracle.com \
    --cc=lenb@kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=rafael.j.wysocki@intel.com \
    --cc=stable@vger.kernel.org \
    --cc=xen-devel@lists.xenproject.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).