1 // SPDX-License-Identifier: MIT
3 * Copyright 2023, Intel Corporation.
7 #include "intel_display_types.h"
8 #include "intel_dsb_buffer.h"
10 #include "xe_device.h"
11 #include "xe_device_types.h"
13 u32 intel_dsb_buffer_ggtt_offset(struct intel_dsb_buffer *dsb_buf)
15 return xe_bo_ggtt_addr(dsb_buf->vma->bo);
18 void intel_dsb_buffer_write(struct intel_dsb_buffer *dsb_buf, u32 idx, u32 val)
20 struct xe_device *xe = dsb_buf->vma->bo->tile->xe;
22 iosys_map_wr(&dsb_buf->vma->bo->vmap, idx * 4, u32, val);
23 xe_device_l2_flush(xe);
26 u32 intel_dsb_buffer_read(struct intel_dsb_buffer *dsb_buf, u32 idx)
28 return iosys_map_rd(&dsb_buf->vma->bo->vmap, idx * 4, u32);
31 void intel_dsb_buffer_memset(struct intel_dsb_buffer *dsb_buf, u32 idx, u32 val, size_t size)
33 struct xe_device *xe = dsb_buf->vma->bo->tile->xe;
35 WARN_ON(idx > (dsb_buf->buf_size - size) / sizeof(*dsb_buf->cmd_buf));
37 iosys_map_memset(&dsb_buf->vma->bo->vmap, idx * 4, val, size);
38 xe_device_l2_flush(xe);
41 bool intel_dsb_buffer_create(struct intel_crtc *crtc, struct intel_dsb_buffer *dsb_buf, size_t size)
43 struct xe_device *xe = to_xe_device(crtc->base.dev);
47 vma = kzalloc(sizeof(*vma), GFP_KERNEL);
51 /* Set scanout flag for WC mapping */
52 obj = xe_bo_create_pin_map(xe, xe_device_get_root_tile(xe),
53 NULL, PAGE_ALIGN(size),
55 XE_BO_FLAG_VRAM_IF_DGFX(xe_device_get_root_tile(xe)) |
56 XE_BO_FLAG_SCANOUT | XE_BO_FLAG_GGTT);
64 dsb_buf->buf_size = size;
69 void intel_dsb_buffer_cleanup(struct intel_dsb_buffer *dsb_buf)
71 xe_bo_unpin_map_no_vm(dsb_buf->vma->bo);
75 void intel_dsb_buffer_flush_map(struct intel_dsb_buffer *dsb_buf)
78 * The memory barrier here is to ensure coherency of DSB vs MMIO,
79 * both for weak ordering archs and discrete cards.
81 xe_device_wmb(dsb_buf->vma->bo->tile->xe);