|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH 12 of 38] xen/dom0: handle acpi lapic parsing in Xen
When running in Xen dom0, we still want to parse the ACPI tables to
find out about local and IO apics, but we don't want to actually use
the lapics.
Put a couple of tests for Xen to prevent lapics from being mapped or
accessed. This is very Xen-specific behaviour, so there didn't seem to
be any point in adding more indirection.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@xxxxxxxxxx>
---
arch/x86/include/asm/xen/hypervisor.h | 2 ++
arch/x86/kernel/acpi/boot.c | 10 ++++++++++
2 files changed, 12 insertions(+)
diff --git a/arch/x86/include/asm/xen/hypervisor.h
b/arch/x86/include/asm/xen/hypervisor.h
--- a/arch/x86/include/asm/xen/hypervisor.h
+++ b/arch/x86/include/asm/xen/hypervisor.h
@@ -46,6 +46,8 @@
extern enum xen_domain_type xen_domain_type;
#ifdef CONFIG_XEN
+#include <xen/interface/xen.h>
+
#define xen_domain() (xen_domain_type != XEN_NATIVE)
#else
#define xen_domain() (0)
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c
--- a/arch/x86/kernel/acpi/boot.c
+++ b/arch/x86/kernel/acpi/boot.c
@@ -42,6 +42,8 @@
#include <asm/mpspec.h>
#include <asm/smp.h>
+#include <asm/xen/hypervisor.h>
+
#ifdef CONFIG_X86_LOCAL_APIC
# include <mach_apic.h>
#endif
@@ -234,6 +236,10 @@
{
unsigned int ver = 0;
+ /* We don't want to register lapics when in Xen dom0 */
+ if (xen_initial_domain())
+ return;
+
if (!enabled) {
++disabled_cpus;
return;
@@ -755,6 +761,10 @@
static void __init acpi_register_lapic_address(unsigned long address)
{
+ /* Xen dom0 doesn't have usable lapics */
+ if (xen_initial_domain())
+ return;
+
mp_lapic_addr = address;
set_fixmap_nocache(FIX_APIC_BASE, address);
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- Re: [Xen-devel] [PATCH 03 of 38] swiotlb: allow architectures tooverrideswiotlb pool allocation, (continued)
- [Xen-devel] [PATCH 04 of 38] swiotlb: move some definitions to header, Jeremy Fitzhardinge
- [Xen-devel] [PATCH 05 of 38] swiotlb: allow architectures to override virt<->bus<->virt conversions, Jeremy Fitzhardinge
- [Xen-devel] [PATCH 06 of 38] xen: clean up asm-x86/xen/hypervisor.h, Jeremy Fitzhardinge
- [Xen-devel] [PATCH 09 of 38] x86: make sure we really have an hpet mapping before using it, Jeremy Fitzhardinge
- [Xen-devel] [PATCH 08 of 38] x86: make apic_* operations inline functions, Jeremy Fitzhardinge
- [Xen-devel] [PATCH 07 of 38] x86: add io_apic_ops, Jeremy Fitzhardinge
- [Xen-devel] [PATCH 10 of 38] x86: add handle_irq() to allow interrupt injection, Jeremy Fitzhardinge
- [Xen-devel] [PATCH 11 of 38] x86: define no-op exit_idle() on 32-bit, Jeremy Fitzhardinge
- [Xen-devel] [PATCH 12 of 38] xen/dom0: handle acpi lapic parsing in Xen dom0,
Jeremy Fitzhardinge <=
- [Xen-devel] [PATCH 13 of 38] x86: unstatic mp_find_ioapic so it can be used elsewhere, Jeremy Fitzhardinge
- [Xen-devel] [PATCH 14 of 38] x86: add mp_find_ioapic_pin, Jeremy Fitzhardinge
- [Xen-devel] [PATCH 15 of 38] x86: unstatic ioapic entry funcs, Jeremy Fitzhardinge
- [Xen-devel] [PATCH 16 of 38] x86: include linux/init.h in asm/numa_64.h, Jeremy Fitzhardinge
- [Xen-devel] [PATCH 17 of 38] x86: add swiotlb allocation functions, Jeremy Fitzhardinge
- [Xen-devel] [PATCH 19 of 38] x86: add arch specific version of the swiotlb virt<->bus<->virt functions, Jeremy Fitzhardinge
- [Xen-devel] [PATCH 21 of 38] xen dom0: Initialize xenbus for dom0, Jeremy Fitzhardinge
- [Xen-devel] [PATCH 18 of 38] x86: unify pci iommu setup and allow swiotlb to compile for 32 bit, Jeremy Fitzhardinge
|
|
|
|
|