* Re: Fix for 'acpi=off'
[not found] <mailman.1115333931.17390@unix-os.sc.intel.com>
@ 2005-05-05 23:09 ` Arun Sharma
2005-05-06 6:06 ` Keir Fraser
0 siblings, 1 reply; 8+ messages in thread
From: Arun Sharma @ 2005-05-05 23:09 UTC (permalink / raw)
To: Puthiyaparambil, Aravindh; +Cc: xen-devel
Puthiyaparambil, Aravindh wrote:
> I tried the acpi=off on my 2-by x86_64 box running 32-bit SLES9.
> Everything seems to work just fine except for a couple of pfn and page
> fault non-fatal errors.
>
> But with acpi=ht, Dom0 hangs while trying to bring up the SCSI devices.
> I have included debug output for both cases.
>
I think this is the issue you're running into:
> SMP mptable: no processors registered!
> BIOS bug, MP table errors detected!...
> ... disabling SMP support. (tell your hw vendor)
With acpi=off acpi_lapic is non-zero so this code works:
/* ACPI may have already provided this data */
if (!acpi_lapic)
MP_processor_info(m);
But with acpi=ht, MP table processor info is ignored. I worked around it
by ignoring the processor entries in the MP table always and setting
num_processors=1.
-Arun
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: Fix for 'acpi=off'
2005-05-05 23:09 ` Fix for 'acpi=off' Arun Sharma
@ 2005-05-06 6:06 ` Keir Fraser
0 siblings, 0 replies; 8+ messages in thread
From: Keir Fraser @ 2005-05-06 6:06 UTC (permalink / raw)
To: Arun Sharma; +Cc: xen-devel
On 6 May 2005, at 00:09, Arun Sharma wrote:
> With acpi=off acpi_lapic is non-zero so this code works:
>
> /* ACPI may have already provided this data */
> if (!acpi_lapic)
> MP_processor_info(m);
>
> But with acpi=ht, MP table processor info is ignored. I worked around
> it
> by ignoring the processor entries in the MP table always and setting
> num_processors=1.
Yes, I'm missing this part of your patch, Arun. I'll take a look.
-- Keir
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: Fix for 'acpi=off'
@ 2005-05-06 13:49 Puthiyaparambil, Aravindh
0 siblings, 0 replies; 8+ messages in thread
From: Puthiyaparambil, Aravindh @ 2005-05-06 13:49 UTC (permalink / raw)
To: Keir Fraser; +Cc: natasha, Xen Development List
Yes, I realized later that there were debug outputs from Xen when X was
trying to come up. Sorry about that.
-----Original Message-----
From: Keir Fraser [mailto:Keir.Fraser@cl.cam.ac.uk]
Sent: Friday, May 06, 2005 2:08 AM
To: Puthiyaparambil, Aravindh
Cc: Xen Development List; natasha@us.ibm.com
Subject: Re: [Xen-devel] Fix for 'acpi=off'
On 5 May 2005, at 23:54, Puthiyaparambil, Aravindh wrote:
> I tried the acpi=off on my 2-by x86_64 box running 32-bit SLES9.
> Everything seems to work just fine except for a couple of pfn and page
> fault non-fatal errors.
Those errors are harmless debug output from Xen I think. Probably from
probing when an X server starts?
-- Keir
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: Fix for 'acpi=off'
@ 2005-05-06 0:44 Puthiyaparambil, Aravindh
2005-05-06 0:51 ` Arun Sharma
0 siblings, 1 reply; 8+ messages in thread
From: Puthiyaparambil, Aravindh @ 2005-05-06 0:44 UTC (permalink / raw)
To: Arun Sharma; +Cc: xen-devel
I am a little confused here.
I have configured Dom0 to be a uniprocessor kernel. Shouldn't that stop
SMP specific code from being executed?
Won't setting num_processors=1 cause Dom0 to always be uniproc even if
SMP is turned on?
Aravindh
-----Original Message-----
From: Arun Sharma [mailto:arun.sharma@intel.com]
Sent: Thursday, May 05, 2005 7:10 PM
To: Puthiyaparambil, Aravindh
Cc: xen-devel@lists.xensource.com
Subject: Re: [Xen-devel] Fix for 'acpi=off'
Puthiyaparambil, Aravindh wrote:
> I tried the acpi=off on my 2-by x86_64 box running 32-bit SLES9.
> Everything seems to work just fine except for a couple of pfn and page
> fault non-fatal errors.
>
> But with acpi=ht, Dom0 hangs while trying to bring up the SCSI
devices.
> I have included debug output for both cases.
>
I think this is the issue you're running into:
> SMP mptable: no processors registered!
> BIOS bug, MP table errors detected!...
> ... disabling SMP support. (tell your hw vendor)
With acpi=off acpi_lapic is non-zero so this code works:
/* ACPI may have already provided this data */
if (!acpi_lapic)
MP_processor_info(m);
But with acpi=ht, MP table processor info is ignored. I worked around it
by ignoring the processor entries in the MP table always and setting
num_processors=1.
-Arun
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: Fix for 'acpi=off'
2005-05-06 0:44 Puthiyaparambil, Aravindh
@ 2005-05-06 0:51 ` Arun Sharma
0 siblings, 0 replies; 8+ messages in thread
From: Arun Sharma @ 2005-05-06 0:51 UTC (permalink / raw)
To: Puthiyaparambil, Aravindh; +Cc: xen-devel
Puthiyaparambil, Aravindh wrote:
> I am a little confused here.
>
> I have configured Dom0 to be a uniprocessor kernel. Shouldn't that stop
> SMP specific code from being executed?
No, X86_FIND_SMP_CONFIG defaults to y.
>
> Won't setting num_processors=1 cause Dom0 to always be uniproc even if
> SMP is turned on?
>
Xen0-smp doesn't need to look at the MP table to figure out how many
virtual processors there are. There are other mechanisms to discover
virtual processors.
The MP table is needed mostly to setup the IOAPICs and the interrupt
routing.
-Arun
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: Fix for 'acpi=off'
@ 2005-05-05 22:54 Puthiyaparambil, Aravindh
2005-05-06 6:08 ` Keir Fraser
0 siblings, 1 reply; 8+ messages in thread
From: Puthiyaparambil, Aravindh @ 2005-05-05 22:54 UTC (permalink / raw)
To: Keir Fraser, Xen Development List, natasha
[-- Attachment #1: Type: text/plain, Size: 922 bytes --]
I tried the acpi=off on my 2-by x86_64 box running 32-bit SLES9.
Everything seems to work just fine except for a couple of pfn and page
fault non-fatal errors.
But with acpi=ht, Dom0 hangs while trying to bring up the SCSI devices.
I have included debug output for both cases.
Aravindh
-----Original Message-----
From: xen-devel-bounces@lists.xensource.com
[mailto:xen-devel-bounces@lists.xensource.com] On Behalf Of Keir Fraser
Sent: Thursday, May 05, 2005 2:07 PM
To: Xen Development List; natasha@us.ibm.com
Subject: [Xen-devel] Fix for 'acpi=off'
I've checked in a patch that will hopefully fix 'acpi=off' and
'acpi=ht' modes for domain0. It's been tested on just one machine so
far, so it'd be good to get some wider feedback. :-)
-- Keir
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
[-- Attachment #2: IntelBox_acpi_ht.txt --]
[-- Type: text/plain, Size: 20561 bytes --]
__ __ _____ ___ _ _
\ \/ /___ _ __ |___ / / _ \ __| | _____ _____| |
\ // _ \ '_ \ |_ \| | | |__ / _` |/ _ \ \ / / _ \ |
/ \ __/ | | | ___) | |_| |__| (_| | __/\ V / __/ |
/_/\_\___|_| |_| |____(_)___/ \__,_|\___| \_/ \___|_|
http://www.cl.cam.ac.uk/netos/xen
University of Cambridge Computer Laboratory
Xen version 3.0-devel (root@site) (gcc version 3.3.3 (SuSE Linux)) Thu May 5 18:21:32
EDT 2005
Latest ChangeSet: 2005/05/05 18:58:59 1.1444 427a5ee3rBlRFupS4xBvv_nWVHQlsA
(XEN) WARNING: Only the first 4GB of the physical memory map can be accessed
(XEN) by Xen in 32-bit mode. Truncating the memory map...
(XEN) Physical RAM map:
(XEN) 0000000000000000 - 000000000009fc00 (usable)
(XEN) 000000000009fc00 - 00000000000a0000 (reserved)
(XEN) 00000000000ebaf0 - 0000000000100000 (reserved)
(XEN) 0000000000100000 - 00000000dffd0000 (usable)
(XEN) 00000000dffd0000 - 00000000dffdf000 (ACPI data)
(XEN) 00000000dffdf000 - 00000000e0000000 (ACPI NVS)
(XEN) 00000000e0000000 - 00000000f0000000 (reserved)
(XEN) 00000000ffc00000 - 0000000100000000 (reserved)
(XEN) System RAM: 3583MB (3669436kB)
(XEN) Xen heap: 10MB (10636kB)
(XEN) CPU0: Before vendor init, caps: bfebfbff 20000000 00000000, vendor = 0
(XEN) CPU#0: Physical ID: 0, Logical ID: 0
(XEN) CPU caps: bfebfbff 20000000 00000000 00000000
(XEN) found SMP MP-table at 000ff780
(XEN) ACPI: RSDP (v000 ACPIAM ) @ 0x000f6be0
(XEN) ACPI: RSDT (v001 A M I OEMRSDT 0x10000418 MSFT 0x00000097) @ 0xdffd0000
(XEN) ACPI: FADT (v002 A M I OEMFACP 0x10000418 MSFT 0x00000097) @ 0xdffd0200
(XEN) ACPI: MADT (v001 A M I OEMAPIC 0x10000418 MSFT 0x00000097) @ 0xdffd0390
(XEN) ACPI: MCFG (v001 Intel Cayuse 0x00000001 MSFT 0x00000001) @ 0xdffd0420
(XEN) ACPI: OEMB (v001 A M I AMI_OEM 0x10000418 MSFT 0x00000097) @ 0xdffdf040
(XEN) ACPI: HPET (v001 A M I OEMHPET 0x10000418 MSFT 0x00000097) @ 0xdffd7460
(XEN) ACPI: DSDT (v001 CYCRB CYCRB045 0x00000045 INTL 0x02002026) @ 0x00000000
(XEN) ACPI: Local APIC address 0xfee00000
(XEN) ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
(XEN) Processor #0 Unknown CPU [15:3] APIC version 20
(XEN) ACPI: LAPIC (acpi_id[0x02] lapic_id[0x06] enabled)
(XEN) Processor #6 Unknown CPU [15:3] APIC version 20
(XEN) ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
(XEN) Processor #1 Unknown CPU [15:3] APIC version 20
(XEN) ACPI: LAPIC (acpi_id[0x04] lapic_id[0x07] enabled)
(XEN) Processor #7 Unknown CPU [15:3] APIC version 20
(XEN) Using ACPI for processor (LAPIC) configuration information
(XEN) Intel MultiProcessor Specification v1.4
(XEN) Virtual Wire compatibility mode.
(XEN) OEM ID: TEMPLATE Product ID: ETEMPLATE APIC at: 0xFEE00000
(XEN) I/O APIC #8 Version 32 at 0xFEC00000.
(XEN) I/O APIC #9 Version 32 at 0xFEC80000.
(XEN) I/O APIC #10 Version 32 at 0xFEC80400.
(XEN) Enabling APIC mode: Flat. Using 3 I/O APICs
(XEN) Processors: 4
(XEN) Using scheduler: Borrowed Virtual Time (bvt)
(XEN) Initializing CPU#0
(XEN) Detected 3400.250 MHz processor.
(XEN) CPU0 booted
(XEN) enabled ExtINT on CPU#0
(XEN) Booting processor 1/1 eip 90000
(XEN) Initializing CPU#1
(XEN) masked ExtINT on CPU#1
(XEN) CPU1: Before vendor init, caps: bfebfbff 20000000 00000000, vendor = 0
(XEN) CPU#1: Physical ID: 0, Logical ID: 1
(XEN) CPU caps: bfebfbff 20000000 00000000 00000000
(XEN) CPU1 has booted.
(XEN) Booting processor 2/6 eip 90000
(XEN) Initializing CPU#2
(XEN) masked ExtINT on CPU#2
(XEN) CPU2: Before vendor init, caps: bfebfbff 20000000 00000000, vendor = 0
(XEN) CPU#2: Physical ID: 3, Logical ID: 0
(XEN) CPU caps: bfebfbff 20000000 00000000 00000000
(XEN) CPU2 has booted.
(XEN) Booting processor 3/7 eip 90000
(XEN) Initializing CPU#3
(XEN) masked ExtINT on CPU#3
(XEN) CPU3: Before vendor init, caps: bfebfbff 20000000 00000000, vendor = 0
(XEN) CPU#3: Physical ID: 3, Logical ID: 1
(XEN) CPU caps: bfebfbff 20000000 00000000 00000000
(XEN) CPU3 has booted.
(XEN) Total of 4 processors activated.
(XEN) ENABLING IO-APIC IRQs
(XEN) Setting 8 in the phys_id_present_map
(XEN) ...changing IO-APIC physical APIC ID to 8 ... ok.
(XEN) Setting 9 in the phys_id_present_map
(XEN) ...changing IO-APIC physical APIC ID to 9 ... ok.
(XEN) Setting 10 in the phys_id_present_map
(XEN) ...changing IO-APIC physical APIC ID to 10 ... ok.
(XEN) init IO_APIC IRQs
(XEN) (file=io_apic.c, line=644) vector_irq[49] = 1
(XEN) (file=io_apic.c, line=644) vector_irq[51] = 3
(XEN) (file=io_apic.c, line=644) vector_irq[59] = 4
(XEN) (file=io_apic.c, line=644) vector_irq[61] = 5
(XEN) (file=io_apic.c, line=644) vector_irq[69] = 6
(XEN) (file=io_apic.c, line=644) vector_irq[71] = 8
(XEN) (file=io_apic.c, line=644) vector_irq[79] = 9
(XEN) (file=io_apic.c, line=644) vector_irq[81] = 12
(XEN) (file=io_apic.c, line=644) vector_irq[89] = 13
(XEN) (file=io_apic.c, line=644) vector_irq[91] = 14
(XEN) (file=io_apic.c, line=644) vector_irq[99] = 15
(XEN) (file=io_apic.c, line=644) vector_irq[a1] = 16
(XEN) (file=io_apic.c, line=644) vector_irq[a9] = 17
(XEN) (file=io_apic.c, line=644) vector_irq[b1] = 18
(XEN) (file=io_apic.c, line=644) vector_irq[b9] = 19
(XEN) (file=io_apic.c, line=644) vector_irq[c1] = 22
(XEN) (file=io_apic.c, line=644) vector_irq[c9] = 23
(XEN) (file=io_apic.c, line=644) vector_irq[d1] = 30
(XEN) (file=io_apic.c, line=644) vector_irq[d9] = 31
(XEN) (file=io_apic.c, line=644) vector_irq[e1] = 47
(XEN) (file=io_apic.c, line=644) vector_irq[e9] = 71
(XEN) ..TIMER: vector=0x41 pin1=2 pin2=0
(XEN) number of MP IRQ sources: 28.
(XEN) number of IO-APIC #8 registers: 24.
(XEN) number of IO-APIC #9 registers: 24.
(XEN) number of IO-APIC #10 registers: 24.
(XEN) testing the IO APIC.......................
(XEN)
(XEN) IO APIC #8......
(XEN) .... register #00: 08000000
(XEN) ....... : physical APIC id: 08
(XEN) ....... : Delivery Type: 0
(XEN) ....... : LTS : 0
(XEN) .... register #01: 00178020
(XEN) ....... : max redirection entries: 0017
(XEN) ....... : PRQ implemented: 1
(XEN) ....... : IO APIC version: 0020
(XEN) .... IRQ redirection table:
(XEN) NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:
(XEN) 00 000 00 1 0 0 0 0 0 0 00
(XEN) 01 00F 0F 0 0 0 0 0 1 1 49
(XEN) 02 00F 0F 0 0 0 0 0 1 1 41
(XEN) 03 00F 0F 0 0 0 0 0 1 1 51
(XEN) 04 00F 0F 0 0 0 0 0 1 1 59
(XEN) 05 00F 0F 0 0 0 0 0 1 1 61
(XEN) 06 00F 0F 0 0 0 0 0 1 1 69
(XEN) 07 000 00 1 0 0 0 0 0 0 00
(XEN) 08 00F 0F 0 0 0 0 0 1 1 71
(XEN) 09 00F 0F 0 0 0 0 0 1 1 79
(XEN) 0a 000 00 1 0 0 0 0 0 0 00
(XEN) 0b 000 00 1 0 0 0 0 0 0 00
(XEN) 0c 00F 0F 0 0 0 0 0 1 1 81
(XEN) 0d 00F 0F 0 0 0 0 0 1 1 89
(XEN) 0e 00F 0F 0 0 0 0 0 1 1 91
(XEN) 0f 00F 0F 0 0 0 0 0 1 1 99
(XEN) 10 00F 0F 1 1 0 1 0 1 1 A1
(XEN) 11 00F 0F 1 1 0 1 0 1 1 A9
(XEN) 12 00F 0F 1 1 0 1 0 1 1 B1
(XEN) 13 00F 0F 1 1 0 1 0 1 1 B9
(XEN) 14 000 00 1 0 0 0 0 0 0 00
(XEN) 15 000 00 1 0 0 0 0 0 0 00
(XEN) 16 00F 0F 1 1 0 1 0 1 1 C1
(XEN) 17 00F 0F 1 1 0 1 0 1 1 C9
(XEN)
(XEN) IO APIC #9......
(XEN) .... register #00: 09000000
(XEN) ....... : physical APIC id: 09
(XEN) ....... : Delivery Type: 0
(XEN) ....... : LTS : 0
(XEN) .... register #01: 00178020
(XEN) ....... : max redirection entries: 0017
(XEN) ....... : PRQ implemented: 1
(XEN) ....... : IO APIC version: 0020
(XEN) .... register #02: 09000000
(XEN) ....... : arbitration: 09
(XEN) .... register #03: 00000001
(XEN) ....... : Boot DT : 1
(XEN) .... IRQ redirection table:
(XEN) NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:
(XEN) 00 000 00 1 0 0 0 0 0 0 00
(XEN) 01 000 00 1 0 0 0 0 0 0 00
(XEN) 02 000 00 1 0 0 0 0 0 0 00
(XEN) 03 000 00 1 0 0 0 0 0 0 00
(XEN) 04 000 00 1 0 0 0 0 0 0 00
(XEN) 05 000 00 1 0 0 0 0 0 0 00
(XEN) 06 00F 0F 1 1 0 1 0 1 1 D1
(XEN) 07 00F 0F 1 1 0 1 0 1 1 D9
(XEN) 08 000 00 1 0 0 0 0 0 0 00
(XEN) 09 000 00 1 0 0 0 0 0 0 00
(XEN) 0a 000 00 1 0 0 0 0 0 0 00
(XEN) 0b 000 00 1 0 0 0 0 0 0 00
(XEN) 0c 000 00 1 0 0 0 0 0 0 00
(XEN) 0d 000 00 1 0 0 0 0 0 0 00
(XEN) 0e 000 00 1 0 0 0 0 0 0 00
(XEN) 0f 000 00 1 0 0 0 0 0 0 00
(XEN) 10 000 00 1 0 0 0 0 0 0 00
(XEN) 11 000 00 1 0 0 0 0 0 0 00
(XEN) 12 000 00 1 0 0 0 0 0 0 00
(XEN) 13 000 00 1 0 0 0 0 0 0 00
(XEN) 14 000 00 1 0 0 0 0 0 0 00
(XEN) 15 000 00 1 0 0 0 0 0 0 00
(XEN) 16 000 00 1 0 0 0 0 0 0 00
(XEN) 17 00F 0F 1 1 0 1 0 1 1 E1
(XEN)
(XEN) IO APIC #10......
(XEN) .... register #00: 0A000000
(XEN) ....... : physical APIC id: 0A
(XEN) ....... : Delivery Type: 0
(XEN) ....... : LTS : 0
(XEN) .... register #01: 00178020
(XEN) ....... : max redirection entries: 0017
(XEN) ....... : PRQ implemented: 1
(XEN) ....... : IO APIC version: 0020
(XEN) .... register #02: 0A000000
(XEN) ....... : arbitration: 0A
(XEN) .... register #03: 00000001
(XEN) ....... : Boot DT : 1
(XEN) .... IRQ redirection table:
(XEN) NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:
(XEN) 00 000 00 1 0 0 0 0 0 0 00
(XEN) 01 000 00 1 0 0 0 0 0 0 00
(XEN) 02 000 00 1 0 0 0 0 0 0 00
(XEN) 03 000 00 1 0 0 0 0 0 0 00
(XEN) 04 000 00 1 0 0 0 0 0 0 00
(XEN) 05 000 00 1 0 0 0 0 0 0 00
(XEN) 06 000 00 1 0 0 0 0 0 0 00
(XEN) 07 000 00 1 0 0 0 0 0 0 00
(XEN) 08 000 00 1 0 0 0 0 0 0 00
(XEN) 09 000 00 1 0 0 0 0 0 0 00
(XEN) 0a 000 00 1 0 0 0 0 0 0 00
(XEN) 0b 000 00 1 0 0 0 0 0 0 00
(XEN) 0c 000 00 1 0 0 0 0 0 0 00
(XEN) 0d 000 00 1 0 0 0 0 0 0 00
(XEN) 0e 000 00 1 0 0 0 0 0 0 00
(XEN) 0f 000 00 1 0 0 0 0 0 0 00
(XEN) 10 000 00 1 0 0 0 0 0 0 00
(XEN) 11 000 00 1 0 0 0 0 0 0 00
(XEN) 12 000 00 1 0 0 0 0 0 0 00
(XEN) 13 000 00 1 0 0 0 0 0 0 00
(XEN) 14 000 00 1 0 0 0 0 0 0 00
(XEN) 15 000 00 1 0 0 0 0 0 0 00
(XEN) 16 000 00 1 0 0 0 0 0 0 00
(XEN) 17 00F 0F 1 1 0 1 0 1 1 E9
(XEN) IRQ to pin mappings:
(XEN) IRQ0 -> 0:2
(XEN) IRQ1 -> 0:1
(XEN) IRQ3 -> 0:3
(XEN) IRQ4 -> 0:4
(XEN) IRQ5 -> 0:5
(XEN) IRQ6 -> 0:6
(XEN) IRQ8 -> 0:8
(XEN) IRQ9 -> 0:9
(XEN) IRQ12 -> 0:12
(XEN) IRQ13 -> 0:13
(XEN) IRQ14 -> 0:14
(XEN) IRQ15 -> 0:15
(XEN) IRQ16 -> 0:16
(XEN) IRQ17 -> 0:17
(XEN) IRQ18 -> 0:18
(XEN) IRQ19 -> 0:19
(XEN) IRQ22 -> 0:22
(XEN) IRQ23 -> 0:23
(XEN) IRQ30 -> 1:6
(XEN) IRQ31 -> 1:7
(XEN) IRQ47 -> 1:23
(XEN) IRQ71 -> 2:23
(XEN) .................................... done.
(XEN) Using local APIC timer interrupts.
(XEN) Calibrating APIC timer for CPU0...
(XEN) ..... CPU clock speed is 3400.1870 MHz.
(XEN) ..... host bus clock speed is 200.0110 MHz.
(XEN) ..... bus_scale = 0x0000CCD7
(XEN) checking TSC synchronization across CPUs: passed.
(XEN) Time init:
(XEN) .... cpu_freq: 00000000:CAABB4D4
(XEN) .... scale: 00000001:2D277E99
(XEN) .... Wall Clock: 1115318468s 570000us
(XEN) mtrr: v2.0 (20020519)
(XEN) (file=grant_table.c, line=1228) Grant table init
(XEN) *** LOADING DOMAIN 0 ***
(XEN) Xen-ELF header found: 'GUEST_OS=linux,GUEST_VER=2.6,XEN_VER=3.0,VIRT_BASE=0xC00000
00,LOADER=generic'
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN) Dom0 alloc.: 08000000->10000000
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN) Loaded kernel: c0100000->c05c65c4
(XEN) Init. ramdisk: c05c7000->c0ae2400
(XEN) Phys-Mach map: c0ae3000->c0b03000
(XEN) Page tables: c0b03000->c0b07000
(XEN) Start info: c0b07000->c0b08000
(XEN) Boot stack: c0b08000->c0b09000
(XEN) TOTAL: c0000000->c0c00000
(XEN) ENTRY ADDRESS: c0100000
(XEN) Initrd len 0x51b400, start at 0xc05c7000
(XEN) Scrubbing Free RAM: ....................................done.
(XEN) *** Serial input -> DOM0 (type 'CTRL-a' three times to switch input to Xen).
Linux version 2.6.11-xen0 (root@xen-box) (gcc version 3.3.3 (SuSE Linux)) #1 Thu May 5 1
8:24:50 EDT 2005
BIOS-provided physical RAM map:
Xen: 0000000000000000 - 0000000008000000 (usable)
128MB LOWMEM available.
On node 0 totalpages: 32768
DMA zone: 32768 pages, LIFO batch:8
Normal zone: 0 pages, LIFO batch:1
HighMem zone: 0 pages, LIFO batch:1
found SMP MP-table at 3bfe8780
DMI not present.
ACPI: RSDP (v000 ACPIAM ) @ 0x000f6be0
ACPI: RSDT (v001 A M I OEMRSDT 0x10000418 MSFT 0x00000097) @ 0xdffd0000
ACPI: FADT (v002 A M I OEMFACP 0x10000418 MSFT 0x00000097) @ 0xdffd0200
ACPI: MADT (v001 A M I OEMAPIC 0x10000418 MSFT 0x00000097) @ 0xdffd0390
ACPI: MCFG (v001 Intel Cayuse 0x00000001 MSFT 0x00000001) @ 0xdffd0420
ACPI: OEMB (v001 A M I AMI_OEM 0x10000418 MSFT 0x00000097) @ 0xdffdf040
ACPI: HPET (v001 A M I OEMHPET 0x10000418 MSFT 0x00000097) @ 0xdffd7460
ACPI: DSDT (v001 CYCRB CYCRB045 0x00000045 INTL 0x02002026) @ 0x00000000
ACPI: Local APIC address 0xfee00000
Using ACPI for processor (LAPIC) configuration information
Intel MultiProcessor Specification v1.4
Virtual Wire compatibility mode.
OEM ID: TEMPLATE Product ID: ETEMPLATE APIC at: 0xFEE00000
I/O APIC #8 Version 32 at 0xFEC00000.
I/O APIC #9 Version 32 at 0xFEC80000.
I/O APIC #10 Version 32 at 0xFEC80400.
Enabling APIC mode: Flat. Using 3 I/O APICs
SMP mptable: no processors registered!
BIOS bug, MP table errors detected!...
... disabling SMP support. (tell your hw vendor)
IRQ lockup detection disabled
Allocating PCI resources starting at 08000000 (gap: 08000000:f8000000)
Built 1 zonelists
Kernel command line: root=/dev/system/root ro acpi=ht debug apic=verbose
Initializing CPU#0
PID hash table entries: 1024 (order: 10, 16384 bytes)
Xen reported: 3400.250 MHz processor.
Using tsc for high-res timesource
Console: colour VGA+ 80x25
Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
Memory: 119232k/131072k available (3252k kernel code, 11652k reserved, 1026k data, 348k
init, 0k highmem)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
Calibrating delay loop... 6789.52 BogoMIPS (lpj=33947648)
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
CPU: After generic identify, caps: bfebfbff 20000000 00000000 00000000 0000459d 00000000
00000000
CPU: After vendor identify, caps: bfebfbff 20000000 00000000 00000000 0000459d 00000000
00000000
CPU: Trace cache: 12K uops, L1 D cache: 16K
CPU: L2 cache: 1024K
CPU: After all inits, caps: bfebd3f1 20000000 00000000 00000080 0000459d 00000000 000000
00
CPU: Intel(R) Xeon(TM) CPU 3.40GHz stepping 04
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... disabled
checking if image is initramfs...it isn't (bad gzip magic numbers); looks like an initrd
Freeing initrd memory: 5229k freed
NET: Registered protocol family 16
PCI: Using MMCONFIG
ACPI: Subsystem revision 20050211
ACPI: Interpreter disabled.
xen_mem: Initialising balloon driver.
SCSI subsystem initialized
usbcore: registered new driver hub
PCI: Probing PCI hardware
PCI: Probing PCI hardware (bus 00)
PCI: Ignoring BAR0-3 of IDE controller 0000:00:1f.2
PCI: Transparent bridge - 0000:00:1e.0
PCI: IRQ init
PCI: Interrupt Routing Table found at 0xfbfdc790
PCI: Attempting to find IRQ router for 8086:24d0
PCI: Using IRQ router PIIX/ICH [8086/24d0] at 0000:00:1f.0
PCI: IRQ fixup
IRQ for 0000:00:02.0[A] -> PIRQ 60, mask 0080, excl 0000<4>PCI: IRQ 0 for device 0000:00
:02.0 doesn't match PIRQ mask - try pci=usepirqmask
-> newirq=0 -> got IRQ 7
PCI: Found IRQ 7 for device 0000:00:02.0
PCI: Sharing IRQ 7 with 0000:00:01.0
PCI: Sharing IRQ 7 with 0000:00:04.0
PCI: Sharing IRQ 7 with 0000:00:06.0
PCI: Sharing IRQ 7 with 0000:00:1d.0
PCI: Sharing IRQ 7 with 0000:02:00.0
IRQ for 0000:00:1f.2[A] -> PIRQ 62, mask 0080, excl 0000<4>PCI: IRQ 0 for device 0000:00
:1f.2 doesn't match PIRQ mask - try pci=usepirqmask
-> newirq=0 -> got IRQ 7
PCI: Found IRQ 7 for device 0000:00:1f.2
PCI: Sharing IRQ 7 with 0000:00:1d.2
PCI: Sharing IRQ 7 with 0000:04:03.0
IRQ for 0000:02:00.2[B] -> PIRQ 61, mask 0080, excl 0000<4>PCI: IRQ 0 for device 0000:02
:00.2 doesn't match PIRQ mask - try pci=usepirqmask
-> newirq=0 -> got IRQ 7
PCI: Found IRQ 7 for device 0000:02:00.2
PCI: Sharing IRQ 7 with 0000:00:1f.3
PCI: Sharing IRQ 7 with 0000:01:02.0
Grant table initialized
IA-32 Microcode Update Driver: v1.14-xen <tigran@veritas.com>
Initializing Cryptographic API
i8042: ACPI detection disabled
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered
io scheduler cfq registered
Floppy drive(s): fd0 is 1.44M
FDC 0 is a National Semiconductor PC87306
RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize
loop: loaded (max 8 devices)
HP CISS Driver (v 2.6.4)
Intel(R) PRO/1000 Network Driver - version 5.6.10.1-k2
Copyright (c) 1999-2004 Intel Corporation.
pcnet32.c:v1.30i 06.28.2004 tsbogend@alpha.franken.de
e100: Intel(R) PRO/100 Network Driver, 3.3.6-k2-NAPI
e100: Copyright(c) 1999-2004 Intel Corporation
IRQ for 0000:01:01.0[A] -> PIRQ 6a, mask dcf8, excl 0000 -> newirq=10 -> got IRQ 10
PCI: Found IRQ 10 for device 0000:01:01.0
e100: eth0: e100_probe: addr 0xfe3fe000, irq 10, MAC addr 00:02:B3:5F:AB:69
tun: Universal TUN/TAP device driver, 1.6
tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Xen virtual console successfully installed as ttyS0
Event-channel device installed.
Blkif backend is using grant tables.
Initialising Xen netif backend
Blkif frontend is using grant tables.
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
Probing IDE interface ide0...
(XEN) (file=irq.c, line=254) Cannot bind IRQ 4 to guest. In use by 'serial'.
(XEN) (file=irq.c, line=254) Cannot bind IRQ 2 to guest. In use by 'cascade'.
(XEN) (file=irq.c, line=254) Cannot bind IRQ 4 to guest. In use by 'serial'.
(XEN) (file=irq.c, line=254) Cannot bind IRQ 2 to guest. In use by 'cascade'.
hda: TEAC DW-548D, ATAPI CD/DVD-ROM drive
ide1: I/O resource 0x170-0x177 not free.
ide1: ports already in use, skipping probe
Probing IDE interface ide2...
Probing IDE interface ide3...
Probing IDE interface ide4...
Probing IDE interface ide5...
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
hda: ATAPI 48X DVD-ROM CD-R/RW drive, 2048kB Cache
Uniform CD-ROM driver Revision: 3.20
IRQ for 0000:04:03.0[A] -> PIRQ 62, mask 0080, excl 0000 -> newirq=7 -> got IRQ 7
PCI: Found IRQ 7 for device 0000:04:03.0
PCI: Sharing IRQ 7 with 0000:00:1d.2
PCI: Sharing IRQ 7 with 0000:00:1f.2
IRQ for 0000:04:03.1[B] -> PIRQ 63, mask 0080, excl 0000 -> newirq=7 -> got IRQ 7
PCI: Found IRQ 7 for device 0000:04:03.1
PCI: Sharing IRQ 7 with 0000:00:1d.1
scsi0 : Adaptec AIC79XX PCI-X SCSI HBA DRIVER, Rev 1.3.11
<Adaptec AIC7902 Ultra320 SCSI adapter>
aic7902: Ultra320 Wide Channel A, SCSI Id=7, PCI 33 or 66Mhz, 512 SCBs
[-- Attachment #3: IntelBox_acpi_off.txt --]
[-- Type: text/plain, Size: 25483 bytes --]
__ __ _____ ___ _ _
\ \/ /___ _ __ |___ / / _ \ __| | _____ _____| |
\ // _ \ '_ \ |_ \| | | |__ / _` |/ _ \ \ / / _ \ |
/ \ __/ | | | ___) | |_| |__| (_| | __/\ V / __/ |
/_/\_\___|_| |_| |____(_)___/ \__,_|\___| \_/ \___|_|
http://www.cl.cam.ac.uk/netos/xen
University of Cambridge Computer Laboratory
Xen version 3.0-devel (root@site) (gcc version 3.3.3 (SuSE Linux)) Thu May 5 18:21:32
EDT 2005
Latest ChangeSet: 2005/05/05 18:58:59 1.1444 427a5ee3rBlRFupS4xBvv_nWVHQlsA
(XEN) WARNING: Only the first 4GB of the physical memory map can be accessed
(XEN) by Xen in 32-bit mode. Truncating the memory map...
(XEN) Physical RAM map:
(XEN) 0000000000000000 - 000000000009fc00 (usable)
(XEN) 000000000009fc00 - 00000000000a0000 (reserved)
(XEN) 00000000000ebaf0 - 0000000000100000 (reserved)
(XEN) 0000000000100000 - 00000000dffd0000 (usable)
(XEN) 00000000dffd0000 - 00000000dffdf000 (ACPI data)
(XEN) 00000000dffdf000 - 00000000e0000000 (ACPI NVS)
(XEN) 00000000e0000000 - 00000000f0000000 (reserved)
(XEN) 00000000ffc00000 - 0000000100000000 (reserved)
(XEN) System RAM: 3583MB (3669436kB)
(XEN) Xen heap: 10MB (10636kB)
(XEN) CPU0: Before vendor init, caps: bfebfbff 20000000 00000000, vendor = 0
(XEN) CPU#0: Physical ID: 0, Logical ID: 0
(XEN) CPU caps: bfebfbff 20000000 00000000 00000000
(XEN) found SMP MP-table at 000ff780
(XEN) ACPI: RSDP (v000 ACPIAM ) @ 0x000f6be0
(XEN) ACPI: RSDT (v001 A M I OEMRSDT 0x10000418 MSFT 0x00000097) @ 0xdffd0000
(XEN) ACPI: FADT (v002 A M I OEMFACP 0x10000418 MSFT 0x00000097) @ 0xdffd0200
(XEN) ACPI: MADT (v001 A M I OEMAPIC 0x10000418 MSFT 0x00000097) @ 0xdffd0390
(XEN) ACPI: MCFG (v001 Intel Cayuse 0x00000001 MSFT 0x00000001) @ 0xdffd0420
(XEN) ACPI: OEMB (v001 A M I AMI_OEM 0x10000418 MSFT 0x00000097) @ 0xdffdf040
(XEN) ACPI: HPET (v001 A M I OEMHPET 0x10000418 MSFT 0x00000097) @ 0xdffd7460
(XEN) ACPI: DSDT (v001 CYCRB CYCRB045 0x00000045 INTL 0x02002026) @ 0x00000000
(XEN) ACPI: Local APIC address 0xfee00000
(XEN) ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
(XEN) Processor #0 Unknown CPU [15:3] APIC version 20
(XEN) ACPI: LAPIC (acpi_id[0x02] lapic_id[0x06] enabled)
(XEN) Processor #6 Unknown CPU [15:3] APIC version 20
(XEN) ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
(XEN) Processor #1 Unknown CPU [15:3] APIC version 20
(XEN) ACPI: LAPIC (acpi_id[0x04] lapic_id[0x07] enabled)
(XEN) Processor #7 Unknown CPU [15:3] APIC version 20
(XEN) Using ACPI for processor (LAPIC) configuration information
(XEN) Intel MultiProcessor Specification v1.4
(XEN) Virtual Wire compatibility mode.
(XEN) OEM ID: TEMPLATE Product ID: ETEMPLATE APIC at: 0xFEE00000
(XEN) I/O APIC #8 Version 32 at 0xFEC00000.
(XEN) I/O APIC #9 Version 32 at 0xFEC80000.
(XEN) I/O APIC #10 Version 32 at 0xFEC80400.
(XEN) Enabling APIC mode: Flat. Using 3 I/O APICs
(XEN) Processors: 4
(XEN) Using scheduler: Borrowed Virtual Time (bvt)
(XEN) Initializing CPU#0
(XEN) Detected 3400.254 MHz processor.
(XEN) CPU0 booted
(XEN) enabled ExtINT on CPU#0
(XEN) Booting processor 1/1 eip 90000
(XEN) Initializing CPU#1
(XEN) masked ExtINT on CPU#1
(XEN) CPU1: Before vendor init, caps: bfebfbff 20000000 00000000, vendor = 0
(XEN) CPU#1: Physical ID: 0, Logical ID: 1
(XEN) CPU caps: bfebfbff 20000000 00000000 00000000
(XEN) CPU1 has booted.
(XEN) Booting processor 2/6 eip 90000
(XEN) Initializing CPU#2
(XEN) masked ExtINT on CPU#2
(XEN) CPU2: Before vendor init, caps: bfebfbff 20000000 00000000, vendor = 0
(XEN) CPU#2: Physical ID: 3, Logical ID: 0
(XEN) CPU caps: bfebfbff 20000000 00000000 00000000
(XEN) CPU2 has booted.
(XEN) Booting processor 3/7 eip 90000
(XEN) Initializing CPU#3
(XEN) masked ExtINT on CPU#3
(XEN) CPU3: Before vendor init, caps: bfebfbff 20000000 00000000, vendor = 0
(XEN) CPU#3: Physical ID: 3, Logical ID: 1
(XEN) CPU caps: bfebfbff 20000000 00000000 00000000
(XEN) CPU3 has booted.
(XEN) Total of 4 processors activated.
(XEN) ENABLING IO-APIC IRQs
(XEN) Setting 8 in the phys_id_present_map
(XEN) ...changing IO-APIC physical APIC ID to 8 ... ok.
(XEN) Setting 9 in the phys_id_present_map
(XEN) ...changing IO-APIC physical APIC ID to 9 ... ok.
(XEN) Setting 10 in the phys_id_present_map
(XEN) ...changing IO-APIC physical APIC ID to 10 ... ok.
(XEN) init IO_APIC IRQs
(XEN) (file=io_apic.c, line=644) vector_irq[49] = 1
(XEN) (file=io_apic.c, line=644) vector_irq[51] = 3
(XEN) (file=io_apic.c, line=644) vector_irq[59] = 4
(XEN) (file=io_apic.c, line=644) vector_irq[61] = 5
(XEN) (file=io_apic.c, line=644) vector_irq[69] = 6
(XEN) (file=io_apic.c, line=644) vector_irq[71] = 8
(XEN) (file=io_apic.c, line=644) vector_irq[79] = 9
(XEN) (file=io_apic.c, line=644) vector_irq[81] = 12
(XEN) (file=io_apic.c, line=644) vector_irq[89] = 13
(XEN) (file=io_apic.c, line=644) vector_irq[91] = 14
(XEN) (file=io_apic.c, line=644) vector_irq[99] = 15
(XEN) (file=io_apic.c, line=644) vector_irq[a1] = 16
(XEN) (file=io_apic.c, line=644) vector_irq[a9] = 17
(XEN) (file=io_apic.c, line=644) vector_irq[b1] = 18
(XEN) (file=io_apic.c, line=644) vector_irq[b9] = 19
(XEN) (file=io_apic.c, line=644) vector_irq[c1] = 22
(XEN) (file=io_apic.c, line=644) vector_irq[c9] = 23
(XEN) (file=io_apic.c, line=644) vector_irq[d1] = 30
(XEN) (file=io_apic.c, line=644) vector_irq[d9] = 31
(XEN) (file=io_apic.c, line=644) vector_irq[e1] = 47
(XEN) (file=io_apic.c, line=644) vector_irq[e9] = 71
(XEN) ..TIMER: vector=0x41 pin1=2 pin2=0
(XEN) number of MP IRQ sources: 28.
(XEN) number of IO-APIC #8 registers: 24.
(XEN) number of IO-APIC #9 registers: 24.
(XEN) number of IO-APIC #10 registers: 24.
(XEN) testing the IO APIC.......................
(XEN)
(XEN) IO APIC #8......
(XEN) .... register #00: 08000000
(XEN) ....... : physical APIC id: 08
(XEN) ....... : Delivery Type: 0
(XEN) ....... : LTS : 0
(XEN) .... register #01: 00178020
(XEN) ....... : max redirection entries: 0017
(XEN) ....... : PRQ implemented: 1
(XEN) ....... : IO APIC version: 0020
(XEN) .... IRQ redirection table:
(XEN) NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:
(XEN) 00 000 00 1 0 0 0 0 0 0 00
(XEN) 01 00F 0F 0 0 0 0 0 1 1 49
(XEN) 02 00F 0F 0 0 0 0 0 1 1 41
(XEN) 03 00F 0F 0 0 0 0 0 1 1 51
(XEN) 04 00F 0F 0 0 0 0 0 1 1 59
(XEN) 05 00F 0F 0 0 0 0 0 1 1 61
(XEN) 06 00F 0F 0 0 0 0 0 1 1 69
(XEN) 07 000 00 1 0 0 0 0 0 0 00
(XEN) 08 00F 0F 0 0 0 0 0 1 1 71
(XEN) 09 00F 0F 0 0 0 0 0 1 1 79
(XEN) 0a 000 00 1 0 0 0 0 0 0 00
(XEN) 0b 000 00 1 0 0 0 0 0 0 00
(XEN) 0c 00F 0F 0 0 0 0 0 1 1 81
(XEN) 0d 00F 0F 0 0 0 0 0 1 1 89
(XEN) 0e 00F 0F 0 0 0 0 0 1 1 91
(XEN) 0f 00F 0F 0 0 0 0 0 1 1 99
(XEN) 10 00F 0F 1 1 0 1 0 1 1 A1
(XEN) 11 00F 0F 1 1 0 1 0 1 1 A9
(XEN) 12 00F 0F 1 1 0 1 0 1 1 B1
(XEN) 13 00F 0F 1 1 0 1 0 1 1 B9
(XEN) 14 000 00 1 0 0 0 0 0 0 00
(XEN) 15 000 00 1 0 0 0 0 0 0 00
(XEN) 16 00F 0F 1 1 0 1 0 1 1 C1
(XEN) 17 00F 0F 1 1 0 1 0 1 1 C9
(XEN)
(XEN) IO APIC #9......
(XEN) .... register #00: 09000000
(XEN) ....... : physical APIC id: 09
(XEN) ....... : Delivery Type: 0
(XEN) ....... : LTS : 0
(XEN) .... register #01: 00178020
(XEN) ....... : max redirection entries: 0017
(XEN) ....... : PRQ implemented: 1
(XEN) ....... : IO APIC version: 0020
(XEN) .... register #02: 09000000
(XEN) ....... : arbitration: 09
(XEN) .... register #03: 00000001
(XEN) ....... : Boot DT : 1
(XEN) .... IRQ redirection table:
(XEN) NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:
(XEN) 00 000 00 1 0 0 0 0 0 0 00
(XEN) 01 000 00 1 0 0 0 0 0 0 00
(XEN) 02 000 00 1 0 0 0 0 0 0 00
(XEN) 03 000 00 1 0 0 0 0 0 0 00
(XEN) 04 000 00 1 0 0 0 0 0 0 00
(XEN) 05 000 00 1 0 0 0 0 0 0 00
(XEN) 06 00F 0F 1 1 0 1 0 1 1 D1
(XEN) 07 00F 0F 1 1 0 1 0 1 1 D9
(XEN) 08 000 00 1 0 0 0 0 0 0 00
(XEN) 09 000 00 1 0 0 0 0 0 0 00
(XEN) 0a 000 00 1 0 0 0 0 0 0 00
(XEN) 0b 000 00 1 0 0 0 0 0 0 00
(XEN) 0c 000 00 1 0 0 0 0 0 0 00
(XEN) 0d 000 00 1 0 0 0 0 0 0 00
(XEN) 0e 000 00 1 0 0 0 0 0 0 00
(XEN) 0f 000 00 1 0 0 0 0 0 0 00
(XEN) 10 000 00 1 0 0 0 0 0 0 00
(XEN) 11 000 00 1 0 0 0 0 0 0 00
(XEN) 12 000 00 1 0 0 0 0 0 0 00
(XEN) 13 000 00 1 0 0 0 0 0 0 00
(XEN) 14 000 00 1 0 0 0 0 0 0 00
(XEN) 15 000 00 1 0 0 0 0 0 0 00
(XEN) 16 000 00 1 0 0 0 0 0 0 00
(XEN) 17 00F 0F 1 1 0 1 0 1 1 E1
(XEN)
(XEN) IO APIC #10......
(XEN) .... register #00: 0A000000
(XEN) ....... : physical APIC id: 0A
(XEN) ....... : Delivery Type: 0
(XEN) ....... : LTS : 0
(XEN) .... register #01: 00178020
(XEN) ....... : max redirection entries: 0017
(XEN) ....... : PRQ implemented: 1
(XEN) ....... : IO APIC version: 0020
(XEN) .... register #02: 0A000000
(XEN) ....... : arbitration: 0A
(XEN) .... register #03: 00000001
(XEN) ....... : Boot DT : 1
(XEN) .... IRQ redirection table:
(XEN) NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:
(XEN) 00 000 00 1 0 0 0 0 0 0 00
(XEN) 01 000 00 1 0 0 0 0 0 0 00
(XEN) 02 000 00 1 0 0 0 0 0 0 00
(XEN) 03 000 00 1 0 0 0 0 0 0 00
(XEN) 04 000 00 1 0 0 0 0 0 0 00
(XEN) 05 000 00 1 0 0 0 0 0 0 00
(XEN) 06 000 00 1 0 0 0 0 0 0 00
(XEN) 07 000 00 1 0 0 0 0 0 0 00
(XEN) 08 000 00 1 0 0 0 0 0 0 00
(XEN) 09 000 00 1 0 0 0 0 0 0 00
(XEN) 0a 000 00 1 0 0 0 0 0 0 00
(XEN) 0b 000 00 1 0 0 0 0 0 0 00
(XEN) 0c 000 00 1 0 0 0 0 0 0 00
(XEN) 0d 000 00 1 0 0 0 0 0 0 00
(XEN) 0e 000 00 1 0 0 0 0 0 0 00
(XEN) 0f 000 00 1 0 0 0 0 0 0 00
(XEN) 10 000 00 1 0 0 0 0 0 0 00
(XEN) 11 000 00 1 0 0 0 0 0 0 00
(XEN) 12 000 00 1 0 0 0 0 0 0 00
(XEN) 13 000 00 1 0 0 0 0 0 0 00
(XEN) 14 000 00 1 0 0 0 0 0 0 00
(XEN) 15 000 00 1 0 0 0 0 0 0 00
(XEN) 16 000 00 1 0 0 0 0 0 0 00
(XEN) 17 00F 0F 1 1 0 1 0 1 1 E9
(XEN) IRQ to pin mappings:
(XEN) IRQ0 -> 0:2
(XEN) IRQ1 -> 0:1
(XEN) IRQ3 -> 0:3
(XEN) IRQ4 -> 0:4
(XEN) IRQ5 -> 0:5
(XEN) IRQ6 -> 0:6
(XEN) IRQ8 -> 0:8
(XEN) IRQ9 -> 0:9
(XEN) IRQ12 -> 0:12
(XEN) IRQ13 -> 0:13
(XEN) IRQ14 -> 0:14
(XEN) IRQ15 -> 0:15
(XEN) IRQ16 -> 0:16
(XEN) IRQ17 -> 0:17
(XEN) IRQ18 -> 0:18
(XEN) IRQ19 -> 0:19
(XEN) IRQ22 -> 0:22
(XEN) IRQ23 -> 0:23
(XEN) IRQ30 -> 1:6
(XEN) IRQ31 -> 1:7
(XEN) IRQ47 -> 1:23
(XEN) IRQ71 -> 2:23
(XEN) .................................... done.
(XEN) Using local APIC timer interrupts.
(XEN) Calibrating APIC timer for CPU0...
(XEN) ..... CPU clock speed is 3400.2084 MHz.
(XEN) ..... host bus clock speed is 200.0122 MHz.
(XEN) ..... bus_scale = 0x0000CCD7
(XEN) checking TSC synchronization across CPUs: passed.
(XEN) Time init:
(XEN) .... cpu_freq: 00000000:CAABC424
(XEN) .... scale: 00000001:2D2767D8
(XEN) .... Wall Clock: 1115319059s 390000us
(XEN) mtrr: v2.0 (20020519)
(XEN) (file=grant_table.c, line=1228) Grant table init
(XEN) *** LOADING DOMAIN 0 ***
(XEN) Xen-ELF header found: 'GUEST_OS=linux,GUEST_VER=2.6,XEN_VER=3.0,VIRT_BASE=0xC00000
00,LOADER=generic'
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN) Dom0 alloc.: 08000000->10000000
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN) Loaded kernel: c0100000->c05c65c4
(XEN) Init. ramdisk: c05c7000->c0ae2400
(XEN) Phys-Mach map: c0ae3000->c0b03000
(XEN) Page tables: c0b03000->c0b07000
(XEN) Start info: c0b07000->c0b08000
(XEN) Boot stack: c0b08000->c0b09000
(XEN) TOTAL: c0000000->c0c00000
(XEN) ENTRY ADDRESS: c0100000
(XEN) Initrd len 0x51b400, start at 0xc05c7000
(XEN) Scrubbing Free RAM: ....................................done.
(XEN) *** Serial input -> DOM0 (type 'CTRL-a' three times to switch input to Xen).
Linux version 2.6.11-xen0 (root@xen-box) (gcc version 3.3.3 (SuSE Linux)) #1 Thu May 5 1
8:24:50 EDT 2005
BIOS-provided physical RAM map:
Xen: 0000000000000000 - 0000000008000000 (usable)
128MB LOWMEM available.
On node 0 totalpages: 32768
DMA zone: 32768 pages, LIFO batch:8
Normal zone: 0 pages, LIFO batch:1
HighMem zone: 0 pages, LIFO batch:1
found SMP MP-table at 3bfe8780
DMI not present.
Intel MultiProcessor Specification v1.4
Virtual Wire compatibility mode.
OEM ID: TEMPLATE Product ID: ETEMPLATE APIC at: 0xFEE00000
Processor #0 15:3 APIC version 20
Processor #6 15:3 APIC version 20
WARNING: NR_CPUS limit of 1 reached. Processor ignored.
I/O APIC #8 Version 32 at 0xFEC00000.
I/O APIC #9 Version 32 at 0xFEC80000.
I/O APIC #10 Version 32 at 0xFEC80400.
Enabling APIC mode: Flat. Using 3 I/O APICs
Processors: 1
IRQ lockup detection disabled
Allocating PCI resources starting at 08000000 (gap: 08000000:f8000000)
Built 1 zonelists
Kernel command line: root=/dev/system/root ro acpi=off debug apic=verbose
Initializing CPU#0
PID hash table entries: 1024 (order: 10, 16384 bytes)
Xen reported: 3400.254 MHz processor.
Using tsc for high-res timesource
Console: colour VGA+ 80x25
Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
Memory: 119232k/131072k available (3252k kernel code, 11652k reserved, 1026k data, 348k
init, 0k highmem)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
Calibrating delay loop... 6789.52 BogoMIPS (lpj=33947648)
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
CPU: After generic identify, caps: bfebfbff 20000000 00000000 00000000 0000459d 00000000
00000000
CPU: After vendor identify, caps: bfebfbff 20000000 00000000 00000000 0000459d 00000000
00000000
CPU: Trace cache: 12K uops, L1 D cache: 16K
CPU: L2 cache: 1024K
CPU: After all inits, caps: bfebd3f1 20000000 00000000 00000080 0000459d 00000000 000000
00
CPU: Intel(R) Xeon(TM) CPU 3.40GHz stepping 04
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... disabled
ENABLING IO-APIC IRQs
checking if image is initramfs...it isn't (bad gzip magic numbers); looks like an initrd
Freeing initrd memory: 5229k freed
NET: Registered protocol family 16
PCI: Using configuration type 1
ACPI: Subsystem revision 20050211
ACPI: Interpreter disabled.
xen_mem: Initialising balloon driver.
SCSI subsystem initialized
usbcore: registered new driver hub
PCI: Probing PCI hardware
PCI: Probing PCI hardware (bus 00)
PCI: Ignoring BAR0-3 of IDE controller 0000:00:1f.2
PCI: Transparent bridge - 0000:00:1e.0
PCI: IRQ init
PCI: Interrupt Routing Table found at 0xfbfdc790
PCI: Attempting to find IRQ router for 8086:24d0
PCI: Using IRQ router PIIX/ICH [8086/24d0] at 0000:00:1f.0
PCI: IRQ fixup
PCI->APIC IRQ transform: 0000:00:01.0[A] -> IRQ 16
PCI->APIC IRQ transform: 0000:00:04.0[A] -> IRQ 16
PCI->APIC IRQ transform: 0000:00:06.0[A] -> IRQ 16
PCI->APIC IRQ transform: 0000:00:1d.0[A] -> IRQ 16
PCI->APIC IRQ transform: 0000:00:1d.1[B] -> IRQ 19
PCI->APIC IRQ transform: 0000:00:1d.2[C] -> IRQ 18
PCI->APIC IRQ transform: 0000:00:1d.7[D] -> IRQ 23
PCI->APIC IRQ transform: 0000:00:1f.2[A] -> IRQ 18
PCI->APIC IRQ transform: 0000:00:1f.3[B] -> IRQ 17
PCI->APIC IRQ transform: 0000:02:00.0[A] -> IRQ 47
PCI->APIC IRQ transform: 0000:02:00.2[B] -> IRQ 71
PCI->APIC IRQ transform: 0000:04:03.0[A] -> IRQ 30
PCI->APIC IRQ transform: 0000:04:03.1[B] -> IRQ 31
PCI->APIC IRQ transform: 0000:01:01.0[A] -> IRQ 22
PCI->APIC IRQ transform: 0000:01:02.0[A] -> IRQ 17
Grant table initialized
IA-32 Microcode Update Driver: v1.14-xen <tigran@veritas.com>
Initializing Cryptographic API
i8042: ACPI detection disabled
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered
io scheduler cfq registered
Floppy drive(s): fd0 is 1.44M
FDC 0 is a National Semiconductor PC87306
RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize
loop: loaded (max 8 devices)
HP CISS Driver (v 2.6.4)
Intel(R) PRO/1000 Network Driver - version 5.6.10.1-k2
Copyright (c) 1999-2004 Intel Corporation.
pcnet32.c:v1.30i 06.28.2004 tsbogend@alpha.franken.de
e100: Intel(R) PRO/100 Network Driver, 3.3.6-k2-NAPI
e100: Copyright(c) 1999-2004 Intel Corporation
e100: eth0: e100_probe: addr 0xfe3fe000, irq 22, MAC addr 00:02:B3:5F:AB:69
tun: Universal TUN/TAP device driver, 1.6
tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Xen virtual console successfully installed as ttyS0
Event-channel device installed.
Blkif backend is using grant tables.
Initialising Xen netif backend
Blkif frontend is using grant tables.
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
Probing IDE interface ide0...
(XEN) (file=irq.c, line=254) Cannot bind IRQ 4 to guest. In use by 'serial'.
(XEN) (file=irq.c, line=254) Cannot bind IRQ 2 to guest. In use by 'cascade'.
(XEN) (file=irq.c, line=254) Cannot bind IRQ 4 to guest. In use by 'serial'.
(XEN) (file=irq.c, line=254) Cannot bind IRQ 2 to guest. In use by 'cascade'.
hda: TEAC DW-548D, ATAPI CD/DVD-ROM drive
ide1: I/O resource 0x170-0x177 not free.
ide1: ports already in use, skipping probe
Probing IDE interface ide2...
Probing IDE interface ide3...
Probing IDE interface ide4...
Probing IDE interface ide5...
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
hda: ATAPI 48X DVD-ROM CD-R/RW drive, 2048kB Cache
Uniform CD-ROM driver Revision: 3.20
scsi0 : Adaptec AIC79XX PCI-X SCSI HBA DRIVER, Rev 1.3.11
<Adaptec AIC7902 Ultra320 SCSI adapter>
aic7902: Ultra320 Wide Channel A, SCSI Id=7, PCI 33 or 66Mhz, 512 SCBs
(scsi0:A:5): 320.000MB/s transfers (160.000MHz DT|IU|QAS, 16bit)
(scsi0:A:6): 320.000MB/s transfers (160.000MHz DT|IU|QAS, 16bit)
Vendor: MAXTOR Model: ATLAS10K4_73WLS Rev: DFV0
Type: Direct-Access ANSI SCSI revision: 03
scsi0:A:5:0: Tagged Queuing enabled. Depth 32
Vendor: MAXTOR Model: ATLAS10K4_73WLS Rev: DFV0
Type: Direct-Access ANSI SCSI revision: 03
scsi0:A:6:0: Tagged Queuing enabled. Depth 32
scsi1 : Adaptec AIC79XX PCI-X SCSI HBA DRIVER, Rev 1.3.11
<Adaptec AIC7902 Ultra320 SCSI adapter>
aic7902: Ultra320 Wide Channel B, SCSI Id=7, PCI 33 or 66Mhz, 512 SCBs
Red Hat/Adaptec aacraid driver (1.1.2-lk2 May 5 2005)
3ware Storage Controller device driver for Linux v1.26.02.000.
libata version 1.10 loaded.
ata_piix version 1.03
ata_piix: combined mode detected
ata: 0x1f0 IDE port busy
PCI: Setting latency timer of device 0000:00:1f.2 to 64
ata1: SATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xFC08 irq 15
ata1: SATA port has no device.
scsi2 : ata_piix
SCSI device sda: 143666192 512-byte hdwr sectors (73557 MB)
SCSI device sda: drive cache: write back
SCSI device sda: 143666192 512-byte hdwr sectors (73557 MB)
SCSI device sda: drive cache: write back
sda: sda1 sda2
Attached scsi disk sda at scsi0, channel 0, id 5, lun 0
SCSI device sdb: 143666192 512-byte hdwr sectors (73557 MB)
SCSI device sdb: drive cache: write back
SCSI device sdb: 143666192 512-byte hdwr sectors (73557 MB)
SCSI device sdb: drive cache: write back
sdb:
Attached scsi disk sdb at scsi0, channel 0, id 6, lun 0
Fusion MPT base driver 3.01.18
Copyright (c) 1999-2004 LSI Logic Corporation
Fusion MPT SCSI Host driver 3.01.18
ohci_hcd: 2004 Nov 08 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI)
USB Universal Host Controller Interface driver v2.2
uhci_hcd 0000:00:1d.0: UHCI Host Controller
PCI: Setting latency timer of device 0000:00:1d.0 to 64
uhci_hcd 0000:00:1d.0: irq 16, io base 0xe800
uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.1: UHCI Host Controller
PCI: Setting latency timer of device 0000:00:1d.1 to 64
uhci_hcd 0000:00:1d.1: irq 19, io base 0xe880
uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.2: UHCI Host Controller
PCI: Setting latency timer of device 0000:00:1d.2 to 64
uhci_hcd 0000:00:1d.2: irq 18, io base 0xec00
uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 3
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
usbcore: registered new driver usbhid
drivers/usb/input/hid-core.c: v2.0:USB HID core driver
mice: PS/2 mouse device common for all mice
input: AT Translated Set 2 keyboard on isa0060/serio0
input: PS2++ Logitech Wheel Mouse on isa0060/serio1
md: raid0 personality registered as nr 2
md: raid1 personality registered as nr 3
md: raid5 personality registered as nr 4
raid5: automatically using best checksumming function: pIII_sse
pIII_sse : 1398.000 MB/sec
raid5: using function: pIII_sse (1398.000 MB/sec)
md: md driver 0.90.1 MAX_MD_DEVS=256, MD_SB_DISKS=27
NET: Registered protocol family 2
IP: routing cache hash table of 1024 buckets, 8Kbytes
TCP established hash table entries: 8192 (order: 4, 65536 bytes)
TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
TCP: Hash tables configured (established 8192 bind 8192)
NET: Registered protocol family 1
NET: Registered protocol family 17
Bridge firewalling registered
md: Autodetecting RAID arrays.
md: autorun ...
md: ... autorun DONE.
RAMDISK: ext2 filesystem found at block 0
RAMDISK: Loading 5228KiB [1 disk] into ram disk... done.
VFS: Mounted root (ext2 filesystem).
device-mapper: 4.4.0-ioctl (2005-01-12) initialised: dm-devel@redhat.com
ReiserFS: dm-1: found reiserfs format "3.6" with standard journal
ReiserFS: dm-1: using ordered data mode
ReiserFS: dm-1: journal params: device dm-1, size 8192, journal first block 18, max tran
s len 1024, max batch 900, max commit age 30, max trans age 30
ReiserFS: dm-1: checking transaction log (dm-1)
ReiserFS: dm-1: Using r5 hash to sort names
VFS: Mounted root (reiserfs filesystem) readonly.
Trying to move old root to /initrd ... failed
Unmounting old root
Trying to free ramdisk memory ... okay
Freeing unused kernel memory: 348k freed
ReiserFS: dm-1: warning: acl not supported.
ReiserFS: dm-1: warning: acl not supported.
md: Autodetecting RAID arrays.
md: autorun ...
md: ... autorun DONE.
ReiserFS: sda1: warning: acl not supported.
ReiserFS: sda1: found reiserfs format "3.6" with standard journal
ReiserFS: sda1: using ordered data mode
ReiserFS: sda1: journal params: device sda1, size 8192, journal first block 18, max tran
s len 1024, max batch 900, max commit age 30, max trans age 30
ReiserFS: sda1: checking transaction log (sda1)
ReiserFS: sda1: Using r5 hash to sort names
Adding 8388600k swap on /dev/system/swap. Priority:42 extents:1
e100: eth0: e100_watchdog: link up, 100Mbps, full-duplex
(XEN) (file=/root/xen/xeno-unstable.bk/xen/include/asm/mm.h, line=188) Error pfn 100: rd
=ffbfcc00, od=00000000, caf=00000000, taf=00000000
(XEN) (file=/root/xen/xeno-unstable.bk/xen/include/asm/mm.h, line=188) Error pfn 100: rd
=ffbfcc00, od=00000000, caf=00000000, taf=00000000
(XEN) (file=/root/xen/xeno-unstable.bk/xen/include/asm/mm.h, line=188) Error pfn 100: rd
=ffbfcc00, od=00000000, caf=00000000, taf=00000000
(XEN) (file=/root/xen/xeno-unstable.bk/xen/include/asm/mm.h, line=188) Error pfn 100: rd
=ffbfcc00, od=00000000, caf=00000000, taf=00000000
(XEN) (file=/root/xen/xeno-unstable.bk/xen/include/asm/mm.h, line=188) Error pfn 100: rd
=ffbfcc00, od=00000000, caf=00000000, taf=00000000
(XEN) (file=traps.c, line=342) Page fault: ff1375c8 -> ff146310
(XEN) (file=traps.c, line=342) Page fault: ff1375c8 -> ff146310
(XEN) (file=traps.c, line=342) Page fault: ff1375c8 -> ff146310
(XEN) mtrr: type mismatch for fd000000,800000 old: uncachable new: write-combining
(XEN) mtrr: type mismatch for fd000000,800000 old: uncachable new: write-combining
[-- Attachment #4: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: Fix for 'acpi=off'
2005-05-05 22:54 Puthiyaparambil, Aravindh
@ 2005-05-06 6:08 ` Keir Fraser
0 siblings, 0 replies; 8+ messages in thread
From: Keir Fraser @ 2005-05-06 6:08 UTC (permalink / raw)
To: Puthiyaparambil, Aravindh; +Cc: natasha, Xen Development List
On 5 May 2005, at 23:54, Puthiyaparambil, Aravindh wrote:
> I tried the acpi=off on my 2-by x86_64 box running 32-bit SLES9.
> Everything seems to work just fine except for a couple of pfn and page
> fault non-fatal errors.
Those errors are harmless debug output from Xen I think. Probably from
probing when an X server starts?
-- Keir
^ permalink raw reply [flat|nested] 8+ messages in thread
* Fix for 'acpi=off'
@ 2005-05-05 18:06 Keir Fraser
0 siblings, 0 replies; 8+ messages in thread
From: Keir Fraser @ 2005-05-05 18:06 UTC (permalink / raw)
To: Xen Development List, natasha
I've checked in a patch that will hopefully fix 'acpi=off' and
'acpi=ht' modes for domain0. It's been tested on just one machine so
far, so it'd be good to get some wider feedback. :-)
-- Keir
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2005-05-06 13:49 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <mailman.1115333931.17390@unix-os.sc.intel.com>
2005-05-05 23:09 ` Fix for 'acpi=off' Arun Sharma
2005-05-06 6:06 ` Keir Fraser
2005-05-06 13:49 Puthiyaparambil, Aravindh
-- strict thread matches above, loose matches on Subject: below --
2005-05-06 0:44 Puthiyaparambil, Aravindh
2005-05-06 0:51 ` Arun Sharma
2005-05-05 22:54 Puthiyaparambil, Aravindh
2005-05-06 6:08 ` Keir Fraser
2005-05-05 18:06 Keir Fraser
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.