Paul Menzel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/79367?usp=email )
Change subject: ec/lenovo/h8/acpi/thermal: Make NameSeg FPWR all upper case
......................................................................
ec/lenovo/h8/acpi/thermal: Make NameSeg FPWR all upper case
Building the Lenovo T60/T60p, iasl 20230628 shows the remark below:
dsdt.asl 2099: PowerResource (FPwR, 0, 0)
Remark 2182 - ^ At least one lower case letter found in NameSeg, ASL is case insensitive - converting to upper case (FPWR)
dsdt.asl 2118: Name (_PR0, Package () { FPwR })
Remark 2182 - ^ At least one lower case letter found in NameSeg, ASL is case insensitive - converting to upper case (FPWR)
Address it by making it all upper case.
Change-Id: Ia7924b015e76c43818d2d82da35ce0013d721c26
Fixes: 3ab13a8691cb ("ec/lenovo/h8/acpi/thermal: Add support for passive cooling")
Signed-off-by: Paul Menzel <pmenzel(a)molgen.mpg.de>
---
M src/ec/lenovo/h8/acpi/thermal.asl
1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/67/79367/1
diff --git a/src/ec/lenovo/h8/acpi/thermal.asl b/src/ec/lenovo/h8/acpi/thermal.asl
index 4f3b76e..fa5a282 100644
--- a/src/ec/lenovo/h8/acpi/thermal.asl
+++ b/src/ec/lenovo/h8/acpi/thermal.asl
@@ -97,7 +97,7 @@
Name (_AL0, Package () { FAN })
- PowerResource (FPwR, 0, 0)
+ PowerResource (FPWR, 0, 0)
{
/*
* WINDOWS BUG: Don't read from EmbeddedControl
@@ -127,7 +127,7 @@
Device (FAN)
{
Name (_HID, EISAID ("PNP0C0B"))
- Name (_PR0, Package () { FPwR })
+ Name (_PR0, Package () { FPWR })
}
}
--
To view, visit https://review.coreboot.org/c/coreboot/+/79367?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Ia7924b015e76c43818d2d82da35ce0013d721c26
Gerrit-Change-Number: 79367
Gerrit-PatchSet: 1
Gerrit-Owner: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-MessageType: newchange
Attention is currently required from: Dinesh Gehlot, Eran Mitrani, Paul Menzel, Tarun.
Subrata Banik has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/79330?usp=email )
Change subject: mb/google/rex/var/screebo: Override power limits
......................................................................
Patch Set 3:
(1 comment)
Commit Message:
https://review.coreboot.org/c/coreboot/+/79330/comment/7778412b_673e9add :
PS3, Line 21: [INFO ] Overriding power limits PL1 (mW) (10000, 15000)
: PL2 (mW) (40000, 40000) PL4 (W) (84)
:
: After:
:
: [INFO ] Overriding power limits PL1 (mW) (10000, 15000)
: PL2 (mW) (40000, 40000) PL4 (W) (84)
> Thank you for the explanation. So, the paste demonstrate that the debug line is gone?
exactly the `DEBUG` line suggests that, we were using baseline default value (aka no override). And modified CL shows that we are using an overridden value from variant directory.
>
> I was confused by “This patch modifies the power limits value to enhance …” in the beginning. But no power limits are changed?
updated the commit msg.
--
To view, visit https://review.coreboot.org/c/coreboot/+/79330?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Ic66872c530963238a0bf5eebbd5b5a76a7985e5c
Gerrit-Change-Number: 79330
Gerrit-PatchSet: 3
Gerrit-Owner: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Dinesh Gehlot <digehlot(a)google.com>
Gerrit-Reviewer: Eran Mitrani <mitrani(a)google.com>
Gerrit-Reviewer: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Reviewer: Tarun <tstuli(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Eran Mitrani <mitrani(a)google.com>
Gerrit-Attention: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Dinesh Gehlot <digehlot(a)google.com>
Gerrit-Attention: Tarun <tstuli(a)gmail.com>
Gerrit-Comment-Date: Sun, 03 Dec 2023 01:49:39 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Subrata Banik <subratabanik(a)google.com>
Comment-In-Reply-To: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-MessageType: comment
Attention is currently required from: Philipp Hug, Zebreus, ron minnich.
Maximilian Brune has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/79364?usp=email )
Change subject: arch/riscv/payload: Replace old RISC-V CSR names with their values
......................................................................
Patch Set 3:
(1 comment)
File src/arch/riscv/payload.c:
https://review.coreboot.org/c/coreboot/+/79364/comment/1082f13f_f4c88c44 :
PS3, Line 49: write_csr(0x0004, 0);
I would just remove the code altogether.
Like you said its not part of the RISC-V ISA Manual Privileged Specification anymore and as far as I know it is also not part of any other ratified extension.
It is not used by any code in coreboot and will therefore not break anything.
Also I would like to avoid using CSRs that are not part of the base specification inside architecture code. If there is a use case for a platform in coreboot that needs this (maybe M-U mode only platforms?) we can worry about it then.
--
To view, visit https://review.coreboot.org/c/coreboot/+/79364?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: I7c8f2a06a109333f95230bf0a3056c8d5c8a9132
Gerrit-Change-Number: 79364
Gerrit-PatchSet: 3
Gerrit-Owner: Zebreus <lennarteichhorn(a)googlemail.com>
Gerrit-Reviewer: Maximilian Brune <maximilian.brune(a)9elements.com>
Gerrit-Reviewer: Philipp Hug <philipp(a)hug.cx>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Reviewer: ron minnich <rminnich(a)gmail.com>
Gerrit-CC: Felix Singer <service+coreboot-gerrit(a)felixsinger.de>
Gerrit-Attention: Philipp Hug <philipp(a)hug.cx>
Gerrit-Attention: Zebreus <lennarteichhorn(a)googlemail.com>
Gerrit-Attention: ron minnich <rminnich(a)gmail.com>
Gerrit-Comment-Date: Sun, 03 Dec 2023 00:52:45 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Attention is currently required from: Dinesh Gehlot, Eran Mitrani, Subrata Banik, Tarun.
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/79332?usp=email )
Change subject: mb/google/rex/var/ovis: Add power limit support for MCH ID 0x7d14
......................................................................
Patch Set 5: Code-Review+1
--
To view, visit https://review.coreboot.org/c/coreboot/+/79332?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Iff71adb4e26d18970b5947927c258419f751de32
Gerrit-Change-Number: 79332
Gerrit-PatchSet: 5
Gerrit-Owner: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Dinesh Gehlot <digehlot(a)google.com>
Gerrit-Reviewer: Eran Mitrani <mitrani(a)google.com>
Gerrit-Reviewer: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Reviewer: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Gerrit-Reviewer: Tarun <tstuli(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Eran Mitrani <mitrani(a)google.com>
Gerrit-Attention: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Dinesh Gehlot <digehlot(a)google.com>
Gerrit-Attention: Tarun <tstuli(a)gmail.com>
Gerrit-Comment-Date: Sat, 02 Dec 2023 20:10:24 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
Attention is currently required from: Dinesh Gehlot, Eran Mitrani, Subrata Banik, Tarun.
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/79330?usp=email )
The change is no longer submittable: All-Comments-Resolved is unsatisfied now.
Change subject: mb/google/rex/var/screebo: Override power limits
......................................................................
Patch Set 3:
(1 comment)
Commit Message:
https://review.coreboot.org/c/coreboot/+/79330/comment/d33b2a24_41dd0c55 :
PS3, Line 21: [INFO ] Overriding power limits PL1 (mW) (10000, 15000)
: PL2 (mW) (40000, 40000) PL4 (W) (84)
:
: After:
:
: [INFO ] Overriding power limits PL1 (mW) (10000, 15000)
: PL2 (mW) (40000, 40000) PL4 (W) (84)
> > The values are unchanged? […]
Thank you for the explanation. So, the paste demonstrate that the debug line is gone?
I was confused by “This patch modifies the power limits value to enhance …” in the beginning. But no power limits are changed?
--
To view, visit https://review.coreboot.org/c/coreboot/+/79330?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Ic66872c530963238a0bf5eebbd5b5a76a7985e5c
Gerrit-Change-Number: 79330
Gerrit-PatchSet: 3
Gerrit-Owner: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Dinesh Gehlot <digehlot(a)google.com>
Gerrit-Reviewer: Eran Mitrani <mitrani(a)google.com>
Gerrit-Reviewer: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Reviewer: Tarun <tstuli(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Eran Mitrani <mitrani(a)google.com>
Gerrit-Attention: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Dinesh Gehlot <digehlot(a)google.com>
Gerrit-Attention: Tarun <tstuli(a)gmail.com>
Gerrit-Comment-Date: Sat, 02 Dec 2023 20:10:10 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Subrata Banik <subratabanik(a)google.com>
Comment-In-Reply-To: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-MessageType: comment
Attention is currently required from: Dinesh Gehlot, Eran Mitrani, Paul Menzel, Tarun.
Subrata Banik has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/79330?usp=email )
Change subject: mb/google/rex/var/screebo: Override power limits
......................................................................
Patch Set 3:
(1 comment)
Commit Message:
https://review.coreboot.org/c/coreboot/+/79330/comment/b1ec49ef_ddadd24c :
PS3, Line 21: [INFO ] Overriding power limits PL1 (mW) (10000, 15000)
: PL2 (mW) (40000, 40000) PL4 (W) (84)
:
: After:
:
: [INFO ] Overriding power limits PL1 (mW) (10000, 15000)
: PL2 (mW) (40000, 40000) PL4 (W) (84)
> The values are unchanged?
yes, that's because we are now overriding the same value (previously used to override by baseboard) from a variant directory. This will help in future variants design to override the baseboard aka default (which might be the case with Screebo).
The CB:79331 ensures that baseboard can only program the default PL limits which is performance oriented and variants can override the defaults with something that is more appropriate from the design standpoint.
With CB:79330 and CB:79331, we will see that Rex is baseboard supporting performance design limits but screebo would override with power efficient design PL value.
I hope it clarifies your doubt
--
To view, visit https://review.coreboot.org/c/coreboot/+/79330?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Ic66872c530963238a0bf5eebbd5b5a76a7985e5c
Gerrit-Change-Number: 79330
Gerrit-PatchSet: 3
Gerrit-Owner: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Dinesh Gehlot <digehlot(a)google.com>
Gerrit-Reviewer: Eran Mitrani <mitrani(a)google.com>
Gerrit-Reviewer: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Reviewer: Tarun <tstuli(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Eran Mitrani <mitrani(a)google.com>
Gerrit-Attention: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Dinesh Gehlot <digehlot(a)google.com>
Gerrit-Attention: Tarun <tstuli(a)gmail.com>
Gerrit-Comment-Date: Sat, 02 Dec 2023 18:09:15 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-MessageType: comment
Attention is currently required from: Dinesh Gehlot, Eran Mitrani, Paul Menzel, Tarun.
Subrata Banik has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/79332?usp=email )
Change subject: mb/google/rex/var/ovis: Add power limit support for MCH ID 0x7d14
......................................................................
Patch Set 5:
(1 comment)
Commit Message:
https://review.coreboot.org/c/coreboot/+/79332/comment/995e13a1_b8a216a2 :
PS4, Line 10: 0x7d14 DID.
> .
done
--
To view, visit https://review.coreboot.org/c/coreboot/+/79332?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Iff71adb4e26d18970b5947927c258419f751de32
Gerrit-Change-Number: 79332
Gerrit-PatchSet: 5
Gerrit-Owner: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Dinesh Gehlot <digehlot(a)google.com>
Gerrit-Reviewer: Eran Mitrani <mitrani(a)google.com>
Gerrit-Reviewer: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Reviewer: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Gerrit-Reviewer: Tarun <tstuli(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Eran Mitrani <mitrani(a)google.com>
Gerrit-Attention: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Dinesh Gehlot <digehlot(a)google.com>
Gerrit-Attention: Tarun <tstuli(a)gmail.com>
Gerrit-Comment-Date: Sat, 02 Dec 2023 18:03:14 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Comment-In-Reply-To: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-MessageType: comment