public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* Whait is CFGD for?
@ 2005-05-11 13:53 DJAX
  2005-05-14  2:17 ` Manuel J.Galan
  0 siblings, 1 reply; 4+ messages in thread
From: DJAX @ 2005-05-11 13:53 UTC (permalink / raw)
  To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

Hello,
I got an Acer Aspire 1694WLMi with bios 3c25.
I try to fix the DSDT, but  I don't how to correct the last errors.
The compiler tell me about an object CFGD that doesn't exist, but I
don't know how and where to declare it and with  which value to
initialise it.

Can you help me?

Thank you
Didier


The original DSDT:
http://users.linuxbourg.ch/didier/informatique/acer1694/dsdt.20050509.original.dsl
My "in work" DSDT:
http://users.linuxbourg.ch/didier/informatique/acer1694/dsdt.20050509.custom.dsl
The iasl message :
-----------------------------------8<---------------------------------------------------------
iasl -tc  dsdt.20050509.custom.dsl

Intel ACPI Component Architecture
ASL Optimizing Compiler / AML Disassembler version 20050309 [May  6 2005]
Copyright (C) 2000 - 2005 Intel Corporation
Supports ACPI Specification Revision 3.0

dsdt.20050509.custom.dsl   450:                     Or (CFGD, 0xC0, CFGD)
Error    1022 -                      Object does not exist ^  (CFGD)

dsdt.20050509.custom.dsl   450:                     Or (CFGD, 0xC0, CFGD)
Error    1022 -                                  Object does not exist
^  (CFGD)

dsdt.20050509.custom.dsl   470:                     And (CFGD, 0x3F, CFGD)
Error    1022 -                       Object does not exist ^  (CFGD)

dsdt.20050509.custom.dsl   470:                     And (CFGD, 0x3F, CFGD)
Error    1022 -                                   Object does not exist
^  (CFGD)

dsdt.20050509.custom.dsl  2625:                             And (CFGD,
0x3F, CFGD)
Error    1022 -                               Object does not exist ^ 
(CFGD)

dsdt.20050509.custom.dsl  2625:                             And (CFGD,
0x3F, CFGD)
Error    1022 -                                           Object does
not exist ^  (CFGD)

dsdt.20050509.custom.dsl  2634:                             Or (CFGD,
0xC0, CFGD)
Error    1022 -                              Object does not exist ^  (CFGD)

dsdt.20050509.custom.dsl  2634:                             Or (CFGD,
0xC0, CFGD)
Error    1022 -                                          Object does not
exist ^  (CFGD)

ASL Input:  dsdt.20050509.custom.dsl - 6944 lines, 244149 bytes, 3203
keywords
Compilation complete. 8 Errors, 0 Warnings, 0 Remarks, 1116 Optimizations
--------------------------------->8---------------------------------------------------


-------------------------------------------------------
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click

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

* Re: Whait is CFGD for?
  2005-05-11 13:53 Whait is CFGD for? DJAX
@ 2005-05-14  2:17 ` Manuel J.Galan
       [not found]   ` <loom.20050514T041524-961-eS7Uydv5nfjZ+VzJOa5vwg@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Manuel J.Galan @ 2005-05-14  2:17 UTC (permalink / raw)
  To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

DJAX <djax@...> writes:

> 
> Hello,
> I got an Acer Aspire 1694WLMi with bios 3c25.
> I try to fix the DSDT, but  I don't how to correct the last errors.
> The compiler tell me about an object CFGD that doesn't exist, but I
> don't know how and where to declare it and with  which value to
> initialise it.
> 
> Can you help me?
> 
> Thank you
> Didier
> 

Try this diff:
============================
--- dsdt.20050509.custom.dsl.orig       2005-05-14 03:12:47.000000000 +0100
+++ dsdt.20050509.custom.dsl    2005-05-14 03:13:20.000000000 +0100
@@ -209,6 +209,7 @@
     Name (\CTYP, 0x00)
     Name (\L01C, 0x00)
     Name (\INSX, 0x00)
+    External (CFGD)
     Method (\_PIC, 1, NotSerialized)
     {
         Store (Arg0, GPIC)
============================



-------------------------------------------------------
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click

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

* Re: Re: Whait is CFGD for?
       [not found]   ` <loom.20050514T041524-961-eS7Uydv5nfjZ+VzJOa5vwg@public.gmane.org>
@ 2005-05-15 22:20     ` DJAX
  2005-05-16  0:46       ` What " Manuel J.Galan
  0 siblings, 1 reply; 4+ messages in thread
From: DJAX @ 2005-05-15 22:20 UTC (permalink / raw)
  To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

Manuel J.Galan a écrit :

>DJAX <djax@...> writes:
>
>  
>
>>Hello,
>>I got an Acer Aspire 1694WLMi with bios 3c25.
>>I try to fix the DSDT, but  I don't how to correct the last errors.
>>The compiler tell me about an object CFGD that doesn't exist, but I
>>don't know how and where to declare it and with  which value to
>>initialise it.
>>
>>Can you help me?
>>
>>Thank you
>>Didier
>>
>>    
>>
>
>Try this diff:
>============================
>--- dsdt.20050509.custom.dsl.orig       2005-05-14 03:12:47.000000000 +0100
>+++ dsdt.20050509.custom.dsl    2005-05-14 03:13:20.000000000 +0100
>@@ -209,6 +209,7 @@
>     Name (\CTYP, 0x00)
>     Name (\L01C, 0x00)
>     Name (\INSX, 0x00)
>+    External (CFGD)
>     Method (\_PIC, 1, NotSerialized)
>     {
>         Store (Arg0, GPIC)
>============================
>  
>

Thank you. It compiles and generates an DSDT.aml to put in my initrd.img .
Now at boot, I see this error :
--------------------------8<-------------------------
ACPI: Processor [CPU0] (supports 8 throttling states)
acpi_processor-0484 [07] acpi_processor_get_inf: Error getting cpuindex
for acpi
id 0x1
ACPI: Thermal Zone [THRM] (41 C)
-------------------------->8-------------------------
/Is it an error in my DSDT or somewhere else?

Best regards,
Didier
/


-------------------------------------------------------
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click

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

* Re: What is CFGD for?
  2005-05-15 22:20     ` DJAX
@ 2005-05-16  0:46       ` Manuel J.Galan
  0 siblings, 0 replies; 4+ messages in thread
From: Manuel J.Galan @ 2005-05-16  0:46 UTC (permalink / raw)
  To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

DJAX <djax@...> writes:

> 
> --------------------------8<-------------------------
> ACPI: Processor [CPU0] (supports 8 throttling states)
> acpi_processor-0484 [07] acpi_processor_get_inf: Error getting cpuindex
> for acpi
> id 0x1
> ACPI: Thermal Zone [THRM] (41 C)
> -------------------------->8-------------------------

Hello,

Mine is a Travelmate 8104WLMi and I see this on booting.
----------------------------------------------------
ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3] C4[C3])
ACPI: Processor [CPU0] (supports 8 throttling states)
ACPI: Thermal Zone [THRM] (54 C)
----------------------------------------------------

I am using kernel 2.6.11-1.1312_FC3 from
http://people.redhat.com/davej/kernels/Fedora/FC4/SRPMS.kernel/
compiled for FC3 and also including the two patches that are needed to include
DSDT.aml into the initrd (urls are broken in two lines...)

http://gaugusch.at/acpi-dsdt-initrd-patches/
acpi-dsdt-initrd-patch-v0.7d-2.6.9.patch

http://gaugusch.at/acpi-dsdt-initrd-patches/
acpi-dsdt-initramfs-fix-2.6.10-cleanup.patch

Following the instructions in the page 

http://gaugusch.at/kernel.shtml

to create the initrd.

Your error seems to me that is due to the acpi implementation of the 
kernel that you are using...

You can get and compare the dsl that I am using from

http://acpi.sourceforge.net/dsdt/tables/ACER/
Travelmate_8100/ACER-Travelmate_8100-3C22-custom.asl.gz

The only thing that I cannot make work is the O2micro memorycard reader :-(

Rgds.



-------------------------------------------------------
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click

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

end of thread, other threads:[~2005-05-16  0:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-11 13:53 Whait is CFGD for? DJAX
2005-05-14  2:17 ` Manuel J.Galan
     [not found]   ` <loom.20050514T041524-961-eS7Uydv5nfjZ+VzJOa5vwg@public.gmane.org>
2005-05-15 22:20     ` DJAX
2005-05-16  0:46       ` What " Manuel J.Galan

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