@@ -65,14 +65,6 @@ static atomic_t ipc_atomic_sem = ATOMIC_INIT(0);
65
65
.sw_multi_periph = false, \
66
66
}
67
67
68
- struct mspi_nrfe_data {
69
- struct mspi_xfer xfer ;
70
- struct mspi_dev_id dev_id ;
71
- struct mspi_dev_cfg dev_cfg ;
72
- };
73
-
74
- static struct mspi_nrfe_data dev_data ;
75
-
76
68
struct mspi_nrfe_config {
77
69
struct mspi_cfg mspicfg ;
78
70
const struct pinctrl_dev_config * pcfg ;
@@ -83,7 +75,7 @@ static const struct mspi_nrfe_config dev_config = {
83
75
.pcfg = PINCTRL_DT_INST_DEV_CONFIG_GET (0 ),
84
76
};
85
77
86
- static void ipc_recv_clbk (const void * data , size_t len );
78
+ static void ep_recv (const void * data , size_t len , void * priv );
87
79
88
80
static void ep_bound (void * priv )
89
81
{
@@ -96,18 +88,8 @@ static void ep_bound(void *priv)
96
88
LOG_DBG ("Ep bounded" );
97
89
}
98
90
99
- static void ep_recv (const void * data , size_t len , void * priv )
100
- {
101
- (void )priv ;
102
-
103
- ipc_recv_clbk (data , len );
104
- }
105
-
106
91
static struct ipc_ept_cfg ep_cfg = {
107
- .cb = {
108
- .bound = ep_bound ,
109
- .received = ep_recv ,
110
- },
92
+ .cb = {.bound = ep_bound , .received = ep_recv },
111
93
};
112
94
113
95
/**
@@ -120,24 +102,16 @@ static struct ipc_ept_cfg ep_cfg = {
120
102
* @param data Pointer to the received message.
121
103
* @param len Length of the received message.
122
104
*/
123
- static void ipc_recv_clbk (const void * data , size_t len )
105
+ static void ep_recv (const void * data , size_t len , void * priv )
124
106
{
125
- nrfe_mspi_flpr_response_t * response = (nrfe_mspi_flpr_response_t * )data ;
107
+ nrfe_mspi_flpr_response_msg_t * response = (nrfe_mspi_flpr_response_msg_t * )data ;
126
108
127
109
switch (response -> opcode ) {
128
110
case NRFE_MSPI_CONFIG_PINS : {
129
111
#if defined(CONFIG_MULTITHREADING )
130
112
k_sem_give (& ipc_sem_cfg );
131
113
#else
132
114
atomic_set_bit (& ipc_atomic_sem , NRFE_MSPI_CONFIG_PINS );
133
- #endif
134
- break ;
135
- }
136
- case NRFE_MSPI_CONFIG_CTRL : {
137
- #if defined(CONFIG_MULTITHREADING )
138
- k_sem_give (& ipc_sem_cfg );
139
- #else
140
- atomic_set_bit (& ipc_atomic_sem , NRFE_MSPI_CONFIG_CTRL );
141
115
#endif
142
116
break ;
143
117
}
@@ -167,7 +141,7 @@ static void ipc_recv_clbk(const void *data, size_t len)
167
141
}
168
142
case NRFE_MSPI_TXRX : {
169
143
if (len > 0 ) {
170
- ipc_received = len - 1 ;
144
+ ipc_received = len - sizeof ( nrfe_mspi_opcode_t ) ;
171
145
ipc_receive_buffer = (uint8_t * )& response -> data ;
172
146
}
173
147
#if defined(CONFIG_MULTITHREADING )
@@ -196,7 +170,7 @@ static void ipc_recv_clbk(const void *data, size_t len)
196
170
* @return 0 on success, -ENOMEM if there is no space in the buffer,
197
171
* -ETIMEDOUT if the transfer timed out.
198
172
*/
199
- static int mspi_ipc_data_send (enum nrfe_mspi_opcode opcode , const void * data , size_t len )
173
+ static int mspi_ipc_data_send (nrfe_mspi_opcode_t opcode , const void * data , size_t len )
200
174
{
201
175
int rc ;
202
176
@@ -233,14 +207,13 @@ static int mspi_ipc_data_send(enum nrfe_mspi_opcode opcode, const void *data, si
233
207
*
234
208
* @return 0 on success, -ETIMEDOUT if the operation timed out.
235
209
*/
236
- static int nrfe_mspi_wait_for_response (enum nrfe_mspi_opcode opcode , uint32_t timeout )
210
+ static int nrfe_mspi_wait_for_response (nrfe_mspi_opcode_t opcode , uint32_t timeout )
237
211
{
238
212
#if defined(CONFIG_MULTITHREADING )
239
213
int ret = 0 ;
240
214
241
215
switch (opcode ) {
242
216
case NRFE_MSPI_CONFIG_PINS :
243
- case NRFE_MSPI_CONFIG_CTRL :
244
217
case NRFE_MSPI_CONFIG_DEV :
245
218
case NRFE_MSPI_CONFIG_XFER : {
246
219
ret = k_sem_take (& ipc_sem_cfg , K_MSEC (timeout ));
@@ -280,28 +253,6 @@ static int nrfe_mspi_wait_for_response(enum nrfe_mspi_opcode opcode, uint32_t ti
280
253
return 0 ;
281
254
}
282
255
283
- /**
284
- * @brief Send a data struct to the FLPR core using the IPC service.
285
- *
286
- * The function sends a data structure to the FLPR core,
287
- * inserting a byte at the beginning responsible for the opcode.
288
- *
289
- * @param opcode The NRFE MSPI opcode.
290
- * @param data The data to send.
291
- * @param len The length of the data to send.
292
- *
293
- * @return 0 on success, negative errno code on failure.
294
- */
295
- static int send_with_opcode (enum nrfe_mspi_opcode opcode , const void * data , size_t len )
296
- {
297
- uint8_t buffer [len + 1 ];
298
-
299
- buffer [0 ] = (uint8_t )opcode ;
300
- memcpy (& buffer [1 ], data , len );
301
-
302
- return mspi_ipc_data_send (opcode , buffer , sizeof (buffer ));
303
- }
304
-
305
256
/**
306
257
* @brief Send a configuration struct to the FLPR core using the IPC service.
307
258
*
@@ -311,11 +262,11 @@ static int send_with_opcode(enum nrfe_mspi_opcode opcode, const void *data, size
311
262
*
312
263
* @return 0 on success, negative errno code on failure.
313
264
*/
314
- static int send_config (enum nrfe_mspi_opcode opcode , const void * config , size_t len )
265
+ static int send_config (nrfe_mspi_opcode_t opcode , const void * config , size_t len )
315
266
{
316
267
int rc ;
268
+ rc = mspi_ipc_data_send (opcode , config , len );
317
269
318
- rc = send_with_opcode (opcode , config , len );
319
270
if (rc < 0 ) {
320
271
LOG_ERR ("Configuration send failed: %d" , rc );
321
272
return rc ;
@@ -342,9 +293,9 @@ static int send_config(enum nrfe_mspi_opcode opcode, const void *config, size_t
342
293
*/
343
294
static int api_config (const struct mspi_dt_spec * spec )
344
295
{
345
- int ret ;
346
296
const struct mspi_cfg * config = & spec -> config ;
347
297
const struct mspi_nrfe_config * drv_cfg = spec -> bus -> config ;
298
+ nrfe_mspi_pinctrl_soc_pin_msg_t mspi_pin_config ;
348
299
349
300
if (config -> op_mode != MSPI_OP_MODE_CONTROLLER ) {
350
301
LOG_ERR ("Only MSPI controller mode is supported." );
@@ -363,7 +314,6 @@ static int api_config(const struct mspi_dt_spec *spec)
363
314
364
315
/* Create pinout configuration */
365
316
uint8_t state_id ;
366
- nrfe_mspi_pinctrl_soc_pin_t pins_cfg ;
367
317
368
318
for (state_id = 0 ; state_id < drv_cfg -> pcfg -> state_cnt ; state_id ++ ) {
369
319
if (drv_cfg -> pcfg -> states [state_id ].id == PINCTRL_STATE_DEFAULT ) {
@@ -382,17 +332,13 @@ static int api_config(const struct mspi_dt_spec *spec)
382
332
}
383
333
384
334
for (uint8_t i = 0 ; i < drv_cfg -> pcfg -> states [state_id ].pin_cnt ; i ++ ) {
385
- pins_cfg .pin [i ] = drv_cfg -> pcfg -> states [state_id ].pins [i ];
335
+ mspi_pin_config .pin [i ] = drv_cfg -> pcfg -> states [state_id ].pins [i ];
386
336
}
337
+ mspi_pin_config .opcode = NRFE_MSPI_CONFIG_PINS ;
387
338
388
339
/* Send pinout configuration to FLPR */
389
- ret = send_config (NRFE_MSPI_CONFIG_PINS , (const void * )pins_cfg .pin , sizeof (pins_cfg ));
390
- if (ret < 0 ) {
391
- return ret ;
392
- }
393
-
394
- /* Send controller configuration to FLPR */
395
- return send_config (NRFE_MSPI_CONFIG_CTRL , (const void * )config , sizeof (struct mspi_cfg ));
340
+ return send_config (NRFE_MSPI_CONFIG_PINS , (const void * )& mspi_pin_config ,
341
+ sizeof (nrfe_mspi_pinctrl_soc_pin_msg_t ));
396
342
}
397
343
398
344
static int check_io_mode (enum mspi_io_mode io_mode )
@@ -425,8 +371,8 @@ static int api_dev_config(const struct device *dev, const struct mspi_dev_id *de
425
371
const enum mspi_dev_cfg_mask param_mask , const struct mspi_dev_cfg * cfg )
426
372
{
427
373
const struct mspi_nrfe_config * drv_cfg = dev -> config ;
428
- struct mspi_nrfe_data * drv_data = dev -> data ;
429
374
int rc ;
375
+ nrfe_mspi_dev_config_msg_t mspi_dev_config_msg ;
430
376
431
377
if (param_mask & MSPI_DEVICE_CONFIG_MEM_BOUND ) {
432
378
if (cfg -> mem_boundary ) {
@@ -471,10 +417,16 @@ static int api_dev_config(const struct device *dev, const struct mspi_dev_id *de
471
417
}
472
418
}
473
419
474
- memcpy ((void * )& drv_data -> dev_cfg , (void * )cfg , sizeof (drv_data -> dev_cfg ));
475
- drv_data -> dev_id = * dev_id ;
420
+ mspi_dev_config_msg .opcode = NRFE_MSPI_CONFIG_DEV ;
421
+ mspi_dev_config_msg .device_index = dev_id -> dev_idx ;
422
+ mspi_dev_config_msg .dev_config .io_mode = cfg -> io_mode ;
423
+ mspi_dev_config_msg .dev_config .cpp = cfg -> cpp ;
424
+ mspi_dev_config_msg .dev_config .ce_polarity = cfg -> ce_polarity ;
425
+ mspi_dev_config_msg .dev_config .freq = cfg -> freq ;
426
+ mspi_dev_config_msg .dev_config .ce_index = cfg -> ce_num ;
476
427
477
- return send_config (NRFE_MSPI_CONFIG_DEV , (void * )cfg , sizeof (struct mspi_dev_cfg ));
428
+ return send_config (NRFE_MSPI_CONFIG_DEV , (void * )& mspi_dev_config_msg ,
429
+ sizeof (nrfe_mspi_dev_config_msg_t ));
478
430
}
479
431
480
432
static int api_get_channel_status (const struct device * dev , uint8_t ch )
@@ -497,21 +449,23 @@ static int api_get_channel_status(const struct device *dev, uint8_t ch)
497
449
static int xfer_packet (struct mspi_xfer_packet * packet , uint32_t timeout )
498
450
{
499
451
int rc ;
500
- uint32_t struct_size = sizeof (struct mspi_xfer_packet );
501
- uint32_t len = struct_size + packet -> num_bytes + 1 ;
452
+ uint32_t len = sizeof (nrfe_mspi_xfer_packet_msg_t ) + packet -> num_bytes ;
502
453
uint8_t buffer [len ];
503
- enum nrfe_mspi_opcode opcode = (packet -> dir == MSPI_RX ) ? NRFE_MSPI_TXRX : NRFE_MSPI_TX ;
454
+ nrfe_mspi_xfer_packet_msg_t * xfer_packet = (nrfe_mspi_xfer_packet_msg_t * )buffer ;
455
+
456
+ xfer_packet -> opcode = (packet -> dir == MSPI_RX ) ? NRFE_MSPI_TXRX : NRFE_MSPI_TX ;
457
+ xfer_packet -> command = packet -> cmd ;
458
+ xfer_packet -> address = packet -> address ;
459
+ xfer_packet -> num_bytes = packet -> num_bytes ;
504
460
505
- buffer [0 ] = (uint8_t )opcode ;
506
- memcpy ((void * )& buffer [1 ], (void * )packet , struct_size );
507
- memcpy ((void * )(& buffer [1 ] + struct_size ), (void * )packet -> data_buf , packet -> num_bytes );
461
+ memcpy ((void * )xfer_packet -> data , (void * )packet -> data_buf , packet -> num_bytes );
508
462
509
- rc = mspi_ipc_data_send (opcode , buffer , len );
463
+ rc = mspi_ipc_data_send (xfer_packet -> opcode , buffer , len );
510
464
if (rc < 0 ) {
511
465
LOG_ERR ("Packet transfer error: %d" , rc );
512
466
}
513
467
514
- rc = nrfe_mspi_wait_for_response (opcode , timeout );
468
+ rc = nrfe_mspi_wait_for_response (xfer_packet -> opcode , timeout );
515
469
if (rc < 0 ) {
516
470
LOG_ERR ("FLPR Xfer response timeout: %d" , rc );
517
471
return rc ;
@@ -573,10 +527,10 @@ static int start_next_packet(struct mspi_xfer *xfer, uint32_t packets_done)
573
527
static int api_transceive (const struct device * dev , const struct mspi_dev_id * dev_id ,
574
528
const struct mspi_xfer * req )
575
529
{
576
- (void )dev_id ;
577
- struct mspi_nrfe_data * drv_data = dev -> data ;
530
+ (void )dev ;
578
531
uint32_t packets_done = 0 ;
579
532
int rc ;
533
+ nrfe_mspi_xfer_config_msg_t mspi_xfer_config_msg ;
580
534
581
535
/* TODO: add support for asynchronous transfers */
582
536
if (req -> async ) {
@@ -588,16 +542,23 @@ static int api_transceive(const struct device *dev, const struct mspi_dev_id *de
588
542
return - EFAULT ;
589
543
}
590
544
591
- drv_data -> xfer = * req ;
545
+ mspi_xfer_config_msg .opcode = NRFE_MSPI_CONFIG_XFER ;
546
+ mspi_xfer_config_msg .xfer_config .device_index = dev_id -> dev_idx ;
547
+ mspi_xfer_config_msg .xfer_config .command_length = req -> cmd_length ;
548
+ mspi_xfer_config_msg .xfer_config .address_length = req -> addr_length ;
549
+ mspi_xfer_config_msg .xfer_config .hold_ce = req -> hold_ce ;
550
+ mspi_xfer_config_msg .xfer_config .tx_dummy = req -> tx_dummy ;
551
+ mspi_xfer_config_msg .xfer_config .rx_dummy = req -> rx_dummy ;
592
552
593
- rc = send_config (NRFE_MSPI_CONFIG_XFER , (void * )& drv_data -> xfer , sizeof (struct mspi_xfer ));
553
+ rc = send_config (NRFE_MSPI_CONFIG_XFER , (void * )& mspi_xfer_config_msg ,
554
+ sizeof (nrfe_mspi_xfer_config_msg_t ));
594
555
if (rc < 0 ) {
595
556
LOG_ERR ("Send xfer config error: %d" , rc );
596
557
return rc ;
597
558
}
598
559
599
- while (packets_done < drv_data -> xfer . num_packet ) {
600
- rc = start_next_packet (& drv_data -> xfer , packets_done );
560
+ while (packets_done < req -> num_packet ) {
561
+ rc = start_next_packet (( struct mspi_xfer * ) req , packets_done );
601
562
if (rc < 0 ) {
602
563
LOG_ERR ("Start next packet error: %d" , rc );
603
564
return rc ;
@@ -710,5 +671,5 @@ static const struct mspi_driver_api drv_api = {
710
671
711
672
PM_DEVICE_DT_INST_DEFINE (0 , dev_pm_action_cb );
712
673
713
- DEVICE_DT_INST_DEFINE (0 , nrfe_mspi_init , PM_DEVICE_DT_INST_GET (0 ), & dev_data , & dev_config ,
714
- POST_KERNEL , CONFIG_MSPI_NRFE_INIT_PRIORITY , & drv_api );
674
+ DEVICE_DT_INST_DEFINE (0 , nrfe_mspi_init , PM_DEVICE_DT_INST_GET (0 ), NULL , & dev_config , POST_KERNEL ,
675
+ CONFIG_MSPI_NRFE_INIT_PRIORITY , & drv_api );
0 commit comments