Attention is currently required from: Michael Niewöhner.
Benjamin Doron has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/49140 )
Change subject: soc/intel/skylake/acpi: Add PEP table
......................................................................
Patch Set 3:
(1 comment)
Commit Message:
https://review.coreboot.org/c/coreboot/+/49140/comment/a271556e_53f686fd
PS3, Line 11:
> > > > > > > > > Awesome, then at least S0ix states work just fine.
> > > > > > > > >
> > > > > > > > > That error message comes from the kernel SlpS0 self-test. So, let's test something. I assume `cat /sys/power/mem_sleep` has `s2idle` selected? (With s0ix_enable=1 it should. If not, we have another problem.)
> > > > > > > >
> > > > > > > > Yes. (I think that's based on the FADT)
> > > > > > >
> > > > > > > Right, there is some bit in FADT for that.
> > > > > > >
> > > > > > > >
> > > > > > > > > Does your system stay in sleep after executing `echo freeze >/sys/power/state`?
> > > > > > > >
> > > > > > > > Is the alternative that it wakes immediately? Then yes, it stays in sleep. However, when it does wake, it has always been unlocked. I don't know if that's relevant.
> > > > > > >
> > > > > > > Unlocked vs. locked is user-space and depends on the desktop environment. XFCE has an option for locking before going to sleep but that only works when sleep was initiated from the DE.
> > > > > >
> > > > > > That makes sense; I thought it might have been a possibility.
> > > > > >
> > > > > > > If it wakes immediately with that error, the self-test failed. I'm surprised to see the self-test fail *without* immediate wake, though.... Maybe we have to exclude the SlpS0 state from the table LPIT, when s0ix is not supported on a board :S Could you test this, please? Insert a "return" right before the comment "System (Slp_S0) residency counter" in `src/soc/intel/common/block/acpi/lpit.c` and see if the error disappears.
> > > > > >
> > > > > > Based on https://01.org/blogs/qwang59/2020/linux-s0ix-troubleshooting, PC10 without S0ix residency is a possible case. If I understand correctly, that situation would be what I see with this board: No S0ix/failed self-test, but PC10 residency/no immediate wake. I will attempt to troubleshoot that sometime by disabling devices, I suppose, following that link.
> > > > > >
> > > > > > I'm also not certain what you mean. If S0ix is disabled, would LPIT factor? Besides, if S0ix does relate to hardware state, but not board-design, shouldn't LPIT always advertise both PC10 residency and system residency to warn about broken S0ix support for a board?
> > > > >
> > > > > Well, yes PC10 without S0ix is possible. s0ix_enable means means "PC10 and/or SlpS0 possible". Note that SlpS0 is a substate of s0ix but s0ix != SlpS0.
> > > > >
> > > > > The LPIT table contains two entries, one for PC10 (the first one) and SlpS0 (the second one. Based on these entries, the OS decides what *actually* is possible. When PC10 and SlpS0 is advertised but SlpS0 doesn't work, that error triggers. So, I want to test what happens, when SlpS0 is not advertised, because it doesn't apply to your board.
> > > >
> > > > I see the same error.
> > >
> > > Strange....
> >
> > I can double-check.
> >
> > > >
> > > > Additionally, I noticed while looking over the vendor firmware's LPIT table that it defines the PC10 subtable twice, if I'm reading it correctly (two copies of address 0x632 as "FunctionalFixedHW" - the PKG_C10_RESIDENCY MSR?). Even so, the kernel warns that the system was unable to enter PC10.
> > >
> > > Oh yeah, I've seen that too somewhere but I doubt that's correct.
> > >
> > > >
> > > > So, while I was initially surprised to hear that SlpS0 might not apply to my board, perhaps that is the case. I can always try to troubleshoot some other time.
> > > >
> > > > > > But regardless: `return` or `return current`? The PC10 residency counter portion does increment "current"
> > > > >
> > > > > Yes, you're right, it should be `return current` ofc :-)
> > > >
> > > > Was this only for testing, or do you think that the S0ix subtable should only be advertised if S0ix is known to work?
> > >
> > > Very good question. S0ix isn't documented very good but I wouldn't advertise something that isn't usable. However, that will require us to introduce a dt option `slps0_supported`. That's already planned but I currently have higher-prio stuff. I'll come back to that asap. If you're curious, have a look on my WIP patches on s0ix.
> > >
> > > Since it doesn't seem to make a difference irt that error/warning, let's keep it as-is for now and resolve that as soon as I get back to these patches. Wdyt?
> >
> > The warning is informative and not harmful, so that's fine by me.
> >
> > > > If S0ix can be temperamental, I think that the OS should always be able to warn about errors.
> > >
> > > Well, when the board does not support SlpS0 (= SlpS0 is unconnected) I wouldn't want the OS to warn about it. That warning/error is triggered by the S0ix self-test, which may also be buggy btw.
> >
> > Ah. If the pad being disconnected means that lower S0ix states aren't possible, then there might not be anything to debug.
>
> Wait... I had some knot in my brain. SlpS0 wouldn't *do* anything (b/c it's nc) but it should still be asserted and that error is telling us that it isn't.
I have `PAD_CFG_TERM_GPO(GPP_B12, 1, DN_20K, DEEP),` for SLP_S0# in the gpio.c for my board, I can change it to "UP_20K" if it won't cause problems with the PMC.
> We just don't know yet, why the error is triggered, when SlpS0 is not advertised... *That* could be the bug here, which would be in the kernel. So, we need to check if Linux only checks the FADT flag or differentiates C10-only and SlpS0 devices.
I'll double-check this. Regarding the kernel, it appears it uses the default address if LPIT doesn't advertise one (https://github.com/torvalds/linux/blob/master/drivers/platform/x86/intel_pm…).
> > > > Sorry it took me so long to get back to you.
> > >
> > > No problem :-)
> > >
> > >
> > > So... last question - I hope I didn't ask that already, but I haven't seen it above. Is this patch the cause for that error message or does the error message appear even without it?
> >
> > The error is produced by the intel_pmc_core driver, which is only loaded if the PEP table is present?
>
> Oh right... that was it :/
--
To view, visit https://review.coreboot.org/c/coreboot/+/49140
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I08d8c1fde4f447e9292a0508649f802fdc2721e1
Gerrit-Change-Number: 49140
Gerrit-PatchSet: 3
Gerrit-Owner: Benjamin Doron <benjamin.doron00(a)gmail.com>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Benjamin Doron <benjamin.doron00(a)gmail.com>
Gerrit-Reviewer: Michael Niewöhner <foss(a)mniewoehner.de>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Michael Niewöhner <foss(a)mniewoehner.de>
Gerrit-Comment-Date: Wed, 03 Feb 2021 23:23:40 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Benjamin Doron <benjamin.doron00(a)gmail.com>
Comment-In-Reply-To: Michael Niewöhner <foss(a)mniewoehner.de>
Gerrit-MessageType: comment
Attention is currently required from: Martin Roth, Julius Werner.
Angel Pons has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/50247 )
Change subject: Documentation: Codify some guidelines for headers and chain-including
......................................................................
Patch Set 1:
(1 comment)
File Documentation/coding_style.md:
https://review.coreboot.org/c/coreboot/+/50247/comment/f230b816_7ab758f4
PS1, Line 876: take advantage of the macro
> I think the intention is to show what the macro does right away in this example. […]
Ah, the diffstat tricked me
--
To view, visit https://review.coreboot.org/c/coreboot/+/50247
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ibbcde306a814f52b3a41b58c7a33bdd99b0187e0
Gerrit-Change-Number: 50247
Gerrit-PatchSet: 1
Gerrit-Owner: Julius Werner <jwerner(a)chromium.org>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: HAOUAS Elyes <ehaouas(a)noos.fr>
Gerrit-Reviewer: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Martin Roth <martinroth(a)google.com>
Gerrit-Attention: Julius Werner <jwerner(a)chromium.org>
Gerrit-Comment-Date: Wed, 03 Feb 2021 22:46:43 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Julius Werner <jwerner(a)chromium.org>
Comment-In-Reply-To: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-MessageType: comment
Attention is currently required from: Martin Roth, Angel Pons.
Julius Werner has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/50247 )
Change subject: Documentation: Codify some guidelines for headers and chain-including
......................................................................
Patch Set 1:
(2 comments)
Patchset:
PS1:
> here is what I've tried to list: […]
I'm trying to just explain the general reasons where chain-including should be acceptable. I don't think we should try to maintain an exhaustive list somewhere, because these things change all the time (e.g. more stuff gets factored out into commonlib). The headers I'm mentioning there are just examples for the overall categories of cases (e.g. what applies to <cbfs.h> -> <commonlib/bsd/cbfs_serialized.h> also applies to <fmap.h> -> <commonlib/bsd/fmap_serialized.h>). I think the examples I mention already cover all the cases Elyes mentioned?
File Documentation/coding_style.md:
https://review.coreboot.org/c/coreboot/+/50247/comment/f99d6452_3f2bad77
PS1, Line 876: take advantage of the macro
> take advantage of the `ARRAY_SIZE` macro:
I think the intention is to show what the macro does right away in this example. This is just from the original kernel coding style, I don't really want to touch it, I just wanted to update the references that obviously don't make sense for coreboot.
--
To view, visit https://review.coreboot.org/c/coreboot/+/50247
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ibbcde306a814f52b3a41b58c7a33bdd99b0187e0
Gerrit-Change-Number: 50247
Gerrit-PatchSet: 1
Gerrit-Owner: Julius Werner <jwerner(a)chromium.org>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: HAOUAS Elyes <ehaouas(a)noos.fr>
Gerrit-Reviewer: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Martin Roth <martinroth(a)google.com>
Gerrit-Attention: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Comment-Date: Wed, 03 Feb 2021 22:44:54 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Angel Pons <th3fanbus(a)gmail.com>
Comment-In-Reply-To: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Comment-In-Reply-To: HAOUAS Elyes <ehaouas(a)noos.fr>
Gerrit-MessageType: comment
Attention is currently required from: Martin Roth, Mathew King.
Hello build bot (Jenkins), Furquan Shaikh, Patrick Georgi, Martin Roth, Kangheui Won,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/50007
to look at the new patch set (#6).
Change subject: mb/google/mancomb: Add new mainboard
......................................................................
mb/google/mancomb: Add new mainboard
Mancomb is a new Google mainboard with an AMD SOC.
BUG=b:175143925
TEST=builds
Change-Id: I1264f44a0b986f7f7c89ac7b42f1e4e4119a35e6
Signed-off-by: Mathew King <mathewk(a)chromium.org>
---
A src/mainboard/google/mancomb/Kconfig
A src/mainboard/google/mancomb/Kconfig.name
A src/mainboard/google/mancomb/Makefile.inc
A src/mainboard/google/mancomb/board_info.txt
A src/mainboard/google/mancomb/bootblock.c
A src/mainboard/google/mancomb/chromeos.fmd
A src/mainboard/google/mancomb/mainboard.c
A src/mainboard/google/mancomb/variants/baseboard/devicetree.cb
A src/mainboard/google/mancomb/variants/baseboard/include/baseboard/gpio.h
A src/mainboard/google/mancomb/variants/baseboard/include/baseboard/variants.h
10 files changed, 124 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/07/50007/6
--
To view, visit https://review.coreboot.org/c/coreboot/+/50007
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I1264f44a0b986f7f7c89ac7b42f1e4e4119a35e6
Gerrit-Change-Number: 50007
Gerrit-PatchSet: 6
Gerrit-Owner: Mathew King <mathewk(a)chromium.org>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Kangheui Won <khwon(a)chromium.org>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Bhanu Prakash Maiya <bhanumaiya(a)google.com>
Gerrit-Attention: Martin Roth <martinroth(a)google.com>
Gerrit-Attention: Mathew King <mathewk(a)chromium.org>
Gerrit-MessageType: newpatchset
Attention is currently required from: Martin Roth, Tim Wawrzynczak, Aamir Bohra, Boris Mittelberg.
Furquan Shaikh has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/50271 )
Change subject: mb/google/brya: Add support for Hynix H9HCNNNBKMMLXR-NEE LP4x DRAM
......................................................................
Patch Set 1: Code-Review+2
--
To view, visit https://review.coreboot.org/c/coreboot/+/50271
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Icccfa3d1659e6c74c14a7372ea39c749a5921c64
Gerrit-Change-Number: 50271
Gerrit-PatchSet: 1
Gerrit-Owner: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Reviewer: Aamir Bohra <aamir.bohra(a)intel.com>
Gerrit-Reviewer: Boris Mittelberg <bmbm(a)google.com>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Martin Roth <martinroth(a)google.com>
Gerrit-Attention: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Attention: Aamir Bohra <aamir.bohra(a)intel.com>
Gerrit-Attention: Boris Mittelberg <bmbm(a)google.com>
Gerrit-Comment-Date: Wed, 03 Feb 2021 22:30:43 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
Attention is currently required from: Benjamin Doron.
Michael Niewöhner has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/49140 )
Change subject: soc/intel/skylake/acpi: Add PEP table
......................................................................
Patch Set 3:
(1 comment)
Commit Message:
https://review.coreboot.org/c/coreboot/+/49140/comment/bc26ed0a_50e1ae85
PS3, Line 11:
> > > > > > > > Awesome, then at least S0ix states work just fine.
> > > > > > > >
> > > > > > > > That error message comes from the kernel SlpS0 self-test. So, let's test something. I assume `cat /sys/power/mem_sleep` has `s2idle` selected? (With s0ix_enable=1 it should. If not, we have another problem.)
> > > > > > >
> > > > > > > Yes. (I think that's based on the FADT)
> > > > > >
> > > > > > Right, there is some bit in FADT for that.
> > > > > >
> > > > > > >
> > > > > > > > Does your system stay in sleep after executing `echo freeze >/sys/power/state`?
> > > > > > >
> > > > > > > Is the alternative that it wakes immediately? Then yes, it stays in sleep. However, when it does wake, it has always been unlocked. I don't know if that's relevant.
> > > > > >
> > > > > > Unlocked vs. locked is user-space and depends on the desktop environment. XFCE has an option for locking before going to sleep but that only works when sleep was initiated from the DE.
> > > > >
> > > > > That makes sense; I thought it might have been a possibility.
> > > > >
> > > > > > If it wakes immediately with that error, the self-test failed. I'm surprised to see the self-test fail *without* immediate wake, though.... Maybe we have to exclude the SlpS0 state from the table LPIT, when s0ix is not supported on a board :S Could you test this, please? Insert a "return" right before the comment "System (Slp_S0) residency counter" in `src/soc/intel/common/block/acpi/lpit.c` and see if the error disappears.
> > > > >
> > > > > Based on https://01.org/blogs/qwang59/2020/linux-s0ix-troubleshooting, PC10 without S0ix residency is a possible case. If I understand correctly, that situation would be what I see with this board: No S0ix/failed self-test, but PC10 residency/no immediate wake. I will attempt to troubleshoot that sometime by disabling devices, I suppose, following that link.
> > > > >
> > > > > I'm also not certain what you mean. If S0ix is disabled, would LPIT factor? Besides, if S0ix does relate to hardware state, but not board-design, shouldn't LPIT always advertise both PC10 residency and system residency to warn about broken S0ix support for a board?
> > > >
> > > > Well, yes PC10 without S0ix is possible. s0ix_enable means means "PC10 and/or SlpS0 possible". Note that SlpS0 is a substate of s0ix but s0ix != SlpS0.
> > > >
> > > > The LPIT table contains two entries, one for PC10 (the first one) and SlpS0 (the second one. Based on these entries, the OS decides what *actually* is possible. When PC10 and SlpS0 is advertised but SlpS0 doesn't work, that error triggers. So, I want to test what happens, when SlpS0 is not advertised, because it doesn't apply to your board.
> > >
> > > I see the same error.
> >
> > Strange....
>
> I can double-check.
>
> > >
> > > Additionally, I noticed while looking over the vendor firmware's LPIT table that it defines the PC10 subtable twice, if I'm reading it correctly (two copies of address 0x632 as "FunctionalFixedHW" - the PKG_C10_RESIDENCY MSR?). Even so, the kernel warns that the system was unable to enter PC10.
> >
> > Oh yeah, I've seen that too somewhere but I doubt that's correct.
> >
> > >
> > > So, while I was initially surprised to hear that SlpS0 might not apply to my board, perhaps that is the case. I can always try to troubleshoot some other time.
> > >
> > > > > But regardless: `return` or `return current`? The PC10 residency counter portion does increment "current"
> > > >
> > > > Yes, you're right, it should be `return current` ofc :-)
> > >
> > > Was this only for testing, or do you think that the S0ix subtable should only be advertised if S0ix is known to work?
> >
> > Very good question. S0ix isn't documented very good but I wouldn't advertise something that isn't usable. However, that will require us to introduce a dt option `slps0_supported`. That's already planned but I currently have higher-prio stuff. I'll come back to that asap. If you're curious, have a look on my WIP patches on s0ix.
> >
> > Since it doesn't seem to make a difference irt that error/warning, let's keep it as-is for now and resolve that as soon as I get back to these patches. Wdyt?
>
> The warning is informative and not harmful, so that's fine by me.
>
> > > If S0ix can be temperamental, I think that the OS should always be able to warn about errors.
> >
> > Well, when the board does not support SlpS0 (= SlpS0 is unconnected) I wouldn't want the OS to warn about it. That warning/error is triggered by the S0ix self-test, which may also be buggy btw.
>
> Ah. If the pad being disconnected means that lower S0ix states aren't possible, then there might not be anything to debug.
Wait... I had some knot in my brain. SlpS0 wouldn't *do* anything (b/c it's nc) but it should still be asserted and that error is telling us that it isn't.
We just don't know yet, why the error is triggered, when SlpS0 is not advertised... *That* could be the bug here, which would be in the kernel. So, we need to check if Linux only checks the FADT flag or differentiates C10-only and SlpS0 devices.
>
> > > Sorry it took me so long to get back to you.
> >
> > No problem :-)
> >
> >
> > So... last question - I hope I didn't ask that already, but I haven't seen it above. Is this patch the cause for that error message or does the error message appear even without it?
>
> The error is produced by the intel_pmc_core driver, which is only loaded if the PEP table is present?
Oh right... that was it :/
--
To view, visit https://review.coreboot.org/c/coreboot/+/49140
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I08d8c1fde4f447e9292a0508649f802fdc2721e1
Gerrit-Change-Number: 49140
Gerrit-PatchSet: 3
Gerrit-Owner: Benjamin Doron <benjamin.doron00(a)gmail.com>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Benjamin Doron <benjamin.doron00(a)gmail.com>
Gerrit-Reviewer: Michael Niewöhner <foss(a)mniewoehner.de>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Benjamin Doron <benjamin.doron00(a)gmail.com>
Gerrit-Comment-Date: Wed, 03 Feb 2021 22:27:52 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Benjamin Doron <benjamin.doron00(a)gmail.com>
Comment-In-Reply-To: Michael Niewöhner <foss(a)mniewoehner.de>
Gerrit-MessageType: comment
Attention is currently required from: Martin Roth, Angel Pons.
Mathew King has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/49954 )
Change subject: mb/google/guybrush: Add stubs to configure GPIOs
......................................................................
Patch Set 11:
(1 comment)
Commit Message:
https://review.coreboot.org/c/coreboot/+/49954/comment/86b7cdef_57e24c1d
PS10, Line 7: stubs to configure GPIOs
> Add stubs to configure GPIOs
Done
--
To view, visit https://review.coreboot.org/c/coreboot/+/49954
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I5afd2df396ba41f7d25fa7ff6879b7c1f82f438c
Gerrit-Change-Number: 49954
Gerrit-PatchSet: 11
Gerrit-Owner: Mathew King <mathewk(a)chromium.org>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: EricR Lai <ericr_lai(a)compal.corp-partner.google.com>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Martin Roth <martinroth(a)google.com>
Gerrit-Attention: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Comment-Date: Wed, 03 Feb 2021 22:17:44 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-MessageType: comment
Attention is currently required from: Martin Roth, Mathew King.
Hello build bot (Jenkins), Furquan Shaikh, Patrick Georgi, Martin Roth, Angel Pons, EricR Lai,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/49954
to look at the new patch set (#11).
Change subject: mb/google/guybrush: Add stubs to configure GPIOs
......................................................................
mb/google/guybrush: Add stubs to configure GPIOs
BUG=b:175143925
TEST=builds
Signed-off-by: Mathew King <mathewk(a)chromium.org>
Change-Id: I5afd2df396ba41f7d25fa7ff6879b7c1f82f438c
---
M src/mainboard/google/guybrush/bootblock.c
M src/mainboard/google/guybrush/mainboard.c
A src/mainboard/google/guybrush/variants/baseboard/Makefile.inc
A src/mainboard/google/guybrush/variants/baseboard/gpio.c
M src/mainboard/google/guybrush/variants/baseboard/include/baseboard/variants.h
5 files changed, 72 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/54/49954/11
--
To view, visit https://review.coreboot.org/c/coreboot/+/49954
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I5afd2df396ba41f7d25fa7ff6879b7c1f82f438c
Gerrit-Change-Number: 49954
Gerrit-PatchSet: 11
Gerrit-Owner: Mathew King <mathewk(a)chromium.org>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: EricR Lai <ericr_lai(a)compal.corp-partner.google.com>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Martin Roth <martinroth(a)google.com>
Gerrit-Attention: Mathew King <mathewk(a)chromium.org>
Gerrit-MessageType: newpatchset