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