public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ACPI update (20030122)
@ 2003-01-23 22:44 Grover, Andrew
  2003-01-24  0:00 ` Dave Jones
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Grover, Andrew @ 2003-01-23 22:44 UTC (permalink / raw)
  To: linux-kernel; +Cc: acpi-devel

Hi all,

The latest ACPI patch is now available at http://sf.net/projects/acpi .
Non-Linux packages will be available within 24 hours from
http://developer.intel.com/technology/iapc/acpi/downloads.htm .

The patches are big primarily because we finally got with the program
and moved our headers from drivers/acpi/include to include/acpi.

Regards -- Andy

22 January 2003.  Summary of changes for version 20030122.


1) ACPI CA Core Subsystem:

Added a check for constructs of the form:  Store (Local0,
Local0) where Local0 is not initialized.  Apparently, some
BIOS programmers believe that this is a NOOP.  Since this
store doesn't do anything anyway, the new prototype behavior
will ignore this error.  This is a case where we can relax the
strict checking in the interpreter in the name of
compatibility.


2) Linux

The AcpiSrc Source Conversion Utility has been released with
the Unix package for the first time.  This is the utility
that is used to convert the ACPI CA base source code to the
Linux version.

(Both) Handle P_BLK lengths shorter than 6 more gracefully

(Both) Move more headers to include/acpi, and delete an unused
header.

(Both) Move drivers/acpi/include directory to include/acpi

(Both) Boot functions don't use cmdline, so don't pass it
around

(Both) Remove include of unused header (Adrian Bunk)

(Both) acpiphp.h includes both linux/acpi.h and acpi_bus.h.
Since the former now also includes the latter, acpiphp.h only needs the
one, now.

(2.5) Make it possible to select method of bios restoring
after S3 resume. [=> no more ugly ifdefs] (Pavel Machek)

(2.5) Make proc write interfaces work (Pavel Machek)

(2.5) Properly init/clean up in cpufreq/acpi (Dominik
Brodowski)

(2.5) Break out ACPI Perf code into its own module, under
cpufreq (Dominik Brodowski)

(2.4) S4BIOS support (Ducrot Bruno)

(2.4) Fix acpiphp_glue.c for latest ACPI struct changes
(Sergio Visinoni)


3) iASL Compiler:

Added support to disassemble SSDT and PSDTs.

Implemented support to obtain SSDTs from the Windows registry
if available.

-----------------------------
Andrew Grover
Intel Labs / Mobile Architecture
andrew.grover@intel.com


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] ACPI update (20030122)
  2003-01-23 22:44 Grover, Andrew
@ 2003-01-24  0:00 ` Dave Jones
  2003-01-24  0:10 ` Halil Demirezen
  2003-01-24 13:09 ` Alvaro Lopes
  2 siblings, 0 replies; 6+ messages in thread
From: Dave Jones @ 2003-01-24  0:00 UTC (permalink / raw)
  To: Grover, Andrew; +Cc: linux-kernel, acpi-devel

On Thu, Jan 23, 2003 at 02:44:55PM -0800, Grover, Andrew wrote:

 > The latest ACPI patch is now available at http://sf.net/projects/acpi .
 > Non-Linux packages will be available within 24 hours from
 > http://developer.intel.com/technology/iapc/acpi/downloads.htm .

I've noticed that with .59 some of my boxes no longer have
functioning NICs unless I boot with acpi=off. Packets get
transmitted, but nothing ever gets received.
Seen this with a 3c509, an 8139, and an e100.

Known bug? Fixed in this patch ?

		Dave

-- 
| Dave Jones.        http://www.codemonkey.org.uk
| SuSE Labs

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [PATCH] ACPI update (20030122)
@ 2003-01-24  0:09 Grover, Andrew
  2003-01-24  0:59 ` Dave Jones
  0 siblings, 1 reply; 6+ messages in thread
From: Grover, Andrew @ 2003-01-24  0:09 UTC (permalink / raw)
  To: Dave Jones; +Cc: linux-kernel, acpi-devel

> From: Dave Jones [mailto:davej@codemonkey.org.uk] 
> I've noticed that with .59 some of my boxes no longer have
> functioning NICs unless I boot with acpi=off. Packets get
> transmitted, but nothing ever gets received.
> Seen this with a 3c509, an 8139, and an e100.
> 
> Known bug? Fixed in this patch ?

Known bug. Not fixed in this patch. Are you sure this is new in recent
kernels?

Regards -- Andy

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] ACPI update (20030122)
  2003-01-23 22:44 Grover, Andrew
  2003-01-24  0:00 ` Dave Jones
@ 2003-01-24  0:10 ` Halil Demirezen
  2003-01-24 13:09 ` Alvaro Lopes
  2 siblings, 0 replies; 6+ messages in thread
From: Halil Demirezen @ 2003-01-24  0:10 UTC (permalink / raw)
  To: linux-kernel

That seems that you've rewritten the acpi.c :)




On Thu, Jan 23, 2003 at 02:44:55PM -0800, Grover, Andrew wrote:
> Hi all,
> 
> The latest ACPI patch is now available at http://sf.net/projects/acpi .
> Non-Linux packages will be available within 24 hours from
> http://developer.intel.com/technology/iapc/acpi/downloads.htm .
> 
> The patches are big primarily because we finally got with the program
> and moved our headers from drivers/acpi/include to include/acpi.
> 
> Regards -- Andy
> 
> 22 January 2003.  Summary of changes for version 20030122.
> 
> 
> 1) ACPI CA Core Subsystem:
> 
> Added a check for constructs of the form:  Store (Local0,
> Local0) where Local0 is not initialized.  Apparently, some
> BIOS programmers believe that this is a NOOP.  Since this
> store doesn't do anything anyway, the new prototype behavior
> will ignore this error.  This is a case where we can relax the
> strict checking in the interpreter in the name of
> compatibility.
> 
> 
> 2) Linux
> 
> The AcpiSrc Source Conversion Utility has been released with
> the Unix package for the first time.  This is the utility
> that is used to convert the ACPI CA base source code to the
> Linux version.
> 
> (Both) Handle P_BLK lengths shorter than 6 more gracefully
> 
> (Both) Move more headers to include/acpi, and delete an unused
> header.
> 
> (Both) Move drivers/acpi/include directory to include/acpi
> 
> (Both) Boot functions don't use cmdline, so don't pass it
> around
> 
> (Both) Remove include of unused header (Adrian Bunk)
> 
> (Both) acpiphp.h includes both linux/acpi.h and acpi_bus.h.
> Since the former now also includes the latter, acpiphp.h only needs the
> one, now.
> 
> (2.5) Make it possible to select method of bios restoring
> after S3 resume. [=> no more ugly ifdefs] (Pavel Machek)
> 
> (2.5) Make proc write interfaces work (Pavel Machek)
> 
> (2.5) Properly init/clean up in cpufreq/acpi (Dominik
> Brodowski)
> 
> (2.5) Break out ACPI Perf code into its own module, under
> cpufreq (Dominik Brodowski)
> 
> (2.4) S4BIOS support (Ducrot Bruno)
> 
> (2.4) Fix acpiphp_glue.c for latest ACPI struct changes
> (Sergio Visinoni)
> 
> 
> 3) iASL Compiler:
> 
> Added support to disassemble SSDT and PSDTs.
> 
> Implemented support to obtain SSDTs from the Windows registry
> if available.
> 
> -----------------------------
> Andrew Grover
> Intel Labs / Mobile Architecture
> andrew.grover@intel.com
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] ACPI update (20030122)
  2003-01-24  0:09 [PATCH] ACPI update (20030122) Grover, Andrew
@ 2003-01-24  0:59 ` Dave Jones
  0 siblings, 0 replies; 6+ messages in thread
From: Dave Jones @ 2003-01-24  0:59 UTC (permalink / raw)
  To: Grover, Andrew; +Cc: linux-kernel, acpi-devel

On Thu, Jan 23, 2003 at 04:09:07PM -0800, Grover, Andrew wrote:

 > > Known bug? Fixed in this patch ?
 > Known bug. Not fixed in this patch. Are you sure this is new in recent
 > kernels?

Only seems to started biting me this last week for some reason.

		Dave

-- 
| Dave Jones.        http://www.codemonkey.org.uk
| SuSE Labs

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] ACPI update (20030122)
  2003-01-23 22:44 Grover, Andrew
  2003-01-24  0:00 ` Dave Jones
  2003-01-24  0:10 ` Halil Demirezen
@ 2003-01-24 13:09 ` Alvaro Lopes
  2 siblings, 0 replies; 6+ messages in thread
From: Alvaro Lopes @ 2003-01-24 13:09 UTC (permalink / raw)
  To: linux-kernel

Grover, Andrew wrote:

>Hi all,
>
>The latest ACPI patch is now available at http://sf.net/projects/acpi .
>Non-Linux packages will be available within 24 hours from
>http://developer.intel.com/technology/iapc/acpi/downloads.htm .
>  
>
Still not working properly :/

Right now with 2.4.21-pre3 keventd 'eats' all my cpu.

Perhaps same problem I got with 2.5.59 (kernel does nothing but handle 
IRQ's from acpi), but at least with 2.4 it gets to boot.

-- 

Álvaro Lopes 
---------------------
A .sig is just a .sig



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2003-01-24 13:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-01-24  0:09 [PATCH] ACPI update (20030122) Grover, Andrew
2003-01-24  0:59 ` Dave Jones
  -- strict thread matches above, loose matches on Subject: below --
2003-01-23 22:44 Grover, Andrew
2003-01-24  0:00 ` Dave Jones
2003-01-24  0:10 ` Halil Demirezen
2003-01-24 13:09 ` Alvaro Lopes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox