drm/amdgpu: remove explicit NULL init for parse_cs
[linux-block.git] / drivers / gpu / drm / amd / amdgpu / amdgpu_ring.h
CommitLineData
78023016
CK
1/*
2 * Copyright 2016 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: Christian König
23 */
24#ifndef __AMDGPU_RING_H__
25#define __AMDGPU_RING_H__
26
27#include "gpu_scheduler.h"
28
29/* max number of rings */
30#define AMDGPU_MAX_RINGS 16
31#define AMDGPU_MAX_GFX_RINGS 1
32#define AMDGPU_MAX_COMPUTE_RINGS 8
33#define AMDGPU_MAX_VCE_RINGS 3
34
35/* some special values for the owner field */
36#define AMDGPU_FENCE_OWNER_UNDEFINED ((void*)0ul)
37#define AMDGPU_FENCE_OWNER_VM ((void*)1ul)
38
39#define AMDGPU_FENCE_FLAG_64BIT (1 << 0)
40#define AMDGPU_FENCE_FLAG_INT (1 << 1)
41
42enum amdgpu_ring_type {
43 AMDGPU_RING_TYPE_GFX,
44 AMDGPU_RING_TYPE_COMPUTE,
45 AMDGPU_RING_TYPE_SDMA,
46 AMDGPU_RING_TYPE_UVD,
47 AMDGPU_RING_TYPE_VCE
48};
49
50struct amdgpu_device;
51struct amdgpu_ring;
52struct amdgpu_ib;
53struct amdgpu_cs_parser;
54
55/*
56 * Fences.
57 */
58struct amdgpu_fence_driver {
59 uint64_t gpu_addr;
60 volatile uint32_t *cpu_addr;
61 /* sync_seq is protected by ring emission lock */
62 uint32_t sync_seq;
63 atomic_t last_seq;
64 bool initialized;
65 struct amdgpu_irq_src *irq_src;
66 unsigned irq_type;
67 struct timer_list fallback_timer;
68 unsigned num_fences_mask;
69 spinlock_t lock;
70 struct fence **fences;
71};
72
73int amdgpu_fence_driver_init(struct amdgpu_device *adev);
74void amdgpu_fence_driver_fini(struct amdgpu_device *adev);
75void amdgpu_fence_driver_force_completion(struct amdgpu_device *adev);
76
77int amdgpu_fence_driver_init_ring(struct amdgpu_ring *ring,
78 unsigned num_hw_submission);
79int amdgpu_fence_driver_start_ring(struct amdgpu_ring *ring,
80 struct amdgpu_irq_src *irq_src,
81 unsigned irq_type);
82void amdgpu_fence_driver_suspend(struct amdgpu_device *adev);
83void amdgpu_fence_driver_resume(struct amdgpu_device *adev);
84int amdgpu_fence_emit(struct amdgpu_ring *ring, struct fence **fence);
85void amdgpu_fence_process(struct amdgpu_ring *ring);
86int amdgpu_fence_wait_empty(struct amdgpu_ring *ring);
87unsigned amdgpu_fence_count_emitted(struct amdgpu_ring *ring);
88
89/*
90 * Rings.
91 */
92
93/* provided by hw blocks that expose a ring buffer for commands */
94struct amdgpu_ring_funcs {
95 /* ring read/write ptr handling */
96 u32 (*get_rptr)(struct amdgpu_ring *ring);
97 u32 (*get_wptr)(struct amdgpu_ring *ring);
98 void (*set_wptr)(struct amdgpu_ring *ring);
99 /* validating and patching of IBs */
100 int (*parse_cs)(struct amdgpu_cs_parser *p, uint32_t ib_idx);
101 /* command emit functions */
102 void (*emit_ib)(struct amdgpu_ring *ring,
103 struct amdgpu_ib *ib,
104 unsigned vm_id, bool ctx_switch);
105 void (*emit_fence)(struct amdgpu_ring *ring, uint64_t addr,
106 uint64_t seq, unsigned flags);
107 void (*emit_pipeline_sync)(struct amdgpu_ring *ring);
108 void (*emit_vm_flush)(struct amdgpu_ring *ring, unsigned vm_id,
109 uint64_t pd_addr);
110 void (*emit_hdp_flush)(struct amdgpu_ring *ring);
111 void (*emit_hdp_invalidate)(struct amdgpu_ring *ring);
112 void (*emit_gds_switch)(struct amdgpu_ring *ring, uint32_t vmid,
113 uint32_t gds_base, uint32_t gds_size,
114 uint32_t gws_base, uint32_t gws_size,
115 uint32_t oa_base, uint32_t oa_size);
116 /* testing functions */
117 int (*test_ring)(struct amdgpu_ring *ring);
118 int (*test_ib)(struct amdgpu_ring *ring, long timeout);
119 /* insert NOP packets */
120 void (*insert_nop)(struct amdgpu_ring *ring, uint32_t count);
121 /* pad the indirect buffer to the necessary number of dw */
122 void (*pad_ib)(struct amdgpu_ring *ring, struct amdgpu_ib *ib);
123 unsigned (*init_cond_exec)(struct amdgpu_ring *ring);
124 void (*patch_cond_exec)(struct amdgpu_ring *ring, unsigned offset);
125 /* note usage for clock and power gating */
126 void (*begin_use)(struct amdgpu_ring *ring);
127 void (*end_use)(struct amdgpu_ring *ring);
128 void (*emit_switch_buffer) (struct amdgpu_ring *ring);
129 void (*emit_cntxcntl) (struct amdgpu_ring *ring, uint32_t flags);
130 unsigned (*get_emit_ib_size) (struct amdgpu_ring *ring);
131 unsigned (*get_dma_frame_size) (struct amdgpu_ring *ring);
132};
133
134struct amdgpu_ring {
135 struct amdgpu_device *adev;
136 const struct amdgpu_ring_funcs *funcs;
137 struct amdgpu_fence_driver fence_drv;
138 struct amd_gpu_scheduler sched;
139
140 struct amdgpu_bo *ring_obj;
141 volatile uint32_t *ring;
142 unsigned rptr_offs;
143 unsigned wptr;
144 unsigned wptr_old;
145 unsigned ring_size;
146 unsigned max_dw;
147 int count_dw;
148 uint64_t gpu_addr;
149 uint32_t align_mask;
150 uint32_t ptr_mask;
151 bool ready;
152 u32 nop;
153 u32 idx;
154 u32 me;
155 u32 pipe;
156 u32 queue;
157 struct amdgpu_bo *mqd_obj;
158 u32 doorbell_index;
159 bool use_doorbell;
160 unsigned wptr_offs;
161 unsigned fence_offs;
162 uint64_t current_ctx;
163 enum amdgpu_ring_type type;
164 char name[16];
165 unsigned cond_exe_offs;
166 u64 cond_exe_gpu_addr;
167 volatile u32 *cond_exe_cpu_addr;
168#if defined(CONFIG_DEBUG_FS)
169 struct dentry *ent;
170#endif
171};
172
173int amdgpu_ring_alloc(struct amdgpu_ring *ring, unsigned ndw);
174void amdgpu_ring_insert_nop(struct amdgpu_ring *ring, uint32_t count);
175void amdgpu_ring_generic_pad_ib(struct amdgpu_ring *ring, struct amdgpu_ib *ib);
176void amdgpu_ring_commit(struct amdgpu_ring *ring);
177void amdgpu_ring_undo(struct amdgpu_ring *ring);
178int amdgpu_ring_init(struct amdgpu_device *adev, struct amdgpu_ring *ring,
179 unsigned ring_size, u32 nop, u32 align_mask,
180 struct amdgpu_irq_src *irq_src, unsigned irq_type,
181 enum amdgpu_ring_type ring_type);
182void amdgpu_ring_fini(struct amdgpu_ring *ring);
183
184#endif