search for: mp_lapic_addr

Displaying 4 results from an estimated 4 matches for "mp_lapic_addr".

2011 Mar 09
0
[PATCH 04/11] x86: cleanup mpparse.c
...mp_ioapics[MAX_IO_APICS]; /* # of MP IRQ source entries */ -struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES]; +struct mpc_config_intsrc __read_mostly mp_irqs[MAX_IRQ_SOURCES]; /* MP IRQ source entries */ -int mp_irq_entries; +int __read_mostly mp_irq_entries; -int pic_mode; -unsigned long mp_lapic_addr; - -unsigned int def_to_bigsmp = 0; +bool_t __read_mostly pic_mode; +bool_t __read_mostly def_to_bigsmp = 0; +unsigned long __read_mostly mp_lapic_addr; /* Processor that is doing the boot up */ -unsigned int boot_cpu_physical_apicid = -1U; +unsigned int __read_mostly boot_cpu_physical_apicid =...
2006 Feb 16
0
[PATCH] fix mp_current_pci_id duplicate declaration
...asm-x86/mpspec.h Thu Feb 16 14:00:24 2006 -0500 @@ -23,7 +23,6 @@ extern struct mpc_config_intsrc mp_irqs extern struct mpc_config_intsrc mp_irqs [MAX_IRQ_SOURCES]; extern int mpc_default_type; extern int mp_bus_id_to_pci_bus [MAX_MP_BUSSES]; -extern int mp_current_pci_id; extern unsigned long mp_lapic_addr; extern int pic_mode; extern int using_apic_timer; _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2007 May 15
3
[PATCH 1/12] Add suspend/resume to devices owned by Xen
...CBASE points to the right address + * + * FIXME! This will be wrong if we ever support suspend on + * SMP! We''ll need to do this as part of the CPU restore! + */ + rdmsr(MSR_IA32_APICBASE, l, h); + l &= ~MSR_IA32_APICBASE_BASE; + l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr; + wrmsr(MSR_IA32_APICBASE, l, h); + + apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED); + apic_write(APIC_ID, apic_pm_state.apic_id); + apic_write(APIC_DFR, apic_pm_state.apic_dfr); + apic_write(APIC_LDR, apic_pm_state.apic_ldr); + apic_write(APIC_TASKPRI, apic_pm_sta...
2008 Nov 13
69
[PATCH 00 of 38] xen: add more Xen dom0 support
Hi Ingo, Here''s the chunk of patches to add Xen Dom0 support (it''s probably worth creating a new xen/dom0 topic branch for it). A dom0 Xen domain is basically the same as a normal domU domain, but it has extra privileges to directly access hardware. There are two issues to deal with: - translating to and from the domain''s pseudo-physical addresses and real machine