Displaying 5 results from an estimated 5 matches for "acpi_skip_timer_overrid".
Did you mean:
acpi_skip_timer_override
2011 Dec 20
10
Problem booting xen 4.1.2 on Athlon 64 X2
Adding apic_verbosity=debug gives me that (hope nothing miss-typed as I
have no serial console on this box). I found a lot of suggested workarounds:
- noapic as suggested in output gives an noapic isn''t support
- acpi_skip_timer_override has no effect at all
Thx,
Florian
(XEN) Initing memory sharing.
(XEN) AMD-Vi: IOMMU not found!
(XEN) I/O virtualisation disabled
(XEN) Getting VERSION: 8005010
(XEN) Getting VERSION: 8005010
(XEN) Getting ID: 0
(XEN) Getting LVT0: 700
(XEN) Getting LVT1: 400
(XEN) enabled ExtINT on CPU#0
(XEN) E...
2011 Dec 20
10
Problem booting xen 4.1.2 on Athlon 64 X2
Adding apic_verbosity=debug gives me that (hope nothing miss-typed as I
have no serial console on this box). I found a lot of suggested workarounds:
- noapic as suggested in output gives an noapic isn''t support
- acpi_skip_timer_override has no effect at all
Thx,
Florian
(XEN) Initing memory sharing.
(XEN) AMD-Vi: IOMMU not found!
(XEN) I/O virtualisation disabled
(XEN) Getting VERSION: 8005010
(XEN) Getting VERSION: 8005010
(XEN) Getting ID: 0
(XEN) Getting LVT0: 700
(XEN) Getting LVT1: 400
(XEN) enabled ExtINT on CPU#0
(XEN) E...
2007 May 31
0
xen reports: incorrect mhz processor speed
...ing Xen, even
though the Bios section in the Yast hardware detection is correct, the CPU
section reports the processor speed incorrectly as 2493.
I have tried to:
1. Turn off hyperthreading in the bios.
2. Enter boot parameters ''acpi_pm_good''.
3. Enter boot parameters ''acpi_skip_timer_override''.
Does anyone have any ideas as to how I can get Xen to identify the correct
processor speed? This is making it unusable on this machine. Thanks
Curtis Grote
Memorial Hospital
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://l...
2011 Mar 31
0
[PATCH 7/7] x86: cleanup bogus CONFIG_ACPI_PCI uses
...7 @@ int __acpi_release_global_lock(unsigned
:"0"(n_hi), "1"(n_lo))
extern bool_t acpi_lapic, acpi_ioapic, acpi_noirq;
-extern bool_t acpi_force, acpi_ht;
-extern bool_t acpi_disabled, acpi_pci_disabled;
+extern bool_t acpi_force, acpi_ht, acpi_disabled;
extern bool_t acpi_skip_timer_override;
extern u32 acpi_smi_cmd;
extern u8 acpi_enable_value, acpi_disable_value;
@@ -90,7 +89,6 @@ static inline void disable_acpi(void)
{
acpi_disabled = 1;
acpi_ht = 0;
- acpi_pci_disabled = 1;
acpi_noirq = 1;
}
@@ -98,12 +96,6 @@ static inline void disable_acpi(void)
#define FIX_ACPI_PAG...
2011 Dec 12
0
[PATCH 1/4] ACPI: eliminate duplicate MADT parsing and unused SBF definitions
...eader;
+ struct acpi_madt_interrupt_override *intsrc =
+ container_of(header, struct acpi_madt_interrupt_override,
+ header);
if (BAD_MADT_ENTRY(intsrc, end))
return -EINVAL;
@@ -233,14 +232,15 @@ acpi_parse_int_src_ovr(struct acpi_subta
acpi_table_print_madt_entry(header);
if (acpi_skip_timer_override &&
- intsrc->bus_irq == 0 && intsrc->global_irq == 2) {
+ intsrc->source_irq == 0 && intsrc->global_irq == 2) {
printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
return 0;
}
- mp_override_legacy_irq(intsrc->bus_irq,
- in...