forked from nrfconnect/sdk-zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
[nrf noup] dts: Select SoftDevice Controller on nRF54LM20A #1
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
e-rk
wants to merge
833
commits into
jukkar:meta-upmerge
Choose a base branch
from
e-rk:sdc-upmerge
base: meta-upmerge
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.
Conversation
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
…rom npm1300" This reverts commit 0ebf534. Signed-off-by: Jukka Rissanen <[email protected]>
This reverts commit b74ed06. Signed-off-by: Jukka Rissanen <[email protected]>
This reverts commit df84dca. Signed-off-by: Jukka Rissanen <[email protected]>
This reverts commit d2a01f5. Signed-off-by: Jukka Rissanen <[email protected]>
…d problems with LTO" This reverts commit dec4c5b. Signed-off-by: Jukka Rissanen <[email protected]>
…IZE for thread stacks" This reverts commit 2d0c2aa. Signed-off-by: Jukka Rissanen <[email protected]>
This reverts commit 68e055a. Signed-off-by: Jukka Rissanen <[email protected]>
…ic functions" This reverts commit a2838ea. Signed-off-by: Jukka Rissanen <[email protected]>
…ether to apply Errata 56" This reverts commit f328a81. Signed-off-by: Jukka Rissanen <[email protected]>
…needed" This reverts commit fb23f7c. Signed-off-by: Jukka Rissanen <[email protected]>
…urad_hsfll" This reverts commit 2322f1f. Signed-off-by: Jukka Rissanen <[email protected]>
…rol enabled" This reverts commit 69ba6b5. Signed-off-by: Jukka Rissanen <[email protected]>
This reverts commit 6e376b0. Signed-off-by: Jukka Rissanen <[email protected]>
…r driver" This reverts commit 1b2f57c. Signed-off-by: Jukka Rissanen <[email protected]>
…nding names" This reverts commit ac70df0. Signed-off-by: Jukka Rissanen <[email protected]>
…startup_time desc" This reverts commit 8242754. Signed-off-by: Jukka Rissanen <[email protected]>
…les in single line mode" This reverts commit 0b6756b. Signed-off-by: Jukka Rissanen <[email protected]>
…FO overflow" This reverts commit c8e872b. Signed-off-by: Jukka Rissanen <[email protected]>
This reverts commit 5b212c6. Signed-off-by: Jukka Rissanen <[email protected]>
… EXMIF specific resume" This reverts commit 2c537a2. Signed-off-by: Jukka Rissanen <[email protected]>
This reverts commit 58efe6e. Signed-off-by: Jukka Rissanen <[email protected]>
…) when QER is set to NONE" This reverts commit f8b7ffa. Signed-off-by: Jukka Rissanen <[email protected]>
…multiple XIP users" This reverts commit e9002cf. Signed-off-by: Jukka Rissanen <[email protected]>
… mode" This reverts commit 542b843. Signed-off-by: Jukka Rissanen <[email protected]>
…ng in diag.c" This reverts commit 2b67e55. Signed-off-by: Jukka Rissanen <[email protected]>
This reverts commit 6aacec8. Signed-off-by: Jukka Rissanen <[email protected]>
This reverts commit 5e6a088. Signed-off-by: Jukka Rissanen <[email protected]>
This reverts commit ea07de4. Signed-off-by: Jukka Rissanen <[email protected]>
This reverts commit e5563ce. Signed-off-by: Jukka Rissanen <[email protected]>
This reverts commit 3a87edf. Signed-off-by: Jukka Rissanen <[email protected]>
Upstream PR #: 94330 * Explicitly skip tests that depend on CONFIG_ZMS_LOOKUP_CACHE. * In `testcase.yaml`, use `extra_configs` instead of `extra_args` for setting Kconfigs. Signed-off-by: Grzegorz Swiderski <[email protected]> (cherry picked from commit 664645d)
Upstream PR #: 94330 Allow the ZMS API to optionally accept 64 bit IDs. A typedef `zms_id_t` is added, so that the maximum ID width can be controlled using Kconfig. The current ATE structure is already large enough that it is possible to reserve 64 bits for IDs without increasing its total size (128 bits). This makes the feature a natural, low footprint alternative to Settings, for cases where the supported key namespace must be larger than 32 bit but not arbitrarily large. The ATE format does have to be altered to accommodate larger IDs, but the default "32 bit" format is left as is. Now, the `struct zms_ate` describes one of two supported formats, selected by an `#if` condition. In the future, it may be possible to support multiple ATE formats at runtime, in which case the structure can be turned into a union. In the new, "64 bit" ATEs, the `offset` and `metadata` fields are moved into a union, because they are found to be mutually exclusive. With the old format, the same fields are in different locations, but one of them always gets filled with a dummy value, depending on the given ATE type. To cover both cases, a `memset` is used, which should be optimized away by the compiler when appropriate. The only limitation is that the new ATE format has no room for data CRC, but an alternative integrity check can be implemented by the caller. Signed-off-by: Grzegorz Swiderski <[email protected]> (cherry picked from commit 019a9eb)
Upstream PR #: 94330 * Update the "corrupt ATE" tests to work with the new ATE format. * Add a basic test to verify support to 64 bit ZMS IDs. * Add a `testcase.yaml` entry to cover the above points and also run lookup cache tests to evaluate the 64 bit hash function. Signed-off-by: Grzegorz Swiderski <[email protected]> (cherry picked from commit 9311d96)
ZMS legacy enabled by CONFIG_SETTINGS_ZMS_LEGACY uses a different lookup cache function that is optimized for Settings subsystem. Signed-off-by: Riadh Ghaddab <[email protected]> (cherry picked from commit 476ad66)
…en COVERAGE Skip checking timing expectation when COVERAGE is used. Coverage mode affect timing - making code slower, as additional operations are needed to gather coverage stats. Upstream PR #: 94927 Signed-off-by: Piotr Kosycarz <[email protected]> (cherry picked from commit 5ca258a)
DVFS is supported with IronSide call. NRFS DVFS will be not enabled by default. Upstream PR #: 94865 Signed-off-by: Łukasz Stępnicki <[email protected]> (cherry picked from commit 59e6864)
This patch should be dropped as part of the next upmerge. The upcoming release of IronSide SE no longer disables RETAIN in all GPIO instances on boot, so the application must be able to handle the hardware default state of RETAIN being enabled. The GPIO retention is properly handled by changes that are currently only upstream and will be pulled in by the next upmerge. This patch exists a workaround to be able to integrate IronSide SE before the proper solution is pulled in. Signed-off-by: Jonathan Nilsen <[email protected]> (cherry picked from commit 20d89eb)
…ge dump If test is to be run in coverage mode, wait for output to dump at the end of a failing testcase. Upstream PR #: 95162 Signed-off-by: Michał Stasiak <[email protected]> (cherry picked from commit 103b06a)
The SDC HCI controller is defined as a device tree node. A node representing the SDC controller is added and selected as the default over the open source link layer. This is consistent with other SoCs. Signed-off-by: Rafał Kuźnia <[email protected]>
816fe0f
to
ebda687
Compare
jukkar
pushed a commit
that referenced
this pull request
Sep 11, 2025
Add support for NV12/NV21, NV16/NV61 and YUV420/YVU420 (semi)planar formats which can be output by the main #1 pipe. Signed-off-by: Alain Volmat <[email protected]>
a6a60ee
to
baf7586
Compare
d913aed
to
d792280
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The SDC HCI controller is defined as a device tree node. A node representing the SDC controller is added and selected as the default over the open source link layer. This is consistent with other SoCs.