diff options
author | Robert Moore <Robert.Moore@intel.com> | 2013-08-02 13:07:39 -0700 |
---|---|---|
committer | Robert Moore <Robert.Moore@intel.com> | 2013-08-02 13:07:39 -0700 |
commit | 6ac67e15da3bcb33deacd325d060d056870bfe46 (patch) | |
tree | c33eceea4cb32369dcdf7b81fd45aa5dfaa923b8 /tests/aslts/src/runtime/collections/functional/region | |
parent | 64e52a3577f287eeafee98663deff1163cccdd46 (diff) | |
download | acpica-6ac67e15da3bcb33deacd325d060d056870bfe46.tar.gz |
ASLTS: Serialize all methods that create named objects.
This change greatly reduces the remark that iASL emits when a
non-serialized control method creates named objects. David Box.
Diffstat (limited to 'tests/aslts/src/runtime/collections/functional/region')
5 files changed, 94 insertions, 94 deletions
diff --git a/tests/aslts/src/runtime/collections/functional/region/bankfield.asl b/tests/aslts/src/runtime/collections/functional/region/bankfield.asl index 548c275fd..83f8993cc 100644 --- a/tests/aslts/src/runtime/collections/functional/region/bankfield.asl +++ b/tests/aslts/src/runtime/collections/functional/region/bankfield.asl @@ -76,7 +76,7 @@ Method(m7bf, 4) } // Simple BankField test -Method(m7c0, 1) +Method(m7c0, 1, Serialized) { Field (OPRi, ByteAcc, NoLock, Preserve) { bnk0, 8 @@ -10827,7 +10827,7 @@ Method(m7d4, 6, Serialized) // Splitting of BankFields // m7c6(CallChain) -Method(m7c6, 1) +Method(m7c6, 1, Serialized) { OperationRegion(OPR0, SystemIO, 1000, 0x101) @@ -10850,7 +10850,7 @@ Method(m7c6, 1) // Create BankFields that spans the same bits // and check possible inconsistence, 0-bit offset. // m7e0(CallChain, OpRegion, BankNum) -Method(m7e0, 3) +Method(m7e0, 3, Serialized) { OperationRegion(OPRm, 0xff, 0x100, 0x08) OperationRegion(OPRn, SystemIO, 0x10, 0x02) @@ -10910,7 +10910,7 @@ Method(m7e0, 3) // Create BankFields that spans the same bits // and check possible inconsistence, 1-bit offset. // m7e1(CallChain, OpRegion, BankNum) -Method(m7e1, 3) +Method(m7e1, 3, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) OperationRegion(OPRn, SystemIO, 0x10, 0x02) @@ -10970,7 +10970,7 @@ Method(m7e1, 3) // Create BankFields that spans the same bits // and check possible inconsistence, 2-bit offset. // m7e2(CallChain, OpRegion, BankNum) -Method(m7e2, 3) +Method(m7e2, 3, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) OperationRegion(OPRn, SystemIO, 0x10, 0x02) @@ -11030,7 +11030,7 @@ Method(m7e2, 3) // Create BankFields that spans the same bits // and check possible inconsistence, 3-bit offset. // m7e3(CallChain, OpRegion, BankNum) -Method(m7e3, 3) +Method(m7e3, 3, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) OperationRegion(OPRn, SystemIO, 0x10, 0x02) @@ -11090,7 +11090,7 @@ Method(m7e3, 3) // Create BankFields that spans the same bits // and check possible inconsistence, 4-bit offset. // m7e4(CallChain, OpRegion, BankNum) -Method(m7e4, 3) +Method(m7e4, 3, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) OperationRegion(OPRn, SystemIO, 0x10, 0x02) @@ -11150,7 +11150,7 @@ Method(m7e4, 3) // Create BankFields that spans the same bits // and check possible inconsistence, 5-bit offset. // m7e5(CallChain, OpRegion, BankNum) -Method(m7e5, 3) +Method(m7e5, 3, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) OperationRegion(OPRn, SystemIO, 0x10, 0x02) @@ -11210,7 +11210,7 @@ Method(m7e5, 3) // Create BankFields that spans the same bits // and check possible inconsistence, 6-bit offset. // m7e6(CallChain, OpRegion, BankNum) -Method(m7e6, 3) +Method(m7e6, 3, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) OperationRegion(OPRn, SystemIO, 0x10, 0x02) @@ -11270,7 +11270,7 @@ Method(m7e6, 3) // Create BankFields that spans the same bits // and check possible inconsistence, 7-bit offset. // m7e7(CallChain, OpRegion, BankNum) -Method(m7e7, 3) +Method(m7e7, 3, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) OperationRegion(OPRn, SystemIO, 0x10, 0x02) @@ -11330,7 +11330,7 @@ Method(m7e7, 3) // Create BankFields that spans the same bits // and check possible inconsistence, 8-bit offset. // m7e8(CallChain, OpRegion, BankNum) -Method(m7e8, 3) +Method(m7e8, 3, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) OperationRegion(OPRn, SystemIO, 0x10, 0x02) @@ -11390,7 +11390,7 @@ Method(m7e8, 3) // Create BankFields that spans the same bits // and check possible inconsistence, 2046-bit offset. // m7e9(CallChain, OpRegion, BankNum) -Method(m7e9, 3) +Method(m7e9, 3, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x101) OperationRegion(OPRn, SystemIO, 0x10, 0x02) @@ -11448,7 +11448,7 @@ Method(m7e9, 3) } // Check non-constant Bank value -Method(m7c7, 1) +Method(m7c7, 1, Serialized) { Field (OPRi, ByteAcc, NoLock, Preserve) { bnk0, 8 @@ -11479,7 +11479,7 @@ Method(m7c7, 1) } // ArgX - Method(m000, 2) + Method(m000, 2, Serialized) { BankField (OPRj, bnk0, arg1, ByteAcc, NoLock, Preserve) { Offset(8), @@ -11490,7 +11490,7 @@ Method(m7c7, 1) } // Named - Method(m001, 1) + Method(m001, 1, Serialized) { BankField (OPRj, bnk0, BVAL, ByteAcc, NoLock, Preserve) { Offset(8), @@ -11501,7 +11501,7 @@ Method(m7c7, 1) } // LocalX - Method(m002, 1) + Method(m002, 1, Serialized) { Store(BVAL, Local0) @@ -11514,7 +11514,7 @@ Method(m7c7, 1) } // Expression - Method(m003, 1) + Method(m003, 1, Serialized) { Store(1, Local0) @@ -11535,7 +11535,7 @@ Method(m7c7, 1) } // Check non-Integer Bank value -Method(m7c8, 1) +Method(m7c8, 1, Serialized) { Field (OPRi, ByteAcc, NoLock, Preserve) { bnk0, 8 @@ -11563,7 +11563,7 @@ Method(m7c8, 1) Name(i000, 0x12345678) - Method(m000, 3) + Method(m000, 3, Serialized) { Store(1, Local0) @@ -11600,7 +11600,7 @@ Method(m7c8, 1) } // Run-method -Method(BFC0) +Method(BFC0,, Serialized) { Name(ts, "BFC0") diff --git a/tests/aslts/src/runtime/collections/functional/region/dtregions.asl b/tests/aslts/src/runtime/collections/functional/region/dtregions.asl index 503c537f2..3a7afff9c 100644 --- a/tests/aslts/src/runtime/collections/functional/region/dtregions.asl +++ b/tests/aslts/src/runtime/collections/functional/region/dtregions.asl @@ -78,7 +78,7 @@ Device(DTR0) { // Specific DataTable Regions availability notification Method // \DTR0._REG(RegionSpaceKeyword, Flag) OperationRegion(JUNK, SystemMemory, 0x2000, 0x100) - Method(_REG, 2) + Method(_REG, 2, Serialized) { Name(dbgf, 1) @@ -131,7 +131,7 @@ Method(m7f0, 1) // Dynamic DataTableRegions // m7f1(CallChain) // CallChain: String -Method(m7f1, 1) +Method(m7f1, 1, Serialized) { Name(NFLG, 2) // Number of turn on/off Flag values @@ -148,7 +148,7 @@ Method(m7f1, 1) // Specific DataTable Regions availability notification Method // \m7f1._REG(RegionSpaceKeyword, Flag) OperationRegion(JUNK, SystemMemory, 0x2000, 0x100) - Method(_REG, 2) + Method(_REG, 2, Serialized) { Name(dbgf, 1) @@ -209,7 +209,7 @@ Method(m7f1, 1) // DataTableRegion Lengths // m7f2(CallChain) // CallChain: String -Method(m7f2, 1) +Method(m7f2, 1, Serialized) { Concatenate(arg0, "-m7f2", arg0) @@ -233,13 +233,13 @@ Method(m7f2, 1) // Check non-constant DataTableRegion *String arguments // m7f3(CallChain) // CallChain: String -Method(m7f3, 1) +Method(m7f3, 1, Serialized) { Name(s000, "SSDT") Name(s001, "") Name(s002, "") - Method(m000, 1) { + Method(m000, 1, Serialized) { DataTableRegion (DR00, "SSDT", "", "") Field(DR00, AnyAcc, NoLock, Preserve) { @@ -254,7 +254,7 @@ Method(m7f3, 1) } // ArgX - Method(m001, 4) { + Method(m001, 4, Serialized) { DataTableRegion (DR00, arg1, arg2, arg3) Field(DR00, AnyAcc, NoLock, Preserve) { @@ -269,7 +269,7 @@ Method(m7f3, 1) } // Named - Method(m002, 1) { + Method(m002, 1, Serialized) { DataTableRegion (DR00, s000, s001, s002) Field(DR00, AnyAcc, NoLock, Preserve) { @@ -284,7 +284,7 @@ Method(m7f3, 1) } // LocalX - Method(m003, 1) { + Method(m003, 1, Serialized) { Store(s000, Local2) Store(s001, Local3) Store(s002, Local4) @@ -303,7 +303,7 @@ Method(m7f3, 1) } // Expression - Method(m004, 1) { + Method(m004, 1, Serialized) { Store("SS", Local2) Store("DT", Local3) @@ -334,7 +334,7 @@ Method(m7f3, 1) // CallChain: String Method(m7f4, 1) { - Method(m000, 3) { + Method(m000, 3, Serialized) { DataTableRegion (DR00, arg1, "", "") Field(DR00, AnyAcc, NoLock, Preserve) { @@ -360,7 +360,7 @@ Method(m7f4, 1) m000(arg0, "OEM1", 34) } -Method(DRC0) +Method(DRC0,, Serialized) { Name(ts, "DRC0") diff --git a/tests/aslts/src/runtime/collections/functional/region/indexfield.asl b/tests/aslts/src/runtime/collections/functional/region/indexfield.asl index fbbeea4ae..be04f1c41 100644 --- a/tests/aslts/src/runtime/collections/functional/region/indexfield.asl +++ b/tests/aslts/src/runtime/collections/functional/region/indexfield.asl @@ -71,7 +71,7 @@ Field(OPRk, ByteAcc, NoLock, Preserve) { fk28, 128, } -Method(m770, 1) +Method(m770, 1, Serialized) { Field(OPRk, ByteAcc, NoLock, Preserve) { idx0, 8, @@ -163,7 +163,7 @@ Method(m770, 1) } // Access to 1-bit IndexFields, ByteAcc -Method(m771, 1) +Method(m771, 1, Serialized) { Concatenate(arg0, "-m771", arg0) @@ -199,7 +199,7 @@ Method(m771, 1) } // Access to 1-bit IndexFields, WordAcc -Method(m772, 1) +Method(m772, 1, Serialized) { Concatenate(arg0, "-m772", arg0) @@ -227,7 +227,7 @@ Method(m772, 1) } // Access to 1-bit IndexFields, DWordAcc -Method(m773, 1) +Method(m773, 1, Serialized) { Concatenate(arg0, "-m773", arg0) @@ -269,7 +269,7 @@ Method(m773, 1) } // Access to 1-bit IndexFields, QWordAcc -Method(m774, 1) +Method(m774, 1, Serialized) { Concatenate(arg0, "-m774", arg0) @@ -373,7 +373,7 @@ Method(m77e, 7) // Splitting of IndexFields // m775(CallChain) -Method(m775, 1) +Method(m775, 1, Serialized) { OperationRegion(OPR0, SystemMemory, 1000, 0x08) @@ -396,7 +396,7 @@ Method(m775, 1) // Create IndexFields that spans the same bits // and check possible inconsistence, 0-bit offset. // m780(CallChain, OpRegion) -Method(m780, 2) +Method(m780, 2, Serialized) { OperationRegion(OPRm, 0xff, 0x100, 0x08) @@ -456,7 +456,7 @@ Method(m780, 2) // Create IndexFields that spans the same bits // and check possible inconsistence, 1-bit offset. // m781(CallChain, OpRegion) -Method(m781, 2) +Method(m781, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) @@ -516,7 +516,7 @@ Method(m781, 2) // Create IndexFields that spans the same bits // and check possible inconsistence, 2-bit offset. // m782(CallChain, OpRegion) -Method(m782, 2) +Method(m782, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) @@ -576,7 +576,7 @@ Method(m782, 2) // Create IndexFields that spans the same bits // and check possible inconsistence, 3-bit offset. // m783(CallChain, OpRegion) -Method(m783, 2) +Method(m783, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) @@ -636,7 +636,7 @@ Method(m783, 2) // Create IndexFields that spans the same bits // and check possible inconsistence, 4-bit offset. // m784(CallChain, OpRegion) -Method(m784, 2) +Method(m784, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) @@ -696,7 +696,7 @@ Method(m784, 2) // Create IndexFields that spans the same bits // and check possible inconsistence, 5-bit offset. // m785(CallChain, OpRegion) -Method(m785, 2) +Method(m785, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) @@ -756,7 +756,7 @@ Method(m785, 2) // Create IndexFields that spans the same bits // and check possible inconsistence, 6-bit offset. // m786(CallChain, OpRegion) -Method(m786, 2) +Method(m786, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) @@ -816,7 +816,7 @@ Method(m786, 2) // Create IndexFields that spans the same bits // and check possible inconsistence, 7-bit offset. // m787(CallChain, OpRegion) -Method(m787, 2) +Method(m787, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) @@ -876,7 +876,7 @@ Method(m787, 2) // Create IndexFields that spans the same bits // and check possible inconsistence, 8-bit offset. // m788(CallChain, OpRegion) -Method(m788, 2) +Method(m788, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) @@ -936,7 +936,7 @@ Method(m788, 2) // Create IndexFields that spans the same bits // and check possible inconsistence, 2046-bit offset. // m789(CallChain, OpRegion) -Method(m789, 2) +Method(m789, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x08) @@ -10381,7 +10381,7 @@ BreakPoint } // Run-method -Method(IFC0) +Method(IFC0,, Serialized) { Name(ts, "IFC0") diff --git a/tests/aslts/src/runtime/collections/functional/region/opregions.asl b/tests/aslts/src/runtime/collections/functional/region/opregions.asl index d79d8dbd1..69384d770 100644 --- a/tests/aslts/src/runtime/collections/functional/region/opregions.asl +++ b/tests/aslts/src/runtime/collections/functional/region/opregions.asl @@ -114,7 +114,7 @@ Name(VFLG, // Counters of the Valid Flags // EmbeddedControl | SMBus | SystemCMOS | PciBarTarget | // IPMI | GeneralPurposeIo | GenericSerialBus // Flag: 1/0 - turn on/off accessing operation regions of that Space -Method(_REG, 2) +Method(_REG, 2, Serialized) { Name(dbgf, 1) @@ -244,7 +244,7 @@ Device(DOR0) { // Specific Operation Regions availability notification Method // \DOR0._REG(RegionSpaceKeyword, Flag) - Method(_REG, 2) + Method(_REG, 2, Serialized) { Name(dbgf, 1) @@ -316,7 +316,7 @@ Device(DOR1) { // Specific Operation Regions availability notification Method // \DOR1._REG(RegionSpaceKeyword, Flag) OperationRegion(JUNK, SystemMemory, 0x2000, 0x100) - Method(_REG, 2) + Method(_REG, 2, Serialized) { Name(dbgf, 1) @@ -327,10 +327,10 @@ Device(DOR1) { Increment(IREG) } - Method(M000) { + Method(M000,, Serialized) { // Dynamic Operation Regions availability notification Method // \DOR1.M000._REG(RegionSpaceKeyword, Flag) - Method(_REG, 2) + Method(_REG, 2, Serialized) { Name(dbgf, 1) @@ -509,7 +509,7 @@ Method(m702, 1) // Check Overlapping of OpRegions // m703(CallChain) // CallChain: String -Method(m703, 1) +Method(m703, 1, Serialized) { Concatenate(arg0, "-m703", arg0) @@ -552,7 +552,7 @@ Method(m703, 1) // Create Region Field about Region Length in length // and check possible exception // m70c(CallChain, Task, Index) -Method(m70c, 3) +Method(m70c, 3, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x1000) @@ -666,7 +666,7 @@ Method(m70e, 5, Serialized) // Create Region Fields in two overlapping Regions // and check overlapping parts to be shared // m70f(CallChain, OpRegion0, OpRegion1, RangeNum, ErrNum) -Method(m70f, 5) +Method(m70f, 5, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x1000) OperationRegion(OPRn, 0xff, 0, 0x1000) @@ -713,7 +713,7 @@ Method(m70f, 5) // actually refer the different locations // m704(CallChain) // CallChain: String -Method(m704, 1) +Method(m704, 1, Serialized) { Method(CHCK, 4) { @@ -931,7 +931,7 @@ Method(m705, 1, Serialized) // Check non-Integer OpRegion arguments // m706(CallChain) // CallChain: String -Method(m706, 1) +Method(m706, 1, Serialized) { Name(off0, 0xfedcba987654321f) Name(offb, Buffer(8){0x1f, 0x32,, 0x54, 0x76, 0x98, 0xba, 0xdc, 0xfe}) @@ -965,7 +965,7 @@ Method(m706, 1) Name(i000, 0x12345678) - Method(m000, 4) { + Method(m000, 4, Serialized) { OperationRegion(OPR4, SystemMemory, arg1, arg2) Field(OPR4, AnyAcc, NoLock, Preserve) { @@ -1016,7 +1016,7 @@ Method(m706, 1) m000(arg0, offs, lens, 45) } -Method(ORC0) +Method(ORC0,, Serialized) { Name(ts, "ORC0") diff --git a/tests/aslts/src/runtime/collections/functional/region/regionfield.asl b/tests/aslts/src/runtime/collections/functional/region/regionfield.asl index 6bf1b8254..e591fc1fc 100644 --- a/tests/aslts/src/runtime/collections/functional/region/regionfield.asl +++ b/tests/aslts/src/runtime/collections/functional/region/regionfield.asl @@ -401,7 +401,7 @@ Method(m71f, 1) // Read/Write Quick (SMBQuick) // m751(CallChain) // CallChain: String -Method(m751, 1) +Method(m751, 1, Serialized) { Concatenate(arg0, "-m751", arg0) @@ -465,7 +465,7 @@ Method(m751, 1) // Read/Write Quick (SMBQuick) // m752(CallChain) // CallChain: String -Method(m752, 1) +Method(m752, 1, Serialized) { Concatenate(arg0, "-m752", arg0) @@ -528,7 +528,7 @@ Method(m752, 1) // Read/Write Byte (SMBByte) // m753(CallChain) // CallChain: String -Method(m753, 1) +Method(m753, 1, Serialized) { Concatenate(arg0, "-m753", arg0) @@ -593,7 +593,7 @@ Method(m753, 1) // Read/Write Word (SMBWord) // m754(CallChain) // CallChain: String -Method(m754, 1) +Method(m754, 1, Serialized) { Concatenate(arg0, "-m754", arg0) @@ -658,7 +658,7 @@ Method(m754, 1) // Read/Write Block (SMBBlock) // m755(CallChain) // CallChain: String -Method(m755, 1) +Method(m755, 1, Serialized) { Concatenate(arg0, "-m755", arg0) @@ -730,7 +730,7 @@ Method(m755, 1) // Word Process Call (SMBProcessCall) // m756(CallChain) // CallChain: String -Method(m756, 1) +Method(m756, 1, Serialized) { Concatenate(arg0, "-m756", arg0) @@ -782,7 +782,7 @@ Method(m756, 1) // Block Process Call (SMBBlockProcessCall) // m757(CallChain) // CallChain: String -Method(m757, 1) +Method(m757, 1, Serialized) { Concatenate(arg0, "-m757", arg0) @@ -890,7 +890,7 @@ Method(m740, 1) // Read/Write Quick (AttribQuick) // m758(CallChain) // CallChain: String -Method(m758, 1) +Method(m758, 1, Serialized) { Concatenate(arg0, "-m758", arg0) @@ -961,7 +961,7 @@ Method(m758, 1) // Read/Write Quick (AttribQuick) // m759(CallChain) // CallChain: String -Method(m759, 1) +Method(m759, 1, Serialized) { Concatenate(arg0, "-m759", arg0) @@ -1031,7 +1031,7 @@ Method(m759, 1) // Read/Write Byte (AttribByte) // m75a(CallChain) // CallChain: String -Method(m75a, 1) +Method(m75a, 1, Serialized) { Concatenate(arg0, "-m75a", arg0) @@ -1103,7 +1103,7 @@ Method(m75a, 1) // Read/Write Word (AttribWord) // m75b(CallChain) // CallChain: String -Method(m75b, 1) +Method(m75b, 1, Serialized) { Concatenate(arg0, "-m75b", arg0) @@ -1175,7 +1175,7 @@ Method(m75b, 1) // Read/Write Block (AttribBlock) // m75c(CallChain) // CallChain: String -Method(m75c, 1) +Method(m75c, 1, Serialized) { Concatenate(arg0, "-m75c", arg0) @@ -1254,7 +1254,7 @@ Method(m75c, 1) // Word Process Call (AttribProcessCall) // m75d(CallChain) // CallChain: String -Method(m75d, 1) +Method(m75d, 1, Serialized) { Concatenate(arg0, "-m75d", arg0) @@ -1313,7 +1313,7 @@ Method(m75d, 1) // Block Process Call (AttribBlockProcessCall) // m75e(CallChain) // CallChain: String -Method(m75e, 1) +Method(m75e, 1, Serialized) { Concatenate(arg0, "-m75e", arg0) @@ -1378,7 +1378,7 @@ Method(m75e, 1) // Read/Write N Bytes (AttribBytes) // m75f(CallChain) // CallChain: String -Method(m75f, 1) +Method(m75f, 1, Serialized) { Concatenate(arg0, "-m75f", arg0) @@ -1445,7 +1445,7 @@ Method(m75f, 1) // Raw Read/Write N Bytes (AttribRawBytes) // m760(CallChain) // CallChain: String -Method(m760, 1) +Method(m760, 1, Serialized) { Concatenate(arg0, "-m760", arg0) @@ -1512,7 +1512,7 @@ Method(m760, 1) // Raw Process Call (AttribRawProcessBytes) // m761(CallChain) // CallChain: String -Method(m761, 1) +Method(m761, 1, Serialized) { Concatenate(arg0, "-m761", arg0) @@ -1582,7 +1582,7 @@ Method(m761, 1) // // Test the use of Connection() operator and simple ByteAcc // -Method(m764, 1) +Method(m764, 1, Serialized) { Concatenate(arg0, "-m764", arg0) @@ -1650,7 +1650,7 @@ Method(m764, 1) //**** IPMI (ACPI 4.0) - bidirectional buffer **************************** -Method(m768, 1) +Method(m768, 1, Serialized) { Concatenate(arg0, "-m768", arg0) @@ -1712,7 +1712,7 @@ Method(m768, 1) // Splitting of Fields // m742(CallChain) -Method(m742, 1) +Method(m742, 1, Serialized) { OperationRegion(OPR0, SystemMemory, 0, 0x257) @@ -1735,7 +1735,7 @@ Method(m742, 1) // Create Region Fields that spans the same bits // and check possible inconsistence, 0-bit offset. // m720(CallChain, OpRegion) -Method(m720, 2) +Method(m720, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x1000) @@ -1790,7 +1790,7 @@ Method(m720, 2) // Create Region Fields that spans the same bits // and check possible inconsistence, 1-bit offset. // m721(CallChain, OpRegion) -Method(m721, 2) +Method(m721, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x1000) @@ -1845,7 +1845,7 @@ Method(m721, 2) // Create Region Fields that spans the same bits // and check possible inconsistence, 2-bit offset. // m722(CallChain, OpRegion) -Method(m722, 2) +Method(m722, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x1000) @@ -1900,7 +1900,7 @@ Method(m722, 2) // Create Region Fields that spans the same bits // and check possible inconsistence, 3-bit offset. // m723(CallChain, OpRegion) -Method(m723, 2) +Method(m723, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x1000) @@ -1955,7 +1955,7 @@ Method(m723, 2) // Create Region Fields that spans the same bits // and check possible inconsistence, 4-bit offset. // m724(CallChain, OpRegion) -Method(m724, 2) +Method(m724, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x1000) @@ -2010,7 +2010,7 @@ Method(m724, 2) // Create Region Fields that spans the same bits // and check possible inconsistence, 5-bit offset. // m725(CallChain, OpRegion) -Method(m725, 2) +Method(m725, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x1000) @@ -2065,7 +2065,7 @@ Method(m725, 2) // Create Region Fields that spans the same bits // and check possible inconsistence, 6-bit offset. // m726(CallChain, OpRegion) -Method(m726, 2) +Method(m726, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x1000) @@ -2120,7 +2120,7 @@ Method(m726, 2) // Create Region Fields that spans the same bits // and check possible inconsistence, 7-bit offset. // m727(CallChain, OpRegion) -Method(m727, 2) +Method(m727, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x1000) @@ -2175,7 +2175,7 @@ Method(m727, 2) // Create Region Fields that spans the same bits // and check possible inconsistence, 8-bit offset. // m728(CallChain, OpRegion) -Method(m728, 2) +Method(m728, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x1000) @@ -2230,7 +2230,7 @@ Method(m728, 2) // Create Region Fields that spans the same bits // and check possible inconsistence, 2046-bit offset. // m729(CallChain, OpRegion) -Method(m729, 2) +Method(m729, 2, Serialized) { OperationRegion(OPRm, 0xff, 0, 0x1000) @@ -2332,7 +2332,7 @@ Method(m72a, 3) } } -Method(m72f, 4) +Method(m72f, 4, Serialized) { Concatenate(arg0, "-m72f", arg0) @@ -24846,7 +24846,7 @@ Method(m743, 1, Serialized) // Large Offset // m744(CallChain) -Method(m744, 1) +Method(m744, 1, Serialized) { OperationRegion(OPR0, SystemMemory, 0, 0x2000000) @@ -24876,7 +24876,7 @@ Method(m744, 1) } // Run-method -Method(RFC0) +Method(RFC0,, Serialized) { Name(ts, "RFC0") |