Skip to content

Commit 4911a49

Browse files
committed
dts: Add splitted clocks to dts.
Added lfclk, xo and xo24m clocks to dts. Signed-off-by: Michal Frankiewicz <[email protected]>
1 parent 509f793 commit 4911a49

File tree

6 files changed

+58
-1
lines changed

6 files changed

+58
-1
lines changed

applications/nrf_desktop/configuration/nrf52dmouse_nrf52832/app.overlay

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@
22
compatible = "nordic,nrf-spi";
33
status = "okay";
44
};
5+
6+
&lfclk {
7+
k32src = "rc";
8+
};

applications/nrf_desktop/configuration/nrf52kbd_nrf52832/app.overlay

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@
1010
};
1111
};
1212
};
13+
14+
&lfclk {
15+
k32src = "rc";
16+
};

dts/common/nordic/nrf54ls05b.dtsi

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,20 @@
448448
status = "disabled";
449449
};
450450

451+
lfclk: lfclk@10e000 {
452+
compatible = "nordic,nrf-clock-lfclk";
453+
reg = <0x10e000 0x1000>;
454+
interrupts = <270 NRF_DEFAULT_IRQ_PRIORITY>;
455+
status = "disabled";
456+
};
457+
458+
xo: xo@10e000 {
459+
compatible = "nordic,nrf-clock-xo";
460+
reg = <0x10e000 0x1000>;
461+
interrupts = <270 NRF_DEFAULT_IRQ_PRIORITY>;
462+
status = "disabled";
463+
};
464+
451465
power: power@10e000 {
452466
compatible = "nordic,nrf-power";
453467
reg = <0x10e000 0x1000>;

dts/common/nordic/nrf54lv10a.dtsi

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,20 @@
495495
status = "disabled";
496496
};
497497

498+
lfclk: lfclk@10e000 {
499+
compatible = "nordic,nrf-clock-lfclk";
500+
reg = <0x10e000 0x1000>;
501+
interrupts = <270 NRF_DEFAULT_IRQ_PRIORITY>;
502+
status = "disabled";
503+
};
504+
505+
xo: xo@10e000 {
506+
compatible = "nordic,nrf-clock-xo";
507+
reg = <0x10e000 0x1000>;
508+
interrupts = <270 NRF_DEFAULT_IRQ_PRIORITY>;
509+
status = "disabled";
510+
};
511+
498512
power: power@10e000 {
499513
compatible = "nordic,nrf-power";
500514
reg = <0x10e000 0x1000>;

dts/common/nordic/nrf7120_enga.dtsi

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -861,6 +861,27 @@
861861
status = "disabled";
862862
};
863863

864+
lfclk: lfclk@10e000 {
865+
compatible = "nordic,nrf-clock-lfclk";
866+
reg = <0x10e000 0x1000>;
867+
interrupts = <270 NRF_DEFAULT_IRQ_PRIORITY>;
868+
status = "disabled";
869+
};
870+
871+
xo: xo@10e000 {
872+
compatible = "nordic,nrf-clock-xo";
873+
reg = <0x10e000 0x1000>;
874+
interrupts = <270 NRF_DEFAULT_IRQ_PRIORITY>;
875+
status = "disabled";
876+
};
877+
878+
xo24m: xo24m@10e000 {
879+
compatible = "nordic,nrf-clock-xo24m";
880+
reg = <0x10e000 0x1000>;
881+
interrupts = <270 NRF_DEFAULT_IRQ_PRIORITY>;
882+
status = "disabled";
883+
};
884+
864885
audio_auxpll: auxpll@130000 {
865886
compatible = "nordic,nrf-auxpll";
866887
reg = <0x130000 0x1000>;

subsys/mpsl/clock_ctrl/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if MPSL_USE_EXTERNAL_CLOCK_CONTROL
1818

1919
config MPSL_EXT_CLK_CTRL_CLOCK_REQUEST_WAIT_TIMEOUT_MS
2020
int "Timeout value that MPSL will wait for request to be completed by a clock driver, in milliseconds"
21-
default CLOCK_CONTROL_NRF_LFCLK_CLOCK_TIMEOUT_MS if CLOCK_CONTROL_NRF_LFCLK
21+
default CLOCK_CONTROL_NRFS_LFCLK_CLOCK_TIMEOUT_MS if CLOCK_CONTROL_NRF_LFCLK
2222
default 1000
2323
help
2424
The option specifies a timeout value that MPSL clock control integration layer

0 commit comments

Comments
 (0)