From: Dean Townsley <dean-5NrKhQnM7FRWk0Htik3J/w@public.gmane.org>
To: Heiko Gerstung <hg-Zwoj8m1Se4ooLuGpnUaJU7NAH6kLmebB@public.gmane.org>
Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
Subject: Re: Something seems to be wrong with my RSDP
Date: Sun, 08 May 2005 17:59:14 -0500 [thread overview]
Message-ID: <E1DUujy-0003sP-Om@variable.uchicago.edu> (raw)
In-Reply-To: 427CB470.4060700@heiko-gerstung.de
Hi Heiko,
I'm glad you've worked on this. I've never had a chance to fix up the
dsdt table. I was able to get the kernel to ignore the RSDP checksum
error with patch below.
I did this because the 2.4.20 + some old acpi patch that has been
working for years on the c100 always had this "Invalid checksum"
error, but worked anyway. Comparing the code, the old patch didn't
disable acpi if the RSDP table failed to parse properly, it just
skipped some stuff and went on. I don't know if this is right (or a
really bad idea for that matter) but at least it gets it to load and
use the DSDT.
Could you send me the DSDT you've fixed so I could try it out too :)
Thanks,
-Dean
diff -ur linux-2.6.11-orig/arch/i386/kernel/acpi/boot.c linux-2.6.11/arch/i386/kernel/acpi/boot.c
--- linux-2.6.11-orig/arch/i386/kernel/acpi/boot.c Wed Mar 2 01:38:25 2005
+++ linux-2.6.11/arch/i386/kernel/acpi/boot.c Sun May 8 17:01:44 2005
@@ -849,7 +849,7 @@
*/
error = acpi_table_init();
if (error) {
- disable_acpi();
+ /* disable_acpi(); */
return error;
}
diff -ur linux-2.6.11-orig/arch/i386/kernel/setup.c linux-2.6.11/arch/i386/kernel/setup.c
--- linux-2.6.11-orig/arch/i386/kernel/setup.c Wed Mar 2 01:38:08 2005
+++ linux-2.6.11/arch/i386/kernel/setup.c Sun May 8 17:04:32 2005
@@ -1461,8 +1461,8 @@
/*
* Parse the ACPI tables for possible boot-time SMP configuration.
*/
- acpi_boot_table_init();
- acpi_boot_init();
+ if (acpi_boot_table_init()==0)
+ acpi_boot_init();
#ifdef CONFIG_X86_LOCAL_APIC
if (smp_found_config)
-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
next prev parent reply other threads:[~2005-05-08 22:59 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-05-07 12:28 Something seems to be wrong with my RSDP Heiko Gerstung
2005-05-08 22:59 ` Dean Townsley [this message]
[not found] ` <E1DUujy-0003sP-Om-hC4i9AumtbtiuyyxrZMbN/7wmygKZyH0@public.gmane.org>
2005-05-09 11:34 ` Heiko Gerstung
[not found] ` <427F4AC7.4090109-Zwoj8m1Se4ooLuGpnUaJU7NAH6kLmebB@public.gmane.org>
2005-05-09 17:16 ` Dean Townsley
[not found] ` <E1DVBrz-0004I1-8U-hC4i9AumtbtiuyyxrZMbN/7wmygKZyH0@public.gmane.org>
2005-05-09 19:00 ` Dean Townsley
-- strict thread matches above, loose matches on Subject: below --
2005-05-09 20:18 Moore, Robert
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1DUujy-0003sP-Om@variable.uchicago.edu \
--to=dean-5nrkhqnm7frwk0htik3j/w@public.gmane.org \
--cc=acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
--cc=hg-Zwoj8m1Se4ooLuGpnUaJU7NAH6kLmebB@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox