File tree Expand file tree Collapse file tree 5 files changed +25
-0
lines changed Expand file tree Collapse file tree 5 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ config SPI_NRFX_SPIM
28
28
select NRFX_SPIM3 if HAS_HW_NRF_SPIM3
29
29
select NRFX_SPIM4 if HAS_HW_NRF_SPIM4
30
30
select NRFX_SPIM00 if HAS_HW_NRF_SPIM00
31
+ select NRFX_SPIM01 if HAS_HW_NRF_SPIM01
31
32
select NRFX_SPIM20 if HAS_HW_NRF_SPIM20
32
33
select NRFX_SPIM21 if HAS_HW_NRF_SPIM21
33
34
select NRFX_SPIM22 if HAS_HW_NRF_SPIM22
@@ -54,6 +55,7 @@ config SPI_NRFX_SPIS
54
55
select NRFX_SPIS2 if HAS_HW_NRF_SPIS2
55
56
select NRFX_SPIS3 if HAS_HW_NRF_SPIS3
56
57
select NRFX_SPIS00 if HAS_HW_NRF_SPIS00
58
+ select NRFX_SPIS01 if HAS_HW_NRF_SPIS01
57
59
select NRFX_SPIS20 if HAS_HW_NRF_SPIS20
58
60
select NRFX_SPIS21 if HAS_HW_NRF_SPIS21
59
61
select NRFX_SPIS22 if HAS_HW_NRF_SPIS22
Original file line number Diff line number Diff line change @@ -547,6 +547,11 @@ config NRFX_SPIM00
547
547
depends on $(dt_nodelabel_exists,spi00)
548
548
select NRFX_SPIM
549
549
550
+ config NRFX_SPIM01
551
+ bool "SPIM01 driver instance"
552
+ depends on $(dt_nodelabel_exists,spi01)
553
+ select NRFX_SPIM
554
+
550
555
config NRFX_SPIM20
551
556
bool "SPIM20 driver instance"
552
557
depends on $(dt_nodelabel_exists,spi20)
@@ -655,6 +660,11 @@ config NRFX_SPIS00
655
660
depends on $(dt_nodelabel_exists,spi00)
656
661
select NRFX_SPIS
657
662
663
+ config NRFX_SPIS01
664
+ bool "SPIS01 driver instance"
665
+ depends on $(dt_nodelabel_exists,spi01)
666
+ select NRFX_SPIS
667
+
658
668
config NRFX_SPIS20
659
669
bool "SPIS20 driver instance"
660
670
depends on $(dt_nodelabel_exists,spi20)
Original file line number Diff line number Diff line change 503
503
#ifdef CONFIG_NRFX_SPIM00
504
504
#define NRFX_SPIM00_ENABLED 1
505
505
#endif
506
+ #ifdef CONFIG_NRFX_SPIM01
507
+ #define NRFX_SPIM01_ENABLED 1
508
+ #endif
506
509
#ifdef CONFIG_NRFX_SPIM20
507
510
#define NRFX_SPIM20_ENABLED 1
508
511
#endif
573
576
#ifdef CONFIG_NRFX_SPIS00
574
577
#define NRFX_SPIS00_ENABLED 1
575
578
#endif
579
+ #ifdef CONFIG_NRFX_SPIS01
580
+ #define NRFX_SPIS01_ENABLED 1
581
+ #endif
576
582
#ifdef CONFIG_NRFX_SPIS20
577
583
#define NRFX_SPIS20_ENABLED 1
578
584
#endif
Original file line number Diff line number Diff line change @@ -271,6 +271,9 @@ config HAS_HW_NRF_SPIM4
271
271
config HAS_HW_NRF_SPIM00
272
272
def_bool $(dt_nodelabel_enabled_with_compat,spi00,$(DT_COMPAT_NORDIC_NRF_SPIM))
273
273
274
+ config HAS_HW_NRF_SPIM01
275
+ def_bool $(dt_nodelabel_enabled_with_compat,spi01,$(DT_COMPAT_NORDIC_NRF_SPIM))
276
+
274
277
config HAS_HW_NRF_SPIM20
275
278
def_bool $(dt_nodelabel_enabled_with_compat,spi20,$(DT_COMPAT_NORDIC_NRF_SPIM))
276
279
@@ -334,6 +337,9 @@ config HAS_HW_NRF_SPIS3
334
337
config HAS_HW_NRF_SPIS00
335
338
def_bool $(dt_nodelabel_enabled_with_compat,spi00,$(DT_COMPAT_NORDIC_NRF_SPIS))
336
339
340
+ config HAS_HW_NRF_SPIS01
341
+ def_bool $(dt_nodelabel_enabled_with_compat,spi01,$(DT_COMPAT_NORDIC_NRF_SPIS))
342
+
337
343
config HAS_HW_NRF_SPIS20
338
344
def_bool $(dt_nodelabel_enabled_with_compat,spi20,$(DT_COMPAT_NORDIC_NRF_SPIS))
339
345
Original file line number Diff line number Diff line change @@ -265,6 +265,7 @@ CHECK_SPI_REG(spi2, 2);
265
265
CHECK_DT_REG (spi3 , NRF_SPIM3 );
266
266
CHECK_DT_REG (spi4 , NRF_SPIM4 );
267
267
CHECK_DT_REG (spi00 , NRF_SPIM00 );
268
+ CHECK_DT_REG (spi01 , NRF_SPIM01 );
268
269
CHECK_DT_REG (spi20 , NRF_SPIM20 );
269
270
CHECK_DT_REG (spi21 , NRF_SPIM21 );
270
271
CHECK_DT_REG (spi22 , NRF_SPIM22 );
You can’t perform that action at this time.
0 commit comments