blob: 127867c2fc372cca34375d549d241df96aa7e889 [file] [log] [blame]
Alex Deucher97b2e202015-04-20 16:51:00 -04001/*
2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Authors: Dave Airlie
25 * Alex Deucher
26 * Jerome Glisse
27 */
28#ifndef __AMDGPU_H__
29#define __AMDGPU_H__
30
31#include <linux/atomic.h>
32#include <linux/wait.h>
33#include <linux/list.h>
34#include <linux/kref.h>
35#include <linux/interval_tree.h>
36#include <linux/hashtable.h>
37#include <linux/fence.h>
38
39#include <ttm/ttm_bo_api.h>
40#include <ttm/ttm_bo_driver.h>
41#include <ttm/ttm_placement.h>
42#include <ttm/ttm_module.h>
43#include <ttm/ttm_execbuf_util.h>
44
Chunming Zhoud03846a2015-07-28 14:20:03 -040045#include <drm/drmP.h>
Alex Deucher97b2e202015-04-20 16:51:00 -040046#include <drm/drm_gem.h>
Chunming Zhou7e5a5472015-04-24 17:37:30 +080047#include <drm/amdgpu_drm.h>
Alex Deucher97b2e202015-04-20 16:51:00 -040048
yanyang15fc3aee2015-05-22 14:39:35 -040049#include "amd_shared.h"
Alex Deucher97b2e202015-04-20 16:51:00 -040050#include "amdgpu_mode.h"
51#include "amdgpu_ih.h"
52#include "amdgpu_irq.h"
53#include "amdgpu_ucode.h"
54#include "amdgpu_gds.h"
55
Alex Deucherb80d8472015-08-16 22:55:02 -040056#include "gpu_scheduler.h"
57
Alex Deucher97b2e202015-04-20 16:51:00 -040058/*
59 * Modules parameters.
60 */
61extern int amdgpu_modeset;
62extern int amdgpu_vram_limit;
63extern int amdgpu_gart_size;
64extern int amdgpu_benchmarking;
65extern int amdgpu_testing;
66extern int amdgpu_audio;
67extern int amdgpu_disp_priority;
68extern int amdgpu_hw_i2c;
69extern int amdgpu_pcie_gen2;
70extern int amdgpu_msi;
71extern int amdgpu_lockup_timeout;
72extern int amdgpu_dpm;
73extern int amdgpu_smc_load_fw;
74extern int amdgpu_aspm;
75extern int amdgpu_runtime_pm;
76extern int amdgpu_hard_reset;
77extern unsigned amdgpu_ip_block_mask;
78extern int amdgpu_bapm;
79extern int amdgpu_deep_color;
80extern int amdgpu_vm_size;
81extern int amdgpu_vm_block_size;
Alex Deucherb80d8472015-08-16 22:55:02 -040082extern int amdgpu_enable_scheduler;
Alex Deucher97b2e202015-04-20 16:51:00 -040083
Chunming Zhou4b559c92015-07-21 15:53:04 +080084#define AMDGPU_WAIT_IDLE_TIMEOUT_IN_MS 3000
Alex Deucher97b2e202015-04-20 16:51:00 -040085#define AMDGPU_MAX_USEC_TIMEOUT 100000 /* 100 ms */
86#define AMDGPU_FENCE_JIFFIES_TIMEOUT (HZ / 2)
87/* AMDGPU_IB_POOL_SIZE must be a power of 2 */
88#define AMDGPU_IB_POOL_SIZE 16
89#define AMDGPU_DEBUGFS_MAX_COMPONENTS 32
90#define AMDGPUFB_CONN_LIMIT 4
91#define AMDGPU_BIOS_NUM_SCRATCH 8
92
Alex Deucher97b2e202015-04-20 16:51:00 -040093/* max number of rings */
94#define AMDGPU_MAX_RINGS 16
95#define AMDGPU_MAX_GFX_RINGS 1
96#define AMDGPU_MAX_COMPUTE_RINGS 8
97#define AMDGPU_MAX_VCE_RINGS 2
98
99/* number of hw syncs before falling back on blocking */
100#define AMDGPU_NUM_SYNCS 4
101
102/* hardcode that limit for now */
103#define AMDGPU_VA_RESERVED_SIZE (8 << 20)
104
105/* hard reset data */
106#define AMDGPU_ASIC_RESET_DATA 0x39d5e86b
107
108/* reset flags */
109#define AMDGPU_RESET_GFX (1 << 0)
110#define AMDGPU_RESET_COMPUTE (1 << 1)
111#define AMDGPU_RESET_DMA (1 << 2)
112#define AMDGPU_RESET_CP (1 << 3)
113#define AMDGPU_RESET_GRBM (1 << 4)
114#define AMDGPU_RESET_DMA1 (1 << 5)
115#define AMDGPU_RESET_RLC (1 << 6)
116#define AMDGPU_RESET_SEM (1 << 7)
117#define AMDGPU_RESET_IH (1 << 8)
118#define AMDGPU_RESET_VMC (1 << 9)
119#define AMDGPU_RESET_MC (1 << 10)
120#define AMDGPU_RESET_DISPLAY (1 << 11)
121#define AMDGPU_RESET_UVD (1 << 12)
122#define AMDGPU_RESET_VCE (1 << 13)
123#define AMDGPU_RESET_VCE1 (1 << 14)
124
125/* CG block flags */
126#define AMDGPU_CG_BLOCK_GFX (1 << 0)
127#define AMDGPU_CG_BLOCK_MC (1 << 1)
128#define AMDGPU_CG_BLOCK_SDMA (1 << 2)
129#define AMDGPU_CG_BLOCK_UVD (1 << 3)
130#define AMDGPU_CG_BLOCK_VCE (1 << 4)
131#define AMDGPU_CG_BLOCK_HDP (1 << 5)
132#define AMDGPU_CG_BLOCK_BIF (1 << 6)
133
134/* CG flags */
135#define AMDGPU_CG_SUPPORT_GFX_MGCG (1 << 0)
136#define AMDGPU_CG_SUPPORT_GFX_MGLS (1 << 1)
137#define AMDGPU_CG_SUPPORT_GFX_CGCG (1 << 2)
138#define AMDGPU_CG_SUPPORT_GFX_CGLS (1 << 3)
139#define AMDGPU_CG_SUPPORT_GFX_CGTS (1 << 4)
140#define AMDGPU_CG_SUPPORT_GFX_CGTS_LS (1 << 5)
141#define AMDGPU_CG_SUPPORT_GFX_CP_LS (1 << 6)
142#define AMDGPU_CG_SUPPORT_GFX_RLC_LS (1 << 7)
143#define AMDGPU_CG_SUPPORT_MC_LS (1 << 8)
144#define AMDGPU_CG_SUPPORT_MC_MGCG (1 << 9)
145#define AMDGPU_CG_SUPPORT_SDMA_LS (1 << 10)
146#define AMDGPU_CG_SUPPORT_SDMA_MGCG (1 << 11)
147#define AMDGPU_CG_SUPPORT_BIF_LS (1 << 12)
148#define AMDGPU_CG_SUPPORT_UVD_MGCG (1 << 13)
149#define AMDGPU_CG_SUPPORT_VCE_MGCG (1 << 14)
150#define AMDGPU_CG_SUPPORT_HDP_LS (1 << 15)
151#define AMDGPU_CG_SUPPORT_HDP_MGCG (1 << 16)
152
153/* PG flags */
154#define AMDGPU_PG_SUPPORT_GFX_PG (1 << 0)
155#define AMDGPU_PG_SUPPORT_GFX_SMG (1 << 1)
156#define AMDGPU_PG_SUPPORT_GFX_DMG (1 << 2)
157#define AMDGPU_PG_SUPPORT_UVD (1 << 3)
158#define AMDGPU_PG_SUPPORT_VCE (1 << 4)
159#define AMDGPU_PG_SUPPORT_CP (1 << 5)
160#define AMDGPU_PG_SUPPORT_GDS (1 << 6)
161#define AMDGPU_PG_SUPPORT_RLC_SMU_HS (1 << 7)
162#define AMDGPU_PG_SUPPORT_SDMA (1 << 8)
163#define AMDGPU_PG_SUPPORT_ACP (1 << 9)
164#define AMDGPU_PG_SUPPORT_SAMU (1 << 10)
165
166/* GFX current status */
167#define AMDGPU_GFX_NORMAL_MODE 0x00000000L
168#define AMDGPU_GFX_SAFE_MODE 0x00000001L
169#define AMDGPU_GFX_PG_DISABLED_MODE 0x00000002L
170#define AMDGPU_GFX_CG_DISABLED_MODE 0x00000004L
171#define AMDGPU_GFX_LBPW_DISABLED_MODE 0x00000008L
172
173/* max cursor sizes (in pixels) */
174#define CIK_CURSOR_WIDTH 128
175#define CIK_CURSOR_HEIGHT 128
176
177struct amdgpu_device;
178struct amdgpu_fence;
179struct amdgpu_ib;
180struct amdgpu_vm;
181struct amdgpu_ring;
182struct amdgpu_semaphore;
183struct amdgpu_cs_parser;
184struct amdgpu_irq_src;
Alex Deucher0b492a42015-08-16 22:48:26 -0400185struct amdgpu_fpriv;
Alex Deucher97b2e202015-04-20 16:51:00 -0400186
187enum amdgpu_cp_irq {
188 AMDGPU_CP_IRQ_GFX_EOP = 0,
189 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE0_EOP,
190 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE1_EOP,
191 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE2_EOP,
192 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE3_EOP,
193 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE0_EOP,
194 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE1_EOP,
195 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE2_EOP,
196 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE3_EOP,
197
198 AMDGPU_CP_IRQ_LAST
199};
200
201enum amdgpu_sdma_irq {
202 AMDGPU_SDMA_IRQ_TRAP0 = 0,
203 AMDGPU_SDMA_IRQ_TRAP1,
204
205 AMDGPU_SDMA_IRQ_LAST
206};
207
208enum amdgpu_thermal_irq {
209 AMDGPU_THERMAL_IRQ_LOW_TO_HIGH = 0,
210 AMDGPU_THERMAL_IRQ_HIGH_TO_LOW,
211
212 AMDGPU_THERMAL_IRQ_LAST
213};
214
Alex Deucher97b2e202015-04-20 16:51:00 -0400215int amdgpu_set_clockgating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400216 enum amd_ip_block_type block_type,
217 enum amd_clockgating_state state);
Alex Deucher97b2e202015-04-20 16:51:00 -0400218int amdgpu_set_powergating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400219 enum amd_ip_block_type block_type,
220 enum amd_powergating_state state);
Alex Deucher97b2e202015-04-20 16:51:00 -0400221
222struct amdgpu_ip_block_version {
yanyang15fc3aee2015-05-22 14:39:35 -0400223 enum amd_ip_block_type type;
Alex Deucher97b2e202015-04-20 16:51:00 -0400224 u32 major;
225 u32 minor;
226 u32 rev;
yanyang15fc3aee2015-05-22 14:39:35 -0400227 const struct amd_ip_funcs *funcs;
Alex Deucher97b2e202015-04-20 16:51:00 -0400228};
229
230int amdgpu_ip_block_version_cmp(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400231 enum amd_ip_block_type type,
Alex Deucher97b2e202015-04-20 16:51:00 -0400232 u32 major, u32 minor);
233
234const struct amdgpu_ip_block_version * amdgpu_get_ip_block(
235 struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400236 enum amd_ip_block_type type);
Alex Deucher97b2e202015-04-20 16:51:00 -0400237
238/* provided by hw blocks that can move/clear data. e.g., gfx or sdma */
239struct amdgpu_buffer_funcs {
240 /* maximum bytes in a single operation */
241 uint32_t copy_max_bytes;
242
243 /* number of dw to reserve per operation */
244 unsigned copy_num_dw;
245
246 /* used for buffer migration */
247 void (*emit_copy_buffer)(struct amdgpu_ring *ring,
248 /* src addr in bytes */
249 uint64_t src_offset,
250 /* dst addr in bytes */
251 uint64_t dst_offset,
252 /* number of byte to transfer */
253 uint32_t byte_count);
254
255 /* maximum bytes in a single operation */
256 uint32_t fill_max_bytes;
257
258 /* number of dw to reserve per operation */
259 unsigned fill_num_dw;
260
261 /* used for buffer clearing */
262 void (*emit_fill_buffer)(struct amdgpu_ring *ring,
263 /* value to write to memory */
264 uint32_t src_data,
265 /* dst addr in bytes */
266 uint64_t dst_offset,
267 /* number of byte to fill */
268 uint32_t byte_count);
269};
270
271/* provided by hw blocks that can write ptes, e.g., sdma */
272struct amdgpu_vm_pte_funcs {
273 /* copy pte entries from GART */
274 void (*copy_pte)(struct amdgpu_ib *ib,
275 uint64_t pe, uint64_t src,
276 unsigned count);
277 /* write pte one entry at a time with addr mapping */
278 void (*write_pte)(struct amdgpu_ib *ib,
279 uint64_t pe,
280 uint64_t addr, unsigned count,
281 uint32_t incr, uint32_t flags);
282 /* for linear pte/pde updates without addr mapping */
283 void (*set_pte_pde)(struct amdgpu_ib *ib,
284 uint64_t pe,
285 uint64_t addr, unsigned count,
286 uint32_t incr, uint32_t flags);
287 /* pad the indirect buffer to the necessary number of dw */
288 void (*pad_ib)(struct amdgpu_ib *ib);
289};
290
291/* provided by the gmc block */
292struct amdgpu_gart_funcs {
293 /* flush the vm tlb via mmio */
294 void (*flush_gpu_tlb)(struct amdgpu_device *adev,
295 uint32_t vmid);
296 /* write pte/pde updates using the cpu */
297 int (*set_pte_pde)(struct amdgpu_device *adev,
298 void *cpu_pt_addr, /* cpu addr of page table */
299 uint32_t gpu_page_idx, /* pte/pde to update */
300 uint64_t addr, /* addr to write into pte/pde */
301 uint32_t flags); /* access flags */
302};
303
304/* provided by the ih block */
305struct amdgpu_ih_funcs {
306 /* ring read/write ptr handling, called from interrupt context */
307 u32 (*get_wptr)(struct amdgpu_device *adev);
308 void (*decode_iv)(struct amdgpu_device *adev,
309 struct amdgpu_iv_entry *entry);
310 void (*set_rptr)(struct amdgpu_device *adev);
311};
312
313/* provided by hw blocks that expose a ring buffer for commands */
314struct amdgpu_ring_funcs {
315 /* ring read/write ptr handling */
316 u32 (*get_rptr)(struct amdgpu_ring *ring);
317 u32 (*get_wptr)(struct amdgpu_ring *ring);
318 void (*set_wptr)(struct amdgpu_ring *ring);
319 /* validating and patching of IBs */
320 int (*parse_cs)(struct amdgpu_cs_parser *p, uint32_t ib_idx);
321 /* command emit functions */
322 void (*emit_ib)(struct amdgpu_ring *ring,
323 struct amdgpu_ib *ib);
324 void (*emit_fence)(struct amdgpu_ring *ring, uint64_t addr,
Chunming Zhou890ee232015-06-01 14:35:03 +0800325 uint64_t seq, unsigned flags);
Alex Deucher97b2e202015-04-20 16:51:00 -0400326 bool (*emit_semaphore)(struct amdgpu_ring *ring,
327 struct amdgpu_semaphore *semaphore,
328 bool emit_wait);
329 void (*emit_vm_flush)(struct amdgpu_ring *ring, unsigned vm_id,
330 uint64_t pd_addr);
Christian Königd2edb072015-05-11 14:10:34 +0200331 void (*emit_hdp_flush)(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -0400332 void (*emit_gds_switch)(struct amdgpu_ring *ring, uint32_t vmid,
333 uint32_t gds_base, uint32_t gds_size,
334 uint32_t gws_base, uint32_t gws_size,
335 uint32_t oa_base, uint32_t oa_size);
336 /* testing functions */
337 int (*test_ring)(struct amdgpu_ring *ring);
338 int (*test_ib)(struct amdgpu_ring *ring);
339 bool (*is_lockup)(struct amdgpu_ring *ring);
340};
341
342/*
343 * BIOS.
344 */
345bool amdgpu_get_bios(struct amdgpu_device *adev);
346bool amdgpu_read_bios(struct amdgpu_device *adev);
347
348/*
349 * Dummy page
350 */
351struct amdgpu_dummy_page {
352 struct page *page;
353 dma_addr_t addr;
354};
355int amdgpu_dummy_page_init(struct amdgpu_device *adev);
356void amdgpu_dummy_page_fini(struct amdgpu_device *adev);
357
358
359/*
360 * Clocks
361 */
362
363#define AMDGPU_MAX_PPLL 3
364
365struct amdgpu_clock {
366 struct amdgpu_pll ppll[AMDGPU_MAX_PPLL];
367 struct amdgpu_pll spll;
368 struct amdgpu_pll mpll;
369 /* 10 Khz units */
370 uint32_t default_mclk;
371 uint32_t default_sclk;
372 uint32_t default_dispclk;
373 uint32_t current_dispclk;
374 uint32_t dp_extclk;
375 uint32_t max_pixel_clock;
376};
377
378/*
379 * Fences.
380 */
381struct amdgpu_fence_driver {
382 struct amdgpu_ring *ring;
383 uint64_t gpu_addr;
384 volatile uint32_t *cpu_addr;
385 /* sync_seq is protected by ring emission lock */
386 uint64_t sync_seq[AMDGPU_MAX_RINGS];
387 atomic64_t last_seq;
388 bool initialized;
Alex Deucher97b2e202015-04-20 16:51:00 -0400389 struct amdgpu_irq_src *irq_src;
390 unsigned irq_type;
391 struct delayed_work lockup_work;
392};
393
394/* some special values for the owner field */
395#define AMDGPU_FENCE_OWNER_UNDEFINED ((void*)0ul)
396#define AMDGPU_FENCE_OWNER_VM ((void*)1ul)
397#define AMDGPU_FENCE_OWNER_MOVE ((void*)2ul)
398
Chunming Zhou890ee232015-06-01 14:35:03 +0800399#define AMDGPU_FENCE_FLAG_64BIT (1 << 0)
400#define AMDGPU_FENCE_FLAG_INT (1 << 1)
401
Alex Deucher97b2e202015-04-20 16:51:00 -0400402struct amdgpu_fence {
403 struct fence base;
404
405 /* RB, DMA, etc. */
406 struct amdgpu_ring *ring;
407 uint64_t seq;
408
409 /* filp or special value for fence creator */
410 void *owner;
411
412 wait_queue_t fence_wake;
413};
414
415struct amdgpu_user_fence {
416 /* write-back bo */
417 struct amdgpu_bo *bo;
418 /* write-back address offset to bo start */
419 uint32_t offset;
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800420 uint64_t sequence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400421};
422
423int amdgpu_fence_driver_init(struct amdgpu_device *adev);
424void amdgpu_fence_driver_fini(struct amdgpu_device *adev);
425void amdgpu_fence_driver_force_completion(struct amdgpu_device *adev);
426
427void amdgpu_fence_driver_init_ring(struct amdgpu_ring *ring);
428int amdgpu_fence_driver_start_ring(struct amdgpu_ring *ring,
429 struct amdgpu_irq_src *irq_src,
430 unsigned irq_type);
Alex Deucher5ceb54c2015-08-05 12:41:48 -0400431void amdgpu_fence_driver_suspend(struct amdgpu_device *adev);
432void amdgpu_fence_driver_resume(struct amdgpu_device *adev);
Alex Deucher97b2e202015-04-20 16:51:00 -0400433int amdgpu_fence_emit(struct amdgpu_ring *ring, void *owner,
434 struct amdgpu_fence **fence);
435void amdgpu_fence_process(struct amdgpu_ring *ring);
436int amdgpu_fence_wait_next(struct amdgpu_ring *ring);
437int amdgpu_fence_wait_empty(struct amdgpu_ring *ring);
438unsigned amdgpu_fence_count_emitted(struct amdgpu_ring *ring);
439
440bool amdgpu_fence_signaled(struct amdgpu_fence *fence);
441int amdgpu_fence_wait(struct amdgpu_fence *fence, bool interruptible);
442int amdgpu_fence_wait_any(struct amdgpu_device *adev,
443 struct amdgpu_fence **fences,
444 bool intr);
Alex Deucher97b2e202015-04-20 16:51:00 -0400445struct amdgpu_fence *amdgpu_fence_ref(struct amdgpu_fence *fence);
446void amdgpu_fence_unref(struct amdgpu_fence **fence);
447
448bool amdgpu_fence_need_sync(struct amdgpu_fence *fence,
449 struct amdgpu_ring *ring);
450void amdgpu_fence_note_sync(struct amdgpu_fence *fence,
451 struct amdgpu_ring *ring);
452
453static inline struct amdgpu_fence *amdgpu_fence_later(struct amdgpu_fence *a,
454 struct amdgpu_fence *b)
455{
456 if (!a) {
457 return b;
458 }
459
460 if (!b) {
461 return a;
462 }
463
464 BUG_ON(a->ring != b->ring);
465
466 if (a->seq > b->seq) {
467 return a;
468 } else {
469 return b;
470 }
471}
472
473static inline bool amdgpu_fence_is_earlier(struct amdgpu_fence *a,
474 struct amdgpu_fence *b)
475{
476 if (!a) {
477 return false;
478 }
479
480 if (!b) {
481 return true;
482 }
483
484 BUG_ON(a->ring != b->ring);
485
486 return a->seq < b->seq;
487}
488
489int amdgpu_user_fence_emit(struct amdgpu_ring *ring, struct amdgpu_user_fence *user,
490 void *owner, struct amdgpu_fence **fence);
491
492/*
493 * TTM.
494 */
495struct amdgpu_mman {
496 struct ttm_bo_global_ref bo_global_ref;
497 struct drm_global_reference mem_global_ref;
498 struct ttm_bo_device bdev;
499 bool mem_global_referenced;
500 bool initialized;
501
502#if defined(CONFIG_DEBUG_FS)
503 struct dentry *vram;
504 struct dentry *gtt;
505#endif
506
507 /* buffer handling */
508 const struct amdgpu_buffer_funcs *buffer_funcs;
509 struct amdgpu_ring *buffer_funcs_ring;
510};
511
512int amdgpu_copy_buffer(struct amdgpu_ring *ring,
513 uint64_t src_offset,
514 uint64_t dst_offset,
515 uint32_t byte_count,
516 struct reservation_object *resv,
517 struct amdgpu_fence **fence);
518int amdgpu_mmap(struct file *filp, struct vm_area_struct *vma);
519
520struct amdgpu_bo_list_entry {
521 struct amdgpu_bo *robj;
522 struct ttm_validate_buffer tv;
523 struct amdgpu_bo_va *bo_va;
524 unsigned prefered_domains;
525 unsigned allowed_domains;
526 uint32_t priority;
527};
528
529struct amdgpu_bo_va_mapping {
530 struct list_head list;
531 struct interval_tree_node it;
532 uint64_t offset;
533 uint32_t flags;
534};
535
536/* bo virtual addresses in a specific vm */
537struct amdgpu_bo_va {
538 /* protected by bo being reserved */
539 struct list_head bo_list;
540 uint64_t addr;
541 struct amdgpu_fence *last_pt_update;
542 unsigned ref_count;
543
544 /* protected by vm mutex */
545 struct list_head mappings;
546 struct list_head vm_status;
547
548 /* constant after initialization */
549 struct amdgpu_vm *vm;
550 struct amdgpu_bo *bo;
551};
552
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800553#define AMDGPU_GEM_DOMAIN_MAX 0x3
554
Alex Deucher97b2e202015-04-20 16:51:00 -0400555struct amdgpu_bo {
556 /* Protected by gem.mutex */
557 struct list_head list;
558 /* Protected by tbo.reserved */
559 u32 initial_domain;
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800560 struct ttm_place placements[AMDGPU_GEM_DOMAIN_MAX + 1];
Alex Deucher97b2e202015-04-20 16:51:00 -0400561 struct ttm_placement placement;
562 struct ttm_buffer_object tbo;
563 struct ttm_bo_kmap_obj kmap;
564 u64 flags;
565 unsigned pin_count;
566 void *kptr;
567 u64 tiling_flags;
568 u64 metadata_flags;
569 void *metadata;
570 u32 metadata_size;
571 /* list of all virtual address to which this bo
572 * is associated to
573 */
574 struct list_head va;
575 /* Constant after initialization */
576 struct amdgpu_device *adev;
577 struct drm_gem_object gem_base;
578
579 struct ttm_bo_kmap_obj dma_buf_vmap;
580 pid_t pid;
581 struct amdgpu_mn *mn;
582 struct list_head mn_list;
583};
584#define gem_to_amdgpu_bo(gobj) container_of((gobj), struct amdgpu_bo, gem_base)
585
586void amdgpu_gem_object_free(struct drm_gem_object *obj);
587int amdgpu_gem_object_open(struct drm_gem_object *obj,
588 struct drm_file *file_priv);
589void amdgpu_gem_object_close(struct drm_gem_object *obj,
590 struct drm_file *file_priv);
591unsigned long amdgpu_gem_timeout(uint64_t timeout_ns);
592struct sg_table *amdgpu_gem_prime_get_sg_table(struct drm_gem_object *obj);
593struct drm_gem_object *amdgpu_gem_prime_import_sg_table(struct drm_device *dev,
594 struct dma_buf_attachment *attach,
595 struct sg_table *sg);
596struct dma_buf *amdgpu_gem_prime_export(struct drm_device *dev,
597 struct drm_gem_object *gobj,
598 int flags);
599int amdgpu_gem_prime_pin(struct drm_gem_object *obj);
600void amdgpu_gem_prime_unpin(struct drm_gem_object *obj);
601struct reservation_object *amdgpu_gem_prime_res_obj(struct drm_gem_object *);
602void *amdgpu_gem_prime_vmap(struct drm_gem_object *obj);
603void amdgpu_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
604int amdgpu_gem_debugfs_init(struct amdgpu_device *adev);
605
606/* sub-allocation manager, it has to be protected by another lock.
607 * By conception this is an helper for other part of the driver
608 * like the indirect buffer or semaphore, which both have their
609 * locking.
610 *
611 * Principe is simple, we keep a list of sub allocation in offset
612 * order (first entry has offset == 0, last entry has the highest
613 * offset).
614 *
615 * When allocating new object we first check if there is room at
616 * the end total_size - (last_object_offset + last_object_size) >=
617 * alloc_size. If so we allocate new object there.
618 *
619 * When there is not enough room at the end, we start waiting for
620 * each sub object until we reach object_offset+object_size >=
621 * alloc_size, this object then become the sub object we return.
622 *
623 * Alignment can't be bigger than page size.
624 *
625 * Hole are not considered for allocation to keep things simple.
626 * Assumption is that there won't be hole (all object on same
627 * alignment).
628 */
629struct amdgpu_sa_manager {
630 wait_queue_head_t wq;
631 struct amdgpu_bo *bo;
632 struct list_head *hole;
633 struct list_head flist[AMDGPU_MAX_RINGS];
634 struct list_head olist;
635 unsigned size;
636 uint64_t gpu_addr;
637 void *cpu_ptr;
638 uint32_t domain;
639 uint32_t align;
640};
641
642struct amdgpu_sa_bo;
643
644/* sub-allocation buffer */
645struct amdgpu_sa_bo {
646 struct list_head olist;
647 struct list_head flist;
648 struct amdgpu_sa_manager *manager;
649 unsigned soffset;
650 unsigned eoffset;
651 struct amdgpu_fence *fence;
652};
653
654/*
655 * GEM objects.
656 */
657struct amdgpu_gem {
658 struct mutex mutex;
659 struct list_head objects;
660};
661
662int amdgpu_gem_init(struct amdgpu_device *adev);
663void amdgpu_gem_fini(struct amdgpu_device *adev);
664int amdgpu_gem_object_create(struct amdgpu_device *adev, unsigned long size,
665 int alignment, u32 initial_domain,
666 u64 flags, bool kernel,
667 struct drm_gem_object **obj);
668
669int amdgpu_mode_dumb_create(struct drm_file *file_priv,
670 struct drm_device *dev,
671 struct drm_mode_create_dumb *args);
672int amdgpu_mode_dumb_mmap(struct drm_file *filp,
673 struct drm_device *dev,
674 uint32_t handle, uint64_t *offset_p);
675
676/*
677 * Semaphores.
678 */
679struct amdgpu_semaphore {
680 struct amdgpu_sa_bo *sa_bo;
681 signed waiters;
682 uint64_t gpu_addr;
683};
684
685int amdgpu_semaphore_create(struct amdgpu_device *adev,
686 struct amdgpu_semaphore **semaphore);
687bool amdgpu_semaphore_emit_signal(struct amdgpu_ring *ring,
688 struct amdgpu_semaphore *semaphore);
689bool amdgpu_semaphore_emit_wait(struct amdgpu_ring *ring,
690 struct amdgpu_semaphore *semaphore);
691void amdgpu_semaphore_free(struct amdgpu_device *adev,
692 struct amdgpu_semaphore **semaphore,
693 struct amdgpu_fence *fence);
694
695/*
696 * Synchronization
697 */
698struct amdgpu_sync {
699 struct amdgpu_semaphore *semaphores[AMDGPU_NUM_SYNCS];
700 struct amdgpu_fence *sync_to[AMDGPU_MAX_RINGS];
701 struct amdgpu_fence *last_vm_update;
702};
703
704void amdgpu_sync_create(struct amdgpu_sync *sync);
Christian König91e1a522015-07-06 22:06:40 +0200705int amdgpu_sync_fence(struct amdgpu_device *adev, struct amdgpu_sync *sync,
706 struct fence *f);
Alex Deucher97b2e202015-04-20 16:51:00 -0400707int amdgpu_sync_resv(struct amdgpu_device *adev,
708 struct amdgpu_sync *sync,
709 struct reservation_object *resv,
710 void *owner);
711int amdgpu_sync_rings(struct amdgpu_sync *sync,
712 struct amdgpu_ring *ring);
713void amdgpu_sync_free(struct amdgpu_device *adev, struct amdgpu_sync *sync,
714 struct amdgpu_fence *fence);
715
716/*
717 * GART structures, functions & helpers
718 */
719struct amdgpu_mc;
720
721#define AMDGPU_GPU_PAGE_SIZE 4096
722#define AMDGPU_GPU_PAGE_MASK (AMDGPU_GPU_PAGE_SIZE - 1)
723#define AMDGPU_GPU_PAGE_SHIFT 12
724#define AMDGPU_GPU_PAGE_ALIGN(a) (((a) + AMDGPU_GPU_PAGE_MASK) & ~AMDGPU_GPU_PAGE_MASK)
725
726struct amdgpu_gart {
727 dma_addr_t table_addr;
728 struct amdgpu_bo *robj;
729 void *ptr;
730 unsigned num_gpu_pages;
731 unsigned num_cpu_pages;
732 unsigned table_size;
733 struct page **pages;
734 dma_addr_t *pages_addr;
735 bool ready;
736 const struct amdgpu_gart_funcs *gart_funcs;
737};
738
739int amdgpu_gart_table_ram_alloc(struct amdgpu_device *adev);
740void amdgpu_gart_table_ram_free(struct amdgpu_device *adev);
741int amdgpu_gart_table_vram_alloc(struct amdgpu_device *adev);
742void amdgpu_gart_table_vram_free(struct amdgpu_device *adev);
743int amdgpu_gart_table_vram_pin(struct amdgpu_device *adev);
744void amdgpu_gart_table_vram_unpin(struct amdgpu_device *adev);
745int amdgpu_gart_init(struct amdgpu_device *adev);
746void amdgpu_gart_fini(struct amdgpu_device *adev);
747void amdgpu_gart_unbind(struct amdgpu_device *adev, unsigned offset,
748 int pages);
749int amdgpu_gart_bind(struct amdgpu_device *adev, unsigned offset,
750 int pages, struct page **pagelist,
751 dma_addr_t *dma_addr, uint32_t flags);
752
753/*
754 * GPU MC structures, functions & helpers
755 */
756struct amdgpu_mc {
757 resource_size_t aper_size;
758 resource_size_t aper_base;
759 resource_size_t agp_base;
760 /* for some chips with <= 32MB we need to lie
761 * about vram size near mc fb location */
762 u64 mc_vram_size;
763 u64 visible_vram_size;
764 u64 gtt_size;
765 u64 gtt_start;
766 u64 gtt_end;
767 u64 vram_start;
768 u64 vram_end;
769 unsigned vram_width;
770 u64 real_vram_size;
771 int vram_mtrr;
772 u64 gtt_base_align;
773 u64 mc_mask;
774 const struct firmware *fw; /* MC firmware */
775 uint32_t fw_version;
776 struct amdgpu_irq_src vm_fault;
Ken Wang81c59f52015-06-03 21:02:01 +0800777 uint32_t vram_type;
Alex Deucher97b2e202015-04-20 16:51:00 -0400778};
779
780/*
781 * GPU doorbell structures, functions & helpers
782 */
783typedef enum _AMDGPU_DOORBELL_ASSIGNMENT
784{
785 AMDGPU_DOORBELL_KIQ = 0x000,
786 AMDGPU_DOORBELL_HIQ = 0x001,
787 AMDGPU_DOORBELL_DIQ = 0x002,
788 AMDGPU_DOORBELL_MEC_RING0 = 0x010,
789 AMDGPU_DOORBELL_MEC_RING1 = 0x011,
790 AMDGPU_DOORBELL_MEC_RING2 = 0x012,
791 AMDGPU_DOORBELL_MEC_RING3 = 0x013,
792 AMDGPU_DOORBELL_MEC_RING4 = 0x014,
793 AMDGPU_DOORBELL_MEC_RING5 = 0x015,
794 AMDGPU_DOORBELL_MEC_RING6 = 0x016,
795 AMDGPU_DOORBELL_MEC_RING7 = 0x017,
796 AMDGPU_DOORBELL_GFX_RING0 = 0x020,
797 AMDGPU_DOORBELL_sDMA_ENGINE0 = 0x1E0,
798 AMDGPU_DOORBELL_sDMA_ENGINE1 = 0x1E1,
799 AMDGPU_DOORBELL_IH = 0x1E8,
800 AMDGPU_DOORBELL_MAX_ASSIGNMENT = 0x3FF,
801 AMDGPU_DOORBELL_INVALID = 0xFFFF
802} AMDGPU_DOORBELL_ASSIGNMENT;
803
804struct amdgpu_doorbell {
805 /* doorbell mmio */
806 resource_size_t base;
807 resource_size_t size;
808 u32 __iomem *ptr;
809 u32 num_doorbells; /* Number of doorbells actually reserved for amdgpu. */
810};
811
812void amdgpu_doorbell_get_kfd_info(struct amdgpu_device *adev,
813 phys_addr_t *aperture_base,
814 size_t *aperture_size,
815 size_t *start_offset);
816
817/*
818 * IRQS.
819 */
820
821struct amdgpu_flip_work {
822 struct work_struct flip_work;
823 struct work_struct unpin_work;
824 struct amdgpu_device *adev;
825 int crtc_id;
826 uint64_t base;
827 struct drm_pending_vblank_event *event;
828 struct amdgpu_bo *old_rbo;
829 struct fence *fence;
830};
831
832
833/*
834 * CP & rings.
835 */
836
837struct amdgpu_ib {
838 struct amdgpu_sa_bo *sa_bo;
839 uint32_t length_dw;
840 uint64_t gpu_addr;
841 uint32_t *ptr;
842 struct amdgpu_ring *ring;
843 struct amdgpu_fence *fence;
844 struct amdgpu_user_fence *user;
845 struct amdgpu_vm *vm;
Christian König3cb485f2015-05-11 15:34:59 +0200846 struct amdgpu_ctx *ctx;
Alex Deucher97b2e202015-04-20 16:51:00 -0400847 struct amdgpu_sync sync;
Alex Deucher97b2e202015-04-20 16:51:00 -0400848 uint32_t gds_base, gds_size;
849 uint32_t gws_base, gws_size;
850 uint32_t oa_base, oa_size;
Jammy Zhoude807f82015-05-11 23:41:41 +0800851 uint32_t flags;
Christian König5430a3f2015-07-21 18:02:21 +0200852 /* resulting sequence number */
853 uint64_t sequence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400854};
855
856enum amdgpu_ring_type {
857 AMDGPU_RING_TYPE_GFX,
858 AMDGPU_RING_TYPE_COMPUTE,
859 AMDGPU_RING_TYPE_SDMA,
860 AMDGPU_RING_TYPE_UVD,
861 AMDGPU_RING_TYPE_VCE
862};
863
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800864extern struct amd_sched_backend_ops amdgpu_sched_ops;
865
Alex Deucher97b2e202015-04-20 16:51:00 -0400866struct amdgpu_ring {
867 struct amdgpu_device *adev;
868 const struct amdgpu_ring_funcs *funcs;
869 struct amdgpu_fence_driver fence_drv;
Alex Deucherb80d8472015-08-16 22:55:02 -0400870 struct amd_gpu_scheduler *scheduler;
Alex Deucher97b2e202015-04-20 16:51:00 -0400871
872 struct mutex *ring_lock;
873 struct amdgpu_bo *ring_obj;
874 volatile uint32_t *ring;
875 unsigned rptr_offs;
876 u64 next_rptr_gpu_addr;
877 volatile u32 *next_rptr_cpu_addr;
878 unsigned wptr;
879 unsigned wptr_old;
880 unsigned ring_size;
881 unsigned ring_free_dw;
882 int count_dw;
883 atomic_t last_rptr;
884 atomic64_t last_activity;
885 uint64_t gpu_addr;
886 uint32_t align_mask;
887 uint32_t ptr_mask;
888 bool ready;
889 u32 nop;
890 u32 idx;
891 u64 last_semaphore_signal_addr;
892 u64 last_semaphore_wait_addr;
893 u32 me;
894 u32 pipe;
895 u32 queue;
896 struct amdgpu_bo *mqd_obj;
897 u32 doorbell_index;
898 bool use_doorbell;
899 unsigned wptr_offs;
900 unsigned next_rptr_offs;
901 unsigned fence_offs;
Christian König3cb485f2015-05-11 15:34:59 +0200902 struct amdgpu_ctx *current_ctx;
Alex Deucher97b2e202015-04-20 16:51:00 -0400903 enum amdgpu_ring_type type;
904 char name[16];
905};
906
907/*
908 * VM
909 */
910
911/* maximum number of VMIDs */
912#define AMDGPU_NUM_VM 16
913
914/* number of entries in page table */
915#define AMDGPU_VM_PTE_COUNT (1 << amdgpu_vm_block_size)
916
917/* PTBs (Page Table Blocks) need to be aligned to 32K */
918#define AMDGPU_VM_PTB_ALIGN_SIZE 32768
919#define AMDGPU_VM_PTB_ALIGN_MASK (AMDGPU_VM_PTB_ALIGN_SIZE - 1)
920#define AMDGPU_VM_PTB_ALIGN(a) (((a) + AMDGPU_VM_PTB_ALIGN_MASK) & ~AMDGPU_VM_PTB_ALIGN_MASK)
921
922#define AMDGPU_PTE_VALID (1 << 0)
923#define AMDGPU_PTE_SYSTEM (1 << 1)
924#define AMDGPU_PTE_SNOOPED (1 << 2)
925
926/* VI only */
927#define AMDGPU_PTE_EXECUTABLE (1 << 4)
928
929#define AMDGPU_PTE_READABLE (1 << 5)
930#define AMDGPU_PTE_WRITEABLE (1 << 6)
931
932/* PTE (Page Table Entry) fragment field for different page sizes */
933#define AMDGPU_PTE_FRAG_4KB (0 << 7)
934#define AMDGPU_PTE_FRAG_64KB (4 << 7)
935#define AMDGPU_LOG2_PAGES_PER_FRAG 4
936
937struct amdgpu_vm_pt {
938 struct amdgpu_bo *bo;
939 uint64_t addr;
940};
941
942struct amdgpu_vm_id {
943 unsigned id;
944 uint64_t pd_gpu_addr;
945 /* last flushed PD/PT update */
946 struct amdgpu_fence *flushed_updates;
947 /* last use of vmid */
948 struct amdgpu_fence *last_id_use;
949};
950
951struct amdgpu_vm {
952 struct mutex mutex;
953
954 struct rb_root va;
955
956 /* protecting invalidated and freed */
957 spinlock_t status_lock;
958
959 /* BOs moved, but not yet updated in the PT */
960 struct list_head invalidated;
961
962 /* BOs freed, but not yet updated in the PT */
963 struct list_head freed;
964
965 /* contains the page directory */
966 struct amdgpu_bo *page_directory;
967 unsigned max_pde_used;
968
969 /* array of page tables, one for each page directory entry */
970 struct amdgpu_vm_pt *page_tables;
971
972 /* for id and flush management per ring */
973 struct amdgpu_vm_id ids[AMDGPU_MAX_RINGS];
974};
975
976struct amdgpu_vm_manager {
977 struct amdgpu_fence *active[AMDGPU_NUM_VM];
978 uint32_t max_pfn;
979 /* number of VMIDs */
980 unsigned nvm;
981 /* vram base address for page table entry */
982 u64 vram_base_offset;
983 /* is vm enabled? */
984 bool enabled;
985 /* for hw to save the PD addr on suspend/resume */
986 uint32_t saved_table_addr[AMDGPU_NUM_VM];
987 /* vm pte handling */
988 const struct amdgpu_vm_pte_funcs *vm_pte_funcs;
989 struct amdgpu_ring *vm_pte_funcs_ring;
990};
991
992/*
993 * context related structures
994 */
995
Christian König21c16bf2015-07-07 17:24:49 +0200996#define AMDGPU_CTX_MAX_CS_PENDING 16
997
998struct amdgpu_ctx_ring {
999 uint64_t sequence;
1000 struct fence *fences[AMDGPU_CTX_MAX_CS_PENDING];
Chunming Zhou9cb7e5a2015-07-21 13:17:19 +08001001 struct amd_context_entity c_entity;
Christian König21c16bf2015-07-07 17:24:49 +02001002};
1003
Alex Deucher97b2e202015-04-20 16:51:00 -04001004struct amdgpu_ctx {
Alex Deucher0b492a42015-08-16 22:48:26 -04001005 struct kref refcount;
Chunming Zhou9cb7e5a2015-07-21 13:17:19 +08001006 struct amdgpu_device *adev;
Alex Deucher0b492a42015-08-16 22:48:26 -04001007 unsigned reset_counter;
Christian König21c16bf2015-07-07 17:24:49 +02001008 spinlock_t ring_lock;
1009 struct amdgpu_ctx_ring rings[AMDGPU_MAX_RINGS];
Alex Deucher97b2e202015-04-20 16:51:00 -04001010};
1011
1012struct amdgpu_ctx_mgr {
Alex Deucher0b492a42015-08-16 22:48:26 -04001013 struct amdgpu_device *adev;
1014 struct mutex lock;
1015 /* protected by lock */
1016 struct idr ctx_handles;
Alex Deucher97b2e202015-04-20 16:51:00 -04001017};
1018
Alex Deucher0b492a42015-08-16 22:48:26 -04001019int amdgpu_ctx_alloc(struct amdgpu_device *adev, struct amdgpu_fpriv *fpriv,
1020 uint32_t *id);
1021int amdgpu_ctx_free(struct amdgpu_device *adev, struct amdgpu_fpriv *fpriv,
1022 uint32_t id);
1023
1024void amdgpu_ctx_fini(struct amdgpu_fpriv *fpriv);
1025
1026struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id);
1027int amdgpu_ctx_put(struct amdgpu_ctx *ctx);
1028
Christian König21c16bf2015-07-07 17:24:49 +02001029uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
1030 struct fence *fence);
1031struct fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
1032 struct amdgpu_ring *ring, uint64_t seq);
1033
Alex Deucher0b492a42015-08-16 22:48:26 -04001034int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
1035 struct drm_file *filp);
1036
1037
Alex Deucher97b2e202015-04-20 16:51:00 -04001038/*
1039 * file private structure
1040 */
1041
1042struct amdgpu_fpriv {
1043 struct amdgpu_vm vm;
1044 struct mutex bo_list_lock;
1045 struct idr bo_list_handles;
Alex Deucher0b492a42015-08-16 22:48:26 -04001046 struct amdgpu_ctx_mgr ctx_mgr;
Alex Deucher97b2e202015-04-20 16:51:00 -04001047};
1048
1049/*
1050 * residency list
1051 */
1052
1053struct amdgpu_bo_list {
1054 struct mutex lock;
1055 struct amdgpu_bo *gds_obj;
1056 struct amdgpu_bo *gws_obj;
1057 struct amdgpu_bo *oa_obj;
1058 bool has_userptr;
1059 unsigned num_entries;
1060 struct amdgpu_bo_list_entry *array;
1061};
1062
1063struct amdgpu_bo_list *
1064amdgpu_bo_list_get(struct amdgpu_fpriv *fpriv, int id);
1065void amdgpu_bo_list_put(struct amdgpu_bo_list *list);
Chunming Zhou372bc1e2015-07-21 13:47:05 +08001066void amdgpu_bo_list_copy(struct amdgpu_device *adev,
1067 struct amdgpu_bo_list *dst,
1068 struct amdgpu_bo_list *src);
Alex Deucher97b2e202015-04-20 16:51:00 -04001069void amdgpu_bo_list_free(struct amdgpu_bo_list *list);
1070
1071/*
1072 * GFX stuff
1073 */
1074#include "clearstate_defs.h"
1075
1076struct amdgpu_rlc {
1077 /* for power gating */
1078 struct amdgpu_bo *save_restore_obj;
1079 uint64_t save_restore_gpu_addr;
1080 volatile uint32_t *sr_ptr;
1081 const u32 *reg_list;
1082 u32 reg_list_size;
1083 /* for clear state */
1084 struct amdgpu_bo *clear_state_obj;
1085 uint64_t clear_state_gpu_addr;
1086 volatile uint32_t *cs_ptr;
1087 const struct cs_section_def *cs_data;
1088 u32 clear_state_size;
1089 /* for cp tables */
1090 struct amdgpu_bo *cp_table_obj;
1091 uint64_t cp_table_gpu_addr;
1092 volatile uint32_t *cp_table_ptr;
1093 u32 cp_table_size;
1094};
1095
1096struct amdgpu_mec {
1097 struct amdgpu_bo *hpd_eop_obj;
1098 u64 hpd_eop_gpu_addr;
1099 u32 num_pipe;
1100 u32 num_mec;
1101 u32 num_queue;
1102};
1103
1104/*
1105 * GPU scratch registers structures, functions & helpers
1106 */
1107struct amdgpu_scratch {
1108 unsigned num_reg;
1109 uint32_t reg_base;
1110 bool free[32];
1111 uint32_t reg[32];
1112};
1113
1114/*
1115 * GFX configurations
1116 */
1117struct amdgpu_gca_config {
1118 unsigned max_shader_engines;
1119 unsigned max_tile_pipes;
1120 unsigned max_cu_per_sh;
1121 unsigned max_sh_per_se;
1122 unsigned max_backends_per_se;
1123 unsigned max_texture_channel_caches;
1124 unsigned max_gprs;
1125 unsigned max_gs_threads;
1126 unsigned max_hw_contexts;
1127 unsigned sc_prim_fifo_size_frontend;
1128 unsigned sc_prim_fifo_size_backend;
1129 unsigned sc_hiz_tile_fifo_size;
1130 unsigned sc_earlyz_tile_fifo_size;
1131
1132 unsigned num_tile_pipes;
1133 unsigned backend_enable_mask;
1134 unsigned mem_max_burst_length_bytes;
1135 unsigned mem_row_size_in_kb;
1136 unsigned shader_engine_tile_size;
1137 unsigned num_gpus;
1138 unsigned multi_gpu_tile_size;
1139 unsigned mc_arb_ramcfg;
1140 unsigned gb_addr_config;
1141
1142 uint32_t tile_mode_array[32];
1143 uint32_t macrotile_mode_array[16];
1144};
1145
1146struct amdgpu_gfx {
1147 struct mutex gpu_clock_mutex;
1148 struct amdgpu_gca_config config;
1149 struct amdgpu_rlc rlc;
1150 struct amdgpu_mec mec;
1151 struct amdgpu_scratch scratch;
1152 const struct firmware *me_fw; /* ME firmware */
1153 uint32_t me_fw_version;
1154 const struct firmware *pfp_fw; /* PFP firmware */
1155 uint32_t pfp_fw_version;
1156 const struct firmware *ce_fw; /* CE firmware */
1157 uint32_t ce_fw_version;
1158 const struct firmware *rlc_fw; /* RLC firmware */
1159 uint32_t rlc_fw_version;
1160 const struct firmware *mec_fw; /* MEC firmware */
1161 uint32_t mec_fw_version;
1162 const struct firmware *mec2_fw; /* MEC2 firmware */
1163 uint32_t mec2_fw_version;
Ken Wang02558a02015-06-03 19:52:06 +08001164 uint32_t me_feature_version;
1165 uint32_t ce_feature_version;
1166 uint32_t pfp_feature_version;
Jammy Zhou351643d2015-08-04 10:43:50 +08001167 uint32_t rlc_feature_version;
1168 uint32_t mec_feature_version;
1169 uint32_t mec2_feature_version;
Alex Deucher97b2e202015-04-20 16:51:00 -04001170 struct amdgpu_ring gfx_ring[AMDGPU_MAX_GFX_RINGS];
1171 unsigned num_gfx_rings;
1172 struct amdgpu_ring compute_ring[AMDGPU_MAX_COMPUTE_RINGS];
1173 unsigned num_compute_rings;
1174 struct amdgpu_irq_src eop_irq;
1175 struct amdgpu_irq_src priv_reg_irq;
1176 struct amdgpu_irq_src priv_inst_irq;
1177 /* gfx status */
1178 uint32_t gfx_current_status;
1179 /* sync signal for const engine */
1180 unsigned ce_sync_offs;
Ken Wanga101a892015-06-03 17:47:54 +08001181 /* ce ram size*/
1182 unsigned ce_ram_size;
Alex Deucher97b2e202015-04-20 16:51:00 -04001183};
1184
1185int amdgpu_ib_get(struct amdgpu_ring *ring, struct amdgpu_vm *vm,
1186 unsigned size, struct amdgpu_ib *ib);
1187void amdgpu_ib_free(struct amdgpu_device *adev, struct amdgpu_ib *ib);
1188int amdgpu_ib_schedule(struct amdgpu_device *adev, unsigned num_ibs,
1189 struct amdgpu_ib *ib, void *owner);
1190int amdgpu_ib_pool_init(struct amdgpu_device *adev);
1191void amdgpu_ib_pool_fini(struct amdgpu_device *adev);
1192int amdgpu_ib_ring_tests(struct amdgpu_device *adev);
1193/* Ring access between begin & end cannot sleep */
1194void amdgpu_ring_free_size(struct amdgpu_ring *ring);
1195int amdgpu_ring_alloc(struct amdgpu_ring *ring, unsigned ndw);
1196int amdgpu_ring_lock(struct amdgpu_ring *ring, unsigned ndw);
1197void amdgpu_ring_commit(struct amdgpu_ring *ring);
1198void amdgpu_ring_unlock_commit(struct amdgpu_ring *ring);
1199void amdgpu_ring_undo(struct amdgpu_ring *ring);
1200void amdgpu_ring_unlock_undo(struct amdgpu_ring *ring);
1201void amdgpu_ring_lockup_update(struct amdgpu_ring *ring);
1202bool amdgpu_ring_test_lockup(struct amdgpu_ring *ring);
1203unsigned amdgpu_ring_backup(struct amdgpu_ring *ring,
1204 uint32_t **data);
1205int amdgpu_ring_restore(struct amdgpu_ring *ring,
1206 unsigned size, uint32_t *data);
1207int amdgpu_ring_init(struct amdgpu_device *adev, struct amdgpu_ring *ring,
1208 unsigned ring_size, u32 nop, u32 align_mask,
1209 struct amdgpu_irq_src *irq_src, unsigned irq_type,
1210 enum amdgpu_ring_type ring_type);
1211void amdgpu_ring_fini(struct amdgpu_ring *ring);
1212
1213/*
1214 * CS.
1215 */
1216struct amdgpu_cs_chunk {
1217 uint32_t chunk_id;
1218 uint32_t length_dw;
1219 uint32_t *kdata;
1220 void __user *user_ptr;
1221};
1222
1223struct amdgpu_cs_parser {
1224 struct amdgpu_device *adev;
1225 struct drm_file *filp;
Christian König3cb485f2015-05-11 15:34:59 +02001226 struct amdgpu_ctx *ctx;
Alex Deucher97b2e202015-04-20 16:51:00 -04001227 struct amdgpu_bo_list *bo_list;
1228 /* chunks */
1229 unsigned nchunks;
1230 struct amdgpu_cs_chunk *chunks;
1231 /* relocations */
1232 struct amdgpu_bo_list_entry *vm_bos;
Alex Deucher97b2e202015-04-20 16:51:00 -04001233 struct list_head validated;
1234
1235 struct amdgpu_ib *ibs;
1236 uint32_t num_ibs;
1237
1238 struct ww_acquire_ctx ticket;
1239
1240 /* user fence */
1241 struct amdgpu_user_fence uf;
Chunming Zhouc1b69ed2015-07-21 13:45:14 +08001242
Chunming Zhou4b559c92015-07-21 15:53:04 +08001243 struct amdgpu_ring *ring;
Chunming Zhouc1b69ed2015-07-21 13:45:14 +08001244 struct mutex job_lock;
1245 struct work_struct job_work;
1246 int (*prepare_job)(struct amdgpu_cs_parser *sched_job);
1247 int (*run_job)(struct amdgpu_cs_parser *sched_job);
Chunming Zhou049fc522015-07-21 14:36:51 +08001248 int (*free_job)(struct amdgpu_cs_parser *sched_job);
Alex Deucher97b2e202015-04-20 16:51:00 -04001249};
1250
1251static inline u32 amdgpu_get_ib_value(struct amdgpu_cs_parser *p, uint32_t ib_idx, int idx)
1252{
1253 return p->ibs[ib_idx].ptr[idx];
1254}
1255
1256/*
1257 * Writeback
1258 */
1259#define AMDGPU_MAX_WB 1024 /* Reserve at most 1024 WB slots for amdgpu-owned rings. */
1260
1261struct amdgpu_wb {
1262 struct amdgpu_bo *wb_obj;
1263 volatile uint32_t *wb;
1264 uint64_t gpu_addr;
1265 u32 num_wb; /* Number of wb slots actually reserved for amdgpu. */
1266 unsigned long used[DIV_ROUND_UP(AMDGPU_MAX_WB, BITS_PER_LONG)];
1267};
1268
1269int amdgpu_wb_get(struct amdgpu_device *adev, u32 *wb);
1270void amdgpu_wb_free(struct amdgpu_device *adev, u32 wb);
1271
1272/**
1273 * struct amdgpu_pm - power management datas
1274 * It keeps track of various data needed to take powermanagement decision.
1275 */
1276
1277enum amdgpu_pm_state_type {
1278 /* not used for dpm */
1279 POWER_STATE_TYPE_DEFAULT,
1280 POWER_STATE_TYPE_POWERSAVE,
1281 /* user selectable states */
1282 POWER_STATE_TYPE_BATTERY,
1283 POWER_STATE_TYPE_BALANCED,
1284 POWER_STATE_TYPE_PERFORMANCE,
1285 /* internal states */
1286 POWER_STATE_TYPE_INTERNAL_UVD,
1287 POWER_STATE_TYPE_INTERNAL_UVD_SD,
1288 POWER_STATE_TYPE_INTERNAL_UVD_HD,
1289 POWER_STATE_TYPE_INTERNAL_UVD_HD2,
1290 POWER_STATE_TYPE_INTERNAL_UVD_MVC,
1291 POWER_STATE_TYPE_INTERNAL_BOOT,
1292 POWER_STATE_TYPE_INTERNAL_THERMAL,
1293 POWER_STATE_TYPE_INTERNAL_ACPI,
1294 POWER_STATE_TYPE_INTERNAL_ULV,
1295 POWER_STATE_TYPE_INTERNAL_3DPERF,
1296};
1297
1298enum amdgpu_int_thermal_type {
1299 THERMAL_TYPE_NONE,
1300 THERMAL_TYPE_EXTERNAL,
1301 THERMAL_TYPE_EXTERNAL_GPIO,
1302 THERMAL_TYPE_RV6XX,
1303 THERMAL_TYPE_RV770,
1304 THERMAL_TYPE_ADT7473_WITH_INTERNAL,
1305 THERMAL_TYPE_EVERGREEN,
1306 THERMAL_TYPE_SUMO,
1307 THERMAL_TYPE_NI,
1308 THERMAL_TYPE_SI,
1309 THERMAL_TYPE_EMC2103_WITH_INTERNAL,
1310 THERMAL_TYPE_CI,
1311 THERMAL_TYPE_KV,
1312};
1313
1314enum amdgpu_dpm_auto_throttle_src {
1315 AMDGPU_DPM_AUTO_THROTTLE_SRC_THERMAL,
1316 AMDGPU_DPM_AUTO_THROTTLE_SRC_EXTERNAL
1317};
1318
1319enum amdgpu_dpm_event_src {
1320 AMDGPU_DPM_EVENT_SRC_ANALOG = 0,
1321 AMDGPU_DPM_EVENT_SRC_EXTERNAL = 1,
1322 AMDGPU_DPM_EVENT_SRC_DIGITAL = 2,
1323 AMDGPU_DPM_EVENT_SRC_ANALOG_OR_EXTERNAL = 3,
1324 AMDGPU_DPM_EVENT_SRC_DIGIAL_OR_EXTERNAL = 4
1325};
1326
1327#define AMDGPU_MAX_VCE_LEVELS 6
1328
1329enum amdgpu_vce_level {
1330 AMDGPU_VCE_LEVEL_AC_ALL = 0, /* AC, All cases */
1331 AMDGPU_VCE_LEVEL_DC_EE = 1, /* DC, entropy encoding */
1332 AMDGPU_VCE_LEVEL_DC_LL_LOW = 2, /* DC, low latency queue, res <= 720 */
1333 AMDGPU_VCE_LEVEL_DC_LL_HIGH = 3, /* DC, low latency queue, 1080 >= res > 720 */
1334 AMDGPU_VCE_LEVEL_DC_GP_LOW = 4, /* DC, general purpose queue, res <= 720 */
1335 AMDGPU_VCE_LEVEL_DC_GP_HIGH = 5, /* DC, general purpose queue, 1080 >= res > 720 */
1336};
1337
1338struct amdgpu_ps {
1339 u32 caps; /* vbios flags */
1340 u32 class; /* vbios flags */
1341 u32 class2; /* vbios flags */
1342 /* UVD clocks */
1343 u32 vclk;
1344 u32 dclk;
1345 /* VCE clocks */
1346 u32 evclk;
1347 u32 ecclk;
1348 bool vce_active;
1349 enum amdgpu_vce_level vce_level;
1350 /* asic priv */
1351 void *ps_priv;
1352};
1353
1354struct amdgpu_dpm_thermal {
1355 /* thermal interrupt work */
1356 struct work_struct work;
1357 /* low temperature threshold */
1358 int min_temp;
1359 /* high temperature threshold */
1360 int max_temp;
1361 /* was last interrupt low to high or high to low */
1362 bool high_to_low;
1363 /* interrupt source */
1364 struct amdgpu_irq_src irq;
1365};
1366
1367enum amdgpu_clk_action
1368{
1369 AMDGPU_SCLK_UP = 1,
1370 AMDGPU_SCLK_DOWN
1371};
1372
1373struct amdgpu_blacklist_clocks
1374{
1375 u32 sclk;
1376 u32 mclk;
1377 enum amdgpu_clk_action action;
1378};
1379
1380struct amdgpu_clock_and_voltage_limits {
1381 u32 sclk;
1382 u32 mclk;
1383 u16 vddc;
1384 u16 vddci;
1385};
1386
1387struct amdgpu_clock_array {
1388 u32 count;
1389 u32 *values;
1390};
1391
1392struct amdgpu_clock_voltage_dependency_entry {
1393 u32 clk;
1394 u16 v;
1395};
1396
1397struct amdgpu_clock_voltage_dependency_table {
1398 u32 count;
1399 struct amdgpu_clock_voltage_dependency_entry *entries;
1400};
1401
1402union amdgpu_cac_leakage_entry {
1403 struct {
1404 u16 vddc;
1405 u32 leakage;
1406 };
1407 struct {
1408 u16 vddc1;
1409 u16 vddc2;
1410 u16 vddc3;
1411 };
1412};
1413
1414struct amdgpu_cac_leakage_table {
1415 u32 count;
1416 union amdgpu_cac_leakage_entry *entries;
1417};
1418
1419struct amdgpu_phase_shedding_limits_entry {
1420 u16 voltage;
1421 u32 sclk;
1422 u32 mclk;
1423};
1424
1425struct amdgpu_phase_shedding_limits_table {
1426 u32 count;
1427 struct amdgpu_phase_shedding_limits_entry *entries;
1428};
1429
1430struct amdgpu_uvd_clock_voltage_dependency_entry {
1431 u32 vclk;
1432 u32 dclk;
1433 u16 v;
1434};
1435
1436struct amdgpu_uvd_clock_voltage_dependency_table {
1437 u8 count;
1438 struct amdgpu_uvd_clock_voltage_dependency_entry *entries;
1439};
1440
1441struct amdgpu_vce_clock_voltage_dependency_entry {
1442 u32 ecclk;
1443 u32 evclk;
1444 u16 v;
1445};
1446
1447struct amdgpu_vce_clock_voltage_dependency_table {
1448 u8 count;
1449 struct amdgpu_vce_clock_voltage_dependency_entry *entries;
1450};
1451
1452struct amdgpu_ppm_table {
1453 u8 ppm_design;
1454 u16 cpu_core_number;
1455 u32 platform_tdp;
1456 u32 small_ac_platform_tdp;
1457 u32 platform_tdc;
1458 u32 small_ac_platform_tdc;
1459 u32 apu_tdp;
1460 u32 dgpu_tdp;
1461 u32 dgpu_ulv_power;
1462 u32 tj_max;
1463};
1464
1465struct amdgpu_cac_tdp_table {
1466 u16 tdp;
1467 u16 configurable_tdp;
1468 u16 tdc;
1469 u16 battery_power_limit;
1470 u16 small_power_limit;
1471 u16 low_cac_leakage;
1472 u16 high_cac_leakage;
1473 u16 maximum_power_delivery_limit;
1474};
1475
1476struct amdgpu_dpm_dynamic_state {
1477 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_sclk;
1478 struct amdgpu_clock_voltage_dependency_table vddci_dependency_on_mclk;
1479 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_mclk;
1480 struct amdgpu_clock_voltage_dependency_table mvdd_dependency_on_mclk;
1481 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_dispclk;
1482 struct amdgpu_uvd_clock_voltage_dependency_table uvd_clock_voltage_dependency_table;
1483 struct amdgpu_vce_clock_voltage_dependency_table vce_clock_voltage_dependency_table;
1484 struct amdgpu_clock_voltage_dependency_table samu_clock_voltage_dependency_table;
1485 struct amdgpu_clock_voltage_dependency_table acp_clock_voltage_dependency_table;
1486 struct amdgpu_clock_voltage_dependency_table vddgfx_dependency_on_sclk;
1487 struct amdgpu_clock_array valid_sclk_values;
1488 struct amdgpu_clock_array valid_mclk_values;
1489 struct amdgpu_clock_and_voltage_limits max_clock_voltage_on_dc;
1490 struct amdgpu_clock_and_voltage_limits max_clock_voltage_on_ac;
1491 u32 mclk_sclk_ratio;
1492 u32 sclk_mclk_delta;
1493 u16 vddc_vddci_delta;
1494 u16 min_vddc_for_pcie_gen2;
1495 struct amdgpu_cac_leakage_table cac_leakage_table;
1496 struct amdgpu_phase_shedding_limits_table phase_shedding_limits_table;
1497 struct amdgpu_ppm_table *ppm_table;
1498 struct amdgpu_cac_tdp_table *cac_tdp_table;
1499};
1500
1501struct amdgpu_dpm_fan {
1502 u16 t_min;
1503 u16 t_med;
1504 u16 t_high;
1505 u16 pwm_min;
1506 u16 pwm_med;
1507 u16 pwm_high;
1508 u8 t_hyst;
1509 u32 cycle_delay;
1510 u16 t_max;
1511 u8 control_mode;
1512 u16 default_max_fan_pwm;
1513 u16 default_fan_output_sensitivity;
1514 u16 fan_output_sensitivity;
1515 bool ucode_fan_control;
1516};
1517
1518enum amdgpu_pcie_gen {
1519 AMDGPU_PCIE_GEN1 = 0,
1520 AMDGPU_PCIE_GEN2 = 1,
1521 AMDGPU_PCIE_GEN3 = 2,
1522 AMDGPU_PCIE_GEN_INVALID = 0xffff
1523};
1524
1525enum amdgpu_dpm_forced_level {
1526 AMDGPU_DPM_FORCED_LEVEL_AUTO = 0,
1527 AMDGPU_DPM_FORCED_LEVEL_LOW = 1,
1528 AMDGPU_DPM_FORCED_LEVEL_HIGH = 2,
1529};
1530
1531struct amdgpu_vce_state {
1532 /* vce clocks */
1533 u32 evclk;
1534 u32 ecclk;
1535 /* gpu clocks */
1536 u32 sclk;
1537 u32 mclk;
1538 u8 clk_idx;
1539 u8 pstate;
1540};
1541
1542struct amdgpu_dpm_funcs {
1543 int (*get_temperature)(struct amdgpu_device *adev);
1544 int (*pre_set_power_state)(struct amdgpu_device *adev);
1545 int (*set_power_state)(struct amdgpu_device *adev);
1546 void (*post_set_power_state)(struct amdgpu_device *adev);
1547 void (*display_configuration_changed)(struct amdgpu_device *adev);
1548 u32 (*get_sclk)(struct amdgpu_device *adev, bool low);
1549 u32 (*get_mclk)(struct amdgpu_device *adev, bool low);
1550 void (*print_power_state)(struct amdgpu_device *adev, struct amdgpu_ps *ps);
1551 void (*debugfs_print_current_performance_level)(struct amdgpu_device *adev, struct seq_file *m);
1552 int (*force_performance_level)(struct amdgpu_device *adev, enum amdgpu_dpm_forced_level level);
1553 bool (*vblank_too_short)(struct amdgpu_device *adev);
1554 void (*powergate_uvd)(struct amdgpu_device *adev, bool gate);
Sonny Jiangb7a07762015-05-28 15:47:53 -04001555 void (*powergate_vce)(struct amdgpu_device *adev, bool gate);
Alex Deucher97b2e202015-04-20 16:51:00 -04001556 void (*enable_bapm)(struct amdgpu_device *adev, bool enable);
1557 void (*set_fan_control_mode)(struct amdgpu_device *adev, u32 mode);
1558 u32 (*get_fan_control_mode)(struct amdgpu_device *adev);
1559 int (*set_fan_speed_percent)(struct amdgpu_device *adev, u32 speed);
1560 int (*get_fan_speed_percent)(struct amdgpu_device *adev, u32 *speed);
1561};
1562
1563struct amdgpu_dpm {
1564 struct amdgpu_ps *ps;
1565 /* number of valid power states */
1566 int num_ps;
1567 /* current power state that is active */
1568 struct amdgpu_ps *current_ps;
1569 /* requested power state */
1570 struct amdgpu_ps *requested_ps;
1571 /* boot up power state */
1572 struct amdgpu_ps *boot_ps;
1573 /* default uvd power state */
1574 struct amdgpu_ps *uvd_ps;
1575 /* vce requirements */
1576 struct amdgpu_vce_state vce_states[AMDGPU_MAX_VCE_LEVELS];
1577 enum amdgpu_vce_level vce_level;
1578 enum amdgpu_pm_state_type state;
1579 enum amdgpu_pm_state_type user_state;
1580 u32 platform_caps;
1581 u32 voltage_response_time;
1582 u32 backbias_response_time;
1583 void *priv;
1584 u32 new_active_crtcs;
1585 int new_active_crtc_count;
1586 u32 current_active_crtcs;
1587 int current_active_crtc_count;
1588 struct amdgpu_dpm_dynamic_state dyn_state;
1589 struct amdgpu_dpm_fan fan;
1590 u32 tdp_limit;
1591 u32 near_tdp_limit;
1592 u32 near_tdp_limit_adjusted;
1593 u32 sq_ramping_threshold;
1594 u32 cac_leakage;
1595 u16 tdp_od_limit;
1596 u32 tdp_adjustment;
1597 u16 load_line_slope;
1598 bool power_control;
1599 bool ac_power;
1600 /* special states active */
1601 bool thermal_active;
1602 bool uvd_active;
1603 bool vce_active;
1604 /* thermal handling */
1605 struct amdgpu_dpm_thermal thermal;
1606 /* forced levels */
1607 enum amdgpu_dpm_forced_level forced_level;
1608};
1609
1610struct amdgpu_pm {
1611 struct mutex mutex;
Alex Deucher97b2e202015-04-20 16:51:00 -04001612 u32 current_sclk;
1613 u32 current_mclk;
1614 u32 default_sclk;
1615 u32 default_mclk;
1616 struct amdgpu_i2c_chan *i2c_bus;
1617 /* internal thermal controller on rv6xx+ */
1618 enum amdgpu_int_thermal_type int_thermal_type;
1619 struct device *int_hwmon_dev;
1620 /* fan control parameters */
1621 bool no_fan;
1622 u8 fan_pulses_per_revolution;
1623 u8 fan_min_rpm;
1624 u8 fan_max_rpm;
1625 /* dpm */
1626 bool dpm_enabled;
1627 struct amdgpu_dpm dpm;
1628 const struct firmware *fw; /* SMC firmware */
1629 uint32_t fw_version;
1630 const struct amdgpu_dpm_funcs *funcs;
1631};
1632
1633/*
1634 * UVD
1635 */
1636#define AMDGPU_MAX_UVD_HANDLES 10
1637#define AMDGPU_UVD_STACK_SIZE (1024*1024)
1638#define AMDGPU_UVD_HEAP_SIZE (1024*1024)
1639#define AMDGPU_UVD_FIRMWARE_OFFSET 256
1640
1641struct amdgpu_uvd {
1642 struct amdgpu_bo *vcpu_bo;
1643 void *cpu_addr;
1644 uint64_t gpu_addr;
1645 void *saved_bo;
1646 atomic_t handles[AMDGPU_MAX_UVD_HANDLES];
1647 struct drm_file *filp[AMDGPU_MAX_UVD_HANDLES];
1648 struct delayed_work idle_work;
1649 const struct firmware *fw; /* UVD firmware */
1650 struct amdgpu_ring ring;
1651 struct amdgpu_irq_src irq;
1652 bool address_64_bit;
1653};
1654
1655/*
1656 * VCE
1657 */
1658#define AMDGPU_MAX_VCE_HANDLES 16
Alex Deucher97b2e202015-04-20 16:51:00 -04001659#define AMDGPU_VCE_FIRMWARE_OFFSET 256
1660
Alex Deucher6a585772015-07-10 14:16:24 -04001661#define AMDGPU_VCE_HARVEST_VCE0 (1 << 0)
1662#define AMDGPU_VCE_HARVEST_VCE1 (1 << 1)
1663
Alex Deucher97b2e202015-04-20 16:51:00 -04001664struct amdgpu_vce {
1665 struct amdgpu_bo *vcpu_bo;
1666 uint64_t gpu_addr;
1667 unsigned fw_version;
1668 unsigned fb_version;
1669 atomic_t handles[AMDGPU_MAX_VCE_HANDLES];
1670 struct drm_file *filp[AMDGPU_MAX_VCE_HANDLES];
Christian Königf1689ec2015-06-11 20:56:18 +02001671 uint32_t img_size[AMDGPU_MAX_VCE_HANDLES];
Alex Deucher97b2e202015-04-20 16:51:00 -04001672 struct delayed_work idle_work;
1673 const struct firmware *fw; /* VCE firmware */
1674 struct amdgpu_ring ring[AMDGPU_MAX_VCE_RINGS];
1675 struct amdgpu_irq_src irq;
Alex Deucher6a585772015-07-10 14:16:24 -04001676 unsigned harvest_config;
Alex Deucher97b2e202015-04-20 16:51:00 -04001677};
1678
1679/*
1680 * SDMA
1681 */
1682struct amdgpu_sdma {
1683 /* SDMA firmware */
1684 const struct firmware *fw;
1685 uint32_t fw_version;
Jammy Zhoucfa21042015-08-04 10:50:47 +08001686 uint32_t feature_version;
Alex Deucher97b2e202015-04-20 16:51:00 -04001687
1688 struct amdgpu_ring ring;
1689};
1690
1691/*
1692 * Firmware
1693 */
1694struct amdgpu_firmware {
1695 struct amdgpu_firmware_info ucode[AMDGPU_UCODE_ID_MAXIMUM];
1696 bool smu_load;
1697 struct amdgpu_bo *fw_buf;
1698 unsigned int fw_size;
1699};
1700
1701/*
1702 * Benchmarking
1703 */
1704void amdgpu_benchmark(struct amdgpu_device *adev, int test_number);
1705
1706
1707/*
1708 * Testing
1709 */
1710void amdgpu_test_moves(struct amdgpu_device *adev);
1711void amdgpu_test_ring_sync(struct amdgpu_device *adev,
1712 struct amdgpu_ring *cpA,
1713 struct amdgpu_ring *cpB);
1714void amdgpu_test_syncing(struct amdgpu_device *adev);
1715
1716/*
1717 * MMU Notifier
1718 */
1719#if defined(CONFIG_MMU_NOTIFIER)
1720int amdgpu_mn_register(struct amdgpu_bo *bo, unsigned long addr);
1721void amdgpu_mn_unregister(struct amdgpu_bo *bo);
1722#else
1723static int amdgpu_mn_register(struct amdgpu_bo *bo, unsigned long addr)
1724{
1725 return -ENODEV;
1726}
1727static void amdgpu_mn_unregister(struct amdgpu_bo *bo) {}
1728#endif
1729
1730/*
1731 * Debugfs
1732 */
1733struct amdgpu_debugfs {
1734 struct drm_info_list *files;
1735 unsigned num_files;
1736};
1737
1738int amdgpu_debugfs_add_files(struct amdgpu_device *adev,
1739 struct drm_info_list *files,
1740 unsigned nfiles);
1741int amdgpu_debugfs_fence_init(struct amdgpu_device *adev);
1742
1743#if defined(CONFIG_DEBUG_FS)
1744int amdgpu_debugfs_init(struct drm_minor *minor);
1745void amdgpu_debugfs_cleanup(struct drm_minor *minor);
1746#endif
1747
1748/*
1749 * amdgpu smumgr functions
1750 */
1751struct amdgpu_smumgr_funcs {
1752 int (*check_fw_load_finish)(struct amdgpu_device *adev, uint32_t fwtype);
1753 int (*request_smu_load_fw)(struct amdgpu_device *adev);
1754 int (*request_smu_specific_fw)(struct amdgpu_device *adev, uint32_t fwtype);
1755};
1756
1757/*
1758 * amdgpu smumgr
1759 */
1760struct amdgpu_smumgr {
1761 struct amdgpu_bo *toc_buf;
1762 struct amdgpu_bo *smu_buf;
1763 /* asic priv smu data */
1764 void *priv;
1765 spinlock_t smu_lock;
1766 /* smumgr functions */
1767 const struct amdgpu_smumgr_funcs *smumgr_funcs;
1768 /* ucode loading complete flag */
1769 uint32_t fw_flags;
1770};
1771
1772/*
1773 * ASIC specific register table accessible by UMD
1774 */
1775struct amdgpu_allowed_register_entry {
1776 uint32_t reg_offset;
1777 bool untouched;
1778 bool grbm_indexed;
1779};
1780
1781struct amdgpu_cu_info {
1782 uint32_t number; /* total active CU number */
1783 uint32_t ao_cu_mask;
1784 uint32_t bitmap[4][4];
1785};
1786
1787
1788/*
1789 * ASIC specific functions.
1790 */
1791struct amdgpu_asic_funcs {
1792 bool (*read_disabled_bios)(struct amdgpu_device *adev);
1793 int (*read_register)(struct amdgpu_device *adev, u32 se_num,
1794 u32 sh_num, u32 reg_offset, u32 *value);
1795 void (*set_vga_state)(struct amdgpu_device *adev, bool state);
1796 int (*reset)(struct amdgpu_device *adev);
1797 /* wait for mc_idle */
1798 int (*wait_for_mc_idle)(struct amdgpu_device *adev);
1799 /* get the reference clock */
1800 u32 (*get_xclk)(struct amdgpu_device *adev);
1801 /* get the gpu clock counter */
1802 uint64_t (*get_gpu_clock_counter)(struct amdgpu_device *adev);
1803 int (*get_cu_info)(struct amdgpu_device *adev, struct amdgpu_cu_info *info);
1804 /* MM block clocks */
1805 int (*set_uvd_clocks)(struct amdgpu_device *adev, u32 vclk, u32 dclk);
1806 int (*set_vce_clocks)(struct amdgpu_device *adev, u32 evclk, u32 ecclk);
1807};
1808
1809/*
1810 * IOCTL.
1811 */
1812int amdgpu_gem_create_ioctl(struct drm_device *dev, void *data,
1813 struct drm_file *filp);
1814int amdgpu_bo_list_ioctl(struct drm_device *dev, void *data,
1815 struct drm_file *filp);
1816
1817int amdgpu_gem_info_ioctl(struct drm_device *dev, void *data,
1818 struct drm_file *filp);
1819int amdgpu_gem_userptr_ioctl(struct drm_device *dev, void *data,
1820 struct drm_file *filp);
1821int amdgpu_gem_mmap_ioctl(struct drm_device *dev, void *data,
1822 struct drm_file *filp);
1823int amdgpu_gem_wait_idle_ioctl(struct drm_device *dev, void *data,
1824 struct drm_file *filp);
1825int amdgpu_gem_va_ioctl(struct drm_device *dev, void *data,
1826 struct drm_file *filp);
1827int amdgpu_gem_op_ioctl(struct drm_device *dev, void *data,
1828 struct drm_file *filp);
1829int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
1830int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
1831
1832int amdgpu_gem_metadata_ioctl(struct drm_device *dev, void *data,
1833 struct drm_file *filp);
1834
1835/* VRAM scratch page for HDP bug, default vram page */
1836struct amdgpu_vram_scratch {
1837 struct amdgpu_bo *robj;
1838 volatile uint32_t *ptr;
1839 u64 gpu_addr;
1840};
1841
1842/*
1843 * ACPI
1844 */
1845struct amdgpu_atif_notification_cfg {
1846 bool enabled;
1847 int command_code;
1848};
1849
1850struct amdgpu_atif_notifications {
1851 bool display_switch;
1852 bool expansion_mode_change;
1853 bool thermal_state;
1854 bool forced_power_state;
1855 bool system_power_state;
1856 bool display_conf_change;
1857 bool px_gfx_switch;
1858 bool brightness_change;
1859 bool dgpu_display_event;
1860};
1861
1862struct amdgpu_atif_functions {
1863 bool system_params;
1864 bool sbios_requests;
1865 bool select_active_disp;
1866 bool lid_state;
1867 bool get_tv_standard;
1868 bool set_tv_standard;
1869 bool get_panel_expansion_mode;
1870 bool set_panel_expansion_mode;
1871 bool temperature_change;
1872 bool graphics_device_types;
1873};
1874
1875struct amdgpu_atif {
1876 struct amdgpu_atif_notifications notifications;
1877 struct amdgpu_atif_functions functions;
1878 struct amdgpu_atif_notification_cfg notification_cfg;
1879 struct amdgpu_encoder *encoder_for_bl;
1880};
1881
1882struct amdgpu_atcs_functions {
1883 bool get_ext_state;
1884 bool pcie_perf_req;
1885 bool pcie_dev_rdy;
1886 bool pcie_bus_width;
1887};
1888
1889struct amdgpu_atcs {
1890 struct amdgpu_atcs_functions functions;
1891};
1892
Alex Deucher97b2e202015-04-20 16:51:00 -04001893/*
Chunming Zhoud03846a2015-07-28 14:20:03 -04001894 * CGS
1895 */
1896void *amdgpu_cgs_create_device(struct amdgpu_device *adev);
1897void amdgpu_cgs_destroy_device(void *cgs_device);
1898
1899
1900/*
Alex Deucher97b2e202015-04-20 16:51:00 -04001901 * Core structure, functions and helpers.
1902 */
1903typedef uint32_t (*amdgpu_rreg_t)(struct amdgpu_device*, uint32_t);
1904typedef void (*amdgpu_wreg_t)(struct amdgpu_device*, uint32_t, uint32_t);
1905
1906typedef uint32_t (*amdgpu_block_rreg_t)(struct amdgpu_device*, uint32_t, uint32_t);
1907typedef void (*amdgpu_block_wreg_t)(struct amdgpu_device*, uint32_t, uint32_t, uint32_t);
1908
Alex Deucher8faf0e02015-07-28 11:50:31 -04001909struct amdgpu_ip_block_status {
1910 bool valid;
1911 bool sw;
1912 bool hw;
1913};
1914
Alex Deucher97b2e202015-04-20 16:51:00 -04001915struct amdgpu_device {
1916 struct device *dev;
1917 struct drm_device *ddev;
1918 struct pci_dev *pdev;
1919 struct rw_semaphore exclusive_lock;
1920
1921 /* ASIC */
Jammy Zhou2f7d10b2015-07-22 11:29:01 +08001922 enum amd_asic_type asic_type;
Alex Deucher97b2e202015-04-20 16:51:00 -04001923 uint32_t family;
1924 uint32_t rev_id;
1925 uint32_t external_rev_id;
1926 unsigned long flags;
1927 int usec_timeout;
1928 const struct amdgpu_asic_funcs *asic_funcs;
1929 bool shutdown;
1930 bool suspend;
1931 bool need_dma32;
1932 bool accel_working;
1933 bool needs_reset;
1934 struct work_struct reset_work;
1935 struct notifier_block acpi_nb;
1936 struct amdgpu_i2c_chan *i2c_bus[AMDGPU_MAX_I2C_BUS];
1937 struct amdgpu_debugfs debugfs[AMDGPU_DEBUGFS_MAX_COMPONENTS];
1938 unsigned debugfs_count;
1939#if defined(CONFIG_DEBUG_FS)
1940 struct dentry *debugfs_regs;
1941#endif
1942 struct amdgpu_atif atif;
1943 struct amdgpu_atcs atcs;
1944 struct mutex srbm_mutex;
1945 /* GRBM index mutex. Protects concurrent access to GRBM index */
1946 struct mutex grbm_idx_mutex;
1947 struct dev_pm_domain vga_pm_domain;
1948 bool have_disp_power_ref;
1949
1950 /* BIOS */
1951 uint8_t *bios;
1952 bool is_atom_bios;
1953 uint16_t bios_header_start;
1954 struct amdgpu_bo *stollen_vga_memory;
1955 uint32_t bios_scratch[AMDGPU_BIOS_NUM_SCRATCH];
1956
1957 /* Register/doorbell mmio */
1958 resource_size_t rmmio_base;
1959 resource_size_t rmmio_size;
1960 void __iomem *rmmio;
1961 /* protects concurrent MM_INDEX/DATA based register access */
1962 spinlock_t mmio_idx_lock;
1963 /* protects concurrent SMC based register access */
1964 spinlock_t smc_idx_lock;
1965 amdgpu_rreg_t smc_rreg;
1966 amdgpu_wreg_t smc_wreg;
1967 /* protects concurrent PCIE register access */
1968 spinlock_t pcie_idx_lock;
1969 amdgpu_rreg_t pcie_rreg;
1970 amdgpu_wreg_t pcie_wreg;
1971 /* protects concurrent UVD register access */
1972 spinlock_t uvd_ctx_idx_lock;
1973 amdgpu_rreg_t uvd_ctx_rreg;
1974 amdgpu_wreg_t uvd_ctx_wreg;
1975 /* protects concurrent DIDT register access */
1976 spinlock_t didt_idx_lock;
1977 amdgpu_rreg_t didt_rreg;
1978 amdgpu_wreg_t didt_wreg;
1979 /* protects concurrent ENDPOINT (audio) register access */
1980 spinlock_t audio_endpt_idx_lock;
1981 amdgpu_block_rreg_t audio_endpt_rreg;
1982 amdgpu_block_wreg_t audio_endpt_wreg;
1983 void __iomem *rio_mem;
1984 resource_size_t rio_mem_size;
1985 struct amdgpu_doorbell doorbell;
1986
1987 /* clock/pll info */
1988 struct amdgpu_clock clock;
1989
1990 /* MC */
1991 struct amdgpu_mc mc;
1992 struct amdgpu_gart gart;
1993 struct amdgpu_dummy_page dummy_page;
1994 struct amdgpu_vm_manager vm_manager;
1995
1996 /* memory management */
1997 struct amdgpu_mman mman;
1998 struct amdgpu_gem gem;
1999 struct amdgpu_vram_scratch vram_scratch;
2000 struct amdgpu_wb wb;
2001 atomic64_t vram_usage;
2002 atomic64_t vram_vis_usage;
2003 atomic64_t gtt_usage;
2004 atomic64_t num_bytes_moved;
Marek Olšákd94aed52015-05-05 21:13:49 +02002005 atomic_t gpu_reset_counter;
Alex Deucher97b2e202015-04-20 16:51:00 -04002006
2007 /* display */
2008 struct amdgpu_mode_info mode_info;
2009 struct work_struct hotplug_work;
2010 struct amdgpu_irq_src crtc_irq;
2011 struct amdgpu_irq_src pageflip_irq;
2012 struct amdgpu_irq_src hpd_irq;
2013
2014 /* rings */
2015 wait_queue_head_t fence_queue;
2016 unsigned fence_context;
2017 struct mutex ring_lock;
2018 unsigned num_rings;
2019 struct amdgpu_ring *rings[AMDGPU_MAX_RINGS];
2020 bool ib_pool_ready;
2021 struct amdgpu_sa_manager ring_tmp_bo;
2022
2023 /* interrupts */
2024 struct amdgpu_irq irq;
2025
2026 /* dpm */
2027 struct amdgpu_pm pm;
2028 u32 cg_flags;
2029 u32 pg_flags;
2030
2031 /* amdgpu smumgr */
2032 struct amdgpu_smumgr smu;
2033
2034 /* gfx */
2035 struct amdgpu_gfx gfx;
2036
2037 /* sdma */
2038 struct amdgpu_sdma sdma[2];
2039 struct amdgpu_irq_src sdma_trap_irq;
2040 struct amdgpu_irq_src sdma_illegal_inst_irq;
2041
2042 /* uvd */
2043 bool has_uvd;
2044 struct amdgpu_uvd uvd;
2045
2046 /* vce */
2047 struct amdgpu_vce vce;
2048
2049 /* firmwares */
2050 struct amdgpu_firmware firmware;
2051
2052 /* GDS */
2053 struct amdgpu_gds gds;
2054
2055 const struct amdgpu_ip_block_version *ip_blocks;
2056 int num_ip_blocks;
Alex Deucher8faf0e02015-07-28 11:50:31 -04002057 struct amdgpu_ip_block_status *ip_block_status;
Alex Deucher97b2e202015-04-20 16:51:00 -04002058 struct mutex mn_lock;
2059 DECLARE_HASHTABLE(mn_hash, 7);
2060
2061 /* tracking pinned memory */
2062 u64 vram_pin_size;
2063 u64 gart_pin_size;
Oded Gabbay130e0372015-06-12 21:35:14 +03002064
2065 /* amdkfd interface */
2066 struct kfd_dev *kfd;
Alex Deucher97b2e202015-04-20 16:51:00 -04002067};
2068
2069bool amdgpu_device_is_px(struct drm_device *dev);
2070int amdgpu_device_init(struct amdgpu_device *adev,
2071 struct drm_device *ddev,
2072 struct pci_dev *pdev,
2073 uint32_t flags);
2074void amdgpu_device_fini(struct amdgpu_device *adev);
2075int amdgpu_gpu_wait_for_idle(struct amdgpu_device *adev);
2076
2077uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg,
2078 bool always_indirect);
2079void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
2080 bool always_indirect);
2081u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg);
2082void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v);
2083
2084u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index);
2085void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v);
2086
2087/*
2088 * Cast helper
2089 */
2090extern const struct fence_ops amdgpu_fence_ops;
2091static inline struct amdgpu_fence *to_amdgpu_fence(struct fence *f)
2092{
2093 struct amdgpu_fence *__f = container_of(f, struct amdgpu_fence, base);
2094
2095 if (__f->base.ops == &amdgpu_fence_ops)
2096 return __f;
2097
2098 return NULL;
2099}
2100
2101/*
2102 * Registers read & write functions.
2103 */
2104#define RREG32(reg) amdgpu_mm_rreg(adev, (reg), false)
2105#define RREG32_IDX(reg) amdgpu_mm_rreg(adev, (reg), true)
2106#define DREG32(reg) printk(KERN_INFO "REGISTER: " #reg " : 0x%08X\n", amdgpu_mm_rreg(adev, (reg), false))
2107#define WREG32(reg, v) amdgpu_mm_wreg(adev, (reg), (v), false)
2108#define WREG32_IDX(reg, v) amdgpu_mm_wreg(adev, (reg), (v), true)
2109#define REG_SET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
2110#define REG_GET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
2111#define RREG32_PCIE(reg) adev->pcie_rreg(adev, (reg))
2112#define WREG32_PCIE(reg, v) adev->pcie_wreg(adev, (reg), (v))
2113#define RREG32_SMC(reg) adev->smc_rreg(adev, (reg))
2114#define WREG32_SMC(reg, v) adev->smc_wreg(adev, (reg), (v))
2115#define RREG32_UVD_CTX(reg) adev->uvd_ctx_rreg(adev, (reg))
2116#define WREG32_UVD_CTX(reg, v) adev->uvd_ctx_wreg(adev, (reg), (v))
2117#define RREG32_DIDT(reg) adev->didt_rreg(adev, (reg))
2118#define WREG32_DIDT(reg, v) adev->didt_wreg(adev, (reg), (v))
2119#define RREG32_AUDIO_ENDPT(block, reg) adev->audio_endpt_rreg(adev, (block), (reg))
2120#define WREG32_AUDIO_ENDPT(block, reg, v) adev->audio_endpt_wreg(adev, (block), (reg), (v))
2121#define WREG32_P(reg, val, mask) \
2122 do { \
2123 uint32_t tmp_ = RREG32(reg); \
2124 tmp_ &= (mask); \
2125 tmp_ |= ((val) & ~(mask)); \
2126 WREG32(reg, tmp_); \
2127 } while (0)
2128#define WREG32_AND(reg, and) WREG32_P(reg, 0, and)
2129#define WREG32_OR(reg, or) WREG32_P(reg, or, ~(or))
2130#define WREG32_PLL_P(reg, val, mask) \
2131 do { \
2132 uint32_t tmp_ = RREG32_PLL(reg); \
2133 tmp_ &= (mask); \
2134 tmp_ |= ((val) & ~(mask)); \
2135 WREG32_PLL(reg, tmp_); \
2136 } while (0)
2137#define DREG32_SYS(sqf, adev, reg) seq_printf((sqf), #reg " : 0x%08X\n", amdgpu_mm_rreg((adev), (reg), false))
2138#define RREG32_IO(reg) amdgpu_io_rreg(adev, (reg))
2139#define WREG32_IO(reg, v) amdgpu_io_wreg(adev, (reg), (v))
2140
2141#define RDOORBELL32(index) amdgpu_mm_rdoorbell(adev, (index))
2142#define WDOORBELL32(index, v) amdgpu_mm_wdoorbell(adev, (index), (v))
2143
2144#define REG_FIELD_SHIFT(reg, field) reg##__##field##__SHIFT
2145#define REG_FIELD_MASK(reg, field) reg##__##field##_MASK
2146
2147#define REG_SET_FIELD(orig_val, reg, field, field_val) \
2148 (((orig_val) & ~REG_FIELD_MASK(reg, field)) | \
2149 (REG_FIELD_MASK(reg, field) & ((field_val) << REG_FIELD_SHIFT(reg, field))))
2150
2151#define REG_GET_FIELD(value, reg, field) \
2152 (((value) & REG_FIELD_MASK(reg, field)) >> REG_FIELD_SHIFT(reg, field))
2153
2154/*
2155 * BIOS helpers.
2156 */
2157#define RBIOS8(i) (adev->bios[i])
2158#define RBIOS16(i) (RBIOS8(i) | (RBIOS8((i)+1) << 8))
2159#define RBIOS32(i) ((RBIOS16(i)) | (RBIOS16((i)+2) << 16))
2160
2161/*
2162 * RING helpers.
2163 */
2164static inline void amdgpu_ring_write(struct amdgpu_ring *ring, uint32_t v)
2165{
2166 if (ring->count_dw <= 0)
Jammy Zhou86c2b792015-05-13 22:52:42 +08002167 DRM_ERROR("amdgpu: writing more dwords to the ring than expected!\n");
Alex Deucher97b2e202015-04-20 16:51:00 -04002168 ring->ring[ring->wptr++] = v;
2169 ring->wptr &= ring->ptr_mask;
2170 ring->count_dw--;
2171 ring->ring_free_dw--;
2172}
2173
2174/*
2175 * ASICs macro.
2176 */
2177#define amdgpu_asic_set_vga_state(adev, state) (adev)->asic_funcs->set_vga_state((adev), (state))
2178#define amdgpu_asic_reset(adev) (adev)->asic_funcs->reset((adev))
2179#define amdgpu_asic_wait_for_mc_idle(adev) (adev)->asic_funcs->wait_for_mc_idle((adev))
2180#define amdgpu_asic_get_xclk(adev) (adev)->asic_funcs->get_xclk((adev))
2181#define amdgpu_asic_set_uvd_clocks(adev, v, d) (adev)->asic_funcs->set_uvd_clocks((adev), (v), (d))
2182#define amdgpu_asic_set_vce_clocks(adev, ev, ec) (adev)->asic_funcs->set_vce_clocks((adev), (ev), (ec))
2183#define amdgpu_asic_get_gpu_clock_counter(adev) (adev)->asic_funcs->get_gpu_clock_counter((adev))
2184#define amdgpu_asic_read_disabled_bios(adev) (adev)->asic_funcs->read_disabled_bios((adev))
2185#define amdgpu_asic_read_register(adev, se, sh, offset, v)((adev)->asic_funcs->read_register((adev), (se), (sh), (offset), (v)))
2186#define amdgpu_asic_get_cu_info(adev, info) (adev)->asic_funcs->get_cu_info((adev), (info))
2187#define amdgpu_gart_flush_gpu_tlb(adev, vmid) (adev)->gart.gart_funcs->flush_gpu_tlb((adev), (vmid))
2188#define amdgpu_gart_set_pte_pde(adev, pt, idx, addr, flags) (adev)->gart.gart_funcs->set_pte_pde((adev), (pt), (idx), (addr), (flags))
2189#define amdgpu_vm_copy_pte(adev, ib, pe, src, count) ((adev)->vm_manager.vm_pte_funcs->copy_pte((ib), (pe), (src), (count)))
2190#define amdgpu_vm_write_pte(adev, ib, pe, addr, count, incr, flags) ((adev)->vm_manager.vm_pte_funcs->write_pte((ib), (pe), (addr), (count), (incr), (flags)))
2191#define amdgpu_vm_set_pte_pde(adev, ib, pe, addr, count, incr, flags) ((adev)->vm_manager.vm_pte_funcs->set_pte_pde((ib), (pe), (addr), (count), (incr), (flags)))
2192#define amdgpu_vm_pad_ib(adev, ib) ((adev)->vm_manager.vm_pte_funcs->pad_ib((ib)))
2193#define amdgpu_ring_parse_cs(r, p, ib) ((r)->funcs->parse_cs((p), (ib)))
2194#define amdgpu_ring_test_ring(r) (r)->funcs->test_ring((r))
2195#define amdgpu_ring_test_ib(r) (r)->funcs->test_ib((r))
2196#define amdgpu_ring_is_lockup(r) (r)->funcs->is_lockup((r))
2197#define amdgpu_ring_get_rptr(r) (r)->funcs->get_rptr((r))
2198#define amdgpu_ring_get_wptr(r) (r)->funcs->get_wptr((r))
2199#define amdgpu_ring_set_wptr(r) (r)->funcs->set_wptr((r))
2200#define amdgpu_ring_emit_ib(r, ib) (r)->funcs->emit_ib((r), (ib))
2201#define amdgpu_ring_emit_vm_flush(r, vmid, addr) (r)->funcs->emit_vm_flush((r), (vmid), (addr))
Chunming Zhou890ee232015-06-01 14:35:03 +08002202#define amdgpu_ring_emit_fence(r, addr, seq, flags) (r)->funcs->emit_fence((r), (addr), (seq), (flags))
Alex Deucher97b2e202015-04-20 16:51:00 -04002203#define amdgpu_ring_emit_semaphore(r, semaphore, emit_wait) (r)->funcs->emit_semaphore((r), (semaphore), (emit_wait))
2204#define amdgpu_ring_emit_gds_switch(r, v, db, ds, wb, ws, ab, as) (r)->funcs->emit_gds_switch((r), (v), (db), (ds), (wb), (ws), (ab), (as))
Christian Königd2edb072015-05-11 14:10:34 +02002205#define amdgpu_ring_emit_hdp_flush(r) (r)->funcs->emit_hdp_flush((r))
Alex Deucher97b2e202015-04-20 16:51:00 -04002206#define amdgpu_ih_get_wptr(adev) (adev)->irq.ih_funcs->get_wptr((adev))
2207#define amdgpu_ih_decode_iv(adev, iv) (adev)->irq.ih_funcs->decode_iv((adev), (iv))
2208#define amdgpu_ih_set_rptr(adev) (adev)->irq.ih_funcs->set_rptr((adev))
2209#define amdgpu_display_set_vga_render_state(adev, r) (adev)->mode_info.funcs->set_vga_render_state((adev), (r))
2210#define amdgpu_display_vblank_get_counter(adev, crtc) (adev)->mode_info.funcs->vblank_get_counter((adev), (crtc))
2211#define amdgpu_display_vblank_wait(adev, crtc) (adev)->mode_info.funcs->vblank_wait((adev), (crtc))
2212#define amdgpu_display_is_display_hung(adev) (adev)->mode_info.funcs->is_display_hung((adev))
2213#define amdgpu_display_backlight_set_level(adev, e, l) (adev)->mode_info.funcs->backlight_set_level((e), (l))
2214#define amdgpu_display_backlight_get_level(adev, e) (adev)->mode_info.funcs->backlight_get_level((e))
2215#define amdgpu_display_hpd_sense(adev, h) (adev)->mode_info.funcs->hpd_sense((adev), (h))
2216#define amdgpu_display_hpd_set_polarity(adev, h) (adev)->mode_info.funcs->hpd_set_polarity((adev), (h))
2217#define amdgpu_display_hpd_get_gpio_reg(adev) (adev)->mode_info.funcs->hpd_get_gpio_reg((adev))
2218#define amdgpu_display_bandwidth_update(adev) (adev)->mode_info.funcs->bandwidth_update((adev))
2219#define amdgpu_display_page_flip(adev, crtc, base) (adev)->mode_info.funcs->page_flip((adev), (crtc), (base))
2220#define amdgpu_display_page_flip_get_scanoutpos(adev, crtc, vbl, pos) (adev)->mode_info.funcs->page_flip_get_scanoutpos((adev), (crtc), (vbl), (pos))
2221#define amdgpu_display_add_encoder(adev, e, s, c) (adev)->mode_info.funcs->add_encoder((adev), (e), (s), (c))
2222#define amdgpu_display_add_connector(adev, ci, sd, ct, ib, coi, h, r) (adev)->mode_info.funcs->add_connector((adev), (ci), (sd), (ct), (ib), (coi), (h), (r))
2223#define amdgpu_display_stop_mc_access(adev, s) (adev)->mode_info.funcs->stop_mc_access((adev), (s))
2224#define amdgpu_display_resume_mc_access(adev, s) (adev)->mode_info.funcs->resume_mc_access((adev), (s))
2225#define amdgpu_emit_copy_buffer(adev, r, s, d, b) (adev)->mman.buffer_funcs->emit_copy_buffer((r), (s), (d), (b))
2226#define amdgpu_emit_fill_buffer(adev, r, s, d, b) (adev)->mman.buffer_funcs->emit_fill_buffer((r), (s), (d), (b))
2227#define amdgpu_dpm_get_temperature(adev) (adev)->pm.funcs->get_temperature((adev))
2228#define amdgpu_dpm_pre_set_power_state(adev) (adev)->pm.funcs->pre_set_power_state((adev))
2229#define amdgpu_dpm_set_power_state(adev) (adev)->pm.funcs->set_power_state((adev))
2230#define amdgpu_dpm_post_set_power_state(adev) (adev)->pm.funcs->post_set_power_state((adev))
2231#define amdgpu_dpm_display_configuration_changed(adev) (adev)->pm.funcs->display_configuration_changed((adev))
2232#define amdgpu_dpm_get_sclk(adev, l) (adev)->pm.funcs->get_sclk((adev), (l))
2233#define amdgpu_dpm_get_mclk(adev, l) (adev)->pm.funcs->get_mclk((adev), (l))
2234#define amdgpu_dpm_print_power_state(adev, ps) (adev)->pm.funcs->print_power_state((adev), (ps))
2235#define amdgpu_dpm_debugfs_print_current_performance_level(adev, m) (adev)->pm.funcs->debugfs_print_current_performance_level((adev), (m))
2236#define amdgpu_dpm_force_performance_level(adev, l) (adev)->pm.funcs->force_performance_level((adev), (l))
2237#define amdgpu_dpm_vblank_too_short(adev) (adev)->pm.funcs->vblank_too_short((adev))
2238#define amdgpu_dpm_powergate_uvd(adev, g) (adev)->pm.funcs->powergate_uvd((adev), (g))
Sonny Jiangb7a07762015-05-28 15:47:53 -04002239#define amdgpu_dpm_powergate_vce(adev, g) (adev)->pm.funcs->powergate_vce((adev), (g))
Alex Deucher97b2e202015-04-20 16:51:00 -04002240#define amdgpu_dpm_enable_bapm(adev, e) (adev)->pm.funcs->enable_bapm((adev), (e))
2241#define amdgpu_dpm_set_fan_control_mode(adev, m) (adev)->pm.funcs->set_fan_control_mode((adev), (m))
2242#define amdgpu_dpm_get_fan_control_mode(adev) (adev)->pm.funcs->get_fan_control_mode((adev))
2243#define amdgpu_dpm_set_fan_speed_percent(adev, s) (adev)->pm.funcs->set_fan_speed_percent((adev), (s))
2244#define amdgpu_dpm_get_fan_speed_percent(adev, s) (adev)->pm.funcs->get_fan_speed_percent((adev), (s))
2245
2246#define amdgpu_gds_switch(adev, r, v, d, w, a) (adev)->gds.funcs->patch_gds_switch((r), (v), (d), (w), (a))
2247
2248/* Common functions */
2249int amdgpu_gpu_reset(struct amdgpu_device *adev);
2250void amdgpu_pci_config_reset(struct amdgpu_device *adev);
2251bool amdgpu_card_posted(struct amdgpu_device *adev);
2252void amdgpu_update_display_priority(struct amdgpu_device *adev);
2253bool amdgpu_boot_test_post_card(struct amdgpu_device *adev);
2254int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data);
2255int amdgpu_cs_get_ring(struct amdgpu_device *adev, u32 ip_type,
2256 u32 ip_instance, u32 ring,
2257 struct amdgpu_ring **out_ring);
2258void amdgpu_ttm_placement_from_domain(struct amdgpu_bo *rbo, u32 domain);
2259bool amdgpu_ttm_bo_is_amdgpu_bo(struct ttm_buffer_object *bo);
2260int amdgpu_ttm_tt_set_userptr(struct ttm_tt *ttm, uint64_t addr,
2261 uint32_t flags);
2262bool amdgpu_ttm_tt_has_userptr(struct ttm_tt *ttm);
2263bool amdgpu_ttm_tt_is_readonly(struct ttm_tt *ttm);
2264uint32_t amdgpu_ttm_tt_pte_flags(struct amdgpu_device *adev, struct ttm_tt *ttm,
2265 struct ttm_mem_reg *mem);
2266void amdgpu_vram_location(struct amdgpu_device *adev, struct amdgpu_mc *mc, u64 base);
2267void amdgpu_gtt_location(struct amdgpu_device *adev, struct amdgpu_mc *mc);
2268void amdgpu_ttm_set_active_vram_size(struct amdgpu_device *adev, u64 size);
2269void amdgpu_program_register_sequence(struct amdgpu_device *adev,
2270 const u32 *registers,
2271 const u32 array_size);
2272
2273bool amdgpu_device_is_px(struct drm_device *dev);
2274/* atpx handler */
2275#if defined(CONFIG_VGA_SWITCHEROO)
2276void amdgpu_register_atpx_handler(void);
2277void amdgpu_unregister_atpx_handler(void);
2278#else
2279static inline void amdgpu_register_atpx_handler(void) {}
2280static inline void amdgpu_unregister_atpx_handler(void) {}
2281#endif
2282
2283/*
2284 * KMS
2285 */
2286extern const struct drm_ioctl_desc amdgpu_ioctls_kms[];
2287extern int amdgpu_max_kms_ioctl;
2288
2289int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags);
2290int amdgpu_driver_unload_kms(struct drm_device *dev);
2291void amdgpu_driver_lastclose_kms(struct drm_device *dev);
2292int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv);
2293void amdgpu_driver_postclose_kms(struct drm_device *dev,
2294 struct drm_file *file_priv);
2295void amdgpu_driver_preclose_kms(struct drm_device *dev,
2296 struct drm_file *file_priv);
2297int amdgpu_suspend_kms(struct drm_device *dev, bool suspend, bool fbcon);
2298int amdgpu_resume_kms(struct drm_device *dev, bool resume, bool fbcon);
2299u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, int crtc);
2300int amdgpu_enable_vblank_kms(struct drm_device *dev, int crtc);
2301void amdgpu_disable_vblank_kms(struct drm_device *dev, int crtc);
2302int amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, int crtc,
2303 int *max_error,
2304 struct timeval *vblank_time,
2305 unsigned flags);
2306long amdgpu_kms_compat_ioctl(struct file *filp, unsigned int cmd,
2307 unsigned long arg);
2308
2309/*
2310 * vm
2311 */
2312int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm);
2313void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm);
2314struct amdgpu_bo_list_entry *amdgpu_vm_get_bos(struct amdgpu_device *adev,
2315 struct amdgpu_vm *vm,
2316 struct list_head *head);
Christian König7f8a5292015-07-20 16:09:40 +02002317int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
2318 struct amdgpu_sync *sync);
Alex Deucher97b2e202015-04-20 16:51:00 -04002319void amdgpu_vm_flush(struct amdgpu_ring *ring,
2320 struct amdgpu_vm *vm,
2321 struct amdgpu_fence *updates);
2322void amdgpu_vm_fence(struct amdgpu_device *adev,
2323 struct amdgpu_vm *vm,
2324 struct amdgpu_fence *fence);
2325uint64_t amdgpu_vm_map_gart(struct amdgpu_device *adev, uint64_t addr);
2326int amdgpu_vm_update_page_directory(struct amdgpu_device *adev,
2327 struct amdgpu_vm *vm);
2328int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
2329 struct amdgpu_vm *vm);
2330int amdgpu_vm_clear_invalids(struct amdgpu_device *adev,
monk.liucfe2c972015-05-26 15:01:54 +08002331 struct amdgpu_vm *vm, struct amdgpu_sync *sync);
Alex Deucher97b2e202015-04-20 16:51:00 -04002332int amdgpu_vm_bo_update(struct amdgpu_device *adev,
2333 struct amdgpu_bo_va *bo_va,
2334 struct ttm_mem_reg *mem);
2335void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
2336 struct amdgpu_bo *bo);
2337struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
2338 struct amdgpu_bo *bo);
2339struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
2340 struct amdgpu_vm *vm,
2341 struct amdgpu_bo *bo);
2342int amdgpu_vm_bo_map(struct amdgpu_device *adev,
2343 struct amdgpu_bo_va *bo_va,
2344 uint64_t addr, uint64_t offset,
2345 uint64_t size, uint32_t flags);
2346int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
2347 struct amdgpu_bo_va *bo_va,
2348 uint64_t addr);
2349void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
2350 struct amdgpu_bo_va *bo_va);
2351
2352/*
2353 * functions used by amdgpu_encoder.c
2354 */
2355struct amdgpu_afmt_acr {
2356 u32 clock;
2357
2358 int n_32khz;
2359 int cts_32khz;
2360
2361 int n_44_1khz;
2362 int cts_44_1khz;
2363
2364 int n_48khz;
2365 int cts_48khz;
2366
2367};
2368
2369struct amdgpu_afmt_acr amdgpu_afmt_acr(uint32_t clock);
2370
2371/* amdgpu_acpi.c */
2372#if defined(CONFIG_ACPI)
2373int amdgpu_acpi_init(struct amdgpu_device *adev);
2374void amdgpu_acpi_fini(struct amdgpu_device *adev);
2375bool amdgpu_acpi_is_pcie_performance_request_supported(struct amdgpu_device *adev);
2376int amdgpu_acpi_pcie_performance_request(struct amdgpu_device *adev,
2377 u8 perf_req, bool advertise);
2378int amdgpu_acpi_pcie_notify_device_ready(struct amdgpu_device *adev);
2379#else
2380static inline int amdgpu_acpi_init(struct amdgpu_device *adev) { return 0; }
2381static inline void amdgpu_acpi_fini(struct amdgpu_device *adev) { }
2382#endif
2383
2384struct amdgpu_bo_va_mapping *
2385amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
2386 uint64_t addr, struct amdgpu_bo **bo);
2387
2388#include "amdgpu_object.h"
2389
2390#endif