Attention is currently required from: Felix Singer, Subrata Banik, Tim Wawrzynczak, Angel Pons, Arthur Heymans, Nick Vaccaro, Andrey Petrov, Patrick Rudolph.
Nico Huber has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/60441 )
Change subject: soc/intel/alderlake: Add option to make MRC log silent
......................................................................
Patch Set 2:
(1 comment)
Patchset:
PS2:
Why not map the console loglevel to this UPD? That would avoid adding more Kconfigs.
--
To view, visit https://review.coreboot.org/c/coreboot/+/60441
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Iea3b32feca0893a83fdf700798b0883d26ccc718
Gerrit-Change-Number: 60441
Gerrit-PatchSet: 2
Gerrit-Owner: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Felix Singer <felixsinger(a)posteo.net>
Gerrit-Reviewer: Andrey Petrov <andrey.petrov(a)gmail.com>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: EricR Lai <ericr_lai(a)compal.corp-partner.google.com>
Gerrit-Reviewer: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Reviewer: Tim Wawrzynczak <twawrzynczak(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Nico Huber <nico.h(a)gmx.de>
Gerrit-Attention: Felix Singer <felixsinger(a)posteo.net>
Gerrit-Attention: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Attention: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Attention: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Attention: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Attention: Tim Wawrzynczak <twawrzynczak(a)google.com>
Gerrit-Attention: Andrey Petrov <andrey.petrov(a)gmail.com>
Gerrit-Attention: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Comment-Date: Wed, 29 Dec 2021 13:39:33 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Attention is currently required from: Hung-Te Lin, Rex-BC Chen.
Yu-Ping Wu has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/60447 )
Change subject: mb/google/corsola: initialize krabby display
......................................................................
Patch Set 1:
(1 comment)
Patchset:
PS1:
> hi Hung-te and Yu-ping, […]
Can we remove corsola as a Coreboot board? Another solution is to select GOOGLE_KINGLER_COMMON for it.
--
To view, visit https://review.coreboot.org/c/coreboot/+/60447
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I314d5407c40429bb7bc50f36fece58e396b27548
Gerrit-Change-Number: 60447
Gerrit-PatchSet: 1
Gerrit-Owner: Rex-BC Chen <rex-bc.chen(a)mediatek.com>
Gerrit-Reviewer: Hung-Te Lin <hungte(a)chromium.org>
Gerrit-Reviewer: Yu-Ping Wu <yupingso(a)google.com>
Gerrit-CC: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Hung-Te Lin <hungte(a)chromium.org>
Gerrit-Attention: Rex-BC Chen <rex-bc.chen(a)mediatek.com>
Gerrit-Comment-Date: Wed, 29 Dec 2021 13:33:45 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Rex-BC Chen <rex-bc.chen(a)mediatek.com>
Gerrit-MessageType: comment
Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60459 )
Change subject: ec/smsc/mec1308/acpi: Use ACPI 2.0 syntax to access arrays
......................................................................
ec/smsc/mec1308/acpi: Use ACPI 2.0 syntax to access arrays
Replace Index(FOO, 1337) with FOO[1337].
Change-Id: I628a6108e12ba784542474ebe58285754f40169c
Signed-off-by: Felix Singer <felixsinger(a)posteo.net>
---
M src/ec/smsc/mec1308/acpi/battery.asl
1 file changed, 11 insertions(+), 11 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/59/60459/1
diff --git a/src/ec/smsc/mec1308/acpi/battery.asl b/src/ec/smsc/mec1308/acpi/battery.asl
index fad69b8..a072c93 100644
--- a/src/ec/smsc/mec1308/acpi/battery.asl
+++ b/src/ec/smsc/mec1308/acpi/battery.asl
@@ -81,15 +81,15 @@
Method (_BIF, 0, Serialized)
{
// Update fields from EC
- Store (SWAB (BTDA), Index (PBIF, 1))
- Store (SWAB (BTDF), Index (PBIF, 2))
- Store (SWAB (BTDV), Index (PBIF, 4))
- Store (SWAB (BTDL), Index (PBIF, 6))
+ Store (SWAB (BTDA), PBIF[1])
+ Store (SWAB (BTDF), PBIF[2])
+ Store (SWAB (BTDV), PBIF[4])
+ Store (SWAB (BTDL), PBIF[6])
// Get battery info from mainboard
- Store (\BATM, Index (PBIF, 9))
- Store (\BATS, Index (PBIF, 10))
- Store (\BATV, Index (PBIF, 12))
+ Store (\BATM, PBIF[9])
+ Store (\BATS, PBIF[10])
+ Store (\BATV, PBIF[12])
Return (PBIF)
}
@@ -120,7 +120,7 @@
// Flag if the battery level is critical
And (Local0, 0x04, Local4)
Or (Local1, Local4, Local1)
- Store (Local1, Index (PBST, 0))
+ Store (Local1, PBST[0])
// Notify if battery state has changed since last time
If (LNotEqual (Local1, BSTP)) {
@@ -138,7 +138,7 @@
Xor (Local1, 0xFFFF, Local1)
Increment (Local1)
}
- Store (Local1, Index (PBST, 1))
+ Store (Local1, PBST[1])
//
// 2: BATTERY REMAINING CAPACITY
@@ -165,12 +165,12 @@
Store (Local2, Local1)
}
}
- Store (Local1, Index (PBST, 2))
+ Store (Local1, PBST[2])
//
// 3: BATTERY PRESENT VOLTAGE
//
- Store (SWAB (BTVO), Index (PBST, 3))
+ Store (SWAB (BTVO), PBST[3])
Return (PBST)
}
--
To view, visit https://review.coreboot.org/c/coreboot/+/60459
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I628a6108e12ba784542474ebe58285754f40169c
Gerrit-Change-Number: 60459
Gerrit-PatchSet: 1
Gerrit-Owner: Felix Singer <felixsinger(a)posteo.net>
Gerrit-MessageType: newchange