-
-
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
Open
filipleple
wants to merge
19
commits into
dasharo
Choose a base branch
from
nuc091
base: dasharo
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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
df5c1d4
configs/config.novacustom_nuc_box: enable SBOM, v0.9.1-rc1
filipleple ef2f3db
src/sbom/Makefile.mk: fix parallel build races
filipleple 4976b49
mb/novacustom/nuc_box/devicetree.cb: move TPM inside domain 0
filipleple 761014e
mb/novacustom/nuc_box/dsdt.asl: fixes for ghost PS/2 and USB wake
filipleple 2b1c46a
mb/novacustom/nuc_box/acpi/sleep.asl: fix USB S3 wake
filipleple 969b19c
mb/novacustom/nuc_box/: increase SMMSTORE size to 512K
filipleple 3013a97
mb/novacustom/nuc_box/ramstage.c: Generate SMBIOS table with ME FWSTS
filipleple 718453e
mb/novacustom/nuc_box: enable debug SMI
filipleple 38a411a
mb/novacustom/nuc_box: Bump Energy Performance Preference to 45%
filipleple 6d55de3
configs/config.novacustom_nuc_box: bump to v0.9.2-rc1
filipleple 548c735
mb/novacustom/nuc_box: move GPIO init to ramstage, fix s0ix compat
filipleple 63ade56
build.sh: bump DASHARO_SDK up to v1.9.0
filipleple ef922fa
build.sh: Fix permissions when building with GH actions
miczyg1 bf1e9bb
build.sh: fix GOCACHE permissions when building with GH actions
filipleple 4671620
security/intel/cbnt/measurement: fix GCC 13 flex-array build failure
filipleple 4755d1c
sbom: simplify wildcard dependency assignments
filipleple 5d63743
mb/novacustom/nuc_box: use if (CONFIG()) for SMBIOS guard
filipleple d57ba2e
3rdparty/dasharo-blobs: update NUC BOX ME
filipleple 293011c
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.