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