From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MWsjh-0002ES-Pf for qemu-devel@nongnu.org; Fri, 31 Jul 2009 10:05:29 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MWsjc-0002CC-Ee for qemu-devel@nongnu.org; Fri, 31 Jul 2009 10:05:29 -0400 Received: from [199.232.76.173] (port=43505 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MWsjc-0002Bp-5l for qemu-devel@nongnu.org; Fri, 31 Jul 2009 10:05:24 -0400 Received: from e3.ny.us.ibm.com ([32.97.182.143]:33403) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MWsjb-0006tX-Je for qemu-devel@nongnu.org; Fri, 31 Jul 2009 10:05:23 -0400 Received: from d01relay02.pok.ibm.com (d01relay02.pok.ibm.com [9.56.227.234]) by e3.ny.us.ibm.com (8.14.3/8.13.1) with ESMTP id n6VDxFck025915 for ; Fri, 31 Jul 2009 09:59:15 -0400 Received: from d01av02.pok.ibm.com (d01av02.pok.ibm.com [9.56.224.216]) by d01relay02.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id n6VE5IHv251774 for ; Fri, 31 Jul 2009 10:05:18 -0400 Received: from d01av02.pok.ibm.com (loopback [127.0.0.1]) by d01av02.pok.ibm.com (8.12.11.20060308/8.13.3) with ESMTP id n6VE2aZ3026948 for ; Fri, 31 Jul 2009 10:02:36 -0400 From: Beth Kon Date: Fri, 31 Jul 2009 10:06:02 -0400 Message-Id: <1249049162-685-2-git-send-email-eak@us.ibm.com> In-Reply-To: <1249049162-685-1-git-send-email-eak@us.ibm.com> References: <1249049162-685-1-git-send-email-eak@us.ibm.com> Subject: [Qemu-devel] [PATCH 2/2] Make HPET Legacy Only - BIOS change List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Beth Kon Change the number of advertised HPET timers from 3 to 2. diff --git a/bios/rombios32.c b/bios/rombios32.c index 3d15283..bb7c339 100644 --- a/bios/rombios32.c +++ b/bios/rombios32.c @@ -1904,7 +1904,7 @@ void acpi_bios_init(void) /* Note timer_block_id value must be kept in sync with value advertised by * emulated hpet */ - hpet->timer_block_id = cpu_to_le32(0x8086a201); + hpet->timer_block_id = cpu_to_le32(0x8086a101); hpet->addr.address = cpu_to_le32(ACPI_HPET_ADDRESS); acpi_build_table_header((struct acpi_table_header *)hpet, "HPET", sizeof(*hpet), 1);