-
Notifications
You must be signed in to change notification settings - Fork 722
Cpuconf #2815
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
Closed
+135
−11
Closed
Cpuconf #2815
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
79fcc59
[nrf fromtree] boards: nordic: nrf54h20dk: fix debugging for iron boa…
hakonfam 261c8c2
[nrf fromlist] boards: nordic: add 'iron' board variant for radio
SebastianBoe ae0719d
[nrf fromlist] boards: nordic: nrf54h20dk iron board radiocore support
SebastianBoe 98d12ca
[nrf fromlist] soc: nrf54: Port SYS_INIT to use soc_early_init_hook
SebastianBoe e24441c
[nrf fromlist] cpuconf: Boot the radiocore from the app in soc_late_i…
SebastianBoe 30837c7
[nrf fromlist] samples: sysbuild: Add support for nrf54h20dk/nrf54h20…
SebastianBoe 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
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
30 changes: 30 additions & 0 deletions
30
boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20_cpurad_iron.dts
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 |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| /* | ||
| * Copyright (c) 2025 Nordic Semiconductor ASA | ||
| * | ||
| * SPDX-License-Identifier: Apache-2.0 | ||
| */ | ||
|
|
||
| #include "nrf54h20dk_nrf54h20_cpurad.dts" | ||
|
|
||
| /delete-node/&cpurad_rx_partitions; | ||
| /delete-node/&cpuapp_rx_partitions; | ||
|
|
||
| / { | ||
| chosen { | ||
| zephyr,code-partition = &cpurad_slot0_partition; | ||
| zephyr,uart-mcumgr = &uart135; | ||
| }; | ||
| }; | ||
|
|
||
| &mram1x { | ||
| cpurad_rx_partitions: cpurad-rx-partitions { | ||
| compatible = "nordic,owned-partitions", "fixed-partitions"; | ||
| nordic,access = <NRF_OWNER_ID_RADIOCORE NRF_PERM_RXS>; | ||
| #address-cells = <1>; | ||
| #size-cells = <1>; | ||
|
|
||
| cpurad_slot0_partition: partition@54000 { | ||
| reg = < 0x54000 0x40000 >; | ||
| }; | ||
| }; | ||
| }; |
20 changes: 20 additions & 0 deletions
20
boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20_cpurad_iron_0_9_0.yaml
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 |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| # Copyright (c) 2025 Nordic Semiconductor ASA | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| identifier: nrf54h20dk/nrf54h20/cpurad/iron | ||
| name: nRF54H20-DK-nRF54H20-Radio (IRONside SE compatible) (revision 0.9.0) | ||
| type: mcu | ||
| arch: arm | ||
| toolchain: | ||
| - gnuarmemb | ||
| - xtools | ||
| - zephyr | ||
| sysbuild: true | ||
| ram: 192 | ||
| flash: 256 | ||
| supported: | ||
| - counter | ||
| - gpio | ||
| - pwm | ||
| - retained_mem | ||
| - spi |
31 changes: 31 additions & 0 deletions
31
boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20_cpurad_iron_defconfig
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 |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| # Copyright (c) 2025 Nordic Semiconductor ASA | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| # Enable UART driver | ||
| CONFIG_SERIAL=y | ||
|
|
||
| # Enable console | ||
| CONFIG_CONSOLE=y | ||
| CONFIG_UART_CONSOLE=y | ||
|
|
||
| CONFIG_USE_DT_CODE_PARTITION=y | ||
|
|
||
| # Enable MPU | ||
| CONFIG_ARM_MPU=y | ||
|
|
||
| # Enable hardware stack protection | ||
| CONFIG_HW_STACK_PROTECTION=y | ||
|
|
||
| # MPU-based null-pointer dereferencing detection cannot be applied | ||
| # as the (0x0 - 0x400) region is unmapped for this target. | ||
| CONFIG_NULL_POINTER_EXCEPTION_DETECTION_NONE=y | ||
|
|
||
| # Enable cache | ||
| CONFIG_CACHE_MANAGEMENT=y | ||
| CONFIG_EXTERNAL_CACHE=y | ||
|
|
||
| # GPD is built on top of NRFS and NRFS support requires SSFv2 | ||
| CONFIG_SOC_NRF54H20_GPD=n | ||
|
|
||
| # UICR generation is not supported, and when reintroduced will not use nrf-regtool. | ||
| CONFIG_NRF_REGTOOL_GENERATE_UICR=n |
4 changes: 4 additions & 0 deletions
4
samples/sysbuild/hello_world/boards/nrf54h20dk_nrf54h20_cpuapp_iron.conf
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 |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| # Copyright (c) 2024 Nordic Semiconductor ASA | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| CONFIG_SOC_NRF54H20_CPURAD_ENABLE=y |
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
1 change: 1 addition & 0 deletions
1
samples/sysbuild/hello_world/sysbuild/nrf54h20dk_nrf54h20_cpurad_iron.conf
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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| SB_CONFIG_REMOTE_BOARD="nrf54h20dk/nrf54h20/cpurad/iron" |
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.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think at this point we should move the memory map into one file (I see that zephyrproject-rtos/zephyr#88937 does this)
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
discussed offline. will be done at a later time
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed