RE: [(repost) git Patch 1/1] avoid IRQ0 ioapic pin collision

2006-05-08 Thread Protasevich, Natalie
Natalie, Regarding the IRQ compression in mp_register_gsi() Some time ago we invented ioapic_renumber_irq() to handle the case where the ES7000 BIOS is missing the INTERRUPT_OVERRIDES needed to tell that legacy IRQs used pins 15, and PCI interrupts used pins 16. In

Re: [patch] fix pciehp compile issue when CONFIG_ACPI is not enabled.

2006-05-08 Thread Alexey Dobriyan
On Mon, May 08, 2006 at 11:54:30AM -0700, Kristen Accardi wrote: Fix compile error when CONFIG_ACPI is not defined. --- 2.6-git.orig/include/acpi/actypes.h +++ 2.6-git/include/acpi/actypes.h @@ -348,6 +348,7 @@ struct acpi_pointer { * Mescellaneous types */ typedef u32 acpi_status;

Re: [patch] fix pciehp compile issue when CONFIG_ACPI is not enabled.

2006-05-08 Thread Kristen Accardi
On Mon, 2006-05-08 at 23:24 +0400, Alexey Dobriyan wrote: On Mon, May 08, 2006 at 11:54:30AM -0700, Kristen Accardi wrote: Fix compile error when CONFIG_ACPI is not defined. --- 2.6-git.orig/include/acpi/actypes.h +++ 2.6-git/include/acpi/actypes.h @@ -348,6 +348,7 @@ struct

Re: [Bugme-new] [Bug 6519] New: Athlon XP runs hot: s2k disconnect power saving inoperative

2006-05-08 Thread Andrew Morton
[EMAIL PROTECTED] wrote: http://bugzilla.kernel.org/show_bug.cgi?id=6519 Guys, there's some mystification as to what subsystem could have caused this person's CPU Disconnect Control to break. Andi thinks perhaps ACPI. Can someone please confirm that and if so, assign the report? Thanks. -

RE: [(repost) git Patch 1/1] avoid IRQ0 ioapic pin collision

2006-05-08 Thread Brown, Len
6IOAPIC[64]: apic_id 127, version 32, address 0xfec49000, GSI 1728-1751 wow, big box! I have tested this algorithm and it worked just fine for me... I used the following compression code in mp_register_gsi(): int irqs_used = 0; int gsi_to_irq[NR_IRQS] = { [0 ... NR_IRQS-1] = -1 }; ...

RE: [PATCH] tpm: update module dependencies (PNPACPI)

2006-05-08 Thread Brown, Len
On Mon, 2006-05-08 at 17:59 -0400, Brown, Len wrote: The TIS driver is dependent upon information from the ACPI table for device discovery thus it compiles but does no actual work with out this dependency. Signed-off-by: Kylene Hall [EMAIL PROTECTED] --- drivers/char/tpm/Kconfig |2

RE: Linux kernel PnPBIOS

2006-05-08 Thread Brown, Len
As the original author of the x86 pnp bios driver I recently received a request to add the API to access the information related to the BIOS Boot Specification (BBS), which is accessible through the PNP BIOS interface with functions 0x60 through 0x66. Seeing that a) there apparently are only few

RE: [(repost) git Patch 1/1] avoid IRQ0 ioapic pin collision

2006-05-08 Thread Protasevich, Natalie
6IOAPIC[64]: apic_id 127, version 32, address 0xfec49000, GSI 1728-1751 wow, big box! Yea, it's decent :) I asked for the big one since this way we can test IRQs wrapping around. I have tested this algorithm and it worked just fine for me... I used the following compression code in

RE: [(repost) git Patch 1/1] avoid IRQ0 ioapic pin collision

2006-05-08 Thread Protasevich, Natalie
I have tested this algorithm and it worked just fine for me... I used the following compression code in mp_register_gsi(): int irqs_used = 0; int gsi_to_irq[NR_IRQS] = { [0 ... NR_IRQS-1] = -1 }; ... if (triggering == ACPI_LEVEL_SENSITIVE) {