Skip to content

Conversation

e-rk
Copy link

@e-rk e-rk commented Sep 2, 2025

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.

…rom npm1300"

This reverts commit 0ebf534.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
This reverts commit b74ed06.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
This reverts commit df84dca.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
This reverts commit d2a01f5.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
…d problems with LTO"

This reverts commit dec4c5b.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
…IZE for thread stacks"

This reverts commit 2d0c2aa.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
This reverts commit 68e055a.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
…ic functions"

This reverts commit a2838ea.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
…ether to apply Errata 56"

This reverts commit f328a81.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
…needed"

This reverts commit fb23f7c.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
…urad_hsfll"

This reverts commit 2322f1f.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
…rol enabled"

This reverts commit 69ba6b5.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
This reverts commit 6e376b0.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
…r driver"

This reverts commit 1b2f57c.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
…nding names"

This reverts commit ac70df0.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
…startup_time desc"

This reverts commit 8242754.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
…les in single line mode"

This reverts commit 0b6756b.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
…FO overflow"

This reverts commit c8e872b.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
This reverts commit 5b212c6.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
… EXMIF specific resume"

This reverts commit 2c537a2.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
This reverts commit 58efe6e.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
…) when QER is set to NONE"

This reverts commit f8b7ffa.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
…multiple XIP users"

This reverts commit e9002cf.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
… mode"

This reverts commit 542b843.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
…ng in diag.c"

This reverts commit 2b67e55.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
This reverts commit 6aacec8.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
This reverts commit 5e6a088.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
This reverts commit ea07de4.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
This reverts commit e5563ce.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
This reverts commit 3a87edf.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
57300 and others added 9 commits September 2, 2025 10:42
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 <grzegorz.swiderski@nordicsemi.no>
(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 <grzegorz.swiderski@nordicsemi.no>
(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 <grzegorz.swiderski@nordicsemi.no>
(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 <rghaddab@baylibre.com>
(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 <piotr.kosycarz@nordicsemi.no>
(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 <lukasz.stepnicki@nordicsemi.no>
(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 <jonathan.nilsen@nordicsemi.no>
(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 <michal.stasiak@nordicsemi.no>
(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 <rafal.kuznia@nordicsemi.no>
@jukkar jukkar force-pushed the meta-upmerge branch 5 times, most recently from 816fe0f to ebda687 Compare September 11, 2025 16:19
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 <alain.volmat@foss.st.com>
@jukkar jukkar force-pushed the meta-upmerge branch 11 times, most recently from a6a60ee to baf7586 Compare September 18, 2025 18:08
@jukkar jukkar force-pushed the meta-upmerge branch 3 times, most recently from d913aed to d792280 Compare September 23, 2025 07:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.