From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Valette Subject: [PATCH] Linux 2.6-pre-mm2 Fix crash on boot on ASUS L3800C if enabing APIC => add this machine to DMI black list Date: Sun, 20 Jul 2003 21:48:24 +0200 Sender: linux-kernel-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org Message-ID: <3F1AF208.3030409@free.fr> References: <3F1A969C.6060606@free.fr> Reply-To: eric.valette-GANU6spQydw@public.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------080406060507070603090707" Return-path: In-Reply-To: <3F1A969C.6060606-GANU6spQydw@public.gmane.org> To: "Grover, Andrew" , sziwan-DETuoxkZsSqrDJvtcaxF/A@public.gmane.org, akpm-3NddpPZAyC0@public.gmane.org, mikpe-gJWeRRR3xd2zQB+pC5nmwQ@public.gmane.org Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org List-Id: linux-acpi@vger.kernel.org This is a multi-part message in MIME format. --------------080406060507070603090707 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit The following patch integrated in 2.5.74, really enables the APIC even if BIOS disabled it. Unfortunately, enabling APIC really does not seem to work on this ASUS laptop and ACPI (which is mandatory) crash the kernel in ACPI code at boot time while "Executing all Devices _STA and_INIT methods" Unless someones find a bug in ACPI code related to APIC management, It is safer to add this machine in the DMI black list (along with DELL, IBM, ...). So, as suggested by the author of the problematic change, I added and entry in the DMI black list. But my guess is that most laptop will soon be present in this list.... -- eric --------------080406060507070603090707 Content-Type: text/plain; name="dmi_scan_black_list" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="dmi_scan_black_list" --- linux-2.6.0-test1/arch/i386/kernel/dmi_scan.c.orig 2003-07-20 17:09:10.000000000 +0200 +++ linux-2.6.0-test1/arch/i386/kernel/dmi_scan.c 2003-07-20 21:25:02.000000000 +0200 @@ -706,6 +706,12 @@ NO_MATCH, NO_MATCH } }, + { local_apic_kills_bios, "ASUS L3C", { + MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), + MATCH(DMI_BOARD_NAME, "P4_L3C"), + NO_MATCH, NO_MATCH + } }, + /* Problem Intel 440GX bioses */ { broken_pirq, "SABR1 Bios", { /* Bad $PIR */ --------------080406060507070603090707--