Skip to content

Commit 559f627

Browse files
nordic-krchjukkar
authored andcommitted
[nrf fromtree] dts: common: nordic: nrf54l20: Add missing nodes
Add missing nodes: i2c23, i2c24, spi23, spi24, uart23, uart24. Signed-off-by: Krzysztof Chruściński <[email protected]> (cherry picked from commit d87bafe) (cherry picked from commit 7c7950a)
1 parent c2ce476 commit 559f627

File tree

1 file changed

+78
-0
lines changed

1 file changed

+78
-0
lines changed

dts/common/nordic/nrf54l20.dtsi

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -501,6 +501,84 @@
501501
status = "disabled";
502502
};
503503

504+
i2c23: i2c@ed000 {
505+
compatible = "nordic,nrf-twim";
506+
#address-cells = <1>;
507+
#size-cells = <0>;
508+
reg = <0xed000 0x1000>;
509+
interrupts = <237 NRF_DEFAULT_IRQ_PRIORITY>;
510+
easydma-maxcnt-bits = <16>;
511+
status = "disabled";
512+
zephyr,pm-device-runtime-auto;
513+
};
514+
515+
spi23: spi@ed000 {
516+
/*
517+
* This spi node can be either SPIM or SPIS,
518+
* for the user to pick:
519+
* compatible = "nordic,nrf-spim" or
520+
* "nordic,nrf-spis".
521+
*/
522+
compatible = "nordic,nrf-spim";
523+
#address-cells = <1>;
524+
#size-cells = <0>;
525+
reg = <0xed000 0x1000>;
526+
interrupts = <237 NRF_DEFAULT_IRQ_PRIORITY>;
527+
max-frequency = <DT_FREQ_M(8)>;
528+
easydma-maxcnt-bits = <16>;
529+
rx-delay-supported;
530+
rx-delay = <1>;
531+
status = "disabled";
532+
};
533+
534+
uart23: uart@ed000 {
535+
compatible = "nordic,nrf-uarte";
536+
reg = <0xed000 0x1000>;
537+
interrupts = <237 NRF_DEFAULT_IRQ_PRIORITY>;
538+
status = "disabled";
539+
endtx-stoptx-supported;
540+
frame-timeout-supported;
541+
};
542+
543+
i2c24: i2c@ee000 {
544+
compatible = "nordic,nrf-twim";
545+
#address-cells = <1>;
546+
#size-cells = <0>;
547+
reg = <0xee000 0x1000>;
548+
interrupts = <238 NRF_DEFAULT_IRQ_PRIORITY>;
549+
easydma-maxcnt-bits = <16>;
550+
status = "disabled";
551+
zephyr,pm-device-runtime-auto;
552+
};
553+
554+
spi24: spi@ee000 {
555+
/*
556+
* This spi node can be either SPIM or SPIS,
557+
* for the user to pick:
558+
* compatible = "nordic,nrf-spim" or
559+
* "nordic,nrf-spis".
560+
*/
561+
compatible = "nordic,nrf-spim";
562+
#address-cells = <1>;
563+
#size-cells = <0>;
564+
reg = <0xee000 0x1000>;
565+
interrupts = <238 NRF_DEFAULT_IRQ_PRIORITY>;
566+
max-frequency = <DT_FREQ_M(8)>;
567+
easydma-maxcnt-bits = <16>;
568+
rx-delay-supported;
569+
rx-delay = <1>;
570+
status = "disabled";
571+
};
572+
573+
uart24: uart@ee000 {
574+
compatible = "nordic,nrf-uarte";
575+
reg = <0xee000 0x1000>;
576+
interrupts = <238 NRF_DEFAULT_IRQ_PRIORITY>;
577+
status = "disabled";
578+
endtx-stoptx-supported;
579+
frame-timeout-supported;
580+
};
581+
504582
dppic30: dppic@102000 {
505583
compatible = "nordic,nrf-dppic";
506584
reg = <0x102000 0x808>;

0 commit comments

Comments
 (0)