Skip to content

Commit cd04524

Browse files
committed
drivers: clock_control: Separated nrf hfclk shim from nrf clock shim.
Separated clock_control_nrf_hfclk shim from clock_control_nrf shim. Signed-off-by: Michal Frankiewicz <[email protected]>
1 parent c475e9f commit cd04524

33 files changed

+702
-46
lines changed

boards/ezurio/bl54l15_dvk/nrf54l_10_15_cpuapp_common.dtsi

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@
9292
status = "okay";
9393
};
9494

95+
&xo {
96+
status = "okay";
97+
};
98+
9599
&spi00 {
96100
status = "okay";
97101
cs-gpios = <&gpio2 5 GPIO_ACTIVE_LOW>;

boards/ezurio/bl54l15u_dvk/nrf54l15_cpuapp_common.dtsi

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@
9292
status = "okay";
9393
};
9494

95+
&xo {
96+
status = "okay";
97+
};
98+
9599
&spi00 {
96100
status = "okay";
97101
cs-gpios = <&gpio2 5 GPIO_ACTIVE_LOW>;

boards/native/nrf_bsim/nrf54l15bsim_nrf54l15_cpuapp.dts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,3 +135,7 @@
135135
&clock {
136136
status = "okay";
137137
};
138+
139+
&xo {
140+
status = "okay";
141+
};

boards/native/nrf_bsim/nrf54lm20bsim_nrf54lm20a_cpuapp.dts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,3 +142,7 @@
142142
&clock {
143143
status = "okay";
144144
};
145+
146+
&xo {
147+
status = "okay";
148+
};

boards/nordic/nrf54l15dk/nrf54l_05_10_15_cpuapp_common.dtsi

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,10 @@
101101
status = "okay";
102102
};
103103

104+
&xo {
105+
status = "okay";
106+
};
107+
104108
&gpregret1 {
105109
status = "okay";
106110

boards/nordic/nrf54lm20dk/nrf54lm20a_cpuapp_common.dtsi

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,10 @@
130130
status = "okay";
131131
};
132132

133+
&xo {
134+
status = "okay";
135+
};
136+
133137
&ieee802154 {
134138
status = "okay";
135139
};

boards/panasonic/panb611evb/panb611evb_nrf54l15_cpuapp_common.dtsi

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@
9191
status = "okay";
9292
};
9393

94+
&xo {
95+
status = "okay";
96+
};
97+
9498
&spi00 {
9599
status = "okay";
96100
cs-gpios = <&gpio2 5 GPIO_ACTIVE_LOW>;

boards/raytac/an54l15q_db/raytac_an54l15q_db_cpuapp_common.dtsi

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@
9292
status = "okay";
9393
};
9494

95+
&xo {
96+
status = "okay";
97+
};
98+
9599
&spi00 {
96100
status = "okay";
97101
cs-gpios = <&gpio2 5 GPIO_ACTIVE_LOW>;

boards/we/ophelia4ev/ophelia4ev_nrf54l15_cpuapp.dts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@
9999
status = "okay";
100100
};
101101

102+
&xo {
103+
status = "okay";
104+
};
105+
102106
&spi00 {
103107
status = "okay";
104108

drivers/clock_control/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ zephyr_library_sources_ifdef(CONFIG_CLOCK_CONTROL_NRF_HSFLL_LOCAL clock_cont
6060
zephyr_library_sources_ifdef(CONFIG_CLOCK_CONTROL_NRF_IRON_HSFLL_LOCAL clock_control_nrf_iron_hsfll_local.c)
6161
zephyr_library_sources_ifdef(CONFIG_CLOCK_CONTROL_NRF_LFCLK clock_control_nrf_lfclk.c)
6262
zephyr_library_sources_ifdef(CONFIG_CLOCK_CONTROL_NRF_AUXPLL clock_control_nrf_auxpll.c)
63+
zephyr_library_sources_ifdef(CONFIG_CLOCK_CONTROL_NRF_HFCLK clock_control_nrf_hfclk.c)
64+
zephyr_library_sources_ifdef(CONFIG_CLOCK_CONTROL_NRF_COMMON clock_control_nrf_common.c)
6365
zephyr_library_sources_ifdef(CONFIG_CLOCK_CONTROL_BOUFFALOLAB_BL60X clock_control_bl60x.c)
6466
zephyr_library_sources_ifdef(CONFIG_CLOCK_CONTROL_BOUFFALOLAB_BL61X clock_control_bl61x.c)
6567
zephyr_library_sources_ifdef(CONFIG_CLOCK_CONTROL_BOUFFALOLAB_BL70X clock_control_bl70x.c)
@@ -129,3 +131,5 @@ endif()
129131
zephyr_library_sources_ifdef(CONFIG_CLOCK_CONTROL_AST10X0 clock_control_ast10x0.c)
130132
zephyr_library_sources_ifdef(CONFIG_CLOCK_CONTROL_MAX32 clock_control_max32.c)
131133
zephyr_library_sources_ifdef(CONFIG_CLOCK_CONTROL_WCH_RCC clock_control_wch_rcc.c)
134+
135+
zephyr_linker_sources(SECTIONS clock_control_nrf_irq_handlers.ld)

0 commit comments

Comments
 (0)