* ACPI-20030228 and custom dsdt
@ 2003-03-04 3:10 Greg Oliver
[not found] ` <20030303211020.7e008a42.greg-OpKIWVIkplU@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Greg Oliver @ 2003-03-04 3:10 UTC (permalink / raw)
To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
What is the secret for incorporating this into the 2.4.21-pre4 kernel
sources? All patches apply cleanly, but all available methods to use my
own DSDT fail compilation.
I have tried the diff for osl.c from the wikiwiki site as well as 2 or 3
other recommendations, to no avail. Is there somewhere simple I can
just put the .hex file?
Thanks,
Greg Oliver
-------------------------------------------------------
This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger
for complex code. Debugging C/C++ programs can leave you feeling lost and
disoriented. TotalView can help you find your way. Available on major UNIX
and Linux platforms. Try it free. www.etnus.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: ACPI-20030228 and custom dsdt
[not found] ` <20030303211020.7e008a42.greg-OpKIWVIkplU@public.gmane.org>
@ 2003-03-04 3:35 ` Darren Benham
[not found] ` <33027.192.168.10.204.1046748953.squirrel-FG1iuTdj8bisTnJN9+BGXg@public.gmane.org>
2003-03-04 3:37 ` Nigel Cunningham
1 sibling, 1 reply; 4+ messages in thread
From: Darren Benham @ 2003-03-04 3:35 UTC (permalink / raw)
To: greg-OpKIWVIkplU; +Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
No... You apply the diff to osl.c that expects an external variable called
AmlCode.
You then have to rename the dsdt.hex into something that will compile. I
think 2.4 make will pick up the file but with 2.5 you have to modify the
make file.
Alternatively, you can add #include "dsdt.hex" to the osl.c file...
Greg Oliver said:
> What is the secret for incorporating this into the 2.4.21-pre4 kernel
> sources? All patches apply cleanly, but all available methods to use
> my own DSDT fail compilation.
>
> I have tried the diff for osl.c from the wikiwiki site as well as 2 or
> 3 other recommendations, to no avail. Is there somewhere simple I can
> just put the .hex file?
>
> Thanks,
>
> Greg Oliver
>
>
> -------------------------------------------------------
> This SF.net email is sponsored by: Etnus, makers of TotalView, The
> debugger for complex code. Debugging C/C++ programs can leave you
> feeling lost and disoriented. TotalView can help you find your way.
> Available on major UNIX and Linux platforms. Try it free.
> www.etnus.com
> _______________________________________________
> Acpi-devel mailing list
> Acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
> https://lists.sourceforge.net/lists/listinfo/acpi-devel
--
Darren
-------------------------------------------------------
This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger
for complex code. Debugging C/C++ programs can leave you feeling lost and
disoriented. TotalView can help you find your way. Available on major UNIX
and Linux platforms. Try it free. www.etnus.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: ACPI-20030228 and custom dsdt
[not found] ` <20030303211020.7e008a42.greg-OpKIWVIkplU@public.gmane.org>
2003-03-04 3:35 ` Darren Benham
@ 2003-03-04 3:37 ` Nigel Cunningham
1 sibling, 0 replies; 4+ messages in thread
From: Nigel Cunningham @ 2003-03-04 3:37 UTC (permalink / raw)
To: Greg Oliver; +Cc: ACPI List
On Tue, 2003-03-04 at 16:10, Greg Oliver wrote:
> What is the secret for incorporating this into the 2.4.21-pre4 kernel
> sources? All patches apply cleanly, but all available methods to use my
> own DSDT fail compilation.
This still works for me.
Regards,
Nigel
diff -ruN linux-2.4.18/drivers/acpi/dsdt_table.h linux-2.4.18-use-my-dsdt/drivers/acpi/dsdt_table.h
--- linux-2.4.18/drivers/acpi/dsdt_table.h Thu Jan 1 12:00:00 1970
+++ linux-2.4.18-use-my-dsdt/drivers/acpi/dsdt_table.h Thu Aug 29 22:15:49 2002
@@ -0,0 +1,2526 @@
+/*
+ *
+ * Intel ACPI Component Architecture ASL Compiler X2046 [Jun 11 2002]
+ * Includes ACPI CA Subsystem version 20020611
+ * Copyright (C) 2000 - 2002 Intel Corporation
+ * Supports ACPI Specification Revision 2.0a
+ *
+ * Compilation of "nigel.v3.asl" - Thu Jun 27 07:37:12 2002
+ *
+ * C source code output
+ *
+ */
+unsigned char AmlCode[] =
+{
+ 0x44,0x53,0x44,0x54,0x73,0x4E,0x00,0x00, /* 00000000 "DSDTsN.." */
[deletia]
+ 0x53,0x08,0x5F,0x41,0x44,0x52,0x0C,0x03, /* 00004E68 "S._ADR.." */
+ 0x00,0x1F,0x00,
+};
diff -ruN linux-2.4.18/drivers/acpi/dsdt.h linux-2.4.18-use-my-dsdt/drivers/acpi/dsdt.h
--- linux-2.4.18/drivers/acpi/osl.c-dist Mon Aug 12 11:40:31 2002
+++ linux-2.4.18/drivers/acpi/osl.c Tue Aug 13 12:02:23 2002
@@ -25,6 +25,7 @@
*
*/
+#include "dsdt_table.h"
#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/slab.h>
@@ -208,7 +209,8 @@
if (!existing_table || !new_table)
return AE_BAD_PARAMETER;
- *new_table = NULL;
+ *new_table = (strncmp(existing_table->signature, DSDT_SIG, 4)) ? NULL \
+ : (struct acpi_table_header *) AmlCode;
return AE_OK;
}
-------------------------------------------------------
This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger
for complex code. Debugging C/C++ programs can leave you feeling lost and
disoriented. TotalView can help you find your way. Available on major UNIX
and Linux platforms. Try it free. www.etnus.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: ACPI-20030228 and custom dsdt
[not found] ` <33027.192.168.10.204.1046748953.squirrel-FG1iuTdj8bisTnJN9+BGXg@public.gmane.org>
@ 2003-03-04 12:07 ` Ducrot Bruno
0 siblings, 0 replies; 4+ messages in thread
From: Ducrot Bruno @ 2003-03-04 12:07 UTC (permalink / raw)
To: Darren Benham
Cc: greg-OpKIWVIkplU, acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
On Mon, Mar 03, 2003 at 07:35:53PM -0800, Darren Benham wrote:
> No... You apply the diff to osl.c that expects an external variable called
> AmlCode.
> You then have to rename the dsdt.hex into something that will compile. I
> think 2.4 make will pick up the file but with 2.5 you have to modify the
> make file.
> Alternatively, you can add #include "dsdt.hex" to the osl.c file...
http://www.poupinou.org/apci/over.html
--
Ducrot Bruno
-- Which is worse: ignorance or apathy?
-- Don't know. Don't care.
-------------------------------------------------------
This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger
for complex code. Debugging C/C++ programs can leave you feeling lost and
disoriented. TotalView can help you find your way. Available on major UNIX
and Linux platforms. Try it free. www.etnus.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2003-03-04 12:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-03-04 3:10 ACPI-20030228 and custom dsdt Greg Oliver
[not found] ` <20030303211020.7e008a42.greg-OpKIWVIkplU@public.gmane.org>
2003-03-04 3:35 ` Darren Benham
[not found] ` <33027.192.168.10.204.1046748953.squirrel-FG1iuTdj8bisTnJN9+BGXg@public.gmane.org>
2003-03-04 12:07 ` Ducrot Bruno
2003-03-04 3:37 ` Nigel Cunningham
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox