File tree Expand file tree Collapse file tree 5 files changed +50
-0
lines changed Expand file tree Collapse file tree 5 files changed +50
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,8 @@ config SPI_NRFX_SPIM
31
31
select NRFX_SPIM20 if HAS_HW_NRF_SPIM20
32
32
select NRFX_SPIM21 if HAS_HW_NRF_SPIM21
33
33
select NRFX_SPIM22 if HAS_HW_NRF_SPIM22
34
+ select NRFX_SPIM23 if HAS_HW_NRF_SPIM23
35
+ select NRFX_SPIM24 if HAS_HW_NRF_SPIM24
34
36
select NRFX_SPIM30 if HAS_HW_NRF_SPIM30
35
37
select NRFX_SPIM120 if HAS_HW_NRF_SPIM120
36
38
select NRFX_SPIM121 if HAS_HW_NRF_SPIM121
@@ -55,6 +57,8 @@ config SPI_NRFX_SPIS
55
57
select NRFX_SPIS20 if HAS_HW_NRF_SPIS20
56
58
select NRFX_SPIS21 if HAS_HW_NRF_SPIS21
57
59
select NRFX_SPIS22 if HAS_HW_NRF_SPIS22
60
+ select NRFX_SPIS23 if HAS_HW_NRF_SPIS23
61
+ select NRFX_SPIS24 if HAS_HW_NRF_SPIS24
58
62
select NRFX_SPIS30 if HAS_HW_NRF_SPIS30
59
63
select NRFX_SPIS120 if HAS_HW_NRF_SPIS120
60
64
select NRFX_SPIS130 if HAS_HW_NRF_SPIS130
Original file line number Diff line number Diff line change @@ -562,6 +562,16 @@ config NRFX_SPIM22
562
562
depends on $(dt_nodelabel_exists,spi22)
563
563
select NRFX_SPIM
564
564
565
+ config NRFX_SPIM23
566
+ bool "SPIM23 driver instance"
567
+ depends on $(dt_nodelabel_exists,spi23)
568
+ select NRFX_SPIM
569
+
570
+ config NRFX_SPIM24
571
+ bool "SPIM24 driver instance"
572
+ depends on $(dt_nodelabel_exists,spi24)
573
+ select NRFX_SPIM
574
+
565
575
config NRFX_SPIM30
566
576
bool "SPIM30 driver instance"
567
577
depends on $(dt_nodelabel_exists,spi30)
@@ -660,6 +670,16 @@ config NRFX_SPIS22
660
670
depends on $(dt_nodelabel_exists,spi22)
661
671
select NRFX_SPIS
662
672
673
+ config NRFX_SPIS23
674
+ bool "SPIS23 driver instance"
675
+ depends on $(dt_nodelabel_exists,spi23)
676
+ select NRFX_SPIS
677
+
678
+ config NRFX_SPIS24
679
+ bool "SPIS24 driver instance"
680
+ depends on $(dt_nodelabel_exists,spi24)
681
+ select NRFX_SPIS
682
+
663
683
config NRFX_SPIS30
664
684
bool "SPIS30 driver instance"
665
685
depends on $(dt_nodelabel_exists,spi30)
Original file line number Diff line number Diff line change 512
512
#ifdef CONFIG_NRFX_SPIM22
513
513
#define NRFX_SPIM22_ENABLED 1
514
514
#endif
515
+ #ifdef CONFIG_NRFX_SPIM23
516
+ #define NRFX_SPIM23_ENABLED 1
517
+ #endif
518
+ #ifdef CONFIG_NRFX_SPIM24
519
+ #define NRFX_SPIM24_ENABLED 1
520
+ #endif
515
521
#ifdef CONFIG_NRFX_SPIM30
516
522
#define NRFX_SPIM30_ENABLED 1
517
523
#endif
576
582
#ifdef CONFIG_NRFX_SPIS22
577
583
#define NRFX_SPIS22_ENABLED 1
578
584
#endif
585
+ #ifdef CONFIG_NRFX_SPIS23
586
+ #define NRFX_SPIS23_ENABLED 1
587
+ #endif
588
+ #ifdef CONFIG_NRFX_SPIS24
589
+ #define NRFX_SPIS24_ENABLED 1
590
+ #endif
579
591
#ifdef CONFIG_NRFX_SPIS30
580
592
#define NRFX_SPIS30_ENABLED 1
581
593
#endif
Original file line number Diff line number Diff line change @@ -280,6 +280,12 @@ config HAS_HW_NRF_SPIM21
280
280
config HAS_HW_NRF_SPIM22
281
281
def_bool $(dt_nodelabel_enabled_with_compat,spi22,$(DT_COMPAT_NORDIC_NRF_SPIM))
282
282
283
+ config HAS_HW_NRF_SPIM23
284
+ def_bool $(dt_nodelabel_enabled_with_compat,spi23,$(DT_COMPAT_NORDIC_NRF_SPIM))
285
+
286
+ config HAS_HW_NRF_SPIM24
287
+ def_bool $(dt_nodelabel_enabled_with_compat,spi24,$(DT_COMPAT_NORDIC_NRF_SPIM))
288
+
283
289
config HAS_HW_NRF_SPIM30
284
290
def_bool $(dt_nodelabel_enabled_with_compat,spi30,$(DT_COMPAT_NORDIC_NRF_SPIM))
285
291
@@ -337,6 +343,12 @@ config HAS_HW_NRF_SPIS21
337
343
config HAS_HW_NRF_SPIS22
338
344
def_bool $(dt_nodelabel_enabled_with_compat,spi22,$(DT_COMPAT_NORDIC_NRF_SPIS))
339
345
346
+ config HAS_HW_NRF_SPIS23
347
+ def_bool $(dt_nodelabel_enabled_with_compat,spi23,$(DT_COMPAT_NORDIC_NRF_SPIS))
348
+
349
+ config HAS_HW_NRF_SPIS24
350
+ def_bool $(dt_nodelabel_enabled_with_compat,spi24,$(DT_COMPAT_NORDIC_NRF_SPIS))
351
+
340
352
config HAS_HW_NRF_SPIS30
341
353
def_bool $(dt_nodelabel_enabled_with_compat,spi30,$(DT_COMPAT_NORDIC_NRF_SPIS))
342
354
Original file line number Diff line number Diff line change @@ -266,6 +266,8 @@ CHECK_DT_REG(spi00, NRF_SPIM00);
266
266
CHECK_DT_REG (spi20 , NRF_SPIM20 );
267
267
CHECK_DT_REG (spi21 , NRF_SPIM21 );
268
268
CHECK_DT_REG (spi22 , NRF_SPIM22 );
269
+ CHECK_DT_REG (spi23 , NRF_SPIM23 );
270
+ CHECK_DT_REG (spi24 , NRF_SPIM24 );
269
271
CHECK_DT_REG (spi30 , NRF_SPIM30 );
270
272
CHECK_DT_REG (spi120 , NRF_SPIM120 );
271
273
CHECK_DT_REG (spi121 , NRF_SPIM121 );
You can’t perform that action at this time.
0 commit comments