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