Michael Niewöhner has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/47138 )
Change subject: soc/intel/common/acpi: work around Windows crash on S0ix-enabled boards
......................................................................
Patch Set 8:
(1 comment)
https://review.coreboot.org/c/coreboot/+/47138/8/src/soc/intel/common/block/...
File src/soc/intel/common/block/acpi/acpi/pep.asl:
https://review.coreboot.org/c/coreboot/+/47138/8/src/soc/intel/common/block/...
PS8, Line 32: 0,
will do
hm, I've tried it but it makes it so damn unreadable... does that really provide useful information? I mean... it's a dummy package
Option 1:
~~~
39 If(Arg2 == PEPD_DSM_ARG2_GET_DEVICE_CONSTRAINTS) {
40 Return (Package() {
41 Package() {
42 /* \DUMY - not existent */
43 "\DUMY",
44 /* disabled, no constraints */
45 0,
46 Package() {
47 /* revision */
48 0,
49 Package() {
50 /* apply to all LPIT states */
51 0xff,
52 /* minimum D-state */
53 0
54 }
55 }
56 }
57 }
58 )
59 }
~~~
Option 2:
~~~
39 If(Arg2 == PEPD_DSM_ARG2_GET_DEVICE_CONSTRAINTS) {
40 Return (Package() {
41 Package() {
42 "\DUMY", /* \DUMY - not existent */
43 0, /* disabled, no constraints */
44 Package() {
45 0, /* revision */
46 Package() {
47 0xff, /* apply to all LPIT states */
48 0
49 }
50 }
51 }
52 }
53 )
54 }
~~~
--
To view, visit
https://review.coreboot.org/c/coreboot/+/47138
To unsubscribe, or for help writing mail filters, visit
https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Icd08cbcb1dfcb8cbb23f4f4c902bf8c367c8e3ac
Gerrit-Change-Number: 47138
Gerrit-PatchSet: 8
Gerrit-Owner: Michael Niewöhner
foss@mniewoehner.de
Gerrit-Reviewer: Angel Pons
th3fanbus@gmail.com
Gerrit-Reviewer: Arthur Heymans
arthur@aheymans.xyz
Gerrit-Reviewer: Christian Walter
christian.walter@9elements.com
Gerrit-Reviewer: Furquan Shaikh
furquan@google.com
Gerrit-Reviewer: Karthikeyan Ramasubramanian
kramasub@chromium.org
Gerrit-Reviewer: Matt DeVillier
matt.devillier@gmail.com
Gerrit-Reviewer: Michael Niewöhner
foss@mniewoehner.de
Gerrit-Reviewer: Nico Huber
nico.h@gmx.de
Gerrit-Reviewer: Patrick Rudolph
siro@das-labor.org
Gerrit-Reviewer: Paul Menzel
paulepanter@users.sourceforge.net
Gerrit-Reviewer: Subrata Banik
subrata.banik@intel.com
Gerrit-Reviewer: Tim Wawrzynczak
twawrzynczak@chromium.org
Gerrit-Reviewer: build bot (Jenkins)
no-reply@coreboot.org
Gerrit-CC: Patrick Rudolph
patrick.rudolph@9elements.com
Gerrit-Comment-Date: Thu, 05 Nov 2020 23:42:08 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Furquan Shaikh
furquan@google.com
Comment-In-Reply-To: Michael Niewöhner
foss@mniewoehner.de
Gerrit-MessageType: comment