[coreboot-gerrit] Patch set updated for coreboot: emulation/qemu: Serialize IQCR method

Paul Menzel (paulepanter@users.sourceforge.net) gerrit at coreboot.org
Tue Aug 11 23:01:21 CEST 2015


Paul Menzel (paulepanter at users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11162

-gerrit

commit 0f4505b1db32a0fd04d442618d3d262fb1ed2b63
Author: Paul Menzel <paulepanter at users.sourceforge.net>
Date:   Tue Aug 11 22:01:00 2015 +0200

    emulation/qemu: Serialize IQCR method
    
    Fix the remark below for the mainboards qemu-i440x and qemu-q35.
    
    	Intel ACPI Component Architecture
    	ASL+ Optimizing Compiler version 20150717-32
    	Copyright (c) 2000 - 2015 Intel Corporation
    
    	dsdt.aml    336:         Method(IQCR, 1, NotSerialized) {
    	Remark   2120 -                   ^ Control Method should be made Serialized (due to creation of named objects within)
    
    	ASL Input:     dsdt.aml - 399 lines, 16756 bytes, 245 keywords
    	AML Output:    dsdt.aml - 4000 bytes, 146 named objects, 99 executable opcodes
    
    	Compilation complete. 0 Errors, 0 Warnings, 1 Remarks, 233 Optimizations
    
    Change-Id: Ibe48f872768ab8295d6fed3359d9eef04b736a05
    Signed-off-by: Paul Menzel <paulepanter at users.sourceforge.net>
---
 src/mainboard/emulation/qemu-i440fx/dsdt.asl | 2 +-
 src/mainboard/emulation/qemu-q35/dsdt.asl    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mainboard/emulation/qemu-i440fx/dsdt.asl b/src/mainboard/emulation/qemu-i440fx/dsdt.asl
index 569d0d5..8594f38 100644
--- a/src/mainboard/emulation/qemu-i440fx/dsdt.asl
+++ b/src/mainboard/emulation/qemu-i440fx/dsdt.asl
@@ -233,7 +233,7 @@ DefinitionBlock (
             }
             Return (0x0B)
         }
-        Method(IQCR, 1, NotSerialized) {
+        Method(IQCR, 1, Serialized) {
             // _CRS method - get current settings
             Name(PRR0, ResourceTemplate() {
                 Interrupt(, Level, ActiveHigh, Shared) { 0 }
diff --git a/src/mainboard/emulation/qemu-q35/dsdt.asl b/src/mainboard/emulation/qemu-q35/dsdt.asl
index a160cbc..9cee022 100644
--- a/src/mainboard/emulation/qemu-q35/dsdt.asl
+++ b/src/mainboard/emulation/qemu-q35/dsdt.asl
@@ -331,7 +331,7 @@ DefinitionBlock (
             }
             Return (0x0B)
         }
-        Method(IQCR, 1, NotSerialized) {
+        Method(IQCR, 1, Serialized) {
             // _CRS method - get current settings
             Name(PRR0, ResourceTemplate() {
                 Interrupt(, Level, ActiveHigh, Shared) { 0 }



More information about the coreboot-gerrit mailing list