-
-
Notifications
You must be signed in to change notification settings - Fork 22
NUC BOX v0.9.2 #879
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
NUC BOX v0.9.2 #879
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
e5e9b78
configs/config.novacustom_nuc_box: enable SBOM, v0.9.1-rc1
filipleple fd47d51
src/sbom/Makefile.mk: fix parallel build races
filipleple 2fbe107
mb/novacustom/nuc_box/devicetree.cb: move TPM inside domain 0
filipleple 64bf801
mb/novacustom/nuc_box/dsdt.asl: fixes for ghost PS/2 and USB wake
filipleple 33d1ff5
mb/novacustom/nuc_box/acpi/sleep.asl: fix USB S3 wake
filipleple e8287aa
mb/novacustom/nuc_box/: increase SMMSTORE size to 512K
filipleple cf14bd4
mb/novacustom/nuc_box/ramstage.c: Generate SMBIOS table with ME FWSTS
filipleple c1870e0
mb/novacustom/nuc_box: enable debug SMI
filipleple af5b17a
mb/novacustom/nuc_box: Bump Energy Performance Preference to 45%
filipleple 80e64d5
configs/config.novacustom_nuc_box: bump to v0.9.2-rc1
filipleple a69f034
mb/novacustom/nuc_box: move GPIO init to ramstage, fix s0ix compat
filipleple b662f84
build.sh: bump DASHARO_SDK up to v1.9.0
filipleple 1f23f60
build.sh: Fix permissions when building with GH actions
miczyg1 3505bab
build.sh: fix GOCACHE permissions when building with GH actions
filipleple ad9a06a
security/intel/cbnt/measurement: fix GCC 13 flex-array build failure
filipleple fa657f7
sbom: simplify wildcard dependency assignments
filipleple 1f287cf
mb/novacustom/nuc_box: use if (CONFIG()) for SMBIOS guard
filipleple dc3867d
3rdparty/dasharo-blobs: update NUC BOX ME
filipleple edf56ee
mb/nuc_box/: shrink ME region for consumer bin. in FMAP
filipleple File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Submodule dasharo-blobs
updated
4 files
| +14 −4 | novacustom/nuc_box/README.md | |
| +2 −2 | novacustom/nuc_box/SHA256SUMS | |
| + − | novacustom/nuc_box/ifd.bin | |
| + − | novacustom/nuc_box/me.bin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,30 @@ | ||
| /* SPDX-License-Identifier: GPL-2.0-only */ | ||
|
|
||
| #include <intelblocks/gpio.h> | ||
|
|
||
| /* | ||
| * Enable/disable dynamic clock gating for all GPIO communities. | ||
| * Arg0 - MISCCFG_GPIO_PM_CONFIG_BITS to enable, 0 to disable. | ||
| */ | ||
| Method (PGPM, 1, Serialized) | ||
| { | ||
| For (Local0 = 0, Local0 < 6, Local0++) | ||
| { | ||
| \_SB.PCI0.CGPM (Local0, Arg0) | ||
| } | ||
| } | ||
|
|
||
| /* Method called from _PTS prior to enter sleep state */ | ||
| Method (MPTS, 1) { | ||
| Method (MPTS, 1, Serialized) { | ||
| PGPM (MISCCFG_GPIO_PM_CONFIG_BITS) | ||
| \_SB.SIO.PTS() | ||
| } | ||
|
|
||
| /* Method called from _WAK prior to wakeup */ | ||
| Method (MWAK, 1) { | ||
| Method (MWAK, 1, Serialized) { | ||
| \_SB.SIO.WAK() | ||
| PGPM (0) | ||
| If (CondRefOf (\_SB.PCI0.TXHC)) { | ||
| \_SB.TCWK (Arg0) | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 5 additions & 10 deletions
15
src/mainboard/novacustom/nuc_box/variants/nuc_box/board.fmd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.