Skip to content

Commit 1cbe624

Browse files
committed
[nrf noup] boot/zephyr: nrf54h20dk cleanup adaptations
This commit removes NRF_CLOCK cleanup for this board build - for Lillium, there is no clock peripheral access from the app domain. Signed-off-by: Michal Kozikowski <[email protected]>
1 parent 35a9552 commit 1cbe624

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

boot/zephyr/nrf_cleanup.c

+7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
55
*/
66

7+
#if !defined(CONFIG_SOC_SERIES_NRF54HX)
78
#include <hal/nrf_clock.h>
9+
#endif
810
#include <hal/nrf_uarte.h>
911
#include <haly/nrfy_uarte.h>
1012
#if defined(NRF_RTC0) || defined(NRF_RTC1) || defined(NRF_RTC2)
@@ -62,10 +64,12 @@ static NRF_UARTE_Type *nrf_uarte_to_clean[] = {
6264
};
6365
#endif
6466

67+
#if !defined(CONFIG_SOC_SERIES_NRF54HX)
6568
static void nrf_cleanup_clock(void)
6669
{
6770
nrf_clock_int_disable(NRF_CLOCK, 0xFFFFFFFF);
6871
}
72+
#endif
6973

7074
void nrf_cleanup_peripheral(void)
7175
{
@@ -109,7 +113,10 @@ void nrf_cleanup_peripheral(void)
109113
#if defined(NRF_DPPIC)
110114
nrf_dppi_channels_disable_all(NRF_DPPIC);
111115
#endif
116+
117+
#if !defined(CONFIG_SOC_SERIES_NRF54HX)
112118
nrf_cleanup_clock();
119+
#endif
113120
}
114121

115122
#if USE_PARTITION_MANAGER \

0 commit comments

Comments
 (0)