File tree 3 files changed +6
-5
lines changed
applications/sdp/mspi/src
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 22
22
23
23
#define DEVICES_MAX 5
24
24
#define DATA_PINS_MAX 8
25
- #define VIO_COUNT 11
26
25
27
26
/* Bellow this CNT0 period pin steering force has to be increased to produce correct waveform.
28
27
* CNT0 value 1 generates 32MHz clock.
53
52
54
53
BUILD_ASSERT (CONFIG_SDP_MSPI_MAX_RESPONSE_SIZE > 0 , "Response max size should be greater that 0" );
55
54
56
- static const uint8_t pin_to_vio_map [VIO_COUNT ] = {
55
+ static const uint8_t pin_to_vio_map [NRFE_MSPI_PINS_MAX ] = {
57
56
4 , /* Physical pin 0 */
58
57
0 , /* Physical pin 1 */
59
58
1 , /* Physical pin 2 */
@@ -342,7 +341,7 @@ static void config_pins(nrfe_mspi_pinctrl_soc_pin_msg_t *pins_cfg)
342
341
xfer_params .tx_direction_mask = 0 ;
343
342
xfer_params .rx_direction_mask = 0 ;
344
343
345
- for (uint8_t i = 0 ; i < NRFE_MSPI_PINS_MAX ; i ++ ) {
344
+ for (uint8_t i = 0 ; i < pins_cfg -> pins_count ; i ++ ) {
346
345
uint32_t psel = NRF_GET_PIN (pins_cfg -> pin [i ]);
347
346
uint32_t fun = NRF_GET_FUN (pins_cfg -> pin [i ]);
348
347
@@ -352,7 +351,7 @@ static void config_pins(nrfe_mspi_pinctrl_soc_pin_msg_t *pins_cfg)
352
351
353
352
uint8_t pin_number = NRF_PIN_NUMBER_TO_PIN (psel );
354
353
355
- NRFX_ASSERT (pin_number < VIO_COUNT );
354
+ NRFX_ASSERT (pin_number < NRFE_MSPI_PINS_MAX );
356
355
357
356
if ((fun >= NRF_FUN_SDP_MSPI_CS0 ) && (fun <= NRF_FUN_SDP_MSPI_CS4 )) {
358
357
Original file line number Diff line number Diff line change @@ -451,6 +451,7 @@ static int api_config(const struct mspi_dt_spec *spec)
451
451
mspi_pin_config .pin [i ] = drv_cfg -> pcfg -> states [state_id ].pins [i ];
452
452
}
453
453
mspi_pin_config .opcode = NRFE_MSPI_CONFIG_PINS ;
454
+ mspi_pin_config .pins_count = drv_cfg -> pcfg -> states [state_id ].pin_cnt ;
454
455
455
456
/* Send pinout configuration to FLPR */
456
457
return send_data (NRFE_MSPI_CONFIG_PINS , (const void * )& mspi_pin_config ,
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ extern "C" {
16
16
#endif
17
17
18
18
#ifdef CONFIG_SOC_NRF54L15
19
- #define NRFE_MSPI_PINS_MAX 6
19
+ #define NRFE_MSPI_PINS_MAX 11
20
20
#else
21
21
#error "Unsupported SoC for SDP MSPI"
22
22
#endif
@@ -61,6 +61,7 @@ typedef struct {
61
61
62
62
typedef struct {
63
63
nrfe_mspi_opcode_t opcode ; /* NRFE_MSPI_CONFIG_PINS */
64
+ uint8_t pins_count ;
64
65
pinctrl_soc_pin_t pin [NRFE_MSPI_PINS_MAX ];
65
66
} nrfe_mspi_pinctrl_soc_pin_msg_t ;
66
67
You can’t perform that action at this time.
0 commit comments