-
Notifications
You must be signed in to change notification settings - Fork 724
Add "iron" board variant #2643
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
Merged
Add "iron" board variant #2643
Changes from all commits
Commits
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
36 changes: 36 additions & 0 deletions
36
boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20_cpuapp_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,36 @@ | ||
| /* | ||
| * Copyright (c) 2025 Nordic Semiconductor ASA | ||
| * | ||
| * SPDX-License-Identifier: Apache-2.0 | ||
| */ | ||
|
|
||
| #include "nrf54h20dk_nrf54h20_cpuapp.dts" | ||
|
|
||
| /delete-node/&cpurad_rx_partitions; | ||
| /delete-node/&cpuapp_rx_partitions; | ||
| /delete-node/&cpusec_cpuapp_ipc; | ||
|
|
||
| /* This is not yet an exhaustive memory map, and contain only a minimum required to boot | ||
| * the application core. | ||
| */ | ||
|
|
||
| &mram1x { | ||
| cpuapp_rx_partitions: cpuapp-rx-partitions { | ||
| compatible = "nordic,owned-partitions", "fixed-partitions"; | ||
| nordic,access = <NRF_OWNER_ID_APPLICATION NRF_PERM_RXS>; | ||
| #address-cells = <1>; | ||
| #size-cells = <1>; | ||
|
|
||
| cpuapp_slot0_partition: partition@2c000 { | ||
| reg = <0x2c000 DT_SIZE_K(480)>; | ||
| }; | ||
|
|
||
| cpuppr_code_partition: partition@a4000 { | ||
| reg = <0xa4000 DT_SIZE_K(64)>; | ||
| }; | ||
|
|
||
| cpuflpr_code_partition: partition@b4000 { | ||
| reg = <0xb4000 DT_SIZE_K(48)>; | ||
| }; | ||
| }; | ||
| }; |
25 changes: 25 additions & 0 deletions
25
boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20_cpuapp_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,25 @@ | ||
| # Copyright (c) 2025 Nordic Semiconductor ASA | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| identifier: nrf54h20dk/nrf54h20/cpuapp/iron | ||
| name: nRF54H20-DK-nRF54H20-Application (IRONside compatible) (revision 0.9.0) | ||
| type: mcu | ||
| arch: arm | ||
| toolchain: | ||
| - gnuarmemb | ||
| - xtools | ||
| - zephyr | ||
| sysbuild: true | ||
| ram: 256 | ||
| flash: 480 | ||
| supported: | ||
| - adc | ||
| - can | ||
| - counter | ||
| - gpio | ||
| - i2c | ||
| - pwm | ||
| - retained_mem | ||
| - spi | ||
| - watchdog | ||
| - usbd |
31 changes: 31 additions & 0 deletions
31
boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20_cpuapp_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 | ||
|
|
||
| # Enable GPIO | ||
| CONFIG_GPIO=y | ||
|
|
||
| # UICR generation is not supported, and when reintroduced will not use nrf-regtool. | ||
| CONFIG_NRF_REGTOOL_GENERATE_UICR=n |
8 changes: 8 additions & 0 deletions
8
samples/drivers/watchdog/boards/nrf54h20dk_nrf54h20_cpuapp_iron.overlay
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,8 @@ | ||
| /* | ||
| * Copyright 2025 Nordic Semiconductor ASA | ||
| * SPDX-License-Identifier: Apache-2.0 | ||
| */ | ||
|
|
||
| &wdt010 { | ||
| status = "okay"; | ||
| }; |
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
6 changes: 6 additions & 0 deletions
6
tests/drivers/adc/adc_api/boards/nrf54h20dk_nrf54h20_cpuapp_iron.overlay
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,6 @@ | ||
| /* | ||
| * Copyright (c) 2025 Nordic Semiconductor | ||
| * SPDX-License-Identifier: Apache-2.0 | ||
| */ | ||
|
|
||
| #include "nrf54h20dk_nrf54h20_common.dtsi" |
2 changes: 2 additions & 0 deletions
2
tests/drivers/watchdog/wdt_basic_api/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,2 @@ | ||
| # Disable dcache | ||
| CONFIG_DCACHE=n |
8 changes: 8 additions & 0 deletions
8
tests/drivers/watchdog/wdt_basic_api/boards/nrf54h20dk_nrf54h20_cpuapp_iron.overlay
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,8 @@ | ||
| /* | ||
| * Copyright 2025 Nordic Semiconductor ASA | ||
| * SPDX-License-Identifier: Apache-2.0 | ||
| */ | ||
|
|
||
| &wdt010 { | ||
| status = "okay"; | ||
| }; |
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.