-
Notifications
You must be signed in to change notification settings - Fork 636
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[nrf fromlist] tests: arm_irq_vector_table: Disable bellboard for nRF…
…54/nRF92 This test uses the bellboard interrupts for the application and the radio core builds on nRF54H20 and nRF9280. Since it uses the bellboard interrupts it makes sense to ensure that bellboard is disabled in device tree to avoid runtime issues. This is preparation work, bellboard is planned to be enabled by default later and this makes sure that the test will continue to work. Upstream PR #: 83657 Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
- Loading branch information
Showing
4 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
tests/arch/arm/arm_irq_vector_table/boards/nrf54h20dk_nrf54h20_cpuapp.overlay
This file contains 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,13 @@ | ||
/* | ||
* Copyright (c) 2024 Nordic Semiconductor | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
&cpusec_cpuapp_ipc { | ||
status = "disabled"; | ||
}; | ||
|
||
&cpusec_bellboard{ | ||
status = "disabled"; | ||
}; |
13 changes: 13 additions & 0 deletions
13
tests/arch/arm/arm_irq_vector_table/boards/nrf54h20dk_nrf54h20_cpurad.overlay
This file contains 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,13 @@ | ||
/* | ||
* Copyright (c) 2024 Nordic Semiconductor | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
&cpusec_cpurad_ipc { | ||
status = "disabled"; | ||
}; | ||
|
||
&cpusec_bellboard{ | ||
status = "disabled"; | ||
}; |
13 changes: 13 additions & 0 deletions
13
tests/arch/arm/arm_irq_vector_table/boards/nrf9280pdk_nrf9280_cpuapp.overlay
This file contains 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,13 @@ | ||
/* | ||
* Copyright (c) 2024 Nordic Semiconductor | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
&cpusec_cpuapp_ipc { | ||
status = "disabled"; | ||
}; | ||
|
||
&cpusec_bellboard{ | ||
status = "disabled"; | ||
}; |
13 changes: 13 additions & 0 deletions
13
tests/arch/arm/arm_irq_vector_table/boards/nrf9280pdk_nrf9280_cpurad.overlay
This file contains 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,13 @@ | ||
/* | ||
* Copyright (c) 2024 Nordic Semiconductor | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
&cpusec_cpurad_ipc { | ||
status = "disabled"; | ||
}; | ||
|
||
&cpusec_bellboard{ | ||
status = "disabled"; | ||
}; |