Home
last modified time | relevance | path

Searched refs:src_data (Results 1 – 25 of 61) sorted by relevance

123

/linux-5.19.10/drivers/gpu/drm/amd/amdgpu/
Damdgpu_trace.h89 __array(unsigned, src_data, 4)
101 __entry->src_data[0] = iv->src_data[0];
102 __entry->src_data[1] = iv->src_data[1];
103 __entry->src_data[2] = iv->src_data[2];
104 __entry->src_data[3] = iv->src_data[3];
111 __entry->src_data[0], __entry->src_data[1],
112 __entry->src_data[2], __entry->src_data[3])
Damdgpu_ih.c274 entry->src_data[0] = dw[4]; in amdgpu_ih_decode_iv_helper()
275 entry->src_data[1] = dw[5]; in amdgpu_ih_decode_iv_helper()
276 entry->src_data[2] = dw[6]; in amdgpu_ih_decode_iv_helper()
277 entry->src_data[3] = dw[7]; in amdgpu_ih_decode_iv_helper()
Dvce_v2_0.c566 switch (entry->src_data[0]) { in vce_v2_0_process_interrupt()
569 amdgpu_fence_process(&adev->vce.ring[entry->src_data[0]]); in vce_v2_0_process_interrupt()
573 entry->src_id, entry->src_data[0]); in vce_v2_0_process_interrupt()
Damdgpu_sdma.h105 uint32_t src_data,
Damdgpu_irq.h57 unsigned src_data[AMDGPU_IRQ_SRC_DATA_MAX_SIZE_DW]; member
Dgmc_v10_0.c97 bool retry_fault = !!(entry->src_data[1] & 0x80); in gmc_v10_0_process_interrupt()
98 bool write_fault = !!(entry->src_data[1] & 0x20); in gmc_v10_0_process_interrupt()
104 addr = (u64)entry->src_data[0] << 12; in gmc_v10_0_process_interrupt()
105 addr |= ((u64)entry->src_data[1] & 0xf) << 44; in gmc_v10_0_process_interrupt()
Damdgpu_ttm.h151 uint32_t src_data,
Dvce_v3_0.c751 switch (entry->src_data[0]) { in vce_v3_0_process_interrupt()
755 amdgpu_fence_process(&adev->vce.ring[entry->src_data[0]]); in vce_v3_0_process_interrupt()
759 entry->src_id, entry->src_data[0]); in vce_v3_0_process_interrupt()
Dgmc_v9_0.c532 bool retry_fault = !!(entry->src_data[1] & 0x80); in gmc_v9_0_process_interrupt()
533 bool write_fault = !!(entry->src_data[1] & 0x20); in gmc_v9_0_process_interrupt()
541 addr = (u64)entry->src_data[0] << 12; in gmc_v9_0_process_interrupt()
542 addr |= ((u64)entry->src_data[1] & 0xf) << 44; in gmc_v9_0_process_interrupt()
Dsi_ih.c140 entry->src_data[0] = dw[1] & 0xfffffff; in si_ih_decode_iv()
Dcik_ih.c257 entry->src_data[0] = dw[1] & 0xfffffff; in cik_ih_decode_iv()
Dgmc_v11_0.c85 addr = (u64)entry->src_data[0] << 12; in gmc_v11_0_process_interrupt()
86 addr |= ((u64)entry->src_data[1] & 0xf) << 44; in gmc_v11_0_process_interrupt()
Dvce_v4_0.c1065 switch (entry->src_data[0]) { in vce_v4_0_process_interrupt()
1069 amdgpu_fence_process(&adev->vce.ring[entry->src_data[0]]); in vce_v4_0_process_interrupt()
1073 entry->src_id, entry->src_data[0]); in vce_v4_0_process_interrupt()
Dcz_ih.c249 entry->src_data[0] = dw[1] & 0xfffffff; in cz_ih_decode_iv()
Diceland_ih.c248 entry->src_data[0] = dw[1] & 0xfffffff; in iceland_ih_decode_iv()
Dsi_dma.c805 uint32_t src_data, in si_dma_emit_fill_buffer() argument
812 ib->ptr[ib->length_dw++] = src_data; in si_dma_emit_fill_buffer()
Dtonga_ih.c251 entry->src_data[0] = dw[1] & 0xfffffff; in tonga_ih_decode_iv()
/linux-5.19.10/drivers/interconnect/
Dcore.c440 struct icc_node_data *src_data, *dst_data; in of_icc_get_by_index() local
478 src_data = of_icc_get_from_provider(&src_args); in of_icc_get_by_index()
480 if (IS_ERR(src_data)) { in of_icc_get_by_index()
481 dev_err_probe(dev, PTR_ERR(src_data), "error finding src node\n"); in of_icc_get_by_index()
482 return ERR_CAST(src_data); in of_icc_get_by_index()
489 kfree(src_data); in of_icc_get_by_index()
494 path = path_find(dev, src_data->node, dst_data->node); in of_icc_get_by_index()
501 if (src_data->tag && src_data->tag == dst_data->tag) in of_icc_get_by_index()
502 icc_set_tag(path, src_data->tag); in of_icc_get_by_index()
505 src_data->node->name, dst_data->node->name); in of_icc_get_by_index()
[all …]
/linux-5.19.10/drivers/gpu/drm/i915/gt/uc/
Dintel_guc_log.c223 void *src_data, *dst_data; in _guc_log_copy_debuglogs_for_relay() local
232 src_data = log->buf_addr; in _guc_log_copy_debuglogs_for_relay()
233 log_buf_state = src_data; in _guc_log_copy_debuglogs_for_relay()
250 src_data += PAGE_SIZE; in _guc_log_copy_debuglogs_for_relay()
304 i915_memcpy_from_wc(dst_data, src_data, write_offset); in _guc_log_copy_debuglogs_for_relay()
310 src_data + read_offset, bytes_to_copy); in _guc_log_copy_debuglogs_for_relay()
312 src_data += buffer_size; in _guc_log_copy_debuglogs_for_relay()
Dintel_guc_capture.c829 u32 *src_data; in guc_capture_log_remove_dw() local
837 src_data = (u32 *)(buf->data + buf->rd); in guc_capture_log_remove_dw()
838 *dw = *src_data; in guc_capture_log_remove_dw()
1348 void *src_data = NULL; in __guc_capture_process_output() local
1354 src_data = guc->log.buf_addr + intel_guc_get_log_buffer_offset(GUC_CAPTURE_LOG_BUFFER); in __guc_capture_process_output()
1388 buf.data = src_data; in __guc_capture_process_output()
/linux-5.19.10/drivers/media/platform/renesas/
Drcar_fdp1.c1512 struct fdp1_q_data *src_data = &ctx->out_q; in fdp1_try_fmt_capture() local
1528 colorspace = src_data->format.colorspace; in fdp1_try_fmt_capture()
1530 ycbcr_enc = src_data->format.ycbcr_enc; in fdp1_try_fmt_capture()
1534 quantization = src_data->format.quantization; in fdp1_try_fmt_capture()
1560 pix->colorspace = src_data->format.colorspace; in fdp1_try_fmt_capture()
1561 pix->xfer_func = src_data->format.xfer_func; in fdp1_try_fmt_capture()
1567 pix->ycbcr_enc = src_data->format.ycbcr_enc; in fdp1_try_fmt_capture()
1568 pix->quantization = src_data->format.quantization; in fdp1_try_fmt_capture()
1576 pix->width = src_data->format.width; in fdp1_try_fmt_capture()
1577 if (src_data->format.field == V4L2_FIELD_ALTERNATE) in fdp1_try_fmt_capture()
[all …]
/linux-5.19.10/drivers/gpu/drm/radeon/
Devergreen.c4710 u32 src_id, src_data; in evergreen_irq_process() local
4742 src_data = le32_to_cpu(rdev->ih.ring[ring_index + 1]) & 0xfffffff; in evergreen_irq_process()
4753 if (src_data == 0) { /* vblank */ in evergreen_irq_process()
4767 } else if (src_data == 1) { /* vline */ in evergreen_irq_process()
4772 src_id, src_data); in evergreen_irq_process()
4796 if (src_data <= 5) { in evergreen_irq_process()
4797 hpd_idx = src_data; in evergreen_irq_process()
4802 } else if (src_data <= 11) { in evergreen_irq_process()
4803 hpd_idx = src_data - 6; in evergreen_irq_process()
4810 src_id, src_data); in evergreen_irq_process()
[all …]
Dr600.c4096 u32 src_id, src_data; in r600_irq_process() local
4129 src_data = le32_to_cpu(rdev->ih.ring[ring_index + 1]) & 0xfffffff; in r600_irq_process()
4133 switch (src_data) { in r600_irq_process()
4158 DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); in r600_irq_process()
4163 switch (src_data) { in r600_irq_process()
4188 DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); in r600_irq_process()
4203 switch (src_data) { in r600_irq_process()
4254 DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); in r600_irq_process()
4259 switch (src_data) { in r600_irq_process()
4279 DRM_ERROR("Unhandled interrupt: %d %d\n", src_id, src_data); in r600_irq_process()
[all …]
Dcik.c7544 u32 src_id, src_data, ring_id; in cik_irq_process() local
7577 src_data = le32_to_cpu(rdev->ih.ring[ring_index + 1]) & 0xfffffff; in cik_irq_process()
7582 switch (src_data) { in cik_irq_process()
7607 DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); in cik_irq_process()
7612 switch (src_data) { in cik_irq_process()
7637 DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); in cik_irq_process()
7642 switch (src_data) { in cik_irq_process()
7667 DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); in cik_irq_process()
7672 switch (src_data) { in cik_irq_process()
7697 DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); in cik_irq_process()
[all …]
Dsi.c6247 u32 src_id, src_data, ring_id; in si_irq_process() local
6278 src_data = le32_to_cpu(rdev->ih.ring[ring_index + 1]) & 0xfffffff; in si_irq_process()
6290 if (src_data == 0) { /* vblank */ in si_irq_process()
6304 } else if (src_data == 1) { /* vline */ in si_irq_process()
6309 src_id, src_data); in si_irq_process()
6333 if (src_data <= 5) { in si_irq_process()
6334 hpd_idx = src_data; in si_irq_process()
6339 } else if (src_data <= 11) { in si_irq_process()
6340 hpd_idx = src_data - 6; in si_irq_process()
6347 src_id, src_data); in si_irq_process()
[all …]

123