• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (c) 2012-2016, The Linux Foundation. All rights reserved.
4  * Copyright (C) 2017 Linaro Ltd.
5  */
6 
7 #include <linux/delay.h>
8 #include <linux/device.h>
9 #include <linux/dma-mapping.h>
10 #include <linux/interrupt.h>
11 #include <linux/iopoll.h>
12 #include <linux/kernel.h>
13 #include <linux/slab.h>
14 
15 #include "core.h"
16 #include "hfi_cmds.h"
17 #include "hfi_msgs.h"
18 #include "hfi_venus.h"
19 #include "hfi_venus_io.h"
20 #include "firmware.h"
21 
22 #define HFI_MASK_QHDR_TX_TYPE		0xff000000
23 #define HFI_MASK_QHDR_RX_TYPE		0x00ff0000
24 #define HFI_MASK_QHDR_PRI_TYPE		0x0000ff00
25 #define HFI_MASK_QHDR_ID_TYPE		0x000000ff
26 
27 #define HFI_HOST_TO_CTRL_CMD_Q		0
28 #define HFI_CTRL_TO_HOST_MSG_Q		1
29 #define HFI_CTRL_TO_HOST_DBG_Q		2
30 #define HFI_MASK_QHDR_STATUS		0x000000ff
31 
32 #define IFACEQ_NUM			3
33 #define IFACEQ_CMD_IDX			0
34 #define IFACEQ_MSG_IDX			1
35 #define IFACEQ_DBG_IDX			2
36 #define IFACEQ_MAX_BUF_COUNT		50
37 #define IFACEQ_MAX_PARALLEL_CLNTS	16
38 #define IFACEQ_DFLT_QHDR		0x01010000
39 
40 #define POLL_INTERVAL_US		50
41 
42 #define IFACEQ_MAX_PKT_SIZE		1024
43 #define IFACEQ_MED_PKT_SIZE		768
44 #define IFACEQ_MIN_PKT_SIZE		8
45 #define IFACEQ_VAR_SMALL_PKT_SIZE	100
46 #define IFACEQ_VAR_LARGE_PKT_SIZE	512
47 #define IFACEQ_VAR_HUGE_PKT_SIZE	(1024 * 12)
48 
49 struct hfi_queue_table_header {
50 	u32 version;
51 	u32 size;
52 	u32 qhdr0_offset;
53 	u32 qhdr_size;
54 	u32 num_q;
55 	u32 num_active_q;
56 };
57 
58 struct hfi_queue_header {
59 	u32 status;
60 	u32 start_addr;
61 	u32 type;
62 	u32 q_size;
63 	u32 pkt_size;
64 	u32 pkt_drop_cnt;
65 	u32 rx_wm;
66 	u32 tx_wm;
67 	u32 rx_req;
68 	u32 tx_req;
69 	u32 rx_irq_status;
70 	u32 tx_irq_status;
71 	u32 read_idx;
72 	u32 write_idx;
73 };
74 
75 #define IFACEQ_TABLE_SIZE	\
76 	(sizeof(struct hfi_queue_table_header) +	\
77 	 sizeof(struct hfi_queue_header) * IFACEQ_NUM)
78 
79 #define IFACEQ_QUEUE_SIZE	(IFACEQ_MAX_PKT_SIZE *	\
80 	IFACEQ_MAX_BUF_COUNT * IFACEQ_MAX_PARALLEL_CLNTS)
81 
82 #define IFACEQ_GET_QHDR_START_ADDR(ptr, i)	\
83 	(void *)(((ptr) + sizeof(struct hfi_queue_table_header)) +	\
84 		((i) * sizeof(struct hfi_queue_header)))
85 
86 #define QDSS_SIZE		SZ_4K
87 #define SFR_SIZE		SZ_4K
88 #define QUEUE_SIZE		\
89 	(IFACEQ_TABLE_SIZE + (IFACEQ_QUEUE_SIZE * IFACEQ_NUM))
90 
91 #define ALIGNED_QDSS_SIZE	ALIGN(QDSS_SIZE, SZ_4K)
92 #define ALIGNED_SFR_SIZE	ALIGN(SFR_SIZE, SZ_4K)
93 #define ALIGNED_QUEUE_SIZE	ALIGN(QUEUE_SIZE, SZ_4K)
94 #define SHARED_QSIZE		ALIGN(ALIGNED_SFR_SIZE + ALIGNED_QUEUE_SIZE + \
95 				      ALIGNED_QDSS_SIZE, SZ_1M)
96 
97 struct mem_desc {
98 	dma_addr_t da;	/* device address */
99 	void *kva;	/* kernel virtual address */
100 	u32 size;
101 	unsigned long attrs;
102 };
103 
104 struct iface_queue {
105 	struct hfi_queue_header *qhdr;
106 	struct mem_desc qmem;
107 };
108 
109 enum venus_state {
110 	VENUS_STATE_DEINIT = 1,
111 	VENUS_STATE_INIT,
112 };
113 
114 struct venus_hfi_device {
115 	struct venus_core *core;
116 	u32 irq_status;
117 	u32 last_packet_type;
118 	bool power_enabled;
119 	bool suspended;
120 	enum venus_state state;
121 	/* serialize read / write to the shared memory */
122 	struct mutex lock;
123 	struct completion pwr_collapse_prep;
124 	struct completion release_resource;
125 	struct mem_desc ifaceq_table;
126 	struct mem_desc sfr;
127 	struct iface_queue queues[IFACEQ_NUM];
128 	u8 pkt_buf[IFACEQ_VAR_HUGE_PKT_SIZE];
129 	u8 dbg_buf[IFACEQ_VAR_HUGE_PKT_SIZE];
130 };
131 
132 static bool venus_pkt_debug;
133 int venus_fw_debug = HFI_DEBUG_MSG_ERROR | HFI_DEBUG_MSG_FATAL;
134 static bool venus_fw_low_power_mode = true;
135 static int venus_hw_rsp_timeout = 1000;
136 static bool venus_fw_coverage;
137 
venus_set_state(struct venus_hfi_device * hdev,enum venus_state state)138 static void venus_set_state(struct venus_hfi_device *hdev,
139 			    enum venus_state state)
140 {
141 	mutex_lock(&hdev->lock);
142 	hdev->state = state;
143 	mutex_unlock(&hdev->lock);
144 }
145 
venus_is_valid_state(struct venus_hfi_device * hdev)146 static bool venus_is_valid_state(struct venus_hfi_device *hdev)
147 {
148 	return hdev->state != VENUS_STATE_DEINIT;
149 }
150 
venus_dump_packet(struct venus_hfi_device * hdev,const void * packet)151 static void venus_dump_packet(struct venus_hfi_device *hdev, const void *packet)
152 {
153 	size_t pkt_size = *(u32 *)packet;
154 
155 	if (!venus_pkt_debug)
156 		return;
157 
158 	print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 16, 1, packet,
159 		       pkt_size, true);
160 }
161 
venus_write_queue(struct venus_hfi_device * hdev,struct iface_queue * queue,void * packet,u32 * rx_req)162 static int venus_write_queue(struct venus_hfi_device *hdev,
163 			     struct iface_queue *queue,
164 			     void *packet, u32 *rx_req)
165 {
166 	struct hfi_queue_header *qhdr;
167 	u32 dwords, new_wr_idx;
168 	u32 empty_space, rd_idx, wr_idx, qsize;
169 	u32 *wr_ptr;
170 
171 	if (!queue->qmem.kva)
172 		return -EINVAL;
173 
174 	qhdr = queue->qhdr;
175 	if (!qhdr)
176 		return -EINVAL;
177 
178 	venus_dump_packet(hdev, packet);
179 
180 	dwords = (*(u32 *)packet) >> 2;
181 	if (!dwords)
182 		return -EINVAL;
183 
184 	rd_idx = qhdr->read_idx;
185 	wr_idx = qhdr->write_idx;
186 	qsize = qhdr->q_size;
187 	/* ensure rd/wr indices's are read from memory */
188 	rmb();
189 
190 	if (wr_idx >= rd_idx)
191 		empty_space = qsize - (wr_idx - rd_idx);
192 	else
193 		empty_space = rd_idx - wr_idx;
194 
195 	if (empty_space <= dwords) {
196 		qhdr->tx_req = 1;
197 		/* ensure tx_req is updated in memory */
198 		wmb();
199 		return -ENOSPC;
200 	}
201 
202 	qhdr->tx_req = 0;
203 	/* ensure tx_req is updated in memory */
204 	wmb();
205 
206 	new_wr_idx = wr_idx + dwords;
207 	wr_ptr = (u32 *)(queue->qmem.kva + (wr_idx << 2));
208 
209 	if (wr_ptr < (u32 *)queue->qmem.kva ||
210 	    wr_ptr > (u32 *)(queue->qmem.kva + queue->qmem.size - sizeof(*wr_ptr)))
211 		return -EINVAL;
212 
213 	if (new_wr_idx < qsize) {
214 		memcpy(wr_ptr, packet, dwords << 2);
215 	} else {
216 		size_t len;
217 
218 		new_wr_idx -= qsize;
219 		len = (dwords - new_wr_idx) << 2;
220 		memcpy(wr_ptr, packet, len);
221 		memcpy(queue->qmem.kva, packet + len, new_wr_idx << 2);
222 	}
223 
224 	/* make sure packet is written before updating the write index */
225 	wmb();
226 
227 	qhdr->write_idx = new_wr_idx;
228 	*rx_req = qhdr->rx_req ? 1 : 0;
229 
230 	/* make sure write index is updated before an interrupt is raised */
231 	mb();
232 
233 	return 0;
234 }
235 
venus_read_queue(struct venus_hfi_device * hdev,struct iface_queue * queue,void * pkt,u32 * tx_req)236 static int venus_read_queue(struct venus_hfi_device *hdev,
237 			    struct iface_queue *queue, void *pkt, u32 *tx_req)
238 {
239 	struct hfi_queue_header *qhdr;
240 	u32 dwords, new_rd_idx;
241 	u32 rd_idx, wr_idx, type, qsize;
242 	u32 *rd_ptr;
243 	u32 recv_request = 0;
244 	int ret = 0;
245 
246 	if (!queue->qmem.kva)
247 		return -EINVAL;
248 
249 	qhdr = queue->qhdr;
250 	if (!qhdr)
251 		return -EINVAL;
252 
253 	type = qhdr->type;
254 	rd_idx = qhdr->read_idx;
255 	wr_idx = qhdr->write_idx;
256 	qsize = qhdr->q_size;
257 
258 	/* make sure data is valid before using it */
259 	rmb();
260 
261 	/*
262 	 * Do not set receive request for debug queue, if set, Venus generates
263 	 * interrupt for debug messages even when there is no response message
264 	 * available. In general debug queue will not become full as it is being
265 	 * emptied out for every interrupt from Venus. Venus will anyway
266 	 * generates interrupt if it is full.
267 	 */
268 	if (type & HFI_CTRL_TO_HOST_MSG_Q)
269 		recv_request = 1;
270 
271 	if (rd_idx == wr_idx) {
272 		qhdr->rx_req = recv_request;
273 		*tx_req = 0;
274 		/* update rx_req field in memory */
275 		wmb();
276 		return -ENODATA;
277 	}
278 
279 	rd_ptr = (u32 *)(queue->qmem.kva + (rd_idx << 2));
280 
281 	if (rd_ptr < (u32 *)queue->qmem.kva ||
282 	    rd_ptr > (u32 *)(queue->qmem.kva + queue->qmem.size - sizeof(*rd_ptr)))
283 		return -EINVAL;
284 
285 	dwords = *rd_ptr >> 2;
286 	if (!dwords)
287 		return -EINVAL;
288 
289 	new_rd_idx = rd_idx + dwords;
290 	if (((dwords << 2) <= IFACEQ_VAR_HUGE_PKT_SIZE) && rd_idx <= qsize) {
291 		if (new_rd_idx < qsize) {
292 			memcpy(pkt, rd_ptr, dwords << 2);
293 		} else {
294 			size_t len;
295 
296 			new_rd_idx -= qsize;
297 			len = (dwords - new_rd_idx) << 2;
298 			memcpy(pkt, rd_ptr, len);
299 			memcpy(pkt + len, queue->qmem.kva, new_rd_idx << 2);
300 		}
301 	} else {
302 		/* bad packet received, dropping */
303 		new_rd_idx = qhdr->write_idx;
304 		ret = -EBADMSG;
305 	}
306 
307 	/* ensure the packet is read before updating read index */
308 	rmb();
309 
310 	qhdr->read_idx = new_rd_idx;
311 	/* ensure updating read index */
312 	wmb();
313 
314 	rd_idx = qhdr->read_idx;
315 	wr_idx = qhdr->write_idx;
316 	/* ensure rd/wr indices are read from memory */
317 	rmb();
318 
319 	if (rd_idx != wr_idx)
320 		qhdr->rx_req = 0;
321 	else
322 		qhdr->rx_req = recv_request;
323 
324 	*tx_req = qhdr->tx_req ? 1 : 0;
325 
326 	/* ensure rx_req is stored to memory and tx_req is loaded from memory */
327 	mb();
328 
329 	venus_dump_packet(hdev, pkt);
330 
331 	return ret;
332 }
333 
venus_alloc(struct venus_hfi_device * hdev,struct mem_desc * desc,u32 size)334 static int venus_alloc(struct venus_hfi_device *hdev, struct mem_desc *desc,
335 		       u32 size)
336 {
337 	struct device *dev = hdev->core->dev;
338 
339 	desc->attrs = DMA_ATTR_WRITE_COMBINE;
340 	desc->size = ALIGN(size, SZ_4K);
341 
342 	desc->kva = dma_alloc_attrs(dev, desc->size, &desc->da, GFP_KERNEL,
343 				    desc->attrs);
344 	if (!desc->kva)
345 		return -ENOMEM;
346 
347 	return 0;
348 }
349 
venus_free(struct venus_hfi_device * hdev,struct mem_desc * mem)350 static void venus_free(struct venus_hfi_device *hdev, struct mem_desc *mem)
351 {
352 	struct device *dev = hdev->core->dev;
353 
354 	dma_free_attrs(dev, mem->size, mem->kva, mem->da, mem->attrs);
355 }
356 
venus_set_registers(struct venus_hfi_device * hdev)357 static void venus_set_registers(struct venus_hfi_device *hdev)
358 {
359 	const struct venus_resources *res = hdev->core->res;
360 	const struct reg_val *tbl = res->reg_tbl;
361 	unsigned int count = res->reg_tbl_size;
362 	unsigned int i;
363 
364 	for (i = 0; i < count; i++)
365 		writel(tbl[i].value, hdev->core->base + tbl[i].reg);
366 }
367 
venus_soft_int(struct venus_hfi_device * hdev)368 static void venus_soft_int(struct venus_hfi_device *hdev)
369 {
370 	void __iomem *cpu_ic_base = hdev->core->cpu_ic_base;
371 	u32 clear_bit;
372 
373 	if (IS_V6(hdev->core))
374 		clear_bit = BIT(CPU_IC_SOFTINT_H2A_SHIFT_V6);
375 	else
376 		clear_bit = BIT(CPU_IC_SOFTINT_H2A_SHIFT);
377 
378 	writel(clear_bit, cpu_ic_base + CPU_IC_SOFTINT);
379 }
380 
venus_iface_cmdq_write_nolock(struct venus_hfi_device * hdev,void * pkt,bool sync)381 static int venus_iface_cmdq_write_nolock(struct venus_hfi_device *hdev,
382 					 void *pkt, bool sync)
383 {
384 	struct device *dev = hdev->core->dev;
385 	struct hfi_pkt_hdr *cmd_packet;
386 	struct iface_queue *queue;
387 	u32 rx_req;
388 	int ret;
389 
390 	if (!venus_is_valid_state(hdev))
391 		return -EINVAL;
392 
393 	cmd_packet = (struct hfi_pkt_hdr *)pkt;
394 	hdev->last_packet_type = cmd_packet->pkt_type;
395 
396 	queue = &hdev->queues[IFACEQ_CMD_IDX];
397 
398 	ret = venus_write_queue(hdev, queue, pkt, &rx_req);
399 	if (ret) {
400 		dev_err(dev, "write to iface cmd queue failed (%d)\n", ret);
401 		return ret;
402 	}
403 
404 	if (sync) {
405 		/*
406 		 * Inform video hardware to raise interrupt for synchronous
407 		 * commands
408 		 */
409 		queue = &hdev->queues[IFACEQ_MSG_IDX];
410 		queue->qhdr->rx_req = 1;
411 		/* ensure rx_req is updated in memory */
412 		wmb();
413 	}
414 
415 	if (rx_req)
416 		venus_soft_int(hdev);
417 
418 	return 0;
419 }
420 
venus_iface_cmdq_write(struct venus_hfi_device * hdev,void * pkt,bool sync)421 static int venus_iface_cmdq_write(struct venus_hfi_device *hdev, void *pkt, bool sync)
422 {
423 	int ret;
424 
425 	mutex_lock(&hdev->lock);
426 	ret = venus_iface_cmdq_write_nolock(hdev, pkt, sync);
427 	mutex_unlock(&hdev->lock);
428 
429 	return ret;
430 }
431 
venus_hfi_core_set_resource(struct venus_core * core,u32 id,u32 size,u32 addr,void * cookie)432 static int venus_hfi_core_set_resource(struct venus_core *core, u32 id,
433 				       u32 size, u32 addr, void *cookie)
434 {
435 	struct venus_hfi_device *hdev = to_hfi_priv(core);
436 	struct hfi_sys_set_resource_pkt *pkt;
437 	u8 packet[IFACEQ_VAR_SMALL_PKT_SIZE];
438 	int ret;
439 
440 	if (id == VIDC_RESOURCE_NONE)
441 		return 0;
442 
443 	pkt = (struct hfi_sys_set_resource_pkt *)packet;
444 
445 	ret = pkt_sys_set_resource(pkt, id, size, addr, cookie);
446 	if (ret)
447 		return ret;
448 
449 	ret = venus_iface_cmdq_write(hdev, pkt, false);
450 	if (ret)
451 		return ret;
452 
453 	return 0;
454 }
455 
venus_boot_core(struct venus_hfi_device * hdev)456 static int venus_boot_core(struct venus_hfi_device *hdev)
457 {
458 	struct device *dev = hdev->core->dev;
459 	static const unsigned int max_tries = 100;
460 	u32 ctrl_status = 0, mask_val;
461 	unsigned int count = 0;
462 	void __iomem *cpu_cs_base = hdev->core->cpu_cs_base;
463 	void __iomem *wrapper_base = hdev->core->wrapper_base;
464 	int ret = 0;
465 
466 	if (IS_V6(hdev->core)) {
467 		mask_val = readl(wrapper_base + WRAPPER_INTR_MASK);
468 		mask_val &= ~(WRAPPER_INTR_MASK_A2HWD_BASK_V6 |
469 			      WRAPPER_INTR_MASK_A2HCPU_MASK);
470 	} else {
471 		mask_val = WRAPPER_INTR_MASK_A2HVCODEC_MASK;
472 	}
473 	writel(mask_val, wrapper_base + WRAPPER_INTR_MASK);
474 	writel(1, cpu_cs_base + CPU_CS_SCIACMDARG3);
475 
476 	writel(BIT(VIDC_CTRL_INIT_CTRL_SHIFT), cpu_cs_base + VIDC_CTRL_INIT);
477 	while (!ctrl_status && count < max_tries) {
478 		ctrl_status = readl(cpu_cs_base + CPU_CS_SCIACMDARG0);
479 		if ((ctrl_status & CPU_CS_SCIACMDARG0_ERROR_STATUS_MASK) == 4) {
480 			dev_err(dev, "invalid setting for UC_REGION\n");
481 			ret = -EINVAL;
482 			break;
483 		}
484 
485 		usleep_range(500, 1000);
486 		count++;
487 	}
488 
489 	if (count >= max_tries)
490 		ret = -ETIMEDOUT;
491 
492 	if (IS_V6(hdev->core)) {
493 		writel(0x1, cpu_cs_base + CPU_CS_H2XSOFTINTEN_V6);
494 		writel(0x0, cpu_cs_base + CPU_CS_X2RPMH_V6);
495 	}
496 
497 	return ret;
498 }
499 
venus_hwversion(struct venus_hfi_device * hdev)500 static u32 venus_hwversion(struct venus_hfi_device *hdev)
501 {
502 	struct device *dev = hdev->core->dev;
503 	void __iomem *wrapper_base = hdev->core->wrapper_base;
504 	u32 ver;
505 	u32 major, minor, step;
506 
507 	ver = readl(wrapper_base + WRAPPER_HW_VERSION);
508 	major = ver & WRAPPER_HW_VERSION_MAJOR_VERSION_MASK;
509 	major = major >> WRAPPER_HW_VERSION_MAJOR_VERSION_SHIFT;
510 	minor = ver & WRAPPER_HW_VERSION_MINOR_VERSION_MASK;
511 	minor = minor >> WRAPPER_HW_VERSION_MINOR_VERSION_SHIFT;
512 	step = ver & WRAPPER_HW_VERSION_STEP_VERSION_MASK;
513 
514 	dev_dbg(dev, VDBGL "venus hw version %x.%x.%x\n", major, minor, step);
515 
516 	return major;
517 }
518 
venus_run(struct venus_hfi_device * hdev)519 static int venus_run(struct venus_hfi_device *hdev)
520 {
521 	struct device *dev = hdev->core->dev;
522 	void __iomem *cpu_cs_base = hdev->core->cpu_cs_base;
523 	int ret;
524 
525 	/*
526 	 * Re-program all of the registers that get reset as a result of
527 	 * regulator_disable() and _enable()
528 	 */
529 	venus_set_registers(hdev);
530 
531 	writel(hdev->ifaceq_table.da, cpu_cs_base + UC_REGION_ADDR);
532 	writel(SHARED_QSIZE, cpu_cs_base + UC_REGION_SIZE);
533 	writel(hdev->ifaceq_table.da, cpu_cs_base + CPU_CS_SCIACMDARG2);
534 	writel(0x01, cpu_cs_base + CPU_CS_SCIACMDARG1);
535 	if (hdev->sfr.da)
536 		writel(hdev->sfr.da, cpu_cs_base + SFR_ADDR);
537 
538 	ret = venus_boot_core(hdev);
539 	if (ret) {
540 		dev_err(dev, "failed to reset venus core\n");
541 		return ret;
542 	}
543 
544 	venus_hwversion(hdev);
545 
546 	return 0;
547 }
548 
venus_halt_axi(struct venus_hfi_device * hdev)549 static int venus_halt_axi(struct venus_hfi_device *hdev)
550 {
551 	void __iomem *wrapper_base = hdev->core->wrapper_base;
552 	void __iomem *vbif_base = hdev->core->vbif_base;
553 	void __iomem *cpu_cs_base = hdev->core->cpu_cs_base;
554 	void __iomem *aon_base = hdev->core->aon_base;
555 	struct device *dev = hdev->core->dev;
556 	u32 val;
557 	u32 mask_val;
558 	int ret;
559 
560 	if (IS_V6(hdev->core)) {
561 		writel(0x3, cpu_cs_base + CPU_CS_X2RPMH_V6);
562 
563 		if (hdev->core->res->num_vpp_pipes == 1)
564 			goto skip_aon_mvp_noc;
565 
566 		writel(0x1, aon_base + AON_WRAPPER_MVP_NOC_LPI_CONTROL);
567 		ret = readl_poll_timeout(aon_base + AON_WRAPPER_MVP_NOC_LPI_STATUS,
568 					 val,
569 					 val & BIT(0),
570 					 POLL_INTERVAL_US,
571 					 VBIF_AXI_HALT_ACK_TIMEOUT_US);
572 		if (ret)
573 			return -ETIMEDOUT;
574 
575 skip_aon_mvp_noc:
576 		mask_val = (BIT(2) | BIT(1) | BIT(0));
577 		writel(mask_val, wrapper_base + WRAPPER_DEBUG_BRIDGE_LPI_CONTROL_V6);
578 
579 		writel(0x00, wrapper_base + WRAPPER_DEBUG_BRIDGE_LPI_CONTROL_V6);
580 		ret = readl_poll_timeout(wrapper_base + WRAPPER_DEBUG_BRIDGE_LPI_STATUS_V6,
581 					 val,
582 					 val == 0,
583 					 POLL_INTERVAL_US,
584 					 VBIF_AXI_HALT_ACK_TIMEOUT_US);
585 
586 		if (ret) {
587 			dev_err(dev, "DBLP Release: lpi_status %x\n", val);
588 			return -ETIMEDOUT;
589 		}
590 		return 0;
591 	}
592 
593 	if (IS_V4(hdev->core)) {
594 		val = readl(wrapper_base + WRAPPER_CPU_AXI_HALT);
595 		val |= WRAPPER_CPU_AXI_HALT_HALT;
596 		writel(val, wrapper_base + WRAPPER_CPU_AXI_HALT);
597 
598 		ret = readl_poll_timeout(wrapper_base + WRAPPER_CPU_AXI_HALT_STATUS,
599 					 val,
600 					 val & WRAPPER_CPU_AXI_HALT_STATUS_IDLE,
601 					 POLL_INTERVAL_US,
602 					 VBIF_AXI_HALT_ACK_TIMEOUT_US);
603 		if (ret) {
604 			dev_err(dev, "AXI bus port halt timeout\n");
605 			return ret;
606 		}
607 
608 		return 0;
609 	}
610 
611 	/* Halt AXI and AXI IMEM VBIF Access */
612 	val = readl(vbif_base + VBIF_AXI_HALT_CTRL0);
613 	val |= VBIF_AXI_HALT_CTRL0_HALT_REQ;
614 	writel(val, vbif_base + VBIF_AXI_HALT_CTRL0);
615 
616 	/* Request for AXI bus port halt */
617 	ret = readl_poll_timeout(vbif_base + VBIF_AXI_HALT_CTRL1, val,
618 				 val & VBIF_AXI_HALT_CTRL1_HALT_ACK,
619 				 POLL_INTERVAL_US,
620 				 VBIF_AXI_HALT_ACK_TIMEOUT_US);
621 	if (ret) {
622 		dev_err(dev, "AXI bus port halt timeout\n");
623 		return ret;
624 	}
625 
626 	return 0;
627 }
628 
venus_power_off(struct venus_hfi_device * hdev)629 static int venus_power_off(struct venus_hfi_device *hdev)
630 {
631 	int ret;
632 
633 	if (!hdev->power_enabled)
634 		return 0;
635 
636 	ret = venus_set_hw_state_suspend(hdev->core);
637 	if (ret)
638 		return ret;
639 
640 	ret = venus_halt_axi(hdev);
641 	if (ret)
642 		return ret;
643 
644 	hdev->power_enabled = false;
645 
646 	return 0;
647 }
648 
venus_power_on(struct venus_hfi_device * hdev)649 static int venus_power_on(struct venus_hfi_device *hdev)
650 {
651 	int ret;
652 
653 	if (hdev->power_enabled)
654 		return 0;
655 
656 	ret = venus_set_hw_state_resume(hdev->core);
657 	if (ret)
658 		goto err;
659 
660 	ret = venus_run(hdev);
661 	if (ret)
662 		goto err_suspend;
663 
664 	hdev->power_enabled = true;
665 
666 	return 0;
667 
668 err_suspend:
669 	venus_set_hw_state_suspend(hdev->core);
670 err:
671 	hdev->power_enabled = false;
672 	return ret;
673 }
674 
venus_iface_msgq_read_nolock(struct venus_hfi_device * hdev,void * pkt)675 static int venus_iface_msgq_read_nolock(struct venus_hfi_device *hdev,
676 					void *pkt)
677 {
678 	struct iface_queue *queue;
679 	u32 tx_req;
680 	int ret;
681 
682 	if (!venus_is_valid_state(hdev))
683 		return -EINVAL;
684 
685 	queue = &hdev->queues[IFACEQ_MSG_IDX];
686 
687 	ret = venus_read_queue(hdev, queue, pkt, &tx_req);
688 	if (ret)
689 		return ret;
690 
691 	if (tx_req)
692 		venus_soft_int(hdev);
693 
694 	return 0;
695 }
696 
venus_iface_msgq_read(struct venus_hfi_device * hdev,void * pkt)697 static int venus_iface_msgq_read(struct venus_hfi_device *hdev, void *pkt)
698 {
699 	int ret;
700 
701 	mutex_lock(&hdev->lock);
702 	ret = venus_iface_msgq_read_nolock(hdev, pkt);
703 	mutex_unlock(&hdev->lock);
704 
705 	return ret;
706 }
707 
venus_iface_dbgq_read_nolock(struct venus_hfi_device * hdev,void * pkt)708 static int venus_iface_dbgq_read_nolock(struct venus_hfi_device *hdev,
709 					void *pkt)
710 {
711 	struct iface_queue *queue;
712 	u32 tx_req;
713 	int ret;
714 
715 	ret = venus_is_valid_state(hdev);
716 	if (!ret)
717 		return -EINVAL;
718 
719 	queue = &hdev->queues[IFACEQ_DBG_IDX];
720 
721 	ret = venus_read_queue(hdev, queue, pkt, &tx_req);
722 	if (ret)
723 		return ret;
724 
725 	if (tx_req)
726 		venus_soft_int(hdev);
727 
728 	return 0;
729 }
730 
venus_iface_dbgq_read(struct venus_hfi_device * hdev,void * pkt)731 static int venus_iface_dbgq_read(struct venus_hfi_device *hdev, void *pkt)
732 {
733 	int ret;
734 
735 	if (!pkt)
736 		return -EINVAL;
737 
738 	mutex_lock(&hdev->lock);
739 	ret = venus_iface_dbgq_read_nolock(hdev, pkt);
740 	mutex_unlock(&hdev->lock);
741 
742 	return ret;
743 }
744 
venus_set_qhdr_defaults(struct hfi_queue_header * qhdr)745 static void venus_set_qhdr_defaults(struct hfi_queue_header *qhdr)
746 {
747 	qhdr->status = 1;
748 	qhdr->type = IFACEQ_DFLT_QHDR;
749 	qhdr->q_size = IFACEQ_QUEUE_SIZE / 4;
750 	qhdr->pkt_size = 0;
751 	qhdr->rx_wm = 1;
752 	qhdr->tx_wm = 1;
753 	qhdr->rx_req = 1;
754 	qhdr->tx_req = 0;
755 	qhdr->rx_irq_status = 0;
756 	qhdr->tx_irq_status = 0;
757 	qhdr->read_idx = 0;
758 	qhdr->write_idx = 0;
759 }
760 
venus_interface_queues_release(struct venus_hfi_device * hdev)761 static void venus_interface_queues_release(struct venus_hfi_device *hdev)
762 {
763 	mutex_lock(&hdev->lock);
764 
765 	venus_free(hdev, &hdev->ifaceq_table);
766 	venus_free(hdev, &hdev->sfr);
767 
768 	memset(hdev->queues, 0, sizeof(hdev->queues));
769 	memset(&hdev->ifaceq_table, 0, sizeof(hdev->ifaceq_table));
770 	memset(&hdev->sfr, 0, sizeof(hdev->sfr));
771 
772 	mutex_unlock(&hdev->lock);
773 }
774 
venus_interface_queues_init(struct venus_hfi_device * hdev)775 static int venus_interface_queues_init(struct venus_hfi_device *hdev)
776 {
777 	struct hfi_queue_table_header *tbl_hdr;
778 	struct iface_queue *queue;
779 	struct hfi_sfr *sfr;
780 	struct mem_desc desc = {0};
781 	unsigned int offset;
782 	unsigned int i;
783 	int ret;
784 
785 	ret = venus_alloc(hdev, &desc, ALIGNED_QUEUE_SIZE);
786 	if (ret)
787 		return ret;
788 
789 	hdev->ifaceq_table = desc;
790 	offset = IFACEQ_TABLE_SIZE;
791 
792 	for (i = 0; i < IFACEQ_NUM; i++) {
793 		queue = &hdev->queues[i];
794 		queue->qmem.da = desc.da + offset;
795 		queue->qmem.kva = desc.kva + offset;
796 		queue->qmem.size = IFACEQ_QUEUE_SIZE;
797 		offset += queue->qmem.size;
798 		queue->qhdr =
799 			IFACEQ_GET_QHDR_START_ADDR(hdev->ifaceq_table.kva, i);
800 
801 		venus_set_qhdr_defaults(queue->qhdr);
802 
803 		queue->qhdr->start_addr = queue->qmem.da;
804 
805 		if (i == IFACEQ_CMD_IDX)
806 			queue->qhdr->type |= HFI_HOST_TO_CTRL_CMD_Q;
807 		else if (i == IFACEQ_MSG_IDX)
808 			queue->qhdr->type |= HFI_CTRL_TO_HOST_MSG_Q;
809 		else if (i == IFACEQ_DBG_IDX)
810 			queue->qhdr->type |= HFI_CTRL_TO_HOST_DBG_Q;
811 	}
812 
813 	tbl_hdr = hdev->ifaceq_table.kva;
814 	tbl_hdr->version = 0;
815 	tbl_hdr->size = IFACEQ_TABLE_SIZE;
816 	tbl_hdr->qhdr0_offset = sizeof(struct hfi_queue_table_header);
817 	tbl_hdr->qhdr_size = sizeof(struct hfi_queue_header);
818 	tbl_hdr->num_q = IFACEQ_NUM;
819 	tbl_hdr->num_active_q = IFACEQ_NUM;
820 
821 	/*
822 	 * Set receive request to zero on debug queue as there is no
823 	 * need of interrupt from video hardware for debug messages
824 	 */
825 	queue = &hdev->queues[IFACEQ_DBG_IDX];
826 	queue->qhdr->rx_req = 0;
827 
828 	ret = venus_alloc(hdev, &desc, ALIGNED_SFR_SIZE);
829 	if (ret) {
830 		hdev->sfr.da = 0;
831 	} else {
832 		hdev->sfr = desc;
833 		sfr = hdev->sfr.kva;
834 		sfr->buf_size = ALIGNED_SFR_SIZE;
835 	}
836 
837 	/* ensure table and queue header structs are settled in memory */
838 	wmb();
839 
840 	return 0;
841 }
842 
venus_sys_set_debug(struct venus_hfi_device * hdev,u32 debug)843 static int venus_sys_set_debug(struct venus_hfi_device *hdev, u32 debug)
844 {
845 	struct hfi_sys_set_property_pkt *pkt;
846 	u8 packet[IFACEQ_VAR_SMALL_PKT_SIZE];
847 	int ret;
848 
849 	pkt = (struct hfi_sys_set_property_pkt *)packet;
850 
851 	pkt_sys_debug_config(pkt, HFI_DEBUG_MODE_QUEUE, debug);
852 
853 	ret = venus_iface_cmdq_write(hdev, pkt, false);
854 	if (ret)
855 		return ret;
856 
857 	return 0;
858 }
859 
venus_sys_set_coverage(struct venus_hfi_device * hdev,u32 mode)860 static int venus_sys_set_coverage(struct venus_hfi_device *hdev, u32 mode)
861 {
862 	struct hfi_sys_set_property_pkt *pkt;
863 	u8 packet[IFACEQ_VAR_SMALL_PKT_SIZE];
864 	int ret;
865 
866 	pkt = (struct hfi_sys_set_property_pkt *)packet;
867 
868 	pkt_sys_coverage_config(pkt, mode);
869 
870 	ret = venus_iface_cmdq_write(hdev, pkt, false);
871 	if (ret)
872 		return ret;
873 
874 	return 0;
875 }
876 
venus_sys_set_idle_message(struct venus_hfi_device * hdev,bool enable)877 static int venus_sys_set_idle_message(struct venus_hfi_device *hdev,
878 				      bool enable)
879 {
880 	struct hfi_sys_set_property_pkt *pkt;
881 	u8 packet[IFACEQ_VAR_SMALL_PKT_SIZE];
882 	int ret;
883 
884 	if (!enable)
885 		return 0;
886 
887 	pkt = (struct hfi_sys_set_property_pkt *)packet;
888 
889 	pkt_sys_idle_indicator(pkt, enable);
890 
891 	ret = venus_iface_cmdq_write(hdev, pkt, false);
892 	if (ret)
893 		return ret;
894 
895 	return 0;
896 }
897 
venus_sys_set_power_control(struct venus_hfi_device * hdev,bool enable)898 static int venus_sys_set_power_control(struct venus_hfi_device *hdev,
899 				       bool enable)
900 {
901 	struct hfi_sys_set_property_pkt *pkt;
902 	u8 packet[IFACEQ_VAR_SMALL_PKT_SIZE];
903 	int ret;
904 
905 	pkt = (struct hfi_sys_set_property_pkt *)packet;
906 
907 	pkt_sys_power_control(pkt, enable);
908 
909 	ret = venus_iface_cmdq_write(hdev, pkt, false);
910 	if (ret)
911 		return ret;
912 
913 	return 0;
914 }
915 
venus_sys_set_ubwc_config(struct venus_hfi_device * hdev)916 static int venus_sys_set_ubwc_config(struct venus_hfi_device *hdev)
917 {
918 	struct hfi_sys_set_property_pkt *pkt;
919 	u8 packet[IFACEQ_VAR_SMALL_PKT_SIZE];
920 	const struct venus_resources *res = hdev->core->res;
921 	int ret;
922 
923 	pkt = (struct hfi_sys_set_property_pkt *)packet;
924 
925 	pkt_sys_ubwc_config(pkt, res->ubwc_conf);
926 
927 	ret = venus_iface_cmdq_write(hdev, pkt, false);
928 	if (ret)
929 		return ret;
930 
931 	return 0;
932 }
933 
venus_get_queue_size(struct venus_hfi_device * hdev,unsigned int index)934 static int venus_get_queue_size(struct venus_hfi_device *hdev,
935 				unsigned int index)
936 {
937 	struct hfi_queue_header *qhdr;
938 
939 	if (index >= IFACEQ_NUM)
940 		return -EINVAL;
941 
942 	qhdr = hdev->queues[index].qhdr;
943 	if (!qhdr)
944 		return -EINVAL;
945 
946 	return abs(qhdr->read_idx - qhdr->write_idx);
947 }
948 
venus_sys_set_default_properties(struct venus_hfi_device * hdev)949 static int venus_sys_set_default_properties(struct venus_hfi_device *hdev)
950 {
951 	struct device *dev = hdev->core->dev;
952 	const struct venus_resources *res = hdev->core->res;
953 	int ret;
954 
955 	ret = venus_sys_set_debug(hdev, venus_fw_debug);
956 	if (ret)
957 		dev_warn(dev, "setting fw debug msg ON failed (%d)\n", ret);
958 
959 	/* HFI_PROPERTY_SYS_IDLE_INDICATOR is not supported beyond 8916 (HFI V1) */
960 	if (IS_V1(hdev->core)) {
961 		ret = venus_sys_set_idle_message(hdev, false);
962 		if (ret)
963 			dev_warn(dev, "setting idle response ON failed (%d)\n", ret);
964 	}
965 
966 	ret = venus_sys_set_power_control(hdev, venus_fw_low_power_mode);
967 	if (ret)
968 		dev_warn(dev, "setting hw power collapse ON failed (%d)\n",
969 			 ret);
970 
971 	/* For specific venus core, it is mandatory to set the UBWC configuration */
972 	if (res->ubwc_conf) {
973 		ret = venus_sys_set_ubwc_config(hdev);
974 		if (ret)
975 			dev_warn(dev, "setting ubwc config failed (%d)\n", ret);
976 	}
977 
978 	return ret;
979 }
980 
venus_session_cmd(struct venus_inst * inst,u32 pkt_type,bool sync)981 static int venus_session_cmd(struct venus_inst *inst, u32 pkt_type, bool sync)
982 {
983 	struct venus_hfi_device *hdev = to_hfi_priv(inst->core);
984 	struct hfi_session_pkt pkt;
985 
986 	pkt_session_cmd(&pkt, pkt_type, inst);
987 
988 	return venus_iface_cmdq_write(hdev, &pkt, sync);
989 }
990 
venus_flush_debug_queue(struct venus_hfi_device * hdev)991 static void venus_flush_debug_queue(struct venus_hfi_device *hdev)
992 {
993 	struct device *dev = hdev->core->dev;
994 	void *packet = hdev->dbg_buf;
995 
996 	while (!venus_iface_dbgq_read(hdev, packet)) {
997 		struct hfi_msg_sys_coverage_pkt *pkt = packet;
998 
999 		if (pkt->hdr.pkt_type != HFI_MSG_SYS_COV) {
1000 			struct hfi_msg_sys_debug_pkt *pkt = packet;
1001 
1002 			dev_dbg(dev, VDBGFW "%s", pkt->msg_data);
1003 		}
1004 	}
1005 }
1006 
venus_prepare_power_collapse(struct venus_hfi_device * hdev,bool wait)1007 static int venus_prepare_power_collapse(struct venus_hfi_device *hdev,
1008 					bool wait)
1009 {
1010 	unsigned long timeout = msecs_to_jiffies(venus_hw_rsp_timeout);
1011 	struct hfi_sys_pc_prep_pkt pkt;
1012 	int ret;
1013 
1014 	init_completion(&hdev->pwr_collapse_prep);
1015 
1016 	pkt_sys_pc_prep(&pkt);
1017 
1018 	ret = venus_iface_cmdq_write(hdev, &pkt, false);
1019 	if (ret)
1020 		return ret;
1021 
1022 	if (!wait)
1023 		return 0;
1024 
1025 	ret = wait_for_completion_timeout(&hdev->pwr_collapse_prep, timeout);
1026 	if (!ret) {
1027 		venus_flush_debug_queue(hdev);
1028 		return -ETIMEDOUT;
1029 	}
1030 
1031 	return 0;
1032 }
1033 
venus_are_queues_empty(struct venus_hfi_device * hdev)1034 static int venus_are_queues_empty(struct venus_hfi_device *hdev)
1035 {
1036 	int ret1, ret2;
1037 
1038 	ret1 = venus_get_queue_size(hdev, IFACEQ_MSG_IDX);
1039 	if (ret1 < 0)
1040 		return ret1;
1041 
1042 	ret2 = venus_get_queue_size(hdev, IFACEQ_CMD_IDX);
1043 	if (ret2 < 0)
1044 		return ret2;
1045 
1046 	if (!ret1 && !ret2)
1047 		return 1;
1048 
1049 	return 0;
1050 }
1051 
venus_sfr_print(struct venus_hfi_device * hdev)1052 static void venus_sfr_print(struct venus_hfi_device *hdev)
1053 {
1054 	struct device *dev = hdev->core->dev;
1055 	struct hfi_sfr *sfr = hdev->sfr.kva;
1056 	void *p;
1057 
1058 	if (!sfr)
1059 		return;
1060 
1061 	p = memchr(sfr->data, '\0', sfr->buf_size);
1062 	/*
1063 	 * SFR isn't guaranteed to be NULL terminated since SYS_ERROR indicates
1064 	 * that Venus is in the process of crashing.
1065 	 */
1066 	if (!p)
1067 		sfr->data[sfr->buf_size - 1] = '\0';
1068 
1069 	dev_err_ratelimited(dev, "SFR message from FW: %s\n", sfr->data);
1070 }
1071 
venus_process_msg_sys_error(struct venus_hfi_device * hdev,void * packet)1072 static void venus_process_msg_sys_error(struct venus_hfi_device *hdev,
1073 					void *packet)
1074 {
1075 	struct hfi_msg_event_notify_pkt *event_pkt = packet;
1076 
1077 	if (event_pkt->event_id != HFI_EVENT_SYS_ERROR)
1078 		return;
1079 
1080 	venus_set_state(hdev, VENUS_STATE_DEINIT);
1081 
1082 	venus_sfr_print(hdev);
1083 }
1084 
venus_isr_thread(struct venus_core * core)1085 static irqreturn_t venus_isr_thread(struct venus_core *core)
1086 {
1087 	struct venus_hfi_device *hdev = to_hfi_priv(core);
1088 	const struct venus_resources *res;
1089 	void *pkt;
1090 	u32 msg_ret;
1091 
1092 	if (!hdev)
1093 		return IRQ_NONE;
1094 
1095 	res = hdev->core->res;
1096 	pkt = hdev->pkt_buf;
1097 
1098 
1099 	while (!venus_iface_msgq_read(hdev, pkt)) {
1100 		msg_ret = hfi_process_msg_packet(core, pkt);
1101 		switch (msg_ret) {
1102 		case HFI_MSG_EVENT_NOTIFY:
1103 			venus_process_msg_sys_error(hdev, pkt);
1104 			break;
1105 		case HFI_MSG_SYS_INIT:
1106 			venus_hfi_core_set_resource(core, res->vmem_id,
1107 						    res->vmem_size,
1108 						    res->vmem_addr,
1109 						    hdev);
1110 			break;
1111 		case HFI_MSG_SYS_RELEASE_RESOURCE:
1112 			complete(&hdev->release_resource);
1113 			break;
1114 		case HFI_MSG_SYS_PC_PREP:
1115 			complete(&hdev->pwr_collapse_prep);
1116 			break;
1117 		default:
1118 			break;
1119 		}
1120 	}
1121 
1122 	venus_flush_debug_queue(hdev);
1123 
1124 	return IRQ_HANDLED;
1125 }
1126 
venus_isr(struct venus_core * core)1127 static irqreturn_t venus_isr(struct venus_core *core)
1128 {
1129 	struct venus_hfi_device *hdev = to_hfi_priv(core);
1130 	u32 status;
1131 	void __iomem *cpu_cs_base;
1132 	void __iomem *wrapper_base;
1133 
1134 	if (!hdev)
1135 		return IRQ_NONE;
1136 
1137 	cpu_cs_base = hdev->core->cpu_cs_base;
1138 	wrapper_base = hdev->core->wrapper_base;
1139 
1140 	status = readl(wrapper_base + WRAPPER_INTR_STATUS);
1141 	if (IS_V6(core)) {
1142 		if (status & WRAPPER_INTR_STATUS_A2H_MASK ||
1143 		    status & WRAPPER_INTR_STATUS_A2HWD_MASK_V6 ||
1144 		    status & CPU_CS_SCIACMDARG0_INIT_IDLE_MSG_MASK)
1145 			hdev->irq_status = status;
1146 	} else {
1147 		if (status & WRAPPER_INTR_STATUS_A2H_MASK ||
1148 		    status & WRAPPER_INTR_STATUS_A2HWD_MASK ||
1149 		    status & CPU_CS_SCIACMDARG0_INIT_IDLE_MSG_MASK)
1150 			hdev->irq_status = status;
1151 	}
1152 	writel(1, cpu_cs_base + CPU_CS_A2HSOFTINTCLR);
1153 	if (!IS_V6(core))
1154 		writel(status, wrapper_base + WRAPPER_INTR_CLEAR);
1155 
1156 	return IRQ_WAKE_THREAD;
1157 }
1158 
venus_core_init(struct venus_core * core)1159 static int venus_core_init(struct venus_core *core)
1160 {
1161 	struct venus_hfi_device *hdev = to_hfi_priv(core);
1162 	struct device *dev = core->dev;
1163 	struct hfi_sys_get_property_pkt version_pkt;
1164 	struct hfi_sys_init_pkt pkt;
1165 	int ret;
1166 
1167 	pkt_sys_init(&pkt, HFI_VIDEO_ARCH_OX);
1168 
1169 	venus_set_state(hdev, VENUS_STATE_INIT);
1170 
1171 	ret = venus_iface_cmdq_write(hdev, &pkt, false);
1172 	if (ret)
1173 		return ret;
1174 
1175 	pkt_sys_image_version(&version_pkt);
1176 
1177 	ret = venus_iface_cmdq_write(hdev, &version_pkt, false);
1178 	if (ret)
1179 		dev_warn(dev, "failed to send image version pkt to fw\n");
1180 
1181 	ret = venus_sys_set_default_properties(hdev);
1182 	if (ret)
1183 		return ret;
1184 
1185 	return 0;
1186 }
1187 
venus_core_deinit(struct venus_core * core)1188 static int venus_core_deinit(struct venus_core *core)
1189 {
1190 	struct venus_hfi_device *hdev = to_hfi_priv(core);
1191 
1192 	venus_set_state(hdev, VENUS_STATE_DEINIT);
1193 	hdev->suspended = true;
1194 	hdev->power_enabled = false;
1195 
1196 	return 0;
1197 }
1198 
venus_core_ping(struct venus_core * core,u32 cookie)1199 static int venus_core_ping(struct venus_core *core, u32 cookie)
1200 {
1201 	struct venus_hfi_device *hdev = to_hfi_priv(core);
1202 	struct hfi_sys_ping_pkt pkt;
1203 
1204 	pkt_sys_ping(&pkt, cookie);
1205 
1206 	return venus_iface_cmdq_write(hdev, &pkt, false);
1207 }
1208 
venus_core_trigger_ssr(struct venus_core * core,u32 trigger_type)1209 static int venus_core_trigger_ssr(struct venus_core *core, u32 trigger_type)
1210 {
1211 	struct venus_hfi_device *hdev = to_hfi_priv(core);
1212 	struct hfi_sys_test_ssr_pkt pkt;
1213 	int ret;
1214 
1215 	ret = pkt_sys_ssr_cmd(&pkt, trigger_type);
1216 	if (ret)
1217 		return ret;
1218 
1219 	return venus_iface_cmdq_write(hdev, &pkt, false);
1220 }
1221 
venus_session_init(struct venus_inst * inst,u32 session_type,u32 codec)1222 static int venus_session_init(struct venus_inst *inst, u32 session_type,
1223 			      u32 codec)
1224 {
1225 	struct venus_hfi_device *hdev = to_hfi_priv(inst->core);
1226 	struct hfi_session_init_pkt pkt;
1227 	int ret;
1228 
1229 	ret = venus_sys_set_debug(hdev, venus_fw_debug);
1230 	if (ret)
1231 		goto err;
1232 
1233 	ret = pkt_session_init(&pkt, inst, session_type, codec);
1234 	if (ret)
1235 		goto err;
1236 
1237 	ret = venus_iface_cmdq_write(hdev, &pkt, true);
1238 	if (ret)
1239 		goto err;
1240 
1241 	return 0;
1242 
1243 err:
1244 	venus_flush_debug_queue(hdev);
1245 	return ret;
1246 }
1247 
venus_session_end(struct venus_inst * inst)1248 static int venus_session_end(struct venus_inst *inst)
1249 {
1250 	struct venus_hfi_device *hdev = to_hfi_priv(inst->core);
1251 	struct device *dev = hdev->core->dev;
1252 
1253 	if (venus_fw_coverage) {
1254 		if (venus_sys_set_coverage(hdev, venus_fw_coverage))
1255 			dev_warn(dev, "fw coverage msg ON failed\n");
1256 	}
1257 
1258 	return venus_session_cmd(inst, HFI_CMD_SYS_SESSION_END, true);
1259 }
1260 
venus_session_abort(struct venus_inst * inst)1261 static int venus_session_abort(struct venus_inst *inst)
1262 {
1263 	struct venus_hfi_device *hdev = to_hfi_priv(inst->core);
1264 
1265 	venus_flush_debug_queue(hdev);
1266 
1267 	return venus_session_cmd(inst, HFI_CMD_SYS_SESSION_ABORT, true);
1268 }
1269 
venus_session_flush(struct venus_inst * inst,u32 flush_mode)1270 static int venus_session_flush(struct venus_inst *inst, u32 flush_mode)
1271 {
1272 	struct venus_hfi_device *hdev = to_hfi_priv(inst->core);
1273 	struct hfi_session_flush_pkt pkt;
1274 	int ret;
1275 
1276 	ret = pkt_session_flush(&pkt, inst, flush_mode);
1277 	if (ret)
1278 		return ret;
1279 
1280 	return venus_iface_cmdq_write(hdev, &pkt, true);
1281 }
1282 
venus_session_start(struct venus_inst * inst)1283 static int venus_session_start(struct venus_inst *inst)
1284 {
1285 	return venus_session_cmd(inst, HFI_CMD_SESSION_START, true);
1286 }
1287 
venus_session_stop(struct venus_inst * inst)1288 static int venus_session_stop(struct venus_inst *inst)
1289 {
1290 	return venus_session_cmd(inst, HFI_CMD_SESSION_STOP, true);
1291 }
1292 
venus_session_continue(struct venus_inst * inst)1293 static int venus_session_continue(struct venus_inst *inst)
1294 {
1295 	return venus_session_cmd(inst, HFI_CMD_SESSION_CONTINUE, false);
1296 }
1297 
venus_session_etb(struct venus_inst * inst,struct hfi_frame_data * in_frame)1298 static int venus_session_etb(struct venus_inst *inst,
1299 			     struct hfi_frame_data *in_frame)
1300 {
1301 	struct venus_hfi_device *hdev = to_hfi_priv(inst->core);
1302 	u32 session_type = inst->session_type;
1303 	int ret;
1304 
1305 	if (session_type == VIDC_SESSION_TYPE_DEC) {
1306 		struct hfi_session_empty_buffer_compressed_pkt pkt;
1307 
1308 		ret = pkt_session_etb_decoder(&pkt, inst, in_frame);
1309 		if (ret)
1310 			return ret;
1311 
1312 		ret = venus_iface_cmdq_write(hdev, &pkt, false);
1313 	} else if (session_type == VIDC_SESSION_TYPE_ENC) {
1314 		struct hfi_session_empty_buffer_uncompressed_plane0_pkt pkt;
1315 
1316 		ret = pkt_session_etb_encoder(&pkt, inst, in_frame);
1317 		if (ret)
1318 			return ret;
1319 
1320 		ret = venus_iface_cmdq_write(hdev, &pkt, false);
1321 	} else {
1322 		ret = -EINVAL;
1323 	}
1324 
1325 	return ret;
1326 }
1327 
venus_session_ftb(struct venus_inst * inst,struct hfi_frame_data * out_frame)1328 static int venus_session_ftb(struct venus_inst *inst,
1329 			     struct hfi_frame_data *out_frame)
1330 {
1331 	struct venus_hfi_device *hdev = to_hfi_priv(inst->core);
1332 	struct hfi_session_fill_buffer_pkt pkt;
1333 	int ret;
1334 
1335 	ret = pkt_session_ftb(&pkt, inst, out_frame);
1336 	if (ret)
1337 		return ret;
1338 
1339 	return venus_iface_cmdq_write(hdev, &pkt, false);
1340 }
1341 
venus_session_set_buffers(struct venus_inst * inst,struct hfi_buffer_desc * bd)1342 static int venus_session_set_buffers(struct venus_inst *inst,
1343 				     struct hfi_buffer_desc *bd)
1344 {
1345 	struct venus_hfi_device *hdev = to_hfi_priv(inst->core);
1346 	struct hfi_session_set_buffers_pkt *pkt;
1347 	u8 packet[IFACEQ_VAR_LARGE_PKT_SIZE];
1348 	int ret;
1349 
1350 	if (bd->buffer_type == HFI_BUFFER_INPUT)
1351 		return 0;
1352 
1353 	pkt = (struct hfi_session_set_buffers_pkt *)packet;
1354 
1355 	ret = pkt_session_set_buffers(pkt, inst, bd);
1356 	if (ret)
1357 		return ret;
1358 
1359 	return venus_iface_cmdq_write(hdev, pkt, false);
1360 }
1361 
venus_session_unset_buffers(struct venus_inst * inst,struct hfi_buffer_desc * bd)1362 static int venus_session_unset_buffers(struct venus_inst *inst,
1363 				       struct hfi_buffer_desc *bd)
1364 {
1365 	struct venus_hfi_device *hdev = to_hfi_priv(inst->core);
1366 	struct hfi_session_release_buffer_pkt *pkt;
1367 	u8 packet[IFACEQ_VAR_LARGE_PKT_SIZE];
1368 	int ret;
1369 
1370 	if (bd->buffer_type == HFI_BUFFER_INPUT)
1371 		return 0;
1372 
1373 	pkt = (struct hfi_session_release_buffer_pkt *)packet;
1374 
1375 	ret = pkt_session_unset_buffers(pkt, inst, bd);
1376 	if (ret)
1377 		return ret;
1378 
1379 	return venus_iface_cmdq_write(hdev, pkt, true);
1380 }
1381 
venus_session_load_res(struct venus_inst * inst)1382 static int venus_session_load_res(struct venus_inst *inst)
1383 {
1384 	return venus_session_cmd(inst, HFI_CMD_SESSION_LOAD_RESOURCES, true);
1385 }
1386 
venus_session_release_res(struct venus_inst * inst)1387 static int venus_session_release_res(struct venus_inst *inst)
1388 {
1389 	return venus_session_cmd(inst, HFI_CMD_SESSION_RELEASE_RESOURCES, true);
1390 }
1391 
venus_session_parse_seq_hdr(struct venus_inst * inst,u32 seq_hdr,u32 seq_hdr_len)1392 static int venus_session_parse_seq_hdr(struct venus_inst *inst, u32 seq_hdr,
1393 				       u32 seq_hdr_len)
1394 {
1395 	struct venus_hfi_device *hdev = to_hfi_priv(inst->core);
1396 	struct hfi_session_parse_sequence_header_pkt *pkt;
1397 	u8 packet[IFACEQ_VAR_SMALL_PKT_SIZE];
1398 	int ret;
1399 
1400 	pkt = (struct hfi_session_parse_sequence_header_pkt *)packet;
1401 
1402 	ret = pkt_session_parse_seq_header(pkt, inst, seq_hdr, seq_hdr_len);
1403 	if (ret)
1404 		return ret;
1405 
1406 	ret = venus_iface_cmdq_write(hdev, pkt, false);
1407 	if (ret)
1408 		return ret;
1409 
1410 	return 0;
1411 }
1412 
venus_session_get_seq_hdr(struct venus_inst * inst,u32 seq_hdr,u32 seq_hdr_len)1413 static int venus_session_get_seq_hdr(struct venus_inst *inst, u32 seq_hdr,
1414 				     u32 seq_hdr_len)
1415 {
1416 	struct venus_hfi_device *hdev = to_hfi_priv(inst->core);
1417 	struct hfi_session_get_sequence_header_pkt *pkt;
1418 	u8 packet[IFACEQ_VAR_SMALL_PKT_SIZE];
1419 	int ret;
1420 
1421 	pkt = (struct hfi_session_get_sequence_header_pkt *)packet;
1422 
1423 	ret = pkt_session_get_seq_hdr(pkt, inst, seq_hdr, seq_hdr_len);
1424 	if (ret)
1425 		return ret;
1426 
1427 	return venus_iface_cmdq_write(hdev, pkt, false);
1428 }
1429 
venus_session_set_property(struct venus_inst * inst,u32 ptype,void * pdata)1430 static int venus_session_set_property(struct venus_inst *inst, u32 ptype,
1431 				      void *pdata)
1432 {
1433 	struct venus_hfi_device *hdev = to_hfi_priv(inst->core);
1434 	struct hfi_session_set_property_pkt *pkt;
1435 	u8 packet[IFACEQ_VAR_LARGE_PKT_SIZE];
1436 	int ret;
1437 
1438 	pkt = (struct hfi_session_set_property_pkt *)packet;
1439 
1440 	ret = pkt_session_set_property(pkt, inst, ptype, pdata);
1441 	if (ret == -ENOTSUPP)
1442 		return 0;
1443 	if (ret)
1444 		return ret;
1445 
1446 	return venus_iface_cmdq_write(hdev, pkt, false);
1447 }
1448 
venus_session_get_property(struct venus_inst * inst,u32 ptype)1449 static int venus_session_get_property(struct venus_inst *inst, u32 ptype)
1450 {
1451 	struct venus_hfi_device *hdev = to_hfi_priv(inst->core);
1452 	struct hfi_session_get_property_pkt pkt;
1453 	int ret;
1454 
1455 	ret = pkt_session_get_property(&pkt, inst, ptype);
1456 	if (ret)
1457 		return ret;
1458 
1459 	return venus_iface_cmdq_write(hdev, &pkt, true);
1460 }
1461 
venus_resume(struct venus_core * core)1462 static int venus_resume(struct venus_core *core)
1463 {
1464 	struct venus_hfi_device *hdev = to_hfi_priv(core);
1465 	int ret = 0;
1466 
1467 	mutex_lock(&hdev->lock);
1468 
1469 	if (!hdev->suspended)
1470 		goto unlock;
1471 
1472 	ret = venus_power_on(hdev);
1473 
1474 unlock:
1475 	if (!ret)
1476 		hdev->suspended = false;
1477 
1478 	mutex_unlock(&hdev->lock);
1479 
1480 	return ret;
1481 }
1482 
venus_suspend_1xx(struct venus_core * core)1483 static int venus_suspend_1xx(struct venus_core *core)
1484 {
1485 	struct venus_hfi_device *hdev = to_hfi_priv(core);
1486 	struct device *dev = core->dev;
1487 	void __iomem *cpu_cs_base = hdev->core->cpu_cs_base;
1488 	u32 ctrl_status;
1489 	int ret;
1490 
1491 	if (!hdev->power_enabled || hdev->suspended)
1492 		return 0;
1493 
1494 	mutex_lock(&hdev->lock);
1495 	ret = venus_is_valid_state(hdev);
1496 	mutex_unlock(&hdev->lock);
1497 
1498 	if (!ret) {
1499 		dev_err(dev, "bad state, cannot suspend\n");
1500 		return -EINVAL;
1501 	}
1502 
1503 	ret = venus_prepare_power_collapse(hdev, true);
1504 	if (ret) {
1505 		dev_err(dev, "prepare for power collapse fail (%d)\n", ret);
1506 		return ret;
1507 	}
1508 
1509 	mutex_lock(&hdev->lock);
1510 
1511 	if (hdev->last_packet_type != HFI_CMD_SYS_PC_PREP) {
1512 		mutex_unlock(&hdev->lock);
1513 		return -EINVAL;
1514 	}
1515 
1516 	ret = venus_are_queues_empty(hdev);
1517 	if (ret < 0 || !ret) {
1518 		mutex_unlock(&hdev->lock);
1519 		return -EINVAL;
1520 	}
1521 
1522 	ctrl_status = readl(cpu_cs_base + CPU_CS_SCIACMDARG0);
1523 	if (!(ctrl_status & CPU_CS_SCIACMDARG0_PC_READY)) {
1524 		mutex_unlock(&hdev->lock);
1525 		return -EINVAL;
1526 	}
1527 
1528 	ret = venus_power_off(hdev);
1529 	if (ret) {
1530 		mutex_unlock(&hdev->lock);
1531 		return ret;
1532 	}
1533 
1534 	hdev->suspended = true;
1535 
1536 	mutex_unlock(&hdev->lock);
1537 
1538 	return 0;
1539 }
1540 
venus_cpu_and_video_core_idle(struct venus_hfi_device * hdev)1541 static bool venus_cpu_and_video_core_idle(struct venus_hfi_device *hdev)
1542 {
1543 	void __iomem *wrapper_base = hdev->core->wrapper_base;
1544 	void __iomem *wrapper_tz_base = hdev->core->wrapper_tz_base;
1545 	void __iomem *cpu_cs_base = hdev->core->cpu_cs_base;
1546 	u32 ctrl_status, cpu_status;
1547 
1548 	if (IS_V6(hdev->core))
1549 		cpu_status = readl(wrapper_tz_base + WRAPPER_TZ_CPU_STATUS_V6);
1550 	else
1551 		cpu_status = readl(wrapper_base + WRAPPER_CPU_STATUS);
1552 	ctrl_status = readl(cpu_cs_base + CPU_CS_SCIACMDARG0);
1553 
1554 	if (cpu_status & WRAPPER_CPU_STATUS_WFI &&
1555 	    ctrl_status & CPU_CS_SCIACMDARG0_INIT_IDLE_MSG_MASK)
1556 		return true;
1557 
1558 	return false;
1559 }
1560 
venus_cpu_idle_and_pc_ready(struct venus_hfi_device * hdev)1561 static bool venus_cpu_idle_and_pc_ready(struct venus_hfi_device *hdev)
1562 {
1563 	void __iomem *wrapper_base = hdev->core->wrapper_base;
1564 	void __iomem *wrapper_tz_base = hdev->core->wrapper_tz_base;
1565 	void __iomem *cpu_cs_base = hdev->core->cpu_cs_base;
1566 	u32 ctrl_status, cpu_status;
1567 
1568 	if (IS_V6(hdev->core))
1569 		cpu_status = readl(wrapper_tz_base + WRAPPER_TZ_CPU_STATUS_V6);
1570 	else
1571 		cpu_status = readl(wrapper_base + WRAPPER_CPU_STATUS);
1572 	ctrl_status = readl(cpu_cs_base + CPU_CS_SCIACMDARG0);
1573 
1574 	if (cpu_status & WRAPPER_CPU_STATUS_WFI &&
1575 	    ctrl_status & CPU_CS_SCIACMDARG0_PC_READY)
1576 		return true;
1577 
1578 	return false;
1579 }
1580 
venus_suspend_3xx(struct venus_core * core)1581 static int venus_suspend_3xx(struct venus_core *core)
1582 {
1583 	struct venus_hfi_device *hdev = to_hfi_priv(core);
1584 	struct device *dev = core->dev;
1585 	void __iomem *cpu_cs_base = hdev->core->cpu_cs_base;
1586 	u32 ctrl_status;
1587 	bool val;
1588 	int ret;
1589 
1590 	if (!hdev->power_enabled || hdev->suspended)
1591 		return 0;
1592 
1593 	mutex_lock(&hdev->lock);
1594 	ret = venus_is_valid_state(hdev);
1595 	mutex_unlock(&hdev->lock);
1596 
1597 	if (!ret) {
1598 		dev_err(dev, "bad state, cannot suspend\n");
1599 		return -EINVAL;
1600 	}
1601 
1602 	ctrl_status = readl(cpu_cs_base + CPU_CS_SCIACMDARG0);
1603 	if (ctrl_status & CPU_CS_SCIACMDARG0_PC_READY)
1604 		goto power_off;
1605 
1606 	/*
1607 	 * Power collapse sequence for Venus 3xx and 4xx versions:
1608 	 * 1. Check for ARM9 and video core to be idle by checking WFI bit
1609 	 *    (bit 0) in CPU status register and by checking Idle (bit 30) in
1610 	 *    Control status register for video core.
1611 	 * 2. Send a command to prepare for power collapse.
1612 	 * 3. Check for WFI and PC_READY bits.
1613 	 */
1614 	ret = readx_poll_timeout(venus_cpu_and_video_core_idle, hdev, val, val,
1615 				 1500, 100 * 1500);
1616 	if (ret) {
1617 		dev_err(dev, "wait for cpu and video core idle fail (%d)\n", ret);
1618 		return ret;
1619 	}
1620 
1621 	ret = venus_prepare_power_collapse(hdev, false);
1622 	if (ret) {
1623 		dev_err(dev, "prepare for power collapse fail (%d)\n", ret);
1624 		return ret;
1625 	}
1626 
1627 	ret = readx_poll_timeout(venus_cpu_idle_and_pc_ready, hdev, val, val,
1628 				 1500, 100 * 1500);
1629 	if (ret)
1630 		return ret;
1631 
1632 power_off:
1633 	mutex_lock(&hdev->lock);
1634 
1635 	ret = venus_power_off(hdev);
1636 	if (ret) {
1637 		dev_err(dev, "venus_power_off (%d)\n", ret);
1638 		mutex_unlock(&hdev->lock);
1639 		return ret;
1640 	}
1641 
1642 	hdev->suspended = true;
1643 
1644 	mutex_unlock(&hdev->lock);
1645 
1646 	return 0;
1647 }
1648 
venus_suspend(struct venus_core * core)1649 static int venus_suspend(struct venus_core *core)
1650 {
1651 	if (IS_V3(core) || IS_V4(core) || IS_V6(core))
1652 		return venus_suspend_3xx(core);
1653 
1654 	return venus_suspend_1xx(core);
1655 }
1656 
1657 static const struct hfi_ops venus_hfi_ops = {
1658 	.core_init			= venus_core_init,
1659 	.core_deinit			= venus_core_deinit,
1660 	.core_ping			= venus_core_ping,
1661 	.core_trigger_ssr		= venus_core_trigger_ssr,
1662 
1663 	.session_init			= venus_session_init,
1664 	.session_end			= venus_session_end,
1665 	.session_abort			= venus_session_abort,
1666 	.session_flush			= venus_session_flush,
1667 	.session_start			= venus_session_start,
1668 	.session_stop			= venus_session_stop,
1669 	.session_continue		= venus_session_continue,
1670 	.session_etb			= venus_session_etb,
1671 	.session_ftb			= venus_session_ftb,
1672 	.session_set_buffers		= venus_session_set_buffers,
1673 	.session_unset_buffers		= venus_session_unset_buffers,
1674 	.session_load_res		= venus_session_load_res,
1675 	.session_release_res		= venus_session_release_res,
1676 	.session_parse_seq_hdr		= venus_session_parse_seq_hdr,
1677 	.session_get_seq_hdr		= venus_session_get_seq_hdr,
1678 	.session_set_property		= venus_session_set_property,
1679 	.session_get_property		= venus_session_get_property,
1680 
1681 	.resume				= venus_resume,
1682 	.suspend			= venus_suspend,
1683 
1684 	.isr				= venus_isr,
1685 	.isr_thread			= venus_isr_thread,
1686 };
1687 
venus_hfi_destroy(struct venus_core * core)1688 void venus_hfi_destroy(struct venus_core *core)
1689 {
1690 	struct venus_hfi_device *hdev = to_hfi_priv(core);
1691 
1692 	core->priv = NULL;
1693 	venus_interface_queues_release(hdev);
1694 	mutex_destroy(&hdev->lock);
1695 	kfree(hdev);
1696 	core->ops = NULL;
1697 }
1698 
venus_hfi_create(struct venus_core * core)1699 int venus_hfi_create(struct venus_core *core)
1700 {
1701 	struct venus_hfi_device *hdev;
1702 	int ret;
1703 
1704 	hdev = kzalloc(sizeof(*hdev), GFP_KERNEL);
1705 	if (!hdev)
1706 		return -ENOMEM;
1707 
1708 	mutex_init(&hdev->lock);
1709 
1710 	hdev->core = core;
1711 	hdev->suspended = true;
1712 	core->priv = hdev;
1713 	core->ops = &venus_hfi_ops;
1714 
1715 	ret = venus_interface_queues_init(hdev);
1716 	if (ret)
1717 		goto err_kfree;
1718 
1719 	return 0;
1720 
1721 err_kfree:
1722 	kfree(hdev);
1723 	core->priv = NULL;
1724 	core->ops = NULL;
1725 	return ret;
1726 }
1727 
venus_hfi_queues_reinit(struct venus_core * core)1728 void venus_hfi_queues_reinit(struct venus_core *core)
1729 {
1730 	struct venus_hfi_device *hdev = to_hfi_priv(core);
1731 	struct hfi_queue_table_header *tbl_hdr;
1732 	struct iface_queue *queue;
1733 	struct hfi_sfr *sfr;
1734 	unsigned int i;
1735 
1736 	mutex_lock(&hdev->lock);
1737 
1738 	for (i = 0; i < IFACEQ_NUM; i++) {
1739 		queue = &hdev->queues[i];
1740 		queue->qhdr =
1741 			IFACEQ_GET_QHDR_START_ADDR(hdev->ifaceq_table.kva, i);
1742 
1743 		venus_set_qhdr_defaults(queue->qhdr);
1744 
1745 		queue->qhdr->start_addr = queue->qmem.da;
1746 
1747 		if (i == IFACEQ_CMD_IDX)
1748 			queue->qhdr->type |= HFI_HOST_TO_CTRL_CMD_Q;
1749 		else if (i == IFACEQ_MSG_IDX)
1750 			queue->qhdr->type |= HFI_CTRL_TO_HOST_MSG_Q;
1751 		else if (i == IFACEQ_DBG_IDX)
1752 			queue->qhdr->type |= HFI_CTRL_TO_HOST_DBG_Q;
1753 	}
1754 
1755 	tbl_hdr = hdev->ifaceq_table.kva;
1756 	tbl_hdr->version = 0;
1757 	tbl_hdr->size = IFACEQ_TABLE_SIZE;
1758 	tbl_hdr->qhdr0_offset = sizeof(struct hfi_queue_table_header);
1759 	tbl_hdr->qhdr_size = sizeof(struct hfi_queue_header);
1760 	tbl_hdr->num_q = IFACEQ_NUM;
1761 	tbl_hdr->num_active_q = IFACEQ_NUM;
1762 
1763 	/*
1764 	 * Set receive request to zero on debug queue as there is no
1765 	 * need of interrupt from video hardware for debug messages
1766 	 */
1767 	queue = &hdev->queues[IFACEQ_DBG_IDX];
1768 	queue->qhdr->rx_req = 0;
1769 
1770 	sfr = hdev->sfr.kva;
1771 	sfr->buf_size = ALIGNED_SFR_SIZE;
1772 
1773 	/* ensure table and queue header structs are settled in memory */
1774 	wmb();
1775 
1776 	mutex_unlock(&hdev->lock);
1777 }
1778