1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
4 *
5 */
6
7 #include <linux/delay.h>
8 #include <linux/device.h>
9 #include <linux/dma-direction.h>
10 #include <linux/dma-mapping.h>
11 #include <linux/interrupt.h>
12 #include <linux/list.h>
13 #include <linux/mhi.h>
14 #include <linux/module.h>
15 #include <linux/skbuff.h>
16 #include <linux/slab.h>
17 #include "internal.h"
18
mhi_read_reg(struct mhi_controller * mhi_cntrl,void __iomem * base,u32 offset,u32 * out)19 int __must_check mhi_read_reg(struct mhi_controller *mhi_cntrl,
20 void __iomem *base, u32 offset, u32 *out)
21 {
22 return mhi_cntrl->read_reg(mhi_cntrl, base + offset, out);
23 }
24
mhi_read_reg_field(struct mhi_controller * mhi_cntrl,void __iomem * base,u32 offset,u32 mask,u32 * out)25 int __must_check mhi_read_reg_field(struct mhi_controller *mhi_cntrl,
26 void __iomem *base, u32 offset,
27 u32 mask, u32 *out)
28 {
29 u32 tmp;
30 int ret;
31
32 ret = mhi_read_reg(mhi_cntrl, base, offset, &tmp);
33 if (ret)
34 return ret;
35
36 *out = (tmp & mask) >> __ffs(mask);
37
38 return 0;
39 }
40
mhi_poll_reg_field(struct mhi_controller * mhi_cntrl,void __iomem * base,u32 offset,u32 mask,u32 val,u32 delayus)41 int __must_check mhi_poll_reg_field(struct mhi_controller *mhi_cntrl,
42 void __iomem *base, u32 offset,
43 u32 mask, u32 val, u32 delayus)
44 {
45 int ret;
46 u32 out, retry = (mhi_cntrl->timeout_ms * 1000) / delayus;
47
48 while (retry--) {
49 ret = mhi_read_reg_field(mhi_cntrl, base, offset, mask, &out);
50 if (ret)
51 return ret;
52
53 if (out == val)
54 return 0;
55
56 fsleep(delayus);
57 }
58
59 return -ETIMEDOUT;
60 }
61
mhi_write_reg(struct mhi_controller * mhi_cntrl,void __iomem * base,u32 offset,u32 val)62 void mhi_write_reg(struct mhi_controller *mhi_cntrl, void __iomem *base,
63 u32 offset, u32 val)
64 {
65 mhi_cntrl->write_reg(mhi_cntrl, base + offset, val);
66 }
67
mhi_write_reg_field(struct mhi_controller * mhi_cntrl,void __iomem * base,u32 offset,u32 mask,u32 val)68 int __must_check mhi_write_reg_field(struct mhi_controller *mhi_cntrl,
69 void __iomem *base, u32 offset, u32 mask,
70 u32 val)
71 {
72 int ret;
73 u32 tmp;
74
75 ret = mhi_read_reg(mhi_cntrl, base, offset, &tmp);
76 if (ret)
77 return ret;
78
79 tmp &= ~mask;
80 tmp |= (val << __ffs(mask));
81 mhi_write_reg(mhi_cntrl, base, offset, tmp);
82
83 return 0;
84 }
85
mhi_write_db(struct mhi_controller * mhi_cntrl,void __iomem * db_addr,dma_addr_t db_val)86 void mhi_write_db(struct mhi_controller *mhi_cntrl, void __iomem *db_addr,
87 dma_addr_t db_val)
88 {
89 mhi_write_reg(mhi_cntrl, db_addr, 4, upper_32_bits(db_val));
90 mhi_write_reg(mhi_cntrl, db_addr, 0, lower_32_bits(db_val));
91 }
92
mhi_db_brstmode(struct mhi_controller * mhi_cntrl,struct db_cfg * db_cfg,void __iomem * db_addr,dma_addr_t db_val)93 void mhi_db_brstmode(struct mhi_controller *mhi_cntrl,
94 struct db_cfg *db_cfg,
95 void __iomem *db_addr,
96 dma_addr_t db_val)
97 {
98 if (db_cfg->db_mode) {
99 db_cfg->db_val = db_val;
100 mhi_write_db(mhi_cntrl, db_addr, db_val);
101 db_cfg->db_mode = 0;
102 }
103 }
104
mhi_db_brstmode_disable(struct mhi_controller * mhi_cntrl,struct db_cfg * db_cfg,void __iomem * db_addr,dma_addr_t db_val)105 void mhi_db_brstmode_disable(struct mhi_controller *mhi_cntrl,
106 struct db_cfg *db_cfg,
107 void __iomem *db_addr,
108 dma_addr_t db_val)
109 {
110 db_cfg->db_val = db_val;
111 mhi_write_db(mhi_cntrl, db_addr, db_val);
112 }
113
mhi_ring_er_db(struct mhi_event * mhi_event)114 void mhi_ring_er_db(struct mhi_event *mhi_event)
115 {
116 struct mhi_ring *ring = &mhi_event->ring;
117
118 mhi_event->db_cfg.process_db(mhi_event->mhi_cntrl, &mhi_event->db_cfg,
119 ring->db_addr, le64_to_cpu(*ring->ctxt_wp));
120 }
121
mhi_ring_cmd_db(struct mhi_controller * mhi_cntrl,struct mhi_cmd * mhi_cmd)122 void mhi_ring_cmd_db(struct mhi_controller *mhi_cntrl, struct mhi_cmd *mhi_cmd)
123 {
124 dma_addr_t db;
125 struct mhi_ring *ring = &mhi_cmd->ring;
126
127 db = ring->iommu_base + (ring->wp - ring->base);
128 *ring->ctxt_wp = cpu_to_le64(db);
129 mhi_write_db(mhi_cntrl, ring->db_addr, db);
130 }
131
mhi_ring_chan_db(struct mhi_controller * mhi_cntrl,struct mhi_chan * mhi_chan)132 void mhi_ring_chan_db(struct mhi_controller *mhi_cntrl,
133 struct mhi_chan *mhi_chan)
134 {
135 struct mhi_ring *ring = &mhi_chan->tre_ring;
136 dma_addr_t db;
137
138 db = ring->iommu_base + (ring->wp - ring->base);
139
140 /*
141 * Writes to the new ring element must be visible to the hardware
142 * before letting h/w know there is new element to fetch.
143 */
144 dma_wmb();
145 *ring->ctxt_wp = cpu_to_le64(db);
146
147 mhi_chan->db_cfg.process_db(mhi_cntrl, &mhi_chan->db_cfg,
148 ring->db_addr, db);
149 }
150
mhi_get_exec_env(struct mhi_controller * mhi_cntrl)151 enum mhi_ee_type mhi_get_exec_env(struct mhi_controller *mhi_cntrl)
152 {
153 u32 exec;
154 int ret = mhi_read_reg(mhi_cntrl, mhi_cntrl->bhi, BHI_EXECENV, &exec);
155
156 return (ret) ? MHI_EE_MAX : exec;
157 }
158 EXPORT_SYMBOL_GPL(mhi_get_exec_env);
159
mhi_get_mhi_state(struct mhi_controller * mhi_cntrl)160 enum mhi_state mhi_get_mhi_state(struct mhi_controller *mhi_cntrl)
161 {
162 u32 state;
163 int ret = mhi_read_reg_field(mhi_cntrl, mhi_cntrl->regs, MHISTATUS,
164 MHISTATUS_MHISTATE_MASK, &state);
165 return ret ? MHI_STATE_MAX : state;
166 }
167 EXPORT_SYMBOL_GPL(mhi_get_mhi_state);
168
mhi_soc_reset(struct mhi_controller * mhi_cntrl)169 void mhi_soc_reset(struct mhi_controller *mhi_cntrl)
170 {
171 if (mhi_cntrl->reset) {
172 mhi_cntrl->reset(mhi_cntrl);
173 return;
174 }
175
176 /* Generic MHI SoC reset */
177 mhi_write_reg(mhi_cntrl, mhi_cntrl->regs, MHI_SOC_RESET_REQ_OFFSET,
178 MHI_SOC_RESET_REQ);
179 }
180 EXPORT_SYMBOL_GPL(mhi_soc_reset);
181
mhi_map_single_no_bb(struct mhi_controller * mhi_cntrl,struct mhi_buf_info * buf_info)182 int mhi_map_single_no_bb(struct mhi_controller *mhi_cntrl,
183 struct mhi_buf_info *buf_info)
184 {
185 buf_info->p_addr = dma_map_single(mhi_cntrl->cntrl_dev,
186 buf_info->v_addr, buf_info->len,
187 buf_info->dir);
188 if (dma_mapping_error(mhi_cntrl->cntrl_dev, buf_info->p_addr))
189 return -ENOMEM;
190
191 return 0;
192 }
193
mhi_map_single_use_bb(struct mhi_controller * mhi_cntrl,struct mhi_buf_info * buf_info)194 int mhi_map_single_use_bb(struct mhi_controller *mhi_cntrl,
195 struct mhi_buf_info *buf_info)
196 {
197 void *buf = dma_alloc_coherent(mhi_cntrl->cntrl_dev, buf_info->len,
198 &buf_info->p_addr, GFP_ATOMIC);
199
200 if (!buf)
201 return -ENOMEM;
202
203 if (buf_info->dir == DMA_TO_DEVICE)
204 memcpy(buf, buf_info->v_addr, buf_info->len);
205
206 buf_info->bb_addr = buf;
207
208 return 0;
209 }
210
mhi_unmap_single_no_bb(struct mhi_controller * mhi_cntrl,struct mhi_buf_info * buf_info)211 void mhi_unmap_single_no_bb(struct mhi_controller *mhi_cntrl,
212 struct mhi_buf_info *buf_info)
213 {
214 dma_unmap_single(mhi_cntrl->cntrl_dev, buf_info->p_addr, buf_info->len,
215 buf_info->dir);
216 }
217
mhi_unmap_single_use_bb(struct mhi_controller * mhi_cntrl,struct mhi_buf_info * buf_info)218 void mhi_unmap_single_use_bb(struct mhi_controller *mhi_cntrl,
219 struct mhi_buf_info *buf_info)
220 {
221 if (buf_info->dir == DMA_FROM_DEVICE)
222 memcpy(buf_info->v_addr, buf_info->bb_addr, buf_info->len);
223
224 dma_free_coherent(mhi_cntrl->cntrl_dev, buf_info->len,
225 buf_info->bb_addr, buf_info->p_addr);
226 }
227
get_nr_avail_ring_elements(struct mhi_controller * mhi_cntrl,struct mhi_ring * ring)228 static int get_nr_avail_ring_elements(struct mhi_controller *mhi_cntrl,
229 struct mhi_ring *ring)
230 {
231 int nr_el;
232
233 if (ring->wp < ring->rp) {
234 nr_el = ((ring->rp - ring->wp) / ring->el_size) - 1;
235 } else {
236 nr_el = (ring->rp - ring->base) / ring->el_size;
237 nr_el += ((ring->base + ring->len - ring->wp) /
238 ring->el_size) - 1;
239 }
240
241 return nr_el;
242 }
243
mhi_to_virtual(struct mhi_ring * ring,dma_addr_t addr)244 static void *mhi_to_virtual(struct mhi_ring *ring, dma_addr_t addr)
245 {
246 return (addr - ring->iommu_base) + ring->base;
247 }
248
mhi_add_ring_element(struct mhi_controller * mhi_cntrl,struct mhi_ring * ring)249 static void mhi_add_ring_element(struct mhi_controller *mhi_cntrl,
250 struct mhi_ring *ring)
251 {
252 ring->wp += ring->el_size;
253 if (ring->wp >= (ring->base + ring->len))
254 ring->wp = ring->base;
255 /* smp update */
256 smp_wmb();
257 }
258
mhi_del_ring_element(struct mhi_controller * mhi_cntrl,struct mhi_ring * ring)259 static void mhi_del_ring_element(struct mhi_controller *mhi_cntrl,
260 struct mhi_ring *ring)
261 {
262 ring->rp += ring->el_size;
263 if (ring->rp >= (ring->base + ring->len))
264 ring->rp = ring->base;
265 /* smp update */
266 smp_wmb();
267 }
268
is_valid_ring_ptr(struct mhi_ring * ring,dma_addr_t addr)269 static bool is_valid_ring_ptr(struct mhi_ring *ring, dma_addr_t addr)
270 {
271 return addr >= ring->iommu_base && addr < ring->iommu_base + ring->len;
272 }
273
mhi_destroy_device(struct device * dev,void * data)274 int mhi_destroy_device(struct device *dev, void *data)
275 {
276 struct mhi_chan *ul_chan, *dl_chan;
277 struct mhi_device *mhi_dev;
278 struct mhi_controller *mhi_cntrl;
279 enum mhi_ee_type ee = MHI_EE_MAX;
280
281 if (dev->bus != &mhi_bus_type)
282 return 0;
283
284 mhi_dev = to_mhi_device(dev);
285 mhi_cntrl = mhi_dev->mhi_cntrl;
286
287 /* Only destroy virtual devices thats attached to bus */
288 if (mhi_dev->dev_type == MHI_DEVICE_CONTROLLER)
289 return 0;
290
291 ul_chan = mhi_dev->ul_chan;
292 dl_chan = mhi_dev->dl_chan;
293
294 /*
295 * If execution environment is specified, remove only those devices that
296 * started in them based on ee_mask for the channels as we move on to a
297 * different execution environment
298 */
299 if (data)
300 ee = *(enum mhi_ee_type *)data;
301
302 /*
303 * For the suspend and resume case, this function will get called
304 * without mhi_unregister_controller(). Hence, we need to drop the
305 * references to mhi_dev created for ul and dl channels. We can
306 * be sure that there will be no instances of mhi_dev left after
307 * this.
308 */
309 if (ul_chan) {
310 if (ee != MHI_EE_MAX && !(ul_chan->ee_mask & BIT(ee)))
311 return 0;
312
313 put_device(&ul_chan->mhi_dev->dev);
314 }
315
316 if (dl_chan) {
317 if (ee != MHI_EE_MAX && !(dl_chan->ee_mask & BIT(ee)))
318 return 0;
319
320 put_device(&dl_chan->mhi_dev->dev);
321 }
322
323 dev_dbg(&mhi_cntrl->mhi_dev->dev, "destroy device for chan:%s\n",
324 mhi_dev->name);
325
326 /* Notify the client and remove the device from MHI bus */
327 device_del(dev);
328 put_device(dev);
329
330 return 0;
331 }
332
mhi_get_free_desc_count(struct mhi_device * mhi_dev,enum dma_data_direction dir)333 int mhi_get_free_desc_count(struct mhi_device *mhi_dev,
334 enum dma_data_direction dir)
335 {
336 struct mhi_controller *mhi_cntrl = mhi_dev->mhi_cntrl;
337 struct mhi_chan *mhi_chan = (dir == DMA_TO_DEVICE) ?
338 mhi_dev->ul_chan : mhi_dev->dl_chan;
339 struct mhi_ring *tre_ring = &mhi_chan->tre_ring;
340
341 return get_nr_avail_ring_elements(mhi_cntrl, tre_ring);
342 }
343 EXPORT_SYMBOL_GPL(mhi_get_free_desc_count);
344
mhi_notify(struct mhi_device * mhi_dev,enum mhi_callback cb_reason)345 void mhi_notify(struct mhi_device *mhi_dev, enum mhi_callback cb_reason)
346 {
347 struct mhi_driver *mhi_drv;
348
349 if (!mhi_dev->dev.driver)
350 return;
351
352 mhi_drv = to_mhi_driver(mhi_dev->dev.driver);
353
354 if (mhi_drv->status_cb)
355 mhi_drv->status_cb(mhi_dev, cb_reason);
356 }
357 EXPORT_SYMBOL_GPL(mhi_notify);
358
359 /* Bind MHI channels to MHI devices */
mhi_create_devices(struct mhi_controller * mhi_cntrl)360 void mhi_create_devices(struct mhi_controller *mhi_cntrl)
361 {
362 struct mhi_chan *mhi_chan;
363 struct mhi_device *mhi_dev;
364 struct device *dev = &mhi_cntrl->mhi_dev->dev;
365 int i, ret;
366
367 mhi_chan = mhi_cntrl->mhi_chan;
368 for (i = 0; i < mhi_cntrl->max_chan; i++, mhi_chan++) {
369 if (!mhi_chan->configured || mhi_chan->mhi_dev ||
370 !(mhi_chan->ee_mask & BIT(mhi_cntrl->ee)))
371 continue;
372 mhi_dev = mhi_alloc_device(mhi_cntrl);
373 if (IS_ERR(mhi_dev))
374 return;
375
376 mhi_dev->dev_type = MHI_DEVICE_XFER;
377 switch (mhi_chan->dir) {
378 case DMA_TO_DEVICE:
379 mhi_dev->ul_chan = mhi_chan;
380 mhi_dev->ul_chan_id = mhi_chan->chan;
381 break;
382 case DMA_FROM_DEVICE:
383 /* We use dl_chan as offload channels */
384 mhi_dev->dl_chan = mhi_chan;
385 mhi_dev->dl_chan_id = mhi_chan->chan;
386 break;
387 default:
388 dev_err(dev, "Direction not supported\n");
389 put_device(&mhi_dev->dev);
390 return;
391 }
392
393 get_device(&mhi_dev->dev);
394 mhi_chan->mhi_dev = mhi_dev;
395
396 /* Check next channel if it matches */
397 if ((i + 1) < mhi_cntrl->max_chan && mhi_chan[1].configured) {
398 if (!strcmp(mhi_chan[1].name, mhi_chan->name)) {
399 i++;
400 mhi_chan++;
401 if (mhi_chan->dir == DMA_TO_DEVICE) {
402 mhi_dev->ul_chan = mhi_chan;
403 mhi_dev->ul_chan_id = mhi_chan->chan;
404 } else {
405 mhi_dev->dl_chan = mhi_chan;
406 mhi_dev->dl_chan_id = mhi_chan->chan;
407 }
408 get_device(&mhi_dev->dev);
409 mhi_chan->mhi_dev = mhi_dev;
410 }
411 }
412
413 /* Channel name is same for both UL and DL */
414 mhi_dev->name = mhi_chan->name;
415 dev_set_name(&mhi_dev->dev, "%s_%s",
416 dev_name(&mhi_cntrl->mhi_dev->dev),
417 mhi_dev->name);
418
419 /* Init wakeup source if available */
420 if (mhi_dev->dl_chan && mhi_dev->dl_chan->wake_capable)
421 device_init_wakeup(&mhi_dev->dev, true);
422
423 ret = device_add(&mhi_dev->dev);
424 if (ret)
425 put_device(&mhi_dev->dev);
426 }
427 }
428
mhi_irq_handler(int irq_number,void * dev)429 irqreturn_t mhi_irq_handler(int irq_number, void *dev)
430 {
431 struct mhi_event *mhi_event = dev;
432 struct mhi_controller *mhi_cntrl = mhi_event->mhi_cntrl;
433 struct mhi_event_ctxt *er_ctxt;
434 struct mhi_ring *ev_ring = &mhi_event->ring;
435 dma_addr_t ptr;
436 void *dev_rp;
437
438 /*
439 * If CONFIG_DEBUG_SHIRQ is set, the IRQ handler will get invoked during __free_irq()
440 * and by that time mhi_ctxt() would've freed. So check for the existence of mhi_ctxt
441 * before handling the IRQs.
442 */
443 if (!mhi_cntrl->mhi_ctxt) {
444 dev_dbg(&mhi_cntrl->mhi_dev->dev,
445 "mhi_ctxt has been freed\n");
446 return IRQ_HANDLED;
447 }
448
449 er_ctxt = &mhi_cntrl->mhi_ctxt->er_ctxt[mhi_event->er_index];
450 ptr = le64_to_cpu(er_ctxt->rp);
451
452 if (!is_valid_ring_ptr(ev_ring, ptr)) {
453 dev_err(&mhi_cntrl->mhi_dev->dev,
454 "Event ring rp points outside of the event ring\n");
455 return IRQ_HANDLED;
456 }
457
458 dev_rp = mhi_to_virtual(ev_ring, ptr);
459
460 /* Only proceed if event ring has pending events */
461 if (ev_ring->rp == dev_rp)
462 return IRQ_HANDLED;
463
464 /* For client managed event ring, notify pending data */
465 if (mhi_event->cl_manage) {
466 struct mhi_chan *mhi_chan = mhi_event->mhi_chan;
467 struct mhi_device *mhi_dev = mhi_chan->mhi_dev;
468
469 if (mhi_dev)
470 mhi_notify(mhi_dev, MHI_CB_PENDING_DATA);
471 } else {
472 tasklet_schedule(&mhi_event->task);
473 }
474
475 return IRQ_HANDLED;
476 }
477
mhi_intvec_threaded_handler(int irq_number,void * priv)478 irqreturn_t mhi_intvec_threaded_handler(int irq_number, void *priv)
479 {
480 struct mhi_controller *mhi_cntrl = priv;
481 struct device *dev = &mhi_cntrl->mhi_dev->dev;
482 enum mhi_state state;
483 enum mhi_pm_state pm_state = 0;
484 enum mhi_ee_type ee;
485
486 write_lock_irq(&mhi_cntrl->pm_lock);
487 if (!MHI_REG_ACCESS_VALID(mhi_cntrl->pm_state)) {
488 write_unlock_irq(&mhi_cntrl->pm_lock);
489 goto exit_intvec;
490 }
491
492 state = mhi_get_mhi_state(mhi_cntrl);
493 ee = mhi_get_exec_env(mhi_cntrl);
494 dev_dbg(dev, "local ee: %s state: %s device ee: %s state: %s\n",
495 TO_MHI_EXEC_STR(mhi_cntrl->ee),
496 mhi_state_str(mhi_cntrl->dev_state),
497 TO_MHI_EXEC_STR(ee), mhi_state_str(state));
498
499 if (state == MHI_STATE_SYS_ERR) {
500 dev_dbg(dev, "System error detected\n");
501 pm_state = mhi_tryset_pm_state(mhi_cntrl,
502 MHI_PM_SYS_ERR_DETECT);
503 }
504 write_unlock_irq(&mhi_cntrl->pm_lock);
505
506 if (pm_state != MHI_PM_SYS_ERR_DETECT || ee == mhi_cntrl->ee)
507 goto exit_intvec;
508
509 switch (ee) {
510 case MHI_EE_RDDM:
511 /* proceed if power down is not already in progress */
512 if (mhi_cntrl->rddm_image && mhi_is_active(mhi_cntrl)) {
513 mhi_cntrl->status_cb(mhi_cntrl, MHI_CB_EE_RDDM);
514 mhi_cntrl->ee = ee;
515 wake_up_all(&mhi_cntrl->state_event);
516 }
517 break;
518 case MHI_EE_PBL:
519 case MHI_EE_EDL:
520 case MHI_EE_PTHRU:
521 mhi_cntrl->status_cb(mhi_cntrl, MHI_CB_FATAL_ERROR);
522 mhi_cntrl->ee = ee;
523 wake_up_all(&mhi_cntrl->state_event);
524 mhi_pm_sys_err_handler(mhi_cntrl);
525 break;
526 default:
527 wake_up_all(&mhi_cntrl->state_event);
528 mhi_pm_sys_err_handler(mhi_cntrl);
529 break;
530 }
531
532 exit_intvec:
533
534 return IRQ_HANDLED;
535 }
536
mhi_intvec_handler(int irq_number,void * dev)537 irqreturn_t mhi_intvec_handler(int irq_number, void *dev)
538 {
539 struct mhi_controller *mhi_cntrl = dev;
540
541 /* Wake up events waiting for state change */
542 wake_up_all(&mhi_cntrl->state_event);
543
544 return IRQ_WAKE_THREAD;
545 }
546
mhi_recycle_ev_ring_element(struct mhi_controller * mhi_cntrl,struct mhi_ring * ring)547 static void mhi_recycle_ev_ring_element(struct mhi_controller *mhi_cntrl,
548 struct mhi_ring *ring)
549 {
550 /* Update the WP */
551 ring->wp += ring->el_size;
552
553 if (ring->wp >= (ring->base + ring->len))
554 ring->wp = ring->base;
555
556 *ring->ctxt_wp = cpu_to_le64(ring->iommu_base + (ring->wp - ring->base));
557
558 /* Update the RP */
559 ring->rp += ring->el_size;
560 if (ring->rp >= (ring->base + ring->len))
561 ring->rp = ring->base;
562
563 /* Update to all cores */
564 smp_wmb();
565 }
566
parse_xfer_event(struct mhi_controller * mhi_cntrl,struct mhi_ring_element * event,struct mhi_chan * mhi_chan)567 static int parse_xfer_event(struct mhi_controller *mhi_cntrl,
568 struct mhi_ring_element *event,
569 struct mhi_chan *mhi_chan)
570 {
571 struct mhi_ring *buf_ring, *tre_ring;
572 struct device *dev = &mhi_cntrl->mhi_dev->dev;
573 struct mhi_result result;
574 unsigned long flags = 0;
575 u32 ev_code;
576
577 ev_code = MHI_TRE_GET_EV_CODE(event);
578 buf_ring = &mhi_chan->buf_ring;
579 tre_ring = &mhi_chan->tre_ring;
580
581 result.transaction_status = (ev_code == MHI_EV_CC_OVERFLOW) ?
582 -EOVERFLOW : 0;
583
584 /*
585 * If it's a DB Event then we need to grab the lock
586 * with preemption disabled and as a write because we
587 * have to update db register and there are chances that
588 * another thread could be doing the same.
589 */
590 if (ev_code >= MHI_EV_CC_OOB)
591 write_lock_irqsave(&mhi_chan->lock, flags);
592 else
593 read_lock_bh(&mhi_chan->lock);
594
595 if (mhi_chan->ch_state != MHI_CH_STATE_ENABLED)
596 goto end_process_tx_event;
597
598 switch (ev_code) {
599 case MHI_EV_CC_OVERFLOW:
600 case MHI_EV_CC_EOB:
601 case MHI_EV_CC_EOT:
602 {
603 dma_addr_t ptr = MHI_TRE_GET_EV_PTR(event);
604 struct mhi_ring_element *local_rp, *ev_tre;
605 void *dev_rp;
606 struct mhi_buf_info *buf_info;
607 u16 xfer_len;
608
609 if (!is_valid_ring_ptr(tre_ring, ptr)) {
610 dev_err(&mhi_cntrl->mhi_dev->dev,
611 "Event element points outside of the tre ring\n");
612 break;
613 }
614 /* Get the TRB this event points to */
615 ev_tre = mhi_to_virtual(tre_ring, ptr);
616
617 dev_rp = ev_tre + 1;
618 if (dev_rp >= (tre_ring->base + tre_ring->len))
619 dev_rp = tre_ring->base;
620
621 result.dir = mhi_chan->dir;
622
623 local_rp = tre_ring->rp;
624 while (local_rp != dev_rp) {
625 buf_info = buf_ring->rp;
626 /* If it's the last TRE, get length from the event */
627 if (local_rp == ev_tre)
628 xfer_len = MHI_TRE_GET_EV_LEN(event);
629 else
630 xfer_len = buf_info->len;
631
632 /* Unmap if it's not pre-mapped by client */
633 if (likely(!buf_info->pre_mapped))
634 mhi_cntrl->unmap_single(mhi_cntrl, buf_info);
635
636 result.buf_addr = buf_info->cb_buf;
637
638 /* truncate to buf len if xfer_len is larger */
639 result.bytes_xferd =
640 min_t(u16, xfer_len, buf_info->len);
641 mhi_del_ring_element(mhi_cntrl, buf_ring);
642 mhi_del_ring_element(mhi_cntrl, tre_ring);
643 local_rp = tre_ring->rp;
644
645 /* notify client */
646 mhi_chan->xfer_cb(mhi_chan->mhi_dev, &result);
647
648 if (mhi_chan->dir == DMA_TO_DEVICE) {
649 atomic_dec(&mhi_cntrl->pending_pkts);
650 /* Release the reference got from mhi_queue() */
651 mhi_cntrl->runtime_put(mhi_cntrl);
652 }
653
654 /*
655 * Recycle the buffer if buffer is pre-allocated,
656 * if there is an error, not much we can do apart
657 * from dropping the packet
658 */
659 if (mhi_chan->pre_alloc) {
660 if (mhi_queue_buf(mhi_chan->mhi_dev,
661 mhi_chan->dir,
662 buf_info->cb_buf,
663 buf_info->len, MHI_EOT)) {
664 dev_err(dev,
665 "Error recycling buffer for chan:%d\n",
666 mhi_chan->chan);
667 kfree(buf_info->cb_buf);
668 }
669 }
670 }
671 break;
672 } /* CC_EOT */
673 case MHI_EV_CC_OOB:
674 case MHI_EV_CC_DB_MODE:
675 {
676 unsigned long pm_lock_flags;
677
678 mhi_chan->db_cfg.db_mode = 1;
679 read_lock_irqsave(&mhi_cntrl->pm_lock, pm_lock_flags);
680 if (tre_ring->wp != tre_ring->rp &&
681 MHI_DB_ACCESS_VALID(mhi_cntrl)) {
682 mhi_ring_chan_db(mhi_cntrl, mhi_chan);
683 }
684 read_unlock_irqrestore(&mhi_cntrl->pm_lock, pm_lock_flags);
685 break;
686 }
687 case MHI_EV_CC_BAD_TRE:
688 default:
689 dev_err(dev, "Unknown event 0x%x\n", ev_code);
690 break;
691 } /* switch(MHI_EV_READ_CODE(EV_TRB_CODE,event)) */
692
693 end_process_tx_event:
694 if (ev_code >= MHI_EV_CC_OOB)
695 write_unlock_irqrestore(&mhi_chan->lock, flags);
696 else
697 read_unlock_bh(&mhi_chan->lock);
698
699 return 0;
700 }
701
parse_rsc_event(struct mhi_controller * mhi_cntrl,struct mhi_ring_element * event,struct mhi_chan * mhi_chan)702 static int parse_rsc_event(struct mhi_controller *mhi_cntrl,
703 struct mhi_ring_element *event,
704 struct mhi_chan *mhi_chan)
705 {
706 struct mhi_ring *buf_ring, *tre_ring;
707 struct mhi_buf_info *buf_info;
708 struct mhi_result result;
709 int ev_code;
710 u32 cookie; /* offset to local descriptor */
711 u16 xfer_len;
712
713 buf_ring = &mhi_chan->buf_ring;
714 tre_ring = &mhi_chan->tre_ring;
715
716 ev_code = MHI_TRE_GET_EV_CODE(event);
717 cookie = MHI_TRE_GET_EV_COOKIE(event);
718 xfer_len = MHI_TRE_GET_EV_LEN(event);
719
720 /* Received out of bound cookie */
721 WARN_ON(cookie >= buf_ring->len);
722
723 buf_info = buf_ring->base + cookie;
724
725 result.transaction_status = (ev_code == MHI_EV_CC_OVERFLOW) ?
726 -EOVERFLOW : 0;
727
728 /* truncate to buf len if xfer_len is larger */
729 result.bytes_xferd = min_t(u16, xfer_len, buf_info->len);
730 result.buf_addr = buf_info->cb_buf;
731 result.dir = mhi_chan->dir;
732
733 read_lock_bh(&mhi_chan->lock);
734
735 if (mhi_chan->ch_state != MHI_CH_STATE_ENABLED)
736 goto end_process_rsc_event;
737
738 WARN_ON(!buf_info->used);
739
740 /* notify the client */
741 mhi_chan->xfer_cb(mhi_chan->mhi_dev, &result);
742
743 /*
744 * Note: We're arbitrarily incrementing RP even though, completion
745 * packet we processed might not be the same one, reason we can do this
746 * is because device guaranteed to cache descriptors in order it
747 * receive, so even though completion event is different we can re-use
748 * all descriptors in between.
749 * Example:
750 * Transfer Ring has descriptors: A, B, C, D
751 * Last descriptor host queue is D (WP) and first descriptor
752 * host queue is A (RP).
753 * The completion event we just serviced is descriptor C.
754 * Then we can safely queue descriptors to replace A, B, and C
755 * even though host did not receive any completions.
756 */
757 mhi_del_ring_element(mhi_cntrl, tre_ring);
758 buf_info->used = false;
759
760 end_process_rsc_event:
761 read_unlock_bh(&mhi_chan->lock);
762
763 return 0;
764 }
765
mhi_process_cmd_completion(struct mhi_controller * mhi_cntrl,struct mhi_ring_element * tre)766 static void mhi_process_cmd_completion(struct mhi_controller *mhi_cntrl,
767 struct mhi_ring_element *tre)
768 {
769 dma_addr_t ptr = MHI_TRE_GET_EV_PTR(tre);
770 struct mhi_cmd *cmd_ring = &mhi_cntrl->mhi_cmd[PRIMARY_CMD_RING];
771 struct mhi_ring *mhi_ring = &cmd_ring->ring;
772 struct mhi_ring_element *cmd_pkt;
773 struct mhi_chan *mhi_chan;
774 u32 chan;
775
776 if (!is_valid_ring_ptr(mhi_ring, ptr)) {
777 dev_err(&mhi_cntrl->mhi_dev->dev,
778 "Event element points outside of the cmd ring\n");
779 return;
780 }
781
782 cmd_pkt = mhi_to_virtual(mhi_ring, ptr);
783
784 chan = MHI_TRE_GET_CMD_CHID(cmd_pkt);
785
786 if (chan < mhi_cntrl->max_chan &&
787 mhi_cntrl->mhi_chan[chan].configured) {
788 mhi_chan = &mhi_cntrl->mhi_chan[chan];
789 write_lock_bh(&mhi_chan->lock);
790 mhi_chan->ccs = MHI_TRE_GET_EV_CODE(tre);
791 complete(&mhi_chan->completion);
792 write_unlock_bh(&mhi_chan->lock);
793 } else {
794 dev_err(&mhi_cntrl->mhi_dev->dev,
795 "Completion packet for invalid channel ID: %d\n", chan);
796 }
797
798 mhi_del_ring_element(mhi_cntrl, mhi_ring);
799 }
800
mhi_process_ctrl_ev_ring(struct mhi_controller * mhi_cntrl,struct mhi_event * mhi_event,u32 event_quota)801 int mhi_process_ctrl_ev_ring(struct mhi_controller *mhi_cntrl,
802 struct mhi_event *mhi_event,
803 u32 event_quota)
804 {
805 struct mhi_ring_element *dev_rp, *local_rp;
806 struct mhi_ring *ev_ring = &mhi_event->ring;
807 struct mhi_event_ctxt *er_ctxt =
808 &mhi_cntrl->mhi_ctxt->er_ctxt[mhi_event->er_index];
809 struct mhi_chan *mhi_chan;
810 struct device *dev = &mhi_cntrl->mhi_dev->dev;
811 u32 chan;
812 int count = 0;
813 dma_addr_t ptr = le64_to_cpu(er_ctxt->rp);
814
815 /*
816 * This is a quick check to avoid unnecessary event processing
817 * in case MHI is already in error state, but it's still possible
818 * to transition to error state while processing events
819 */
820 if (unlikely(MHI_EVENT_ACCESS_INVALID(mhi_cntrl->pm_state)))
821 return -EIO;
822
823 if (!is_valid_ring_ptr(ev_ring, ptr)) {
824 dev_err(&mhi_cntrl->mhi_dev->dev,
825 "Event ring rp points outside of the event ring\n");
826 return -EIO;
827 }
828
829 dev_rp = mhi_to_virtual(ev_ring, ptr);
830 local_rp = ev_ring->rp;
831
832 while (dev_rp != local_rp) {
833 enum mhi_pkt_type type = MHI_TRE_GET_EV_TYPE(local_rp);
834
835 switch (type) {
836 case MHI_PKT_TYPE_BW_REQ_EVENT:
837 {
838 struct mhi_link_info *link_info;
839
840 link_info = &mhi_cntrl->mhi_link_info;
841 write_lock_irq(&mhi_cntrl->pm_lock);
842 link_info->target_link_speed =
843 MHI_TRE_GET_EV_LINKSPEED(local_rp);
844 link_info->target_link_width =
845 MHI_TRE_GET_EV_LINKWIDTH(local_rp);
846 write_unlock_irq(&mhi_cntrl->pm_lock);
847 dev_dbg(dev, "Received BW_REQ event\n");
848 mhi_cntrl->status_cb(mhi_cntrl, MHI_CB_BW_REQ);
849 break;
850 }
851 case MHI_PKT_TYPE_STATE_CHANGE_EVENT:
852 {
853 enum mhi_state new_state;
854
855 new_state = MHI_TRE_GET_EV_STATE(local_rp);
856
857 dev_dbg(dev, "State change event to state: %s\n",
858 mhi_state_str(new_state));
859
860 switch (new_state) {
861 case MHI_STATE_M0:
862 mhi_pm_m0_transition(mhi_cntrl);
863 break;
864 case MHI_STATE_M1:
865 mhi_pm_m1_transition(mhi_cntrl);
866 break;
867 case MHI_STATE_M3:
868 mhi_pm_m3_transition(mhi_cntrl);
869 break;
870 case MHI_STATE_SYS_ERR:
871 {
872 enum mhi_pm_state pm_state;
873
874 dev_dbg(dev, "System error detected\n");
875 write_lock_irq(&mhi_cntrl->pm_lock);
876 pm_state = mhi_tryset_pm_state(mhi_cntrl,
877 MHI_PM_SYS_ERR_DETECT);
878 write_unlock_irq(&mhi_cntrl->pm_lock);
879 if (pm_state == MHI_PM_SYS_ERR_DETECT)
880 mhi_pm_sys_err_handler(mhi_cntrl);
881 break;
882 }
883 default:
884 dev_err(dev, "Invalid state: %s\n",
885 mhi_state_str(new_state));
886 }
887
888 break;
889 }
890 case MHI_PKT_TYPE_CMD_COMPLETION_EVENT:
891 mhi_process_cmd_completion(mhi_cntrl, local_rp);
892 break;
893 case MHI_PKT_TYPE_EE_EVENT:
894 {
895 enum dev_st_transition st = DEV_ST_TRANSITION_MAX;
896 enum mhi_ee_type event = MHI_TRE_GET_EV_EXECENV(local_rp);
897
898 dev_dbg(dev, "Received EE event: %s\n",
899 TO_MHI_EXEC_STR(event));
900 switch (event) {
901 case MHI_EE_SBL:
902 st = DEV_ST_TRANSITION_SBL;
903 break;
904 case MHI_EE_WFW:
905 case MHI_EE_AMSS:
906 st = DEV_ST_TRANSITION_MISSION_MODE;
907 break;
908 case MHI_EE_FP:
909 st = DEV_ST_TRANSITION_FP;
910 break;
911 case MHI_EE_RDDM:
912 mhi_cntrl->status_cb(mhi_cntrl, MHI_CB_EE_RDDM);
913 write_lock_irq(&mhi_cntrl->pm_lock);
914 mhi_cntrl->ee = event;
915 write_unlock_irq(&mhi_cntrl->pm_lock);
916 wake_up_all(&mhi_cntrl->state_event);
917 break;
918 default:
919 dev_err(dev,
920 "Unhandled EE event: 0x%x\n", type);
921 }
922 if (st != DEV_ST_TRANSITION_MAX)
923 mhi_queue_state_transition(mhi_cntrl, st);
924
925 break;
926 }
927 case MHI_PKT_TYPE_TX_EVENT:
928 chan = MHI_TRE_GET_EV_CHID(local_rp);
929
930 WARN_ON(chan >= mhi_cntrl->max_chan);
931
932 /*
933 * Only process the event ring elements whose channel
934 * ID is within the maximum supported range.
935 */
936 if (chan < mhi_cntrl->max_chan) {
937 mhi_chan = &mhi_cntrl->mhi_chan[chan];
938 if (!mhi_chan->configured)
939 break;
940 parse_xfer_event(mhi_cntrl, local_rp, mhi_chan);
941 event_quota--;
942 }
943 break;
944 default:
945 dev_err(dev, "Unhandled event type: %d\n", type);
946 break;
947 }
948
949 mhi_recycle_ev_ring_element(mhi_cntrl, ev_ring);
950 local_rp = ev_ring->rp;
951
952 ptr = le64_to_cpu(er_ctxt->rp);
953 if (!is_valid_ring_ptr(ev_ring, ptr)) {
954 dev_err(&mhi_cntrl->mhi_dev->dev,
955 "Event ring rp points outside of the event ring\n");
956 return -EIO;
957 }
958
959 dev_rp = mhi_to_virtual(ev_ring, ptr);
960 count++;
961 }
962
963 read_lock_bh(&mhi_cntrl->pm_lock);
964 if (likely(MHI_DB_ACCESS_VALID(mhi_cntrl)))
965 mhi_ring_er_db(mhi_event);
966 read_unlock_bh(&mhi_cntrl->pm_lock);
967
968 return count;
969 }
970
mhi_process_data_event_ring(struct mhi_controller * mhi_cntrl,struct mhi_event * mhi_event,u32 event_quota)971 int mhi_process_data_event_ring(struct mhi_controller *mhi_cntrl,
972 struct mhi_event *mhi_event,
973 u32 event_quota)
974 {
975 struct mhi_ring_element *dev_rp, *local_rp;
976 struct mhi_ring *ev_ring = &mhi_event->ring;
977 struct mhi_event_ctxt *er_ctxt =
978 &mhi_cntrl->mhi_ctxt->er_ctxt[mhi_event->er_index];
979 int count = 0;
980 u32 chan;
981 struct mhi_chan *mhi_chan;
982 dma_addr_t ptr = le64_to_cpu(er_ctxt->rp);
983
984 if (unlikely(MHI_EVENT_ACCESS_INVALID(mhi_cntrl->pm_state)))
985 return -EIO;
986
987 if (!is_valid_ring_ptr(ev_ring, ptr)) {
988 dev_err(&mhi_cntrl->mhi_dev->dev,
989 "Event ring rp points outside of the event ring\n");
990 return -EIO;
991 }
992
993 dev_rp = mhi_to_virtual(ev_ring, ptr);
994 local_rp = ev_ring->rp;
995
996 while (dev_rp != local_rp && event_quota > 0) {
997 enum mhi_pkt_type type = MHI_TRE_GET_EV_TYPE(local_rp);
998
999 chan = MHI_TRE_GET_EV_CHID(local_rp);
1000
1001 WARN_ON(chan >= mhi_cntrl->max_chan);
1002
1003 /*
1004 * Only process the event ring elements whose channel
1005 * ID is within the maximum supported range.
1006 */
1007 if (chan < mhi_cntrl->max_chan &&
1008 mhi_cntrl->mhi_chan[chan].configured) {
1009 mhi_chan = &mhi_cntrl->mhi_chan[chan];
1010
1011 if (likely(type == MHI_PKT_TYPE_TX_EVENT)) {
1012 parse_xfer_event(mhi_cntrl, local_rp, mhi_chan);
1013 event_quota--;
1014 } else if (type == MHI_PKT_TYPE_RSC_TX_EVENT) {
1015 parse_rsc_event(mhi_cntrl, local_rp, mhi_chan);
1016 event_quota--;
1017 }
1018 }
1019
1020 mhi_recycle_ev_ring_element(mhi_cntrl, ev_ring);
1021 local_rp = ev_ring->rp;
1022
1023 ptr = le64_to_cpu(er_ctxt->rp);
1024 if (!is_valid_ring_ptr(ev_ring, ptr)) {
1025 dev_err(&mhi_cntrl->mhi_dev->dev,
1026 "Event ring rp points outside of the event ring\n");
1027 return -EIO;
1028 }
1029
1030 dev_rp = mhi_to_virtual(ev_ring, ptr);
1031 count++;
1032 }
1033 read_lock_bh(&mhi_cntrl->pm_lock);
1034 if (likely(MHI_DB_ACCESS_VALID(mhi_cntrl)))
1035 mhi_ring_er_db(mhi_event);
1036 read_unlock_bh(&mhi_cntrl->pm_lock);
1037
1038 return count;
1039 }
1040
mhi_ev_task(unsigned long data)1041 void mhi_ev_task(unsigned long data)
1042 {
1043 struct mhi_event *mhi_event = (struct mhi_event *)data;
1044 struct mhi_controller *mhi_cntrl = mhi_event->mhi_cntrl;
1045
1046 /* process all pending events */
1047 spin_lock_bh(&mhi_event->lock);
1048 mhi_event->process_event(mhi_cntrl, mhi_event, U32_MAX);
1049 spin_unlock_bh(&mhi_event->lock);
1050 }
1051
mhi_ctrl_ev_task(unsigned long data)1052 void mhi_ctrl_ev_task(unsigned long data)
1053 {
1054 struct mhi_event *mhi_event = (struct mhi_event *)data;
1055 struct mhi_controller *mhi_cntrl = mhi_event->mhi_cntrl;
1056 struct device *dev = &mhi_cntrl->mhi_dev->dev;
1057 enum mhi_state state;
1058 enum mhi_pm_state pm_state = 0;
1059 int ret;
1060
1061 /*
1062 * We can check PM state w/o a lock here because there is no way
1063 * PM state can change from reg access valid to no access while this
1064 * thread being executed.
1065 */
1066 if (!MHI_REG_ACCESS_VALID(mhi_cntrl->pm_state)) {
1067 /*
1068 * We may have a pending event but not allowed to
1069 * process it since we are probably in a suspended state,
1070 * so trigger a resume.
1071 */
1072 mhi_trigger_resume(mhi_cntrl);
1073
1074 return;
1075 }
1076
1077 /* Process ctrl events */
1078 ret = mhi_event->process_event(mhi_cntrl, mhi_event, U32_MAX);
1079
1080 /*
1081 * We received an IRQ but no events to process, maybe device went to
1082 * SYS_ERR state? Check the state to confirm.
1083 */
1084 if (!ret) {
1085 write_lock_irq(&mhi_cntrl->pm_lock);
1086 state = mhi_get_mhi_state(mhi_cntrl);
1087 if (state == MHI_STATE_SYS_ERR) {
1088 dev_dbg(dev, "System error detected\n");
1089 pm_state = mhi_tryset_pm_state(mhi_cntrl,
1090 MHI_PM_SYS_ERR_DETECT);
1091 }
1092 write_unlock_irq(&mhi_cntrl->pm_lock);
1093 if (pm_state == MHI_PM_SYS_ERR_DETECT)
1094 mhi_pm_sys_err_handler(mhi_cntrl);
1095 }
1096 }
1097
mhi_is_ring_full(struct mhi_controller * mhi_cntrl,struct mhi_ring * ring)1098 static bool mhi_is_ring_full(struct mhi_controller *mhi_cntrl,
1099 struct mhi_ring *ring)
1100 {
1101 void *tmp = ring->wp + ring->el_size;
1102
1103 if (tmp >= (ring->base + ring->len))
1104 tmp = ring->base;
1105
1106 return (tmp == ring->rp);
1107 }
1108
mhi_queue(struct mhi_device * mhi_dev,struct mhi_buf_info * buf_info,enum dma_data_direction dir,enum mhi_flags mflags)1109 static int mhi_queue(struct mhi_device *mhi_dev, struct mhi_buf_info *buf_info,
1110 enum dma_data_direction dir, enum mhi_flags mflags)
1111 {
1112 struct mhi_controller *mhi_cntrl = mhi_dev->mhi_cntrl;
1113 struct mhi_chan *mhi_chan = (dir == DMA_TO_DEVICE) ? mhi_dev->ul_chan :
1114 mhi_dev->dl_chan;
1115 struct mhi_ring *tre_ring = &mhi_chan->tre_ring;
1116 unsigned long flags;
1117 int ret;
1118
1119 if (unlikely(MHI_PM_IN_ERROR_STATE(mhi_cntrl->pm_state)))
1120 return -EIO;
1121
1122 read_lock_irqsave(&mhi_cntrl->pm_lock, flags);
1123
1124 ret = mhi_is_ring_full(mhi_cntrl, tre_ring);
1125 if (unlikely(ret)) {
1126 ret = -EAGAIN;
1127 goto exit_unlock;
1128 }
1129
1130 ret = mhi_gen_tre(mhi_cntrl, mhi_chan, buf_info, mflags);
1131 if (unlikely(ret))
1132 goto exit_unlock;
1133
1134 /* Packet is queued, take a usage ref to exit M3 if necessary
1135 * for host->device buffer, balanced put is done on buffer completion
1136 * for device->host buffer, balanced put is after ringing the DB
1137 */
1138 mhi_cntrl->runtime_get(mhi_cntrl);
1139
1140 /* Assert dev_wake (to exit/prevent M1/M2)*/
1141 mhi_cntrl->wake_toggle(mhi_cntrl);
1142
1143 if (mhi_chan->dir == DMA_TO_DEVICE)
1144 atomic_inc(&mhi_cntrl->pending_pkts);
1145
1146 if (likely(MHI_DB_ACCESS_VALID(mhi_cntrl)))
1147 mhi_ring_chan_db(mhi_cntrl, mhi_chan);
1148
1149 if (dir == DMA_FROM_DEVICE)
1150 mhi_cntrl->runtime_put(mhi_cntrl);
1151
1152 exit_unlock:
1153 read_unlock_irqrestore(&mhi_cntrl->pm_lock, flags);
1154
1155 return ret;
1156 }
1157
mhi_queue_skb(struct mhi_device * mhi_dev,enum dma_data_direction dir,struct sk_buff * skb,size_t len,enum mhi_flags mflags)1158 int mhi_queue_skb(struct mhi_device *mhi_dev, enum dma_data_direction dir,
1159 struct sk_buff *skb, size_t len, enum mhi_flags mflags)
1160 {
1161 struct mhi_chan *mhi_chan = (dir == DMA_TO_DEVICE) ? mhi_dev->ul_chan :
1162 mhi_dev->dl_chan;
1163 struct mhi_buf_info buf_info = { };
1164
1165 buf_info.v_addr = skb->data;
1166 buf_info.cb_buf = skb;
1167 buf_info.len = len;
1168
1169 if (unlikely(mhi_chan->pre_alloc))
1170 return -EINVAL;
1171
1172 return mhi_queue(mhi_dev, &buf_info, dir, mflags);
1173 }
1174 EXPORT_SYMBOL_GPL(mhi_queue_skb);
1175
mhi_queue_dma(struct mhi_device * mhi_dev,enum dma_data_direction dir,struct mhi_buf * mhi_buf,size_t len,enum mhi_flags mflags)1176 int mhi_queue_dma(struct mhi_device *mhi_dev, enum dma_data_direction dir,
1177 struct mhi_buf *mhi_buf, size_t len, enum mhi_flags mflags)
1178 {
1179 struct mhi_chan *mhi_chan = (dir == DMA_TO_DEVICE) ? mhi_dev->ul_chan :
1180 mhi_dev->dl_chan;
1181 struct mhi_buf_info buf_info = { };
1182
1183 buf_info.p_addr = mhi_buf->dma_addr;
1184 buf_info.cb_buf = mhi_buf;
1185 buf_info.pre_mapped = true;
1186 buf_info.len = len;
1187
1188 if (unlikely(mhi_chan->pre_alloc))
1189 return -EINVAL;
1190
1191 return mhi_queue(mhi_dev, &buf_info, dir, mflags);
1192 }
1193 EXPORT_SYMBOL_GPL(mhi_queue_dma);
1194
mhi_gen_tre(struct mhi_controller * mhi_cntrl,struct mhi_chan * mhi_chan,struct mhi_buf_info * info,enum mhi_flags flags)1195 int mhi_gen_tre(struct mhi_controller *mhi_cntrl, struct mhi_chan *mhi_chan,
1196 struct mhi_buf_info *info, enum mhi_flags flags)
1197 {
1198 struct mhi_ring *buf_ring, *tre_ring;
1199 struct mhi_ring_element *mhi_tre;
1200 struct mhi_buf_info *buf_info;
1201 int eot, eob, chain, bei;
1202 int ret;
1203
1204 buf_ring = &mhi_chan->buf_ring;
1205 tre_ring = &mhi_chan->tre_ring;
1206
1207 buf_info = buf_ring->wp;
1208 WARN_ON(buf_info->used);
1209 buf_info->pre_mapped = info->pre_mapped;
1210 if (info->pre_mapped)
1211 buf_info->p_addr = info->p_addr;
1212 else
1213 buf_info->v_addr = info->v_addr;
1214 buf_info->cb_buf = info->cb_buf;
1215 buf_info->wp = tre_ring->wp;
1216 buf_info->dir = mhi_chan->dir;
1217 buf_info->len = info->len;
1218
1219 if (!info->pre_mapped) {
1220 ret = mhi_cntrl->map_single(mhi_cntrl, buf_info);
1221 if (ret)
1222 return ret;
1223 }
1224
1225 eob = !!(flags & MHI_EOB);
1226 eot = !!(flags & MHI_EOT);
1227 chain = !!(flags & MHI_CHAIN);
1228 bei = !!(mhi_chan->intmod);
1229
1230 mhi_tre = tre_ring->wp;
1231 mhi_tre->ptr = MHI_TRE_DATA_PTR(buf_info->p_addr);
1232 mhi_tre->dword[0] = MHI_TRE_DATA_DWORD0(info->len);
1233 mhi_tre->dword[1] = MHI_TRE_DATA_DWORD1(bei, eot, eob, chain);
1234
1235 /* increment WP */
1236 mhi_add_ring_element(mhi_cntrl, tre_ring);
1237 mhi_add_ring_element(mhi_cntrl, buf_ring);
1238
1239 return 0;
1240 }
1241
mhi_queue_buf(struct mhi_device * mhi_dev,enum dma_data_direction dir,void * buf,size_t len,enum mhi_flags mflags)1242 int mhi_queue_buf(struct mhi_device *mhi_dev, enum dma_data_direction dir,
1243 void *buf, size_t len, enum mhi_flags mflags)
1244 {
1245 struct mhi_buf_info buf_info = { };
1246
1247 buf_info.v_addr = buf;
1248 buf_info.cb_buf = buf;
1249 buf_info.len = len;
1250
1251 return mhi_queue(mhi_dev, &buf_info, dir, mflags);
1252 }
1253 EXPORT_SYMBOL_GPL(mhi_queue_buf);
1254
mhi_queue_is_full(struct mhi_device * mhi_dev,enum dma_data_direction dir)1255 bool mhi_queue_is_full(struct mhi_device *mhi_dev, enum dma_data_direction dir)
1256 {
1257 struct mhi_controller *mhi_cntrl = mhi_dev->mhi_cntrl;
1258 struct mhi_chan *mhi_chan = (dir == DMA_TO_DEVICE) ?
1259 mhi_dev->ul_chan : mhi_dev->dl_chan;
1260 struct mhi_ring *tre_ring = &mhi_chan->tre_ring;
1261
1262 return mhi_is_ring_full(mhi_cntrl, tre_ring);
1263 }
1264 EXPORT_SYMBOL_GPL(mhi_queue_is_full);
1265
mhi_send_cmd(struct mhi_controller * mhi_cntrl,struct mhi_chan * mhi_chan,enum mhi_cmd_type cmd)1266 int mhi_send_cmd(struct mhi_controller *mhi_cntrl,
1267 struct mhi_chan *mhi_chan,
1268 enum mhi_cmd_type cmd)
1269 {
1270 struct mhi_ring_element *cmd_tre = NULL;
1271 struct mhi_cmd *mhi_cmd = &mhi_cntrl->mhi_cmd[PRIMARY_CMD_RING];
1272 struct mhi_ring *ring = &mhi_cmd->ring;
1273 struct device *dev = &mhi_cntrl->mhi_dev->dev;
1274 int chan = 0;
1275
1276 if (mhi_chan)
1277 chan = mhi_chan->chan;
1278
1279 spin_lock_bh(&mhi_cmd->lock);
1280 if (!get_nr_avail_ring_elements(mhi_cntrl, ring)) {
1281 spin_unlock_bh(&mhi_cmd->lock);
1282 return -ENOMEM;
1283 }
1284
1285 /* prepare the cmd tre */
1286 cmd_tre = ring->wp;
1287 switch (cmd) {
1288 case MHI_CMD_RESET_CHAN:
1289 cmd_tre->ptr = MHI_TRE_CMD_RESET_PTR;
1290 cmd_tre->dword[0] = MHI_TRE_CMD_RESET_DWORD0;
1291 cmd_tre->dword[1] = MHI_TRE_CMD_RESET_DWORD1(chan);
1292 break;
1293 case MHI_CMD_STOP_CHAN:
1294 cmd_tre->ptr = MHI_TRE_CMD_STOP_PTR;
1295 cmd_tre->dword[0] = MHI_TRE_CMD_STOP_DWORD0;
1296 cmd_tre->dword[1] = MHI_TRE_CMD_STOP_DWORD1(chan);
1297 break;
1298 case MHI_CMD_START_CHAN:
1299 cmd_tre->ptr = MHI_TRE_CMD_START_PTR;
1300 cmd_tre->dword[0] = MHI_TRE_CMD_START_DWORD0;
1301 cmd_tre->dword[1] = MHI_TRE_CMD_START_DWORD1(chan);
1302 break;
1303 default:
1304 dev_err(dev, "Command not supported\n");
1305 break;
1306 }
1307
1308 /* queue to hardware */
1309 mhi_add_ring_element(mhi_cntrl, ring);
1310 read_lock_bh(&mhi_cntrl->pm_lock);
1311 if (likely(MHI_DB_ACCESS_VALID(mhi_cntrl)))
1312 mhi_ring_cmd_db(mhi_cntrl, mhi_cmd);
1313 read_unlock_bh(&mhi_cntrl->pm_lock);
1314 spin_unlock_bh(&mhi_cmd->lock);
1315
1316 return 0;
1317 }
1318
mhi_update_channel_state(struct mhi_controller * mhi_cntrl,struct mhi_chan * mhi_chan,enum mhi_ch_state_type to_state)1319 static int mhi_update_channel_state(struct mhi_controller *mhi_cntrl,
1320 struct mhi_chan *mhi_chan,
1321 enum mhi_ch_state_type to_state)
1322 {
1323 struct device *dev = &mhi_chan->mhi_dev->dev;
1324 enum mhi_cmd_type cmd = MHI_CMD_NOP;
1325 int ret;
1326
1327 dev_dbg(dev, "%d: Updating channel state to: %s\n", mhi_chan->chan,
1328 TO_CH_STATE_TYPE_STR(to_state));
1329
1330 switch (to_state) {
1331 case MHI_CH_STATE_TYPE_RESET:
1332 write_lock_irq(&mhi_chan->lock);
1333 if (mhi_chan->ch_state != MHI_CH_STATE_STOP &&
1334 mhi_chan->ch_state != MHI_CH_STATE_ENABLED &&
1335 mhi_chan->ch_state != MHI_CH_STATE_SUSPENDED) {
1336 write_unlock_irq(&mhi_chan->lock);
1337 return -EINVAL;
1338 }
1339 mhi_chan->ch_state = MHI_CH_STATE_DISABLED;
1340 write_unlock_irq(&mhi_chan->lock);
1341
1342 cmd = MHI_CMD_RESET_CHAN;
1343 break;
1344 case MHI_CH_STATE_TYPE_STOP:
1345 if (mhi_chan->ch_state != MHI_CH_STATE_ENABLED)
1346 return -EINVAL;
1347
1348 cmd = MHI_CMD_STOP_CHAN;
1349 break;
1350 case MHI_CH_STATE_TYPE_START:
1351 if (mhi_chan->ch_state != MHI_CH_STATE_STOP &&
1352 mhi_chan->ch_state != MHI_CH_STATE_DISABLED)
1353 return -EINVAL;
1354
1355 cmd = MHI_CMD_START_CHAN;
1356 break;
1357 default:
1358 dev_err(dev, "%d: Channel state update to %s not allowed\n",
1359 mhi_chan->chan, TO_CH_STATE_TYPE_STR(to_state));
1360 return -EINVAL;
1361 }
1362
1363 /* bring host and device out of suspended states */
1364 ret = mhi_device_get_sync(mhi_cntrl->mhi_dev);
1365 if (ret)
1366 return ret;
1367 mhi_cntrl->runtime_get(mhi_cntrl);
1368
1369 reinit_completion(&mhi_chan->completion);
1370 ret = mhi_send_cmd(mhi_cntrl, mhi_chan, cmd);
1371 if (ret) {
1372 dev_err(dev, "%d: Failed to send %s channel command\n",
1373 mhi_chan->chan, TO_CH_STATE_TYPE_STR(to_state));
1374 goto exit_channel_update;
1375 }
1376
1377 ret = wait_for_completion_timeout(&mhi_chan->completion,
1378 msecs_to_jiffies(mhi_cntrl->timeout_ms));
1379 if (!ret || mhi_chan->ccs != MHI_EV_CC_SUCCESS) {
1380 dev_err(dev,
1381 "%d: Failed to receive %s channel command completion\n",
1382 mhi_chan->chan, TO_CH_STATE_TYPE_STR(to_state));
1383 ret = -EIO;
1384 goto exit_channel_update;
1385 }
1386
1387 ret = 0;
1388
1389 if (to_state != MHI_CH_STATE_TYPE_RESET) {
1390 write_lock_irq(&mhi_chan->lock);
1391 mhi_chan->ch_state = (to_state == MHI_CH_STATE_TYPE_START) ?
1392 MHI_CH_STATE_ENABLED : MHI_CH_STATE_STOP;
1393 write_unlock_irq(&mhi_chan->lock);
1394 }
1395
1396 dev_dbg(dev, "%d: Channel state change to %s successful\n",
1397 mhi_chan->chan, TO_CH_STATE_TYPE_STR(to_state));
1398
1399 exit_channel_update:
1400 mhi_cntrl->runtime_put(mhi_cntrl);
1401 mhi_device_put(mhi_cntrl->mhi_dev);
1402
1403 return ret;
1404 }
1405
mhi_unprepare_channel(struct mhi_controller * mhi_cntrl,struct mhi_chan * mhi_chan)1406 static void mhi_unprepare_channel(struct mhi_controller *mhi_cntrl,
1407 struct mhi_chan *mhi_chan)
1408 {
1409 int ret;
1410 struct device *dev = &mhi_chan->mhi_dev->dev;
1411
1412 mutex_lock(&mhi_chan->mutex);
1413
1414 if (!(BIT(mhi_cntrl->ee) & mhi_chan->ee_mask)) {
1415 dev_dbg(dev, "Current EE: %s Required EE Mask: 0x%x\n",
1416 TO_MHI_EXEC_STR(mhi_cntrl->ee), mhi_chan->ee_mask);
1417 goto exit_unprepare_channel;
1418 }
1419
1420 /* no more processing events for this channel */
1421 ret = mhi_update_channel_state(mhi_cntrl, mhi_chan,
1422 MHI_CH_STATE_TYPE_RESET);
1423 if (ret)
1424 dev_err(dev, "%d: Failed to reset channel, still resetting\n",
1425 mhi_chan->chan);
1426
1427 exit_unprepare_channel:
1428 write_lock_irq(&mhi_chan->lock);
1429 mhi_chan->ch_state = MHI_CH_STATE_DISABLED;
1430 write_unlock_irq(&mhi_chan->lock);
1431
1432 if (!mhi_chan->offload_ch) {
1433 mhi_reset_chan(mhi_cntrl, mhi_chan);
1434 mhi_deinit_chan_ctxt(mhi_cntrl, mhi_chan);
1435 }
1436 dev_dbg(dev, "%d: successfully reset\n", mhi_chan->chan);
1437
1438 mutex_unlock(&mhi_chan->mutex);
1439 }
1440
mhi_prepare_channel(struct mhi_controller * mhi_cntrl,struct mhi_chan * mhi_chan,unsigned int flags)1441 int mhi_prepare_channel(struct mhi_controller *mhi_cntrl,
1442 struct mhi_chan *mhi_chan, unsigned int flags)
1443 {
1444 int ret = 0;
1445 struct device *dev = &mhi_chan->mhi_dev->dev;
1446
1447 if (!(BIT(mhi_cntrl->ee) & mhi_chan->ee_mask)) {
1448 dev_err(dev, "Current EE: %s Required EE Mask: 0x%x\n",
1449 TO_MHI_EXEC_STR(mhi_cntrl->ee), mhi_chan->ee_mask);
1450 return -ENOTCONN;
1451 }
1452
1453 mutex_lock(&mhi_chan->mutex);
1454
1455 /* Check of client manages channel context for offload channels */
1456 if (!mhi_chan->offload_ch) {
1457 ret = mhi_init_chan_ctxt(mhi_cntrl, mhi_chan);
1458 if (ret)
1459 goto error_init_chan;
1460 }
1461
1462 ret = mhi_update_channel_state(mhi_cntrl, mhi_chan,
1463 MHI_CH_STATE_TYPE_START);
1464 if (ret)
1465 goto error_pm_state;
1466
1467 if (mhi_chan->dir == DMA_FROM_DEVICE)
1468 mhi_chan->pre_alloc = !!(flags & MHI_CH_INBOUND_ALLOC_BUFS);
1469
1470 /* Pre-allocate buffer for xfer ring */
1471 if (mhi_chan->pre_alloc) {
1472 int nr_el = get_nr_avail_ring_elements(mhi_cntrl,
1473 &mhi_chan->tre_ring);
1474 size_t len = mhi_cntrl->buffer_len;
1475
1476 while (nr_el--) {
1477 void *buf;
1478 struct mhi_buf_info info = { };
1479
1480 buf = kmalloc(len, GFP_KERNEL);
1481 if (!buf) {
1482 ret = -ENOMEM;
1483 goto error_pre_alloc;
1484 }
1485
1486 /* Prepare transfer descriptors */
1487 info.v_addr = buf;
1488 info.cb_buf = buf;
1489 info.len = len;
1490 ret = mhi_gen_tre(mhi_cntrl, mhi_chan, &info, MHI_EOT);
1491 if (ret) {
1492 kfree(buf);
1493 goto error_pre_alloc;
1494 }
1495 }
1496
1497 read_lock_bh(&mhi_cntrl->pm_lock);
1498 if (MHI_DB_ACCESS_VALID(mhi_cntrl)) {
1499 read_lock_irq(&mhi_chan->lock);
1500 mhi_ring_chan_db(mhi_cntrl, mhi_chan);
1501 read_unlock_irq(&mhi_chan->lock);
1502 }
1503 read_unlock_bh(&mhi_cntrl->pm_lock);
1504 }
1505
1506 mutex_unlock(&mhi_chan->mutex);
1507
1508 return 0;
1509
1510 error_pm_state:
1511 if (!mhi_chan->offload_ch)
1512 mhi_deinit_chan_ctxt(mhi_cntrl, mhi_chan);
1513
1514 error_init_chan:
1515 mutex_unlock(&mhi_chan->mutex);
1516
1517 return ret;
1518
1519 error_pre_alloc:
1520 mutex_unlock(&mhi_chan->mutex);
1521 mhi_unprepare_channel(mhi_cntrl, mhi_chan);
1522
1523 return ret;
1524 }
1525
mhi_mark_stale_events(struct mhi_controller * mhi_cntrl,struct mhi_event * mhi_event,struct mhi_event_ctxt * er_ctxt,int chan)1526 static void mhi_mark_stale_events(struct mhi_controller *mhi_cntrl,
1527 struct mhi_event *mhi_event,
1528 struct mhi_event_ctxt *er_ctxt,
1529 int chan)
1530
1531 {
1532 struct mhi_ring_element *dev_rp, *local_rp;
1533 struct mhi_ring *ev_ring;
1534 struct device *dev = &mhi_cntrl->mhi_dev->dev;
1535 unsigned long flags;
1536 dma_addr_t ptr;
1537
1538 dev_dbg(dev, "Marking all events for chan: %d as stale\n", chan);
1539
1540 ev_ring = &mhi_event->ring;
1541
1542 /* mark all stale events related to channel as STALE event */
1543 spin_lock_irqsave(&mhi_event->lock, flags);
1544
1545 ptr = le64_to_cpu(er_ctxt->rp);
1546 if (!is_valid_ring_ptr(ev_ring, ptr)) {
1547 dev_err(&mhi_cntrl->mhi_dev->dev,
1548 "Event ring rp points outside of the event ring\n");
1549 dev_rp = ev_ring->rp;
1550 } else {
1551 dev_rp = mhi_to_virtual(ev_ring, ptr);
1552 }
1553
1554 local_rp = ev_ring->rp;
1555 while (dev_rp != local_rp) {
1556 if (MHI_TRE_GET_EV_TYPE(local_rp) == MHI_PKT_TYPE_TX_EVENT &&
1557 chan == MHI_TRE_GET_EV_CHID(local_rp))
1558 local_rp->dword[1] = MHI_TRE_EV_DWORD1(chan,
1559 MHI_PKT_TYPE_STALE_EVENT);
1560 local_rp++;
1561 if (local_rp == (ev_ring->base + ev_ring->len))
1562 local_rp = ev_ring->base;
1563 }
1564
1565 dev_dbg(dev, "Finished marking events as stale events\n");
1566 spin_unlock_irqrestore(&mhi_event->lock, flags);
1567 }
1568
mhi_reset_data_chan(struct mhi_controller * mhi_cntrl,struct mhi_chan * mhi_chan)1569 static void mhi_reset_data_chan(struct mhi_controller *mhi_cntrl,
1570 struct mhi_chan *mhi_chan)
1571 {
1572 struct mhi_ring *buf_ring, *tre_ring;
1573 struct mhi_result result;
1574
1575 /* Reset any pending buffers */
1576 buf_ring = &mhi_chan->buf_ring;
1577 tre_ring = &mhi_chan->tre_ring;
1578 result.transaction_status = -ENOTCONN;
1579 result.bytes_xferd = 0;
1580 while (tre_ring->rp != tre_ring->wp) {
1581 struct mhi_buf_info *buf_info = buf_ring->rp;
1582
1583 if (mhi_chan->dir == DMA_TO_DEVICE) {
1584 atomic_dec(&mhi_cntrl->pending_pkts);
1585 /* Release the reference got from mhi_queue() */
1586 mhi_cntrl->runtime_put(mhi_cntrl);
1587 }
1588
1589 if (!buf_info->pre_mapped)
1590 mhi_cntrl->unmap_single(mhi_cntrl, buf_info);
1591
1592 mhi_del_ring_element(mhi_cntrl, buf_ring);
1593 mhi_del_ring_element(mhi_cntrl, tre_ring);
1594
1595 if (mhi_chan->pre_alloc) {
1596 kfree(buf_info->cb_buf);
1597 } else {
1598 result.buf_addr = buf_info->cb_buf;
1599 mhi_chan->xfer_cb(mhi_chan->mhi_dev, &result);
1600 }
1601 }
1602 }
1603
mhi_reset_chan(struct mhi_controller * mhi_cntrl,struct mhi_chan * mhi_chan)1604 void mhi_reset_chan(struct mhi_controller *mhi_cntrl, struct mhi_chan *mhi_chan)
1605 {
1606 struct mhi_event *mhi_event;
1607 struct mhi_event_ctxt *er_ctxt;
1608 int chan = mhi_chan->chan;
1609
1610 /* Nothing to reset, client doesn't queue buffers */
1611 if (mhi_chan->offload_ch)
1612 return;
1613
1614 read_lock_bh(&mhi_cntrl->pm_lock);
1615 mhi_event = &mhi_cntrl->mhi_event[mhi_chan->er_index];
1616 er_ctxt = &mhi_cntrl->mhi_ctxt->er_ctxt[mhi_chan->er_index];
1617
1618 mhi_mark_stale_events(mhi_cntrl, mhi_event, er_ctxt, chan);
1619
1620 mhi_reset_data_chan(mhi_cntrl, mhi_chan);
1621
1622 read_unlock_bh(&mhi_cntrl->pm_lock);
1623 }
1624
__mhi_prepare_for_transfer(struct mhi_device * mhi_dev,unsigned int flags)1625 static int __mhi_prepare_for_transfer(struct mhi_device *mhi_dev, unsigned int flags)
1626 {
1627 int ret, dir;
1628 struct mhi_controller *mhi_cntrl = mhi_dev->mhi_cntrl;
1629 struct mhi_chan *mhi_chan;
1630
1631 for (dir = 0; dir < 2; dir++) {
1632 mhi_chan = dir ? mhi_dev->dl_chan : mhi_dev->ul_chan;
1633 if (!mhi_chan)
1634 continue;
1635
1636 ret = mhi_prepare_channel(mhi_cntrl, mhi_chan, flags);
1637 if (ret)
1638 goto error_open_chan;
1639 }
1640
1641 return 0;
1642
1643 error_open_chan:
1644 for (--dir; dir >= 0; dir--) {
1645 mhi_chan = dir ? mhi_dev->dl_chan : mhi_dev->ul_chan;
1646 if (!mhi_chan)
1647 continue;
1648
1649 mhi_unprepare_channel(mhi_cntrl, mhi_chan);
1650 }
1651
1652 return ret;
1653 }
1654
mhi_prepare_for_transfer(struct mhi_device * mhi_dev)1655 int mhi_prepare_for_transfer(struct mhi_device *mhi_dev)
1656 {
1657 return __mhi_prepare_for_transfer(mhi_dev, 0);
1658 }
1659 EXPORT_SYMBOL_GPL(mhi_prepare_for_transfer);
1660
mhi_prepare_for_transfer_autoqueue(struct mhi_device * mhi_dev)1661 int mhi_prepare_for_transfer_autoqueue(struct mhi_device *mhi_dev)
1662 {
1663 return __mhi_prepare_for_transfer(mhi_dev, MHI_CH_INBOUND_ALLOC_BUFS);
1664 }
1665 EXPORT_SYMBOL_GPL(mhi_prepare_for_transfer_autoqueue);
1666
mhi_unprepare_from_transfer(struct mhi_device * mhi_dev)1667 void mhi_unprepare_from_transfer(struct mhi_device *mhi_dev)
1668 {
1669 struct mhi_controller *mhi_cntrl = mhi_dev->mhi_cntrl;
1670 struct mhi_chan *mhi_chan;
1671 int dir;
1672
1673 for (dir = 0; dir < 2; dir++) {
1674 mhi_chan = dir ? mhi_dev->ul_chan : mhi_dev->dl_chan;
1675 if (!mhi_chan)
1676 continue;
1677
1678 mhi_unprepare_channel(mhi_cntrl, mhi_chan);
1679 }
1680 }
1681 EXPORT_SYMBOL_GPL(mhi_unprepare_from_transfer);
1682
mhi_poll(struct mhi_device * mhi_dev,u32 budget)1683 int mhi_poll(struct mhi_device *mhi_dev, u32 budget)
1684 {
1685 struct mhi_controller *mhi_cntrl = mhi_dev->mhi_cntrl;
1686 struct mhi_chan *mhi_chan = mhi_dev->dl_chan;
1687 struct mhi_event *mhi_event = &mhi_cntrl->mhi_event[mhi_chan->er_index];
1688 int ret;
1689
1690 spin_lock_bh(&mhi_event->lock);
1691 ret = mhi_event->process_event(mhi_cntrl, mhi_event, budget);
1692 spin_unlock_bh(&mhi_event->lock);
1693
1694 return ret;
1695 }
1696 EXPORT_SYMBOL_GPL(mhi_poll);
1697