Hello build bot (Jenkins), Jeremy Soller,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/57652
to look at the new patch set (#6).
Change subject: mb/system76/oryp8: Add System76 Oryx Pro 8
......................................................................
mb/system76/oryp8: Add System76 Oryx Pro 8
https://tech-docs.system76.com/models/oryp8/README.html
Tested with TianoCore (UeifPayloadPkg).
Working:
- PS/2 keyboard, touchpad
- Both DIMM slots
- Both M.2 SSD slots
- All USB ports
- Webcam
- Ethernet
- WiFi/Bluetooth
- Integrated graphics using Intel GOP driver
- Internal microphone
- Internal speakers
- Combined 3.5mm headphone & microphone jack
- Combined 3.5mm microphone & S/PDIF jack*
- S3 suspend/resume
- Booting to Pop!_OS Linux 21.10 and Windows 10 20H2
- Flashing with flashrom
Not working:
- Discrete/Hybrid graphics
Not tested:
- Thunderbolt functionality
- S/PDIF output
Change-Id: Iabc8e273f997d7f5852ddec63e0c1bf0c9434acb
Signed-off-by: Jeremy Soller <jeremy(a)system76.com>
Signed-off-by: Tim Crawford <tcrawford(a)system76.com>
---
M Documentation/mainboard/index.md
A Documentation/mainboard/system76/oryp8.md
A src/mainboard/system76/oryp8/Kconfig
A src/mainboard/system76/oryp8/Kconfig.name
A src/mainboard/system76/oryp8/Makefile.inc
A src/mainboard/system76/oryp8/acpi/mainboard.asl
A src/mainboard/system76/oryp8/acpi/sleep.asl
A src/mainboard/system76/oryp8/board_info.txt
A src/mainboard/system76/oryp8/bootblock.c
A src/mainboard/system76/oryp8/cmos.default
A src/mainboard/system76/oryp8/cmos.layout
A src/mainboard/system76/oryp8/data.vbt
A src/mainboard/system76/oryp8/devicetree.cb
A src/mainboard/system76/oryp8/dsdt.asl
A src/mainboard/system76/oryp8/gpio.c
A src/mainboard/system76/oryp8/gpio_early.c
A src/mainboard/system76/oryp8/hda_verb.c
A src/mainboard/system76/oryp8/include/mainboard/gpio.h
A src/mainboard/system76/oryp8/ramstage.c
A src/mainboard/system76/oryp8/romstage.c
A src/mainboard/system76/oryp8/tas5825m.c
21 files changed, 2,696 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/52/57652/6
--
To view, visit https://review.coreboot.org/c/coreboot/+/57652
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Iabc8e273f997d7f5852ddec63e0c1bf0c9434acb
Gerrit-Change-Number: 57652
Gerrit-PatchSet: 6
Gerrit-Owner: Tim Crawford <tcrawford(a)system76.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Jeremy Soller <jeremy(a)system76.com>
Gerrit-MessageType: newpatchset
Raul Rangel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/58867 )
Change subject: lib/thread: Use __func__ instead of repeating function name
......................................................................
lib/thread: Use __func__ instead of repeating function name
This cleans up the warning message:
WARNING: Prefer using '"%s...", __func__' to using 'thread_run', this function's name, in a string
BUG=b:179699789
TEST=boot guybrush
Signed-off-by: Raul E Rangel <rrangel(a)chromium.org>
Change-Id: I85bacb7b2d9ebec40b6b05edc2ecf0ca1fc8ceee
---
M src/lib/thread.c
1 file changed, 4 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/67/58867/1
diff --git a/src/lib/thread.c b/src/lib/thread.c
index a075394..7d5cdc5 100644
--- a/src/lib/thread.c
+++ b/src/lib/thread.c
@@ -284,14 +284,14 @@
if (!thread_can_yield(current)) {
printk(BIOS_ERR,
- "ERROR: thread_run() called from non-yielding context!\n");
+ "ERROR: %s() called from non-yielding context!\n", __func__);
return -1;
}
t = get_free_thread();
if (t == NULL) {
- printk(BIOS_ERR, "ERROR: thread_run() No more threads!\n");
+ printk(BIOS_ERR, "ERROR: %s: No more threads!\n", __func__);
return -1;
}
@@ -319,14 +319,14 @@
if (!thread_can_yield(current)) {
printk(BIOS_ERR,
- "ERROR: thread_run() called from non-yielding context!\n");
+ "ERROR: %s() called from non-yielding context!\n", __func__);
return -1;
}
t = get_free_thread();
if (t == NULL) {
- printk(BIOS_ERR, "ERROR: thread_run() No more threads!\n");
+ printk(BIOS_ERR, "ERROR: %s: No more threads!\n", __func__);
return -1;
}
--
To view, visit https://review.coreboot.org/c/coreboot/+/58867
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I85bacb7b2d9ebec40b6b05edc2ecf0ca1fc8ceee
Gerrit-Change-Number: 58867
Gerrit-PatchSet: 1
Gerrit-Owner: Raul Rangel <rrangel(a)chromium.org>
Gerrit-MessageType: newchange
build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/58866 )
Change subject: lib/thread: Add ERROR prefix to error messages
......................................................................
Patch Set 1:
(2 comments)
File src/lib/thread.c:
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-132067):
https://review.coreboot.org/c/coreboot/+/58866/comment/96951f3b_cb923db2
PS1, Line 287: "ERROR: thread_run() called from non-yielding context!\n");
Prefer using '"%s...", __func__' to using 'thread_run', this function's name, in a string
Robot Comment from checkpatch (run ID jenkins-coreboot-checkpatch-132067):
https://review.coreboot.org/c/coreboot/+/58866/comment/99d4e000_ae7c071f
PS1, Line 294: printk(BIOS_ERR, "ERROR: thread_run() No more threads!\n");
Prefer using '"%s...", __func__' to using 'thread_run', this function's name, in a string
--
To view, visit https://review.coreboot.org/c/coreboot/+/58866
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I7eecdfed6046b7d609069e7427f6883a4e9e521d
Gerrit-Change-Number: 58866
Gerrit-PatchSet: 1
Gerrit-Owner: Raul Rangel <rrangel(a)chromium.org>
Gerrit-CC: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Tue, 02 Nov 2021 19:44:35 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Raul Rangel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/58866 )
Change subject: lib/thread: Add ERROR prefix to error messages
......................................................................
lib/thread: Add ERROR prefix to error messages
This makes it easier to grep for errors.
BUG=b:179699789
TEST=Boot guybrush
Signed-off-by: Raul E Rangel <rrangel(a)chromium.org>
Change-Id: I7eecdfed6046b7d609069e7427f6883a4e9e521d
---
M src/lib/thread.c
1 file changed, 4 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/66/58866/1
diff --git a/src/lib/thread.c b/src/lib/thread.c
index da6189d..a075394 100644
--- a/src/lib/thread.c
+++ b/src/lib/thread.c
@@ -284,14 +284,14 @@
if (!thread_can_yield(current)) {
printk(BIOS_ERR,
- "thread_run() called from non-yielding context!\n");
+ "ERROR: thread_run() called from non-yielding context!\n");
return -1;
}
t = get_free_thread();
if (t == NULL) {
- printk(BIOS_ERR, "thread_run() No more threads!\n");
+ printk(BIOS_ERR, "ERROR: thread_run() No more threads!\n");
return -1;
}
@@ -319,14 +319,14 @@
if (!thread_can_yield(current)) {
printk(BIOS_ERR,
- "thread_run() called from non-yielding context!\n");
+ "ERROR: thread_run() called from non-yielding context!\n");
return -1;
}
t = get_free_thread();
if (t == NULL) {
- printk(BIOS_ERR, "thread_run() No more threads!\n");
+ printk(BIOS_ERR, "ERROR: thread_run() No more threads!\n");
return -1;
}
--
To view, visit https://review.coreboot.org/c/coreboot/+/58866
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I7eecdfed6046b7d609069e7427f6883a4e9e521d
Gerrit-Change-Number: 58866
Gerrit-PatchSet: 1
Gerrit-Owner: Raul Rangel <rrangel(a)chromium.org>
Gerrit-MessageType: newchange
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/52295 )
Change subject: mb/system76/gaze15: Add Gazelle 14 as a variant
......................................................................
Patch Set 6: Code-Review+2
--
To view, visit https://review.coreboot.org/c/coreboot/+/52295
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ib455951d1d26ddfa010d4eb579905235bd1385a9
Gerrit-Change-Number: 52295
Gerrit-PatchSet: 6
Gerrit-Owner: Tim Crawford <tcrawford(a)system76.com>
Gerrit-Reviewer: Jeremy Soller <jeremy(a)system76.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Comment-Date: Tue, 02 Nov 2021 19:22:10 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment