RE: [2/2] ACPI: report "Module Device" support via _OSI

2006-04-25 Thread Therien, Guy
Bjorn's response to my statements is correct. The idea is that _OSI tells the platform that the OS supports the loading of a module device so the platform firmware can declare devices under it instead of somewhere else. i.e. the platform can assume that the devices will be loaded. I view it as a A

Re: [PATCH] reverse pci config space restore order

2006-04-25 Thread Matthew Garrett
On Tue, Apr 25, 2006 at 02:50:57PM +0800, Yu, Luming wrote: > - for (i = 0; i < 16; i++) > + for (i = 15; i >= 0 ; i--) We certainly need to do /something/ here, but I'm not sure this is it. Adam Belay has code to limit PCI state restoration to the PCI-specified registers, with the idea

Re: [PATCH] reverse pci config space restore order

2006-04-25 Thread Arjan van de Ven
On Tue, 2006-04-25 at 11:48 +0100, Matthew Garrett wrote: > On Tue, Apr 25, 2006 at 02:50:57PM +0800, Yu, Luming wrote: > > > - for (i = 0; i < 16; i++) > > + for (i = 15; i >= 0 ; i--) > > We certainly need to do /something/ here, but I'm not sure this is it. > Adam Belay has code to limit

Re: [PATCH] reverse pci config space restore order

2006-04-25 Thread Matthew Garrett
On Tue, Apr 25, 2006 at 12:51:01PM +0200, Arjan van de Ven wrote: > it has a second drawback: it assumes all devices HAVE a driver, which > isn't normally the case... Yeah, I guess there's a call for keeping a pci_save_entire_state type call and getting pci_device_suspend to use that in the no-d

[PATCH RFC] Suppress power button event on S3 resume

2006-04-25 Thread Arnaud Patard
Hi, I got this week-end the problem described by the thread "how to back from suspend without shutdown". I've hacked a little patch for solving this issue. I've tested with the 2.6.17rc1 on two platforms and it's working. Regards, Arnaud Patard Suppress POWER_BUTTON event on S3 resume. Signed-

RE: [RFC] [PATCH] Make ACPI button driver an input device

2006-04-25 Thread Yu, Luming
>> >> > There are keyboards with power/sleep buttons. It makes >> >sense they have >> >> > the same behavior than ACPI buttons. >> >> Agree, make them behave like ACPI buttons -- remove them >> >from input stream, as they do not belong there... >> > >> >What if there is no ACPI? What if I want to r

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

2006-04-25 Thread Kimball Murray
Per Andi Kleen's request, I have made slight changes to the patch I submitted last week. Look for the "snip" further down if you don't want to re-read the original post. Thanks! --- Begin original post --- Hello! I'm working on an x86_64 platfrom, where I've hit a probl

RE: Faulty DSDT

2006-04-25 Thread Moore, Robert
I would appreciate it if someone would send me both the binary DSDT or acpixtract output and the disassembled file. Thanks, Bob > -Original Message- > From: [EMAIL PROTECTED] [mailto:linux-acpi- > [EMAIL PROTECTED] On Behalf Of Brown, Len > Sent: Monday, April 24, 2006 2:33 PM > To: Ivá

RE: [PATCH] reverse pci config space restore order

2006-04-25 Thread Brown, Len
>On Tue, 2006-04-25 at 11:48 +0100, Matthew Garrett wrote: >> On Tue, Apr 25, 2006 at 02:50:57PM +0800, Yu, Luming wrote: >> >> > - for (i = 0; i < 16; i++) >> > + for (i = 15; i >= 0 ; i--) >> >> We certainly need to do /something/ here, but I'm not sure >> this is it. >> Adam Belay has cod

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

2006-04-25 Thread Brown, Len
I'd rather see the original irq-renaming patch and its subsequent multiple via workaround patches reverted than to further complicate what is becoming a fragile mess. -Len - To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to [EMAIL PROTECTED] More maj

RE: Faulty DSDT

2006-04-25 Thread Moore, Robert
This looks like a case where there are one or more SSDTs and the disassembler has a difficult time deciphering method calls from the DSDT to the SSDT(s). This is a feature (along with the automatic generation of External() statements) that is on the TBD list for the disassembler. Parens help in

RE: [PATCH] reverse pci config space restore order

2006-04-25 Thread abelay
Quoting "Brown, Len" <[EMAIL PROTECTED]>: On Tue, 2006-04-25 at 11:48 +0100, Matthew Garrett wrote: On Tue, Apr 25, 2006 at 02:50:57PM +0800, Yu, Luming wrote: > - for (i = 0; i < 16; i++) > + for (i = 15; i >= 0 ; i--) We certainly need to do /something/ here, but I'm not sure this is it