[coreboot-gerrit] Change in coreboot[master]: src/mainboard: Serialize methods with named objects inside

Martin Roth (Code Review) gerrit at coreboot.org
Tue May 8 03:45:53 CEST 2018


Martin Roth has uploaded this change for review. ( https://review.coreboot.org/26151


Change subject: src/mainboard: Serialize methods with named objects inside
......................................................................

src/mainboard: Serialize methods with named objects inside

Change-Id: I90e1d8b9f8e37bec8fc2796637b4548ea17e076b
Signed-off-by: Martin Roth <martinroth at google.com>
---
M src/mainboard/amd/mahogany/acpi/ide.asl
M src/mainboard/getac/p470/acpi/battery.asl
M src/mainboard/getac/p470/acpi/ec.asl
M src/mainboard/getac/p470/acpi/superio.asl
M src/mainboard/google/cyan/acpi/mainboard.asl
M src/mainboard/intel/strago/acpi/mainboard.asl
6 files changed, 14 insertions(+), 14 deletions(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/51/26151/1

diff --git a/src/mainboard/amd/mahogany/acpi/ide.asl b/src/mainboard/amd/mahogany/acpi/ide.asl
index 5c155cf..694ab23 100644
--- a/src/mainboard/amd/mahogany/acpi/ide.asl
+++ b/src/mainboard/amd/mahogany/acpi/ide.asl
@@ -73,7 +73,7 @@
 Device(PRID)
 {
 	Name (_ADR, Zero)
-	Method(_GTM, 0)
+	Method(_GTM, 0, Serialized)
 	{
 		NAME(OTBF, Buffer(20) { /* out buffer */
 			0xFF, 0xFF, 0xFF, 0xFF,
@@ -118,7 +118,7 @@
 		Return(OTBF) /* out buffer */
 	}				/* End Method(_GTM) */
 
-	Method(_STM, 3, NotSerialized)
+	Method(_STM, 3, Serialized)
 	{
 		NAME(INBF, Buffer(20) { /* in buffer */
 			0xFF, 0xFF, 0xFF, 0xFF,
@@ -169,7 +169,7 @@
 	Device(MST)
 	{
 		Name(_ADR, 0)
-		Method(_GTF) {
+		Method(_GTF, 0, Serialized) {
 			Name(CMBF, Buffer(21) {
 				0x03, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF,
 				0x03, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF,
@@ -205,7 +205,7 @@
 	Device(SLAV)
 	{
 		Name(_ADR, 1)
-		Method(_GTF) {
+		Method(_GTF, 0, Serialized) {
 			Name(CMBF, Buffer(21) {
 				0x03, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF,
 				0x03, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF,
diff --git a/src/mainboard/getac/p470/acpi/battery.asl b/src/mainboard/getac/p470/acpi/battery.asl
index 48f1eca..592bce0 100644
--- a/src/mainboard/getac/p470/acpi/battery.asl
+++ b/src/mainboard/getac/p470/acpi/battery.asl
@@ -40,7 +40,7 @@
 		}
 
 		/* Battery Info */
-		Method(_BIF, 0)
+		Method(_BIF, 0, Serialized)
 		{
 			Name(PBIF, Package() {
 				0x01,
@@ -145,7 +145,7 @@
 		}
 
 		/* Battery Info */
-		Method(_BIF, 0)
+		Method(_BIF, 0, Serialized)
 		{
 			Name(PBIF, Package() {
 				0x01,
diff --git a/src/mainboard/getac/p470/acpi/ec.asl b/src/mainboard/getac/p470/acpi/ec.asl
index 91846f1..7420d4a 100644
--- a/src/mainboard/getac/p470/acpi/ec.asl
+++ b/src/mainboard/getac/p470/acpi/ec.asl
@@ -86,7 +86,7 @@
 		ODDS,	  1
 	}
 
-	Method (_CRS, 0)
+	Method (_CRS, 0, Serialized)
 	{
 		Name (ECMD, ResourceTemplate()
 		{
diff --git a/src/mainboard/getac/p470/acpi/superio.asl b/src/mainboard/getac/p470/acpi/superio.asl
index e9b5f0c..9bf07ce 100644
--- a/src/mainboard/getac/p470/acpi/superio.asl
+++ b/src/mainboard/getac/p470/acpi/superio.asl
@@ -106,7 +106,7 @@
 		})
 
 		/* Current Resource Settings */
-		Method(_CRS, 0)
+		Method(_CRS, 0, Serialized)
 		{
 			Name(NONE, ResourceTemplate() {
 				IO(Decode16, 0x000, 0x000, 0x0, 0x1)
@@ -256,7 +256,7 @@
 		})
 
 		/* Current Resource Settings */
-		Method(_CRS, 0)
+		Method(_CRS, 0, Serialized)
 		{
 			Name(NONE, ResourceTemplate() {
 				IO(Decode16, 0x000, 0x000, 0x0, 0x1)
@@ -405,7 +405,7 @@
 		})
 
 		/* Current Resource Settings */
-		Method(_CRS, 0)
+		Method(_CRS, 0, Serialized)
 		{
 			Name(NONE, ResourceTemplate() {
 				IO(Decode16, 0x000, 0x000, 0x0, 0x1)
@@ -552,7 +552,7 @@
 		})
 
 		/* Current Resource Settings */
-		Method(_CRS, 0)
+		Method(_CRS, 0, Serialized)
 		{
 			Name(NONE, ResourceTemplate() {
 				IO(Decode16, 0x000, 0x000, 0x0, 0x1)
diff --git a/src/mainboard/google/cyan/acpi/mainboard.asl b/src/mainboard/google/cyan/acpi/mainboard.asl
index 3228a31..1859fa8 100644
--- a/src/mainboard/google/cyan/acpi/mainboard.asl
+++ b/src/mainboard/google/cyan/acpi/mainboard.asl
@@ -28,7 +28,7 @@
 
 Scope (\_SB.GPNC)
 {
-	Method (_AEI, 0, NotSerialized)  // _AEI: ACPI Event Interrupts
+	Method (_AEI, 0, Serialized)  // _AEI: ACPI Event Interrupts
 	{
 		Name (RBUF, ResourceTemplate ()
 		{
diff --git a/src/mainboard/intel/strago/acpi/mainboard.asl b/src/mainboard/intel/strago/acpi/mainboard.asl
index eaf9e85..68ac133 100644
--- a/src/mainboard/intel/strago/acpi/mainboard.asl
+++ b/src/mainboard/intel/strago/acpi/mainboard.asl
@@ -35,7 +35,7 @@
 		Name (_UID, 4)
 		Name (ISTP, 0) /* TouchScreen */
 
-		Method(_CRS, 0x0, NotSerialized)
+		Method(_CRS, 0x0, Serialized)
 		{
 			Name (BUF0, ResourceTemplate ()
 			{
@@ -195,7 +195,7 @@
 
 Scope (\_SB.GPNC)
 {
-	Method (_AEI, 0, NotSerialized)  // _AEI: ACPI Event Interrupts
+	Method (_AEI, 0, Serialized)  // _AEI: ACPI Event Interrupts
 	{
 		Name (RBUF, ResourceTemplate ()
 		{

-- 
To view, visit https://review.coreboot.org/26151
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I90e1d8b9f8e37bec8fc2796637b4548ea17e076b
Gerrit-Change-Number: 26151
Gerrit-PatchSet: 1
Gerrit-Owner: Martin Roth <martinroth at google.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20180508/eac1ea97/attachment-0001.html>


More information about the coreboot-gerrit mailing list