blob: bc396a8f2d55101820c2303223ecad3d97b68edd [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"
Alex Deucher1f7371b2015-12-02 17:46:21 -050055#include "amd_powerplay.h"
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -040056#include "amdgpu_acp.h"
Alex Deucher97b2e202015-04-20 16:51:00 -040057
Alex Deucherb80d8472015-08-16 22:55:02 -040058#include "gpu_scheduler.h"
59
Alex Deucher97b2e202015-04-20 16:51:00 -040060/*
61 * Modules parameters.
62 */
63extern int amdgpu_modeset;
64extern int amdgpu_vram_limit;
65extern int amdgpu_gart_size;
66extern int amdgpu_benchmarking;
67extern int amdgpu_testing;
68extern int amdgpu_audio;
69extern int amdgpu_disp_priority;
70extern int amdgpu_hw_i2c;
71extern int amdgpu_pcie_gen2;
72extern int amdgpu_msi;
73extern int amdgpu_lockup_timeout;
74extern int amdgpu_dpm;
75extern int amdgpu_smc_load_fw;
76extern int amdgpu_aspm;
77extern int amdgpu_runtime_pm;
Alex Deucher97b2e202015-04-20 16:51:00 -040078extern unsigned amdgpu_ip_block_mask;
79extern int amdgpu_bapm;
80extern int amdgpu_deep_color;
81extern int amdgpu_vm_size;
82extern int amdgpu_vm_block_size;
Christian Königd9c13152015-09-28 12:31:26 +020083extern int amdgpu_vm_fault_stop;
Christian Königb495bd32015-09-10 14:00:35 +020084extern int amdgpu_vm_debug;
Jammy Zhou1333f722015-07-30 16:36:58 +080085extern int amdgpu_sched_jobs;
Jammy Zhou4afcb302015-07-30 16:44:05 +080086extern int amdgpu_sched_hw_submission;
Alex Deucher1f7371b2015-12-02 17:46:21 -050087extern int amdgpu_powerplay;
Alex Deucher97b2e202015-04-20 16:51:00 -040088
Chunming Zhou4b559c92015-07-21 15:53:04 +080089#define AMDGPU_WAIT_IDLE_TIMEOUT_IN_MS 3000
Alex Deucher97b2e202015-04-20 16:51:00 -040090#define AMDGPU_MAX_USEC_TIMEOUT 100000 /* 100 ms */
91#define AMDGPU_FENCE_JIFFIES_TIMEOUT (HZ / 2)
92/* AMDGPU_IB_POOL_SIZE must be a power of 2 */
93#define AMDGPU_IB_POOL_SIZE 16
94#define AMDGPU_DEBUGFS_MAX_COMPONENTS 32
95#define AMDGPUFB_CONN_LIMIT 4
96#define AMDGPU_BIOS_NUM_SCRATCH 8
97
Alex Deucher97b2e202015-04-20 16:51:00 -040098/* max number of rings */
99#define AMDGPU_MAX_RINGS 16
100#define AMDGPU_MAX_GFX_RINGS 1
101#define AMDGPU_MAX_COMPUTE_RINGS 8
102#define AMDGPU_MAX_VCE_RINGS 2
103
Jammy Zhou36f523a2015-09-01 12:54:27 +0800104/* max number of IP instances */
105#define AMDGPU_MAX_SDMA_INSTANCES 2
106
Alex Deucher97b2e202015-04-20 16:51:00 -0400107/* hardcode that limit for now */
108#define AMDGPU_VA_RESERVED_SIZE (8 << 20)
109
110/* hard reset data */
111#define AMDGPU_ASIC_RESET_DATA 0x39d5e86b
112
113/* reset flags */
114#define AMDGPU_RESET_GFX (1 << 0)
115#define AMDGPU_RESET_COMPUTE (1 << 1)
116#define AMDGPU_RESET_DMA (1 << 2)
117#define AMDGPU_RESET_CP (1 << 3)
118#define AMDGPU_RESET_GRBM (1 << 4)
119#define AMDGPU_RESET_DMA1 (1 << 5)
120#define AMDGPU_RESET_RLC (1 << 6)
121#define AMDGPU_RESET_SEM (1 << 7)
122#define AMDGPU_RESET_IH (1 << 8)
123#define AMDGPU_RESET_VMC (1 << 9)
124#define AMDGPU_RESET_MC (1 << 10)
125#define AMDGPU_RESET_DISPLAY (1 << 11)
126#define AMDGPU_RESET_UVD (1 << 12)
127#define AMDGPU_RESET_VCE (1 << 13)
128#define AMDGPU_RESET_VCE1 (1 << 14)
129
130/* CG block flags */
131#define AMDGPU_CG_BLOCK_GFX (1 << 0)
132#define AMDGPU_CG_BLOCK_MC (1 << 1)
133#define AMDGPU_CG_BLOCK_SDMA (1 << 2)
134#define AMDGPU_CG_BLOCK_UVD (1 << 3)
135#define AMDGPU_CG_BLOCK_VCE (1 << 4)
136#define AMDGPU_CG_BLOCK_HDP (1 << 5)
137#define AMDGPU_CG_BLOCK_BIF (1 << 6)
138
139/* CG flags */
140#define AMDGPU_CG_SUPPORT_GFX_MGCG (1 << 0)
141#define AMDGPU_CG_SUPPORT_GFX_MGLS (1 << 1)
142#define AMDGPU_CG_SUPPORT_GFX_CGCG (1 << 2)
143#define AMDGPU_CG_SUPPORT_GFX_CGLS (1 << 3)
144#define AMDGPU_CG_SUPPORT_GFX_CGTS (1 << 4)
145#define AMDGPU_CG_SUPPORT_GFX_CGTS_LS (1 << 5)
146#define AMDGPU_CG_SUPPORT_GFX_CP_LS (1 << 6)
147#define AMDGPU_CG_SUPPORT_GFX_RLC_LS (1 << 7)
148#define AMDGPU_CG_SUPPORT_MC_LS (1 << 8)
149#define AMDGPU_CG_SUPPORT_MC_MGCG (1 << 9)
150#define AMDGPU_CG_SUPPORT_SDMA_LS (1 << 10)
151#define AMDGPU_CG_SUPPORT_SDMA_MGCG (1 << 11)
152#define AMDGPU_CG_SUPPORT_BIF_LS (1 << 12)
153#define AMDGPU_CG_SUPPORT_UVD_MGCG (1 << 13)
154#define AMDGPU_CG_SUPPORT_VCE_MGCG (1 << 14)
155#define AMDGPU_CG_SUPPORT_HDP_LS (1 << 15)
156#define AMDGPU_CG_SUPPORT_HDP_MGCG (1 << 16)
157
158/* PG flags */
159#define AMDGPU_PG_SUPPORT_GFX_PG (1 << 0)
160#define AMDGPU_PG_SUPPORT_GFX_SMG (1 << 1)
161#define AMDGPU_PG_SUPPORT_GFX_DMG (1 << 2)
162#define AMDGPU_PG_SUPPORT_UVD (1 << 3)
163#define AMDGPU_PG_SUPPORT_VCE (1 << 4)
164#define AMDGPU_PG_SUPPORT_CP (1 << 5)
165#define AMDGPU_PG_SUPPORT_GDS (1 << 6)
166#define AMDGPU_PG_SUPPORT_RLC_SMU_HS (1 << 7)
167#define AMDGPU_PG_SUPPORT_SDMA (1 << 8)
168#define AMDGPU_PG_SUPPORT_ACP (1 << 9)
169#define AMDGPU_PG_SUPPORT_SAMU (1 << 10)
170
171/* GFX current status */
172#define AMDGPU_GFX_NORMAL_MODE 0x00000000L
173#define AMDGPU_GFX_SAFE_MODE 0x00000001L
174#define AMDGPU_GFX_PG_DISABLED_MODE 0x00000002L
175#define AMDGPU_GFX_CG_DISABLED_MODE 0x00000004L
176#define AMDGPU_GFX_LBPW_DISABLED_MODE 0x00000008L
177
178/* max cursor sizes (in pixels) */
179#define CIK_CURSOR_WIDTH 128
180#define CIK_CURSOR_HEIGHT 128
181
182struct amdgpu_device;
183struct amdgpu_fence;
184struct amdgpu_ib;
185struct amdgpu_vm;
186struct amdgpu_ring;
Alex Deucher97b2e202015-04-20 16:51:00 -0400187struct amdgpu_cs_parser;
Chunming Zhoubb977d32015-08-18 15:16:40 +0800188struct amdgpu_job;
Alex Deucher97b2e202015-04-20 16:51:00 -0400189struct amdgpu_irq_src;
Alex Deucher0b492a42015-08-16 22:48:26 -0400190struct amdgpu_fpriv;
Alex Deucher97b2e202015-04-20 16:51:00 -0400191
192enum amdgpu_cp_irq {
193 AMDGPU_CP_IRQ_GFX_EOP = 0,
194 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE0_EOP,
195 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE1_EOP,
196 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE2_EOP,
197 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE3_EOP,
198 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE0_EOP,
199 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE1_EOP,
200 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE2_EOP,
201 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE3_EOP,
202
203 AMDGPU_CP_IRQ_LAST
204};
205
206enum amdgpu_sdma_irq {
207 AMDGPU_SDMA_IRQ_TRAP0 = 0,
208 AMDGPU_SDMA_IRQ_TRAP1,
209
210 AMDGPU_SDMA_IRQ_LAST
211};
212
213enum amdgpu_thermal_irq {
214 AMDGPU_THERMAL_IRQ_LOW_TO_HIGH = 0,
215 AMDGPU_THERMAL_IRQ_HIGH_TO_LOW,
216
217 AMDGPU_THERMAL_IRQ_LAST
218};
219
Alex Deucher97b2e202015-04-20 16:51:00 -0400220int amdgpu_set_clockgating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400221 enum amd_ip_block_type block_type,
222 enum amd_clockgating_state state);
Alex Deucher97b2e202015-04-20 16:51:00 -0400223int amdgpu_set_powergating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400224 enum amd_ip_block_type block_type,
225 enum amd_powergating_state state);
Alex Deucher97b2e202015-04-20 16:51:00 -0400226
227struct amdgpu_ip_block_version {
yanyang15fc3aee2015-05-22 14:39:35 -0400228 enum amd_ip_block_type type;
Alex Deucher97b2e202015-04-20 16:51:00 -0400229 u32 major;
230 u32 minor;
231 u32 rev;
yanyang15fc3aee2015-05-22 14:39:35 -0400232 const struct amd_ip_funcs *funcs;
Alex Deucher97b2e202015-04-20 16:51:00 -0400233};
234
235int amdgpu_ip_block_version_cmp(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 u32 major, u32 minor);
238
239const struct amdgpu_ip_block_version * amdgpu_get_ip_block(
240 struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400241 enum amd_ip_block_type type);
Alex Deucher97b2e202015-04-20 16:51:00 -0400242
243/* provided by hw blocks that can move/clear data. e.g., gfx or sdma */
244struct amdgpu_buffer_funcs {
245 /* maximum bytes in a single operation */
246 uint32_t copy_max_bytes;
247
248 /* number of dw to reserve per operation */
249 unsigned copy_num_dw;
250
251 /* used for buffer migration */
Chunming Zhouc7ae72c2015-08-25 17:23:45 +0800252 void (*emit_copy_buffer)(struct amdgpu_ib *ib,
Alex Deucher97b2e202015-04-20 16:51:00 -0400253 /* src addr in bytes */
254 uint64_t src_offset,
255 /* dst addr in bytes */
256 uint64_t dst_offset,
257 /* number of byte to transfer */
258 uint32_t byte_count);
259
260 /* maximum bytes in a single operation */
261 uint32_t fill_max_bytes;
262
263 /* number of dw to reserve per operation */
264 unsigned fill_num_dw;
265
266 /* used for buffer clearing */
Chunming Zhou6e7a3842015-08-27 13:46:09 +0800267 void (*emit_fill_buffer)(struct amdgpu_ib *ib,
Alex Deucher97b2e202015-04-20 16:51:00 -0400268 /* value to write to memory */
269 uint32_t src_data,
270 /* dst addr in bytes */
271 uint64_t dst_offset,
272 /* number of byte to fill */
273 uint32_t byte_count);
274};
275
276/* provided by hw blocks that can write ptes, e.g., sdma */
277struct amdgpu_vm_pte_funcs {
278 /* copy pte entries from GART */
279 void (*copy_pte)(struct amdgpu_ib *ib,
280 uint64_t pe, uint64_t src,
281 unsigned count);
282 /* write pte one entry at a time with addr mapping */
283 void (*write_pte)(struct amdgpu_ib *ib,
Christian Königb07c9d22015-11-30 13:26:07 +0100284 const dma_addr_t *pages_addr, uint64_t pe,
Alex Deucher97b2e202015-04-20 16:51:00 -0400285 uint64_t addr, unsigned count,
286 uint32_t incr, uint32_t flags);
287 /* for linear pte/pde updates without addr mapping */
288 void (*set_pte_pde)(struct amdgpu_ib *ib,
289 uint64_t pe,
290 uint64_t addr, unsigned count,
291 uint32_t incr, uint32_t flags);
Alex Deucher97b2e202015-04-20 16:51:00 -0400292};
293
294/* provided by the gmc block */
295struct amdgpu_gart_funcs {
296 /* flush the vm tlb via mmio */
297 void (*flush_gpu_tlb)(struct amdgpu_device *adev,
298 uint32_t vmid);
299 /* write pte/pde updates using the cpu */
300 int (*set_pte_pde)(struct amdgpu_device *adev,
301 void *cpu_pt_addr, /* cpu addr of page table */
302 uint32_t gpu_page_idx, /* pte/pde to update */
303 uint64_t addr, /* addr to write into pte/pde */
304 uint32_t flags); /* access flags */
305};
306
307/* provided by the ih block */
308struct amdgpu_ih_funcs {
309 /* ring read/write ptr handling, called from interrupt context */
310 u32 (*get_wptr)(struct amdgpu_device *adev);
311 void (*decode_iv)(struct amdgpu_device *adev,
312 struct amdgpu_iv_entry *entry);
313 void (*set_rptr)(struct amdgpu_device *adev);
314};
315
316/* provided by hw blocks that expose a ring buffer for commands */
317struct amdgpu_ring_funcs {
318 /* ring read/write ptr handling */
319 u32 (*get_rptr)(struct amdgpu_ring *ring);
320 u32 (*get_wptr)(struct amdgpu_ring *ring);
321 void (*set_wptr)(struct amdgpu_ring *ring);
322 /* validating and patching of IBs */
323 int (*parse_cs)(struct amdgpu_cs_parser *p, uint32_t ib_idx);
324 /* command emit functions */
325 void (*emit_ib)(struct amdgpu_ring *ring,
326 struct amdgpu_ib *ib);
327 void (*emit_fence)(struct amdgpu_ring *ring, uint64_t addr,
Chunming Zhou890ee232015-06-01 14:35:03 +0800328 uint64_t seq, unsigned flags);
Alex Deucher97b2e202015-04-20 16:51:00 -0400329 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);
Jammy Zhouedff0e22015-09-01 13:04:08 +0800339 /* insert NOP packets */
340 void (*insert_nop)(struct amdgpu_ring *ring, uint32_t count);
Christian König9e5d53092016-01-31 12:20:55 +0100341 /* pad the indirect buffer to the necessary number of dw */
342 void (*pad_ib)(struct amdgpu_ring *ring, struct amdgpu_ib *ib);
Alex Deucher97b2e202015-04-20 16:51:00 -0400343};
344
345/*
346 * BIOS.
347 */
348bool amdgpu_get_bios(struct amdgpu_device *adev);
349bool amdgpu_read_bios(struct amdgpu_device *adev);
350
351/*
352 * Dummy page
353 */
354struct amdgpu_dummy_page {
355 struct page *page;
356 dma_addr_t addr;
357};
358int amdgpu_dummy_page_init(struct amdgpu_device *adev);
359void amdgpu_dummy_page_fini(struct amdgpu_device *adev);
360
361
362/*
363 * Clocks
364 */
365
366#define AMDGPU_MAX_PPLL 3
367
368struct amdgpu_clock {
369 struct amdgpu_pll ppll[AMDGPU_MAX_PPLL];
370 struct amdgpu_pll spll;
371 struct amdgpu_pll mpll;
372 /* 10 Khz units */
373 uint32_t default_mclk;
374 uint32_t default_sclk;
375 uint32_t default_dispclk;
376 uint32_t current_dispclk;
377 uint32_t dp_extclk;
378 uint32_t max_pixel_clock;
379};
380
381/*
382 * Fences.
383 */
384struct amdgpu_fence_driver {
Alex Deucher97b2e202015-04-20 16:51:00 -0400385 uint64_t gpu_addr;
386 volatile uint32_t *cpu_addr;
387 /* sync_seq is protected by ring emission lock */
Christian König5907a0d2016-01-18 15:16:53 +0100388 uint64_t sync_seq;
Alex Deucher97b2e202015-04-20 16:51:00 -0400389 atomic64_t last_seq;
390 bool initialized;
Alex Deucher97b2e202015-04-20 16:51:00 -0400391 struct amdgpu_irq_src *irq_src;
392 unsigned irq_type;
Christian Königc2776af2015-11-03 13:27:39 +0100393 struct timer_list fallback_timer;
monk.liu7f06c232015-07-30 18:28:12 +0800394 wait_queue_head_t fence_queue;
Alex Deucher97b2e202015-04-20 16:51:00 -0400395};
396
397/* some special values for the owner field */
398#define AMDGPU_FENCE_OWNER_UNDEFINED ((void*)0ul)
399#define AMDGPU_FENCE_OWNER_VM ((void*)1ul)
Alex Deucher97b2e202015-04-20 16:51:00 -0400400
Chunming Zhou890ee232015-06-01 14:35:03 +0800401#define AMDGPU_FENCE_FLAG_64BIT (1 << 0)
402#define AMDGPU_FENCE_FLAG_INT (1 << 1)
403
Alex Deucher97b2e202015-04-20 16:51:00 -0400404struct amdgpu_fence {
405 struct fence base;
Chunming Zhou4cef9262015-08-05 19:52:14 +0800406
Alex Deucher97b2e202015-04-20 16:51:00 -0400407 /* RB, DMA, etc. */
408 struct amdgpu_ring *ring;
409 uint64_t seq;
410
411 /* filp or special value for fence creator */
412 void *owner;
413
414 wait_queue_t fence_wake;
415};
416
417struct amdgpu_user_fence {
418 /* write-back bo */
419 struct amdgpu_bo *bo;
420 /* write-back address offset to bo start */
421 uint32_t offset;
422};
423
424int amdgpu_fence_driver_init(struct amdgpu_device *adev);
425void amdgpu_fence_driver_fini(struct amdgpu_device *adev);
426void amdgpu_fence_driver_force_completion(struct amdgpu_device *adev);
427
Christian König4f839a22015-09-08 20:22:31 +0200428int amdgpu_fence_driver_init_ring(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -0400429int amdgpu_fence_driver_start_ring(struct amdgpu_ring *ring,
430 struct amdgpu_irq_src *irq_src,
431 unsigned irq_type);
Alex Deucher5ceb54c2015-08-05 12:41:48 -0400432void amdgpu_fence_driver_suspend(struct amdgpu_device *adev);
433void amdgpu_fence_driver_resume(struct amdgpu_device *adev);
Alex Deucher97b2e202015-04-20 16:51:00 -0400434int amdgpu_fence_emit(struct amdgpu_ring *ring, void *owner,
435 struct amdgpu_fence **fence);
436void amdgpu_fence_process(struct amdgpu_ring *ring);
437int amdgpu_fence_wait_next(struct amdgpu_ring *ring);
438int amdgpu_fence_wait_empty(struct amdgpu_ring *ring);
439unsigned amdgpu_fence_count_emitted(struct amdgpu_ring *ring);
440
Alex Deucher97b2e202015-04-20 16:51:00 -0400441/*
442 * TTM.
443 */
444struct amdgpu_mman {
445 struct ttm_bo_global_ref bo_global_ref;
446 struct drm_global_reference mem_global_ref;
447 struct ttm_bo_device bdev;
448 bool mem_global_referenced;
449 bool initialized;
450
451#if defined(CONFIG_DEBUG_FS)
452 struct dentry *vram;
453 struct dentry *gtt;
454#endif
455
456 /* buffer handling */
457 const struct amdgpu_buffer_funcs *buffer_funcs;
458 struct amdgpu_ring *buffer_funcs_ring;
Christian König703297c2016-02-10 14:20:50 +0100459 /* Scheduler entity for buffer moves */
460 struct amd_sched_entity entity;
Alex Deucher97b2e202015-04-20 16:51:00 -0400461};
462
463int amdgpu_copy_buffer(struct amdgpu_ring *ring,
464 uint64_t src_offset,
465 uint64_t dst_offset,
466 uint32_t byte_count,
467 struct reservation_object *resv,
Chunming Zhouc7ae72c2015-08-25 17:23:45 +0800468 struct fence **fence);
Alex Deucher97b2e202015-04-20 16:51:00 -0400469int amdgpu_mmap(struct file *filp, struct vm_area_struct *vma);
470
471struct amdgpu_bo_list_entry {
472 struct amdgpu_bo *robj;
473 struct ttm_validate_buffer tv;
474 struct amdgpu_bo_va *bo_va;
Alex Deucher97b2e202015-04-20 16:51:00 -0400475 uint32_t priority;
476};
477
478struct amdgpu_bo_va_mapping {
479 struct list_head list;
480 struct interval_tree_node it;
481 uint64_t offset;
482 uint32_t flags;
483};
484
485/* bo virtual addresses in a specific vm */
486struct amdgpu_bo_va {
Chunming Zhou69b576a2015-11-18 11:17:39 +0800487 struct mutex mutex;
Alex Deucher97b2e202015-04-20 16:51:00 -0400488 /* protected by bo being reserved */
489 struct list_head bo_list;
Chunming Zhoubb1e38a42015-08-03 18:19:38 +0800490 struct fence *last_pt_update;
Alex Deucher97b2e202015-04-20 16:51:00 -0400491 unsigned ref_count;
492
Christian König7fc11952015-07-30 11:53:42 +0200493 /* protected by vm mutex and spinlock */
Alex Deucher97b2e202015-04-20 16:51:00 -0400494 struct list_head vm_status;
495
Christian König7fc11952015-07-30 11:53:42 +0200496 /* mappings for this bo_va */
497 struct list_head invalids;
498 struct list_head valids;
499
Alex Deucher97b2e202015-04-20 16:51:00 -0400500 /* constant after initialization */
501 struct amdgpu_vm *vm;
502 struct amdgpu_bo *bo;
503};
504
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800505#define AMDGPU_GEM_DOMAIN_MAX 0x3
506
Alex Deucher97b2e202015-04-20 16:51:00 -0400507struct amdgpu_bo {
508 /* Protected by gem.mutex */
509 struct list_head list;
510 /* Protected by tbo.reserved */
Christian König1ea863f2015-12-18 22:13:12 +0100511 u32 prefered_domains;
512 u32 allowed_domains;
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800513 struct ttm_place placements[AMDGPU_GEM_DOMAIN_MAX + 1];
Alex Deucher97b2e202015-04-20 16:51:00 -0400514 struct ttm_placement placement;
515 struct ttm_buffer_object tbo;
516 struct ttm_bo_kmap_obj kmap;
517 u64 flags;
518 unsigned pin_count;
519 void *kptr;
520 u64 tiling_flags;
521 u64 metadata_flags;
522 void *metadata;
523 u32 metadata_size;
524 /* list of all virtual address to which this bo
525 * is associated to
526 */
527 struct list_head va;
528 /* Constant after initialization */
529 struct amdgpu_device *adev;
530 struct drm_gem_object gem_base;
Christian König82b9c552015-11-27 16:49:00 +0100531 struct amdgpu_bo *parent;
Alex Deucher97b2e202015-04-20 16:51:00 -0400532
533 struct ttm_bo_kmap_obj dma_buf_vmap;
534 pid_t pid;
535 struct amdgpu_mn *mn;
536 struct list_head mn_list;
537};
538#define gem_to_amdgpu_bo(gobj) container_of((gobj), struct amdgpu_bo, gem_base)
539
540void amdgpu_gem_object_free(struct drm_gem_object *obj);
541int amdgpu_gem_object_open(struct drm_gem_object *obj,
542 struct drm_file *file_priv);
543void amdgpu_gem_object_close(struct drm_gem_object *obj,
544 struct drm_file *file_priv);
545unsigned long amdgpu_gem_timeout(uint64_t timeout_ns);
546struct sg_table *amdgpu_gem_prime_get_sg_table(struct drm_gem_object *obj);
547struct drm_gem_object *amdgpu_gem_prime_import_sg_table(struct drm_device *dev,
548 struct dma_buf_attachment *attach,
549 struct sg_table *sg);
550struct dma_buf *amdgpu_gem_prime_export(struct drm_device *dev,
551 struct drm_gem_object *gobj,
552 int flags);
553int amdgpu_gem_prime_pin(struct drm_gem_object *obj);
554void amdgpu_gem_prime_unpin(struct drm_gem_object *obj);
555struct reservation_object *amdgpu_gem_prime_res_obj(struct drm_gem_object *);
556void *amdgpu_gem_prime_vmap(struct drm_gem_object *obj);
557void amdgpu_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
558int amdgpu_gem_debugfs_init(struct amdgpu_device *adev);
559
560/* sub-allocation manager, it has to be protected by another lock.
561 * By conception this is an helper for other part of the driver
562 * like the indirect buffer or semaphore, which both have their
563 * locking.
564 *
565 * Principe is simple, we keep a list of sub allocation in offset
566 * order (first entry has offset == 0, last entry has the highest
567 * offset).
568 *
569 * When allocating new object we first check if there is room at
570 * the end total_size - (last_object_offset + last_object_size) >=
571 * alloc_size. If so we allocate new object there.
572 *
573 * When there is not enough room at the end, we start waiting for
574 * each sub object until we reach object_offset+object_size >=
575 * alloc_size, this object then become the sub object we return.
576 *
577 * Alignment can't be bigger than page size.
578 *
579 * Hole are not considered for allocation to keep things simple.
580 * Assumption is that there won't be hole (all object on same
581 * alignment).
582 */
583struct amdgpu_sa_manager {
584 wait_queue_head_t wq;
585 struct amdgpu_bo *bo;
586 struct list_head *hole;
587 struct list_head flist[AMDGPU_MAX_RINGS];
588 struct list_head olist;
589 unsigned size;
590 uint64_t gpu_addr;
591 void *cpu_ptr;
592 uint32_t domain;
593 uint32_t align;
594};
595
596struct amdgpu_sa_bo;
597
598/* sub-allocation buffer */
599struct amdgpu_sa_bo {
600 struct list_head olist;
601 struct list_head flist;
602 struct amdgpu_sa_manager *manager;
603 unsigned soffset;
604 unsigned eoffset;
Chunming Zhou4ce98912015-08-19 16:41:19 +0800605 struct fence *fence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400606};
607
608/*
609 * GEM objects.
610 */
611struct amdgpu_gem {
612 struct mutex mutex;
613 struct list_head objects;
614};
615
616int amdgpu_gem_init(struct amdgpu_device *adev);
617void amdgpu_gem_fini(struct amdgpu_device *adev);
618int amdgpu_gem_object_create(struct amdgpu_device *adev, unsigned long size,
619 int alignment, u32 initial_domain,
620 u64 flags, bool kernel,
621 struct drm_gem_object **obj);
622
623int amdgpu_mode_dumb_create(struct drm_file *file_priv,
624 struct drm_device *dev,
625 struct drm_mode_create_dumb *args);
626int amdgpu_mode_dumb_mmap(struct drm_file *filp,
627 struct drm_device *dev,
628 uint32_t handle, uint64_t *offset_p);
Alex Deucher97b2e202015-04-20 16:51:00 -0400629/*
630 * Synchronization
631 */
632struct amdgpu_sync {
Christian Königf91b3a62015-08-20 14:47:40 +0800633 DECLARE_HASHTABLE(fences, 4);
Chunming Zhou3c623382015-08-20 18:33:59 +0800634 struct fence *last_vm_update;
Alex Deucher97b2e202015-04-20 16:51:00 -0400635};
636
637void amdgpu_sync_create(struct amdgpu_sync *sync);
Christian König91e1a522015-07-06 22:06:40 +0200638int amdgpu_sync_fence(struct amdgpu_device *adev, struct amdgpu_sync *sync,
639 struct fence *f);
Alex Deucher97b2e202015-04-20 16:51:00 -0400640int amdgpu_sync_resv(struct amdgpu_device *adev,
641 struct amdgpu_sync *sync,
642 struct reservation_object *resv,
643 void *owner);
Christian Könige61235d2015-08-25 11:05:36 +0200644struct fence *amdgpu_sync_get_fence(struct amdgpu_sync *sync);
Christian Königf91b3a62015-08-20 14:47:40 +0800645int amdgpu_sync_wait(struct amdgpu_sync *sync);
Christian König8a8f0b42016-02-03 15:11:39 +0100646void amdgpu_sync_free(struct amdgpu_sync *sync);
Alex Deucher97b2e202015-04-20 16:51:00 -0400647
648/*
649 * GART structures, functions & helpers
650 */
651struct amdgpu_mc;
652
653#define AMDGPU_GPU_PAGE_SIZE 4096
654#define AMDGPU_GPU_PAGE_MASK (AMDGPU_GPU_PAGE_SIZE - 1)
655#define AMDGPU_GPU_PAGE_SHIFT 12
656#define AMDGPU_GPU_PAGE_ALIGN(a) (((a) + AMDGPU_GPU_PAGE_MASK) & ~AMDGPU_GPU_PAGE_MASK)
657
658struct amdgpu_gart {
659 dma_addr_t table_addr;
660 struct amdgpu_bo *robj;
661 void *ptr;
662 unsigned num_gpu_pages;
663 unsigned num_cpu_pages;
664 unsigned table_size;
665 struct page **pages;
666 dma_addr_t *pages_addr;
667 bool ready;
668 const struct amdgpu_gart_funcs *gart_funcs;
669};
670
671int amdgpu_gart_table_ram_alloc(struct amdgpu_device *adev);
672void amdgpu_gart_table_ram_free(struct amdgpu_device *adev);
673int amdgpu_gart_table_vram_alloc(struct amdgpu_device *adev);
674void amdgpu_gart_table_vram_free(struct amdgpu_device *adev);
675int amdgpu_gart_table_vram_pin(struct amdgpu_device *adev);
676void amdgpu_gart_table_vram_unpin(struct amdgpu_device *adev);
677int amdgpu_gart_init(struct amdgpu_device *adev);
678void amdgpu_gart_fini(struct amdgpu_device *adev);
679void amdgpu_gart_unbind(struct amdgpu_device *adev, unsigned offset,
680 int pages);
681int amdgpu_gart_bind(struct amdgpu_device *adev, unsigned offset,
682 int pages, struct page **pagelist,
683 dma_addr_t *dma_addr, uint32_t flags);
684
685/*
686 * GPU MC structures, functions & helpers
687 */
688struct amdgpu_mc {
689 resource_size_t aper_size;
690 resource_size_t aper_base;
691 resource_size_t agp_base;
692 /* for some chips with <= 32MB we need to lie
693 * about vram size near mc fb location */
694 u64 mc_vram_size;
695 u64 visible_vram_size;
696 u64 gtt_size;
697 u64 gtt_start;
698 u64 gtt_end;
699 u64 vram_start;
700 u64 vram_end;
701 unsigned vram_width;
702 u64 real_vram_size;
703 int vram_mtrr;
704 u64 gtt_base_align;
705 u64 mc_mask;
706 const struct firmware *fw; /* MC firmware */
707 uint32_t fw_version;
708 struct amdgpu_irq_src vm_fault;
Ken Wang81c59f52015-06-03 21:02:01 +0800709 uint32_t vram_type;
Alex Deucher97b2e202015-04-20 16:51:00 -0400710};
711
712/*
713 * GPU doorbell structures, functions & helpers
714 */
715typedef enum _AMDGPU_DOORBELL_ASSIGNMENT
716{
717 AMDGPU_DOORBELL_KIQ = 0x000,
718 AMDGPU_DOORBELL_HIQ = 0x001,
719 AMDGPU_DOORBELL_DIQ = 0x002,
720 AMDGPU_DOORBELL_MEC_RING0 = 0x010,
721 AMDGPU_DOORBELL_MEC_RING1 = 0x011,
722 AMDGPU_DOORBELL_MEC_RING2 = 0x012,
723 AMDGPU_DOORBELL_MEC_RING3 = 0x013,
724 AMDGPU_DOORBELL_MEC_RING4 = 0x014,
725 AMDGPU_DOORBELL_MEC_RING5 = 0x015,
726 AMDGPU_DOORBELL_MEC_RING6 = 0x016,
727 AMDGPU_DOORBELL_MEC_RING7 = 0x017,
728 AMDGPU_DOORBELL_GFX_RING0 = 0x020,
729 AMDGPU_DOORBELL_sDMA_ENGINE0 = 0x1E0,
730 AMDGPU_DOORBELL_sDMA_ENGINE1 = 0x1E1,
731 AMDGPU_DOORBELL_IH = 0x1E8,
732 AMDGPU_DOORBELL_MAX_ASSIGNMENT = 0x3FF,
733 AMDGPU_DOORBELL_INVALID = 0xFFFF
734} AMDGPU_DOORBELL_ASSIGNMENT;
735
736struct amdgpu_doorbell {
737 /* doorbell mmio */
738 resource_size_t base;
739 resource_size_t size;
740 u32 __iomem *ptr;
741 u32 num_doorbells; /* Number of doorbells actually reserved for amdgpu. */
742};
743
744void amdgpu_doorbell_get_kfd_info(struct amdgpu_device *adev,
745 phys_addr_t *aperture_base,
746 size_t *aperture_size,
747 size_t *start_offset);
748
749/*
750 * IRQS.
751 */
752
753struct amdgpu_flip_work {
754 struct work_struct flip_work;
755 struct work_struct unpin_work;
756 struct amdgpu_device *adev;
757 int crtc_id;
758 uint64_t base;
759 struct drm_pending_vblank_event *event;
760 struct amdgpu_bo *old_rbo;
Christian König1ffd2652015-08-11 17:29:52 +0200761 struct fence *excl;
762 unsigned shared_count;
763 struct fence **shared;
Alex Deucher97b2e202015-04-20 16:51:00 -0400764};
765
766
767/*
768 * CP & rings.
769 */
770
771struct amdgpu_ib {
772 struct amdgpu_sa_bo *sa_bo;
773 uint32_t length_dw;
774 uint64_t gpu_addr;
775 uint32_t *ptr;
Alex Deucher97b2e202015-04-20 16:51:00 -0400776 struct amdgpu_fence *fence;
777 struct amdgpu_user_fence *user;
Christian König8d0a7ce2015-11-03 20:58:50 +0100778 bool grabbed_vmid;
Alex Deucher97b2e202015-04-20 16:51:00 -0400779 struct amdgpu_vm *vm;
Christian König3cb485f2015-05-11 15:34:59 +0200780 struct amdgpu_ctx *ctx;
Alex Deucher97b2e202015-04-20 16:51:00 -0400781 uint32_t gds_base, gds_size;
782 uint32_t gws_base, gws_size;
783 uint32_t oa_base, oa_size;
Jammy Zhoude807f82015-05-11 23:41:41 +0800784 uint32_t flags;
Christian König5430a3f2015-07-21 18:02:21 +0200785 /* resulting sequence number */
786 uint64_t sequence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400787};
788
789enum amdgpu_ring_type {
790 AMDGPU_RING_TYPE_GFX,
791 AMDGPU_RING_TYPE_COMPUTE,
792 AMDGPU_RING_TYPE_SDMA,
793 AMDGPU_RING_TYPE_UVD,
794 AMDGPU_RING_TYPE_VCE
795};
796
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800797extern struct amd_sched_backend_ops amdgpu_sched_ops;
798
Christian König50838c82016-02-03 13:44:52 +0100799int amdgpu_job_alloc(struct amdgpu_device *adev, unsigned num_ibs,
800 struct amdgpu_job **job);
Christian Königd71518b2016-02-01 12:20:25 +0100801int amdgpu_job_alloc_with_ib(struct amdgpu_device *adev, unsigned size,
802 struct amdgpu_job **job);
Christian König50838c82016-02-03 13:44:52 +0100803void amdgpu_job_free(struct amdgpu_job *job);
Christian Königd71518b2016-02-01 12:20:25 +0100804int amdgpu_job_submit(struct amdgpu_job *job, struct amdgpu_ring *ring,
Christian König2bd9ccf2016-02-01 12:53:58 +0100805 struct amd_sched_entity *entity, void *owner,
806 struct fence **f);
Chunming Zhou3c704e92015-07-29 10:33:14 +0800807
Alex Deucher97b2e202015-04-20 16:51:00 -0400808struct amdgpu_ring {
809 struct amdgpu_device *adev;
810 const struct amdgpu_ring_funcs *funcs;
811 struct amdgpu_fence_driver fence_drv;
Christian König4f839a22015-09-08 20:22:31 +0200812 struct amd_gpu_scheduler sched;
Alex Deucher97b2e202015-04-20 16:51:00 -0400813
Chunming Zhou176e1ab2015-07-24 10:49:47 +0800814 spinlock_t fence_lock;
Alex Deucher97b2e202015-04-20 16:51:00 -0400815 struct amdgpu_bo *ring_obj;
816 volatile uint32_t *ring;
817 unsigned rptr_offs;
818 u64 next_rptr_gpu_addr;
819 volatile u32 *next_rptr_cpu_addr;
820 unsigned wptr;
821 unsigned wptr_old;
822 unsigned ring_size;
Christian Königc7e6be22016-01-21 13:06:05 +0100823 unsigned max_dw;
Alex Deucher97b2e202015-04-20 16:51:00 -0400824 int count_dw;
Alex Deucher97b2e202015-04-20 16:51:00 -0400825 uint64_t gpu_addr;
826 uint32_t align_mask;
827 uint32_t ptr_mask;
828 bool ready;
829 u32 nop;
830 u32 idx;
Alex Deucher97b2e202015-04-20 16:51:00 -0400831 u32 me;
832 u32 pipe;
833 u32 queue;
834 struct amdgpu_bo *mqd_obj;
835 u32 doorbell_index;
836 bool use_doorbell;
837 unsigned wptr_offs;
838 unsigned next_rptr_offs;
839 unsigned fence_offs;
Christian König3cb485f2015-05-11 15:34:59 +0200840 struct amdgpu_ctx *current_ctx;
Alex Deucher97b2e202015-04-20 16:51:00 -0400841 enum amdgpu_ring_type type;
842 char name[16];
843};
844
845/*
846 * VM
847 */
848
849/* maximum number of VMIDs */
850#define AMDGPU_NUM_VM 16
851
852/* number of entries in page table */
853#define AMDGPU_VM_PTE_COUNT (1 << amdgpu_vm_block_size)
854
855/* PTBs (Page Table Blocks) need to be aligned to 32K */
856#define AMDGPU_VM_PTB_ALIGN_SIZE 32768
857#define AMDGPU_VM_PTB_ALIGN_MASK (AMDGPU_VM_PTB_ALIGN_SIZE - 1)
858#define AMDGPU_VM_PTB_ALIGN(a) (((a) + AMDGPU_VM_PTB_ALIGN_MASK) & ~AMDGPU_VM_PTB_ALIGN_MASK)
859
860#define AMDGPU_PTE_VALID (1 << 0)
861#define AMDGPU_PTE_SYSTEM (1 << 1)
862#define AMDGPU_PTE_SNOOPED (1 << 2)
863
864/* VI only */
865#define AMDGPU_PTE_EXECUTABLE (1 << 4)
866
867#define AMDGPU_PTE_READABLE (1 << 5)
868#define AMDGPU_PTE_WRITEABLE (1 << 6)
869
870/* PTE (Page Table Entry) fragment field for different page sizes */
871#define AMDGPU_PTE_FRAG_4KB (0 << 7)
872#define AMDGPU_PTE_FRAG_64KB (4 << 7)
873#define AMDGPU_LOG2_PAGES_PER_FRAG 4
874
Christian Königd9c13152015-09-28 12:31:26 +0200875/* How to programm VM fault handling */
876#define AMDGPU_VM_FAULT_STOP_NEVER 0
877#define AMDGPU_VM_FAULT_STOP_FIRST 1
878#define AMDGPU_VM_FAULT_STOP_ALWAYS 2
879
Alex Deucher97b2e202015-04-20 16:51:00 -0400880struct amdgpu_vm_pt {
Christian Königee1782c2015-12-11 21:01:23 +0100881 struct amdgpu_bo_list_entry entry;
882 uint64_t addr;
Alex Deucher97b2e202015-04-20 16:51:00 -0400883};
884
885struct amdgpu_vm_id {
886 unsigned id;
887 uint64_t pd_gpu_addr;
888 /* last flushed PD/PT update */
Chunming Zhou3c623382015-08-20 18:33:59 +0800889 struct fence *flushed_updates;
Alex Deucher97b2e202015-04-20 16:51:00 -0400890};
891
892struct amdgpu_vm {
Christian König25cfc3c2015-12-19 19:42:05 +0100893 /* tree of virtual addresses mapped */
894 spinlock_t it_lock;
Alex Deucher97b2e202015-04-20 16:51:00 -0400895 struct rb_root va;
896
Christian König7fc11952015-07-30 11:53:42 +0200897 /* protecting invalidated */
Alex Deucher97b2e202015-04-20 16:51:00 -0400898 spinlock_t status_lock;
899
900 /* BOs moved, but not yet updated in the PT */
901 struct list_head invalidated;
902
Christian König7fc11952015-07-30 11:53:42 +0200903 /* BOs cleared in the PT because of a move */
904 struct list_head cleared;
905
906 /* BO mappings freed, but not yet updated in the PT */
Alex Deucher97b2e202015-04-20 16:51:00 -0400907 struct list_head freed;
908
909 /* contains the page directory */
910 struct amdgpu_bo *page_directory;
911 unsigned max_pde_used;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200912 struct fence *page_directory_fence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400913
914 /* array of page tables, one for each page directory entry */
915 struct amdgpu_vm_pt *page_tables;
916
917 /* for id and flush management per ring */
918 struct amdgpu_vm_id ids[AMDGPU_MAX_RINGS];
Christian König25cfc3c2015-12-19 19:42:05 +0100919
jimqu81d75a32015-12-04 17:17:00 +0800920 /* protecting freed */
921 spinlock_t freed_lock;
Christian König2bd9ccf2016-02-01 12:53:58 +0100922
923 /* Scheduler entity for page table updates */
924 struct amd_sched_entity entity;
Alex Deucher97b2e202015-04-20 16:51:00 -0400925};
926
Christian Königa9a78b32016-01-21 10:19:11 +0100927struct amdgpu_vm_manager_id {
928 struct list_head list;
929 struct fence *active;
930 atomic_long_t owner;
931};
Christian König8d0a7ce2015-11-03 20:58:50 +0100932
Christian Königa9a78b32016-01-21 10:19:11 +0100933struct amdgpu_vm_manager {
934 /* Handling of VMIDs */
935 struct mutex lock;
936 unsigned num_ids;
937 struct list_head ids_lru;
938 struct amdgpu_vm_manager_id ids[AMDGPU_NUM_VM];
Christian König1c16c0a2015-11-14 21:31:40 +0100939
Christian König8b4fb002015-11-15 16:04:16 +0100940 uint32_t max_pfn;
Alex Deucher97b2e202015-04-20 16:51:00 -0400941 /* vram base address for page table entry */
Christian König8b4fb002015-11-15 16:04:16 +0100942 u64 vram_base_offset;
Alex Deucher97b2e202015-04-20 16:51:00 -0400943 /* is vm enabled? */
Christian König8b4fb002015-11-15 16:04:16 +0100944 bool enabled;
Alex Deucher97b2e202015-04-20 16:51:00 -0400945 /* vm pte handling */
946 const struct amdgpu_vm_pte_funcs *vm_pte_funcs;
Christian König2d55e452016-02-08 17:37:38 +0100947 struct amdgpu_ring *vm_pte_rings[AMDGPU_MAX_RINGS];
948 unsigned vm_pte_num_rings;
949 atomic_t vm_pte_next_ring;
Alex Deucher97b2e202015-04-20 16:51:00 -0400950};
951
Christian Königa9a78b32016-01-21 10:19:11 +0100952void amdgpu_vm_manager_init(struct amdgpu_device *adev);
Christian Königea89f8c2015-11-15 20:52:06 +0100953void amdgpu_vm_manager_fini(struct amdgpu_device *adev);
Christian König8b4fb002015-11-15 16:04:16 +0100954int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm);
955void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm);
Christian König56467eb2015-12-11 15:16:32 +0100956void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
957 struct list_head *validated,
958 struct amdgpu_bo_list_entry *entry);
Christian Königee1782c2015-12-11 21:01:23 +0100959void amdgpu_vm_get_pt_bos(struct amdgpu_vm *vm, struct list_head *duplicates);
Christian Königeceb8a12016-01-11 15:35:21 +0100960void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev,
961 struct amdgpu_vm *vm);
Christian König8b4fb002015-11-15 16:04:16 +0100962int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Christian König94dd0a42016-01-18 17:01:42 +0100963 struct amdgpu_sync *sync, struct fence *fence);
Christian König8b4fb002015-11-15 16:04:16 +0100964void amdgpu_vm_flush(struct amdgpu_ring *ring,
965 struct amdgpu_vm *vm,
966 struct fence *updates);
Christian Königb07c9d22015-11-30 13:26:07 +0100967uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr);
Christian König8b4fb002015-11-15 16:04:16 +0100968int amdgpu_vm_update_page_directory(struct amdgpu_device *adev,
969 struct amdgpu_vm *vm);
970int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
971 struct amdgpu_vm *vm);
972int amdgpu_vm_clear_invalids(struct amdgpu_device *adev, struct amdgpu_vm *vm,
973 struct amdgpu_sync *sync);
974int amdgpu_vm_bo_update(struct amdgpu_device *adev,
975 struct amdgpu_bo_va *bo_va,
976 struct ttm_mem_reg *mem);
977void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
978 struct amdgpu_bo *bo);
979struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
980 struct amdgpu_bo *bo);
981struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
982 struct amdgpu_vm *vm,
983 struct amdgpu_bo *bo);
984int amdgpu_vm_bo_map(struct amdgpu_device *adev,
985 struct amdgpu_bo_va *bo_va,
986 uint64_t addr, uint64_t offset,
987 uint64_t size, uint32_t flags);
988int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
989 struct amdgpu_bo_va *bo_va,
990 uint64_t addr);
991void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
992 struct amdgpu_bo_va *bo_va);
Christian König8b4fb002015-11-15 16:04:16 +0100993
Alex Deucher97b2e202015-04-20 16:51:00 -0400994/*
995 * context related structures
996 */
997
Christian König21c16bf2015-07-07 17:24:49 +0200998struct amdgpu_ctx_ring {
Christian König91404fb2015-08-05 18:33:21 +0200999 uint64_t sequence;
Chunming Zhou37cd0ca2015-12-10 15:45:11 +08001000 struct fence **fences;
Christian König91404fb2015-08-05 18:33:21 +02001001 struct amd_sched_entity 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;
Chunming Zhou37cd0ca2015-12-10 15:45:11 +08001009 struct fence **fences;
Christian König21c16bf2015-07-07 17:24:49 +02001010 struct amdgpu_ctx_ring rings[AMDGPU_MAX_RINGS];
Alex Deucher97b2e202015-04-20 16:51:00 -04001011};
1012
1013struct amdgpu_ctx_mgr {
Alex Deucher0b492a42015-08-16 22:48:26 -04001014 struct amdgpu_device *adev;
1015 struct mutex lock;
1016 /* protected by lock */
1017 struct idr ctx_handles;
Alex Deucher97b2e202015-04-20 16:51:00 -04001018};
1019
Chunming Zhoud033a6d2015-11-05 15:23:09 +08001020int amdgpu_ctx_init(struct amdgpu_device *adev, enum amd_sched_priority pri,
Christian König47f38502015-08-04 17:51:05 +02001021 struct amdgpu_ctx *ctx);
1022void amdgpu_ctx_fini(struct amdgpu_ctx *ctx);
Alex Deucher0b492a42015-08-16 22:48:26 -04001023
Alex Deucher0b492a42015-08-16 22:48:26 -04001024struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id);
1025int amdgpu_ctx_put(struct amdgpu_ctx *ctx);
1026
Christian König21c16bf2015-07-07 17:24:49 +02001027uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
Christian Königce882e62015-08-19 15:00:55 +02001028 struct fence *fence);
Christian König21c16bf2015-07-07 17:24:49 +02001029struct fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
1030 struct amdgpu_ring *ring, uint64_t seq);
1031
Alex Deucher0b492a42015-08-16 22:48:26 -04001032int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
1033 struct drm_file *filp);
1034
Christian Königefd4ccb2015-08-04 16:20:31 +02001035void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr);
1036void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr);
Alex Deucher0b492a42015-08-16 22:48:26 -04001037
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);
Christian König636ce252015-12-18 21:26:47 +01001065void amdgpu_bo_list_get_list(struct amdgpu_bo_list *list,
1066 struct list_head *validated);
Alex Deucher97b2e202015-04-20 16:51:00 -04001067void amdgpu_bo_list_put(struct amdgpu_bo_list *list);
1068void amdgpu_bo_list_free(struct amdgpu_bo_list *list);
1069
1070/*
1071 * GFX stuff
1072 */
1073#include "clearstate_defs.h"
1074
1075struct amdgpu_rlc {
1076 /* for power gating */
1077 struct amdgpu_bo *save_restore_obj;
1078 uint64_t save_restore_gpu_addr;
1079 volatile uint32_t *sr_ptr;
1080 const u32 *reg_list;
1081 u32 reg_list_size;
1082 /* for clear state */
1083 struct amdgpu_bo *clear_state_obj;
1084 uint64_t clear_state_gpu_addr;
1085 volatile uint32_t *cs_ptr;
1086 const struct cs_section_def *cs_data;
1087 u32 clear_state_size;
1088 /* for cp tables */
1089 struct amdgpu_bo *cp_table_obj;
1090 uint64_t cp_table_gpu_addr;
1091 volatile uint32_t *cp_table_ptr;
1092 u32 cp_table_size;
1093};
1094
1095struct amdgpu_mec {
1096 struct amdgpu_bo *hpd_eop_obj;
1097 u64 hpd_eop_gpu_addr;
1098 u32 num_pipe;
1099 u32 num_mec;
1100 u32 num_queue;
1101};
1102
1103/*
1104 * GPU scratch registers structures, functions & helpers
1105 */
1106struct amdgpu_scratch {
1107 unsigned num_reg;
1108 uint32_t reg_base;
1109 bool free[32];
1110 uint32_t reg[32];
1111};
1112
1113/*
1114 * GFX configurations
1115 */
1116struct amdgpu_gca_config {
1117 unsigned max_shader_engines;
1118 unsigned max_tile_pipes;
1119 unsigned max_cu_per_sh;
1120 unsigned max_sh_per_se;
1121 unsigned max_backends_per_se;
1122 unsigned max_texture_channel_caches;
1123 unsigned max_gprs;
1124 unsigned max_gs_threads;
1125 unsigned max_hw_contexts;
1126 unsigned sc_prim_fifo_size_frontend;
1127 unsigned sc_prim_fifo_size_backend;
1128 unsigned sc_hiz_tile_fifo_size;
1129 unsigned sc_earlyz_tile_fifo_size;
1130
1131 unsigned num_tile_pipes;
1132 unsigned backend_enable_mask;
1133 unsigned mem_max_burst_length_bytes;
1134 unsigned mem_row_size_in_kb;
1135 unsigned shader_engine_tile_size;
1136 unsigned num_gpus;
1137 unsigned multi_gpu_tile_size;
1138 unsigned mc_arb_ramcfg;
1139 unsigned gb_addr_config;
1140
1141 uint32_t tile_mode_array[32];
1142 uint32_t macrotile_mode_array[16];
1143};
1144
1145struct amdgpu_gfx {
1146 struct mutex gpu_clock_mutex;
1147 struct amdgpu_gca_config config;
1148 struct amdgpu_rlc rlc;
1149 struct amdgpu_mec mec;
1150 struct amdgpu_scratch scratch;
1151 const struct firmware *me_fw; /* ME firmware */
1152 uint32_t me_fw_version;
1153 const struct firmware *pfp_fw; /* PFP firmware */
1154 uint32_t pfp_fw_version;
1155 const struct firmware *ce_fw; /* CE firmware */
1156 uint32_t ce_fw_version;
1157 const struct firmware *rlc_fw; /* RLC firmware */
1158 uint32_t rlc_fw_version;
1159 const struct firmware *mec_fw; /* MEC firmware */
1160 uint32_t mec_fw_version;
1161 const struct firmware *mec2_fw; /* MEC2 firmware */
1162 uint32_t mec2_fw_version;
Ken Wang02558a02015-06-03 19:52:06 +08001163 uint32_t me_feature_version;
1164 uint32_t ce_feature_version;
1165 uint32_t pfp_feature_version;
Jammy Zhou351643d2015-08-04 10:43:50 +08001166 uint32_t rlc_feature_version;
1167 uint32_t mec_feature_version;
1168 uint32_t mec2_feature_version;
Alex Deucher97b2e202015-04-20 16:51:00 -04001169 struct amdgpu_ring gfx_ring[AMDGPU_MAX_GFX_RINGS];
1170 unsigned num_gfx_rings;
1171 struct amdgpu_ring compute_ring[AMDGPU_MAX_COMPUTE_RINGS];
1172 unsigned num_compute_rings;
1173 struct amdgpu_irq_src eop_irq;
1174 struct amdgpu_irq_src priv_reg_irq;
1175 struct amdgpu_irq_src priv_inst_irq;
1176 /* gfx status */
1177 uint32_t gfx_current_status;
Ken Wanga101a892015-06-03 17:47:54 +08001178 /* ce ram size*/
1179 unsigned ce_ram_size;
Alex Deucher97b2e202015-04-20 16:51:00 -04001180};
1181
Christian Königb07c60c2016-01-31 12:29:04 +01001182int amdgpu_ib_get(struct amdgpu_device *adev, struct amdgpu_vm *vm,
Alex Deucher97b2e202015-04-20 16:51:00 -04001183 unsigned size, struct amdgpu_ib *ib);
1184void amdgpu_ib_free(struct amdgpu_device *adev, struct amdgpu_ib *ib);
Christian Königb07c60c2016-01-31 12:29:04 +01001185int amdgpu_ib_schedule(struct amdgpu_ring *ring, unsigned num_ibs,
Christian Königec72b802016-02-01 11:56:35 +01001186 struct amdgpu_ib *ib, void *owner,
Christian Könige86f9ce2016-02-08 12:13:05 +01001187 struct fence *last_vm_update,
Christian Königec72b802016-02-01 11:56:35 +01001188 struct fence **f);
Alex Deucher97b2e202015-04-20 16:51:00 -04001189int amdgpu_ib_pool_init(struct amdgpu_device *adev);
1190void amdgpu_ib_pool_fini(struct amdgpu_device *adev);
1191int amdgpu_ib_ring_tests(struct amdgpu_device *adev);
Alex Deucher97b2e202015-04-20 16:51:00 -04001192int amdgpu_ring_alloc(struct amdgpu_ring *ring, unsigned ndw);
Jammy Zhouedff0e22015-09-01 13:04:08 +08001193void amdgpu_ring_insert_nop(struct amdgpu_ring *ring, uint32_t count);
Christian König9e5d53092016-01-31 12:20:55 +01001194void amdgpu_ring_generic_pad_ib(struct amdgpu_ring *ring, struct amdgpu_ib *ib);
Alex Deucher97b2e202015-04-20 16:51:00 -04001195void amdgpu_ring_commit(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -04001196void amdgpu_ring_undo(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -04001197unsigned amdgpu_ring_backup(struct amdgpu_ring *ring,
1198 uint32_t **data);
1199int amdgpu_ring_restore(struct amdgpu_ring *ring,
1200 unsigned size, uint32_t *data);
1201int amdgpu_ring_init(struct amdgpu_device *adev, struct amdgpu_ring *ring,
1202 unsigned ring_size, u32 nop, u32 align_mask,
1203 struct amdgpu_irq_src *irq_src, unsigned irq_type,
1204 enum amdgpu_ring_type ring_type);
1205void amdgpu_ring_fini(struct amdgpu_ring *ring);
Christian König8120b612015-10-22 11:29:33 +02001206struct amdgpu_ring *amdgpu_ring_from_fence(struct fence *f);
Alex Deucher97b2e202015-04-20 16:51:00 -04001207
1208/*
1209 * CS.
1210 */
1211struct amdgpu_cs_chunk {
1212 uint32_t chunk_id;
1213 uint32_t length_dw;
1214 uint32_t *kdata;
Alex Deucher97b2e202015-04-20 16:51:00 -04001215};
1216
1217struct amdgpu_cs_parser {
1218 struct amdgpu_device *adev;
1219 struct drm_file *filp;
Christian König3cb485f2015-05-11 15:34:59 +02001220 struct amdgpu_ctx *ctx;
Christian Königc3cca412015-12-15 14:41:33 +01001221
Alex Deucher97b2e202015-04-20 16:51:00 -04001222 /* chunks */
1223 unsigned nchunks;
1224 struct amdgpu_cs_chunk *chunks;
Alex Deucher97b2e202015-04-20 16:51:00 -04001225
Christian König50838c82016-02-03 13:44:52 +01001226 /* scheduler job object */
1227 struct amdgpu_job *job;
Alex Deucher97b2e202015-04-20 16:51:00 -04001228
Christian Königc3cca412015-12-15 14:41:33 +01001229 /* buffer objects */
1230 struct ww_acquire_ctx ticket;
1231 struct amdgpu_bo_list *bo_list;
1232 struct amdgpu_bo_list_entry vm_pd;
1233 struct list_head validated;
1234 struct fence *fence;
1235 uint64_t bytes_moved_threshold;
1236 uint64_t bytes_moved;
Alex Deucher97b2e202015-04-20 16:51:00 -04001237
1238 /* user fence */
Christian König91acbeb2015-12-14 16:42:31 +01001239 struct amdgpu_bo_list_entry uf_entry;
Alex Deucher97b2e202015-04-20 16:51:00 -04001240};
1241
Chunming Zhoubb977d32015-08-18 15:16:40 +08001242struct amdgpu_job {
1243 struct amd_sched_job base;
1244 struct amdgpu_device *adev;
Christian Königb07c60c2016-01-31 12:29:04 +01001245 struct amdgpu_ring *ring;
Christian Könige86f9ce2016-02-08 12:13:05 +01001246 struct amdgpu_sync sync;
Chunming Zhoubb977d32015-08-18 15:16:40 +08001247 struct amdgpu_ib *ibs;
1248 uint32_t num_ibs;
Christian Könige2840222015-11-05 19:49:48 +01001249 void *owner;
Chunming Zhoubb977d32015-08-18 15:16:40 +08001250 struct amdgpu_user_fence uf;
Chunming Zhoubb977d32015-08-18 15:16:40 +08001251};
Junwei Zhanga6db8a32015-09-09 09:21:19 +08001252#define to_amdgpu_job(sched_job) \
1253 container_of((sched_job), struct amdgpu_job, base)
Chunming Zhoubb977d32015-08-18 15:16:40 +08001254
Christian König7270f832016-01-31 11:00:41 +01001255static inline u32 amdgpu_get_ib_value(struct amdgpu_cs_parser *p,
1256 uint32_t ib_idx, int idx)
Alex Deucher97b2e202015-04-20 16:51:00 -04001257{
Christian König50838c82016-02-03 13:44:52 +01001258 return p->job->ibs[ib_idx].ptr[idx];
Alex Deucher97b2e202015-04-20 16:51:00 -04001259}
1260
Christian König7270f832016-01-31 11:00:41 +01001261static inline void amdgpu_set_ib_value(struct amdgpu_cs_parser *p,
1262 uint32_t ib_idx, int idx,
1263 uint32_t value)
1264{
Christian König50838c82016-02-03 13:44:52 +01001265 p->job->ibs[ib_idx].ptr[idx] = value;
Christian König7270f832016-01-31 11:00:41 +01001266}
1267
Alex Deucher97b2e202015-04-20 16:51:00 -04001268/*
1269 * Writeback
1270 */
1271#define AMDGPU_MAX_WB 1024 /* Reserve at most 1024 WB slots for amdgpu-owned rings. */
1272
1273struct amdgpu_wb {
1274 struct amdgpu_bo *wb_obj;
1275 volatile uint32_t *wb;
1276 uint64_t gpu_addr;
1277 u32 num_wb; /* Number of wb slots actually reserved for amdgpu. */
1278 unsigned long used[DIV_ROUND_UP(AMDGPU_MAX_WB, BITS_PER_LONG)];
1279};
1280
1281int amdgpu_wb_get(struct amdgpu_device *adev, u32 *wb);
1282void amdgpu_wb_free(struct amdgpu_device *adev, u32 wb);
1283
Alex Deucher97b2e202015-04-20 16:51:00 -04001284
Alex Deucher97b2e202015-04-20 16:51:00 -04001285
1286enum amdgpu_int_thermal_type {
1287 THERMAL_TYPE_NONE,
1288 THERMAL_TYPE_EXTERNAL,
1289 THERMAL_TYPE_EXTERNAL_GPIO,
1290 THERMAL_TYPE_RV6XX,
1291 THERMAL_TYPE_RV770,
1292 THERMAL_TYPE_ADT7473_WITH_INTERNAL,
1293 THERMAL_TYPE_EVERGREEN,
1294 THERMAL_TYPE_SUMO,
1295 THERMAL_TYPE_NI,
1296 THERMAL_TYPE_SI,
1297 THERMAL_TYPE_EMC2103_WITH_INTERNAL,
1298 THERMAL_TYPE_CI,
1299 THERMAL_TYPE_KV,
1300};
1301
1302enum amdgpu_dpm_auto_throttle_src {
1303 AMDGPU_DPM_AUTO_THROTTLE_SRC_THERMAL,
1304 AMDGPU_DPM_AUTO_THROTTLE_SRC_EXTERNAL
1305};
1306
1307enum amdgpu_dpm_event_src {
1308 AMDGPU_DPM_EVENT_SRC_ANALOG = 0,
1309 AMDGPU_DPM_EVENT_SRC_EXTERNAL = 1,
1310 AMDGPU_DPM_EVENT_SRC_DIGITAL = 2,
1311 AMDGPU_DPM_EVENT_SRC_ANALOG_OR_EXTERNAL = 3,
1312 AMDGPU_DPM_EVENT_SRC_DIGIAL_OR_EXTERNAL = 4
1313};
1314
1315#define AMDGPU_MAX_VCE_LEVELS 6
1316
1317enum amdgpu_vce_level {
1318 AMDGPU_VCE_LEVEL_AC_ALL = 0, /* AC, All cases */
1319 AMDGPU_VCE_LEVEL_DC_EE = 1, /* DC, entropy encoding */
1320 AMDGPU_VCE_LEVEL_DC_LL_LOW = 2, /* DC, low latency queue, res <= 720 */
1321 AMDGPU_VCE_LEVEL_DC_LL_HIGH = 3, /* DC, low latency queue, 1080 >= res > 720 */
1322 AMDGPU_VCE_LEVEL_DC_GP_LOW = 4, /* DC, general purpose queue, res <= 720 */
1323 AMDGPU_VCE_LEVEL_DC_GP_HIGH = 5, /* DC, general purpose queue, 1080 >= res > 720 */
1324};
1325
1326struct amdgpu_ps {
1327 u32 caps; /* vbios flags */
1328 u32 class; /* vbios flags */
1329 u32 class2; /* vbios flags */
1330 /* UVD clocks */
1331 u32 vclk;
1332 u32 dclk;
1333 /* VCE clocks */
1334 u32 evclk;
1335 u32 ecclk;
1336 bool vce_active;
1337 enum amdgpu_vce_level vce_level;
1338 /* asic priv */
1339 void *ps_priv;
1340};
1341
1342struct amdgpu_dpm_thermal {
1343 /* thermal interrupt work */
1344 struct work_struct work;
1345 /* low temperature threshold */
1346 int min_temp;
1347 /* high temperature threshold */
1348 int max_temp;
1349 /* was last interrupt low to high or high to low */
1350 bool high_to_low;
1351 /* interrupt source */
1352 struct amdgpu_irq_src irq;
1353};
1354
1355enum amdgpu_clk_action
1356{
1357 AMDGPU_SCLK_UP = 1,
1358 AMDGPU_SCLK_DOWN
1359};
1360
1361struct amdgpu_blacklist_clocks
1362{
1363 u32 sclk;
1364 u32 mclk;
1365 enum amdgpu_clk_action action;
1366};
1367
1368struct amdgpu_clock_and_voltage_limits {
1369 u32 sclk;
1370 u32 mclk;
1371 u16 vddc;
1372 u16 vddci;
1373};
1374
1375struct amdgpu_clock_array {
1376 u32 count;
1377 u32 *values;
1378};
1379
1380struct amdgpu_clock_voltage_dependency_entry {
1381 u32 clk;
1382 u16 v;
1383};
1384
1385struct amdgpu_clock_voltage_dependency_table {
1386 u32 count;
1387 struct amdgpu_clock_voltage_dependency_entry *entries;
1388};
1389
1390union amdgpu_cac_leakage_entry {
1391 struct {
1392 u16 vddc;
1393 u32 leakage;
1394 };
1395 struct {
1396 u16 vddc1;
1397 u16 vddc2;
1398 u16 vddc3;
1399 };
1400};
1401
1402struct amdgpu_cac_leakage_table {
1403 u32 count;
1404 union amdgpu_cac_leakage_entry *entries;
1405};
1406
1407struct amdgpu_phase_shedding_limits_entry {
1408 u16 voltage;
1409 u32 sclk;
1410 u32 mclk;
1411};
1412
1413struct amdgpu_phase_shedding_limits_table {
1414 u32 count;
1415 struct amdgpu_phase_shedding_limits_entry *entries;
1416};
1417
1418struct amdgpu_uvd_clock_voltage_dependency_entry {
1419 u32 vclk;
1420 u32 dclk;
1421 u16 v;
1422};
1423
1424struct amdgpu_uvd_clock_voltage_dependency_table {
1425 u8 count;
1426 struct amdgpu_uvd_clock_voltage_dependency_entry *entries;
1427};
1428
1429struct amdgpu_vce_clock_voltage_dependency_entry {
1430 u32 ecclk;
1431 u32 evclk;
1432 u16 v;
1433};
1434
1435struct amdgpu_vce_clock_voltage_dependency_table {
1436 u8 count;
1437 struct amdgpu_vce_clock_voltage_dependency_entry *entries;
1438};
1439
1440struct amdgpu_ppm_table {
1441 u8 ppm_design;
1442 u16 cpu_core_number;
1443 u32 platform_tdp;
1444 u32 small_ac_platform_tdp;
1445 u32 platform_tdc;
1446 u32 small_ac_platform_tdc;
1447 u32 apu_tdp;
1448 u32 dgpu_tdp;
1449 u32 dgpu_ulv_power;
1450 u32 tj_max;
1451};
1452
1453struct amdgpu_cac_tdp_table {
1454 u16 tdp;
1455 u16 configurable_tdp;
1456 u16 tdc;
1457 u16 battery_power_limit;
1458 u16 small_power_limit;
1459 u16 low_cac_leakage;
1460 u16 high_cac_leakage;
1461 u16 maximum_power_delivery_limit;
1462};
1463
1464struct amdgpu_dpm_dynamic_state {
1465 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_sclk;
1466 struct amdgpu_clock_voltage_dependency_table vddci_dependency_on_mclk;
1467 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_mclk;
1468 struct amdgpu_clock_voltage_dependency_table mvdd_dependency_on_mclk;
1469 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_dispclk;
1470 struct amdgpu_uvd_clock_voltage_dependency_table uvd_clock_voltage_dependency_table;
1471 struct amdgpu_vce_clock_voltage_dependency_table vce_clock_voltage_dependency_table;
1472 struct amdgpu_clock_voltage_dependency_table samu_clock_voltage_dependency_table;
1473 struct amdgpu_clock_voltage_dependency_table acp_clock_voltage_dependency_table;
1474 struct amdgpu_clock_voltage_dependency_table vddgfx_dependency_on_sclk;
1475 struct amdgpu_clock_array valid_sclk_values;
1476 struct amdgpu_clock_array valid_mclk_values;
1477 struct amdgpu_clock_and_voltage_limits max_clock_voltage_on_dc;
1478 struct amdgpu_clock_and_voltage_limits max_clock_voltage_on_ac;
1479 u32 mclk_sclk_ratio;
1480 u32 sclk_mclk_delta;
1481 u16 vddc_vddci_delta;
1482 u16 min_vddc_for_pcie_gen2;
1483 struct amdgpu_cac_leakage_table cac_leakage_table;
1484 struct amdgpu_phase_shedding_limits_table phase_shedding_limits_table;
1485 struct amdgpu_ppm_table *ppm_table;
1486 struct amdgpu_cac_tdp_table *cac_tdp_table;
1487};
1488
1489struct amdgpu_dpm_fan {
1490 u16 t_min;
1491 u16 t_med;
1492 u16 t_high;
1493 u16 pwm_min;
1494 u16 pwm_med;
1495 u16 pwm_high;
1496 u8 t_hyst;
1497 u32 cycle_delay;
1498 u16 t_max;
1499 u8 control_mode;
1500 u16 default_max_fan_pwm;
1501 u16 default_fan_output_sensitivity;
1502 u16 fan_output_sensitivity;
1503 bool ucode_fan_control;
1504};
1505
1506enum amdgpu_pcie_gen {
1507 AMDGPU_PCIE_GEN1 = 0,
1508 AMDGPU_PCIE_GEN2 = 1,
1509 AMDGPU_PCIE_GEN3 = 2,
1510 AMDGPU_PCIE_GEN_INVALID = 0xffff
1511};
1512
1513enum amdgpu_dpm_forced_level {
1514 AMDGPU_DPM_FORCED_LEVEL_AUTO = 0,
1515 AMDGPU_DPM_FORCED_LEVEL_LOW = 1,
1516 AMDGPU_DPM_FORCED_LEVEL_HIGH = 2,
Eric Huangf3898ea2015-12-11 16:24:34 -05001517 AMDGPU_DPM_FORCED_LEVEL_MANUAL = 3,
Alex Deucher97b2e202015-04-20 16:51:00 -04001518};
1519
1520struct amdgpu_vce_state {
1521 /* vce clocks */
1522 u32 evclk;
1523 u32 ecclk;
1524 /* gpu clocks */
1525 u32 sclk;
1526 u32 mclk;
1527 u8 clk_idx;
1528 u8 pstate;
1529};
1530
1531struct amdgpu_dpm_funcs {
1532 int (*get_temperature)(struct amdgpu_device *adev);
1533 int (*pre_set_power_state)(struct amdgpu_device *adev);
1534 int (*set_power_state)(struct amdgpu_device *adev);
1535 void (*post_set_power_state)(struct amdgpu_device *adev);
1536 void (*display_configuration_changed)(struct amdgpu_device *adev);
1537 u32 (*get_sclk)(struct amdgpu_device *adev, bool low);
1538 u32 (*get_mclk)(struct amdgpu_device *adev, bool low);
1539 void (*print_power_state)(struct amdgpu_device *adev, struct amdgpu_ps *ps);
1540 void (*debugfs_print_current_performance_level)(struct amdgpu_device *adev, struct seq_file *m);
1541 int (*force_performance_level)(struct amdgpu_device *adev, enum amdgpu_dpm_forced_level level);
1542 bool (*vblank_too_short)(struct amdgpu_device *adev);
1543 void (*powergate_uvd)(struct amdgpu_device *adev, bool gate);
Sonny Jiangb7a07762015-05-28 15:47:53 -04001544 void (*powergate_vce)(struct amdgpu_device *adev, bool gate);
Alex Deucher97b2e202015-04-20 16:51:00 -04001545 void (*enable_bapm)(struct amdgpu_device *adev, bool enable);
1546 void (*set_fan_control_mode)(struct amdgpu_device *adev, u32 mode);
1547 u32 (*get_fan_control_mode)(struct amdgpu_device *adev);
1548 int (*set_fan_speed_percent)(struct amdgpu_device *adev, u32 speed);
1549 int (*get_fan_speed_percent)(struct amdgpu_device *adev, u32 *speed);
1550};
1551
1552struct amdgpu_dpm {
1553 struct amdgpu_ps *ps;
1554 /* number of valid power states */
1555 int num_ps;
1556 /* current power state that is active */
1557 struct amdgpu_ps *current_ps;
1558 /* requested power state */
1559 struct amdgpu_ps *requested_ps;
1560 /* boot up power state */
1561 struct amdgpu_ps *boot_ps;
1562 /* default uvd power state */
1563 struct amdgpu_ps *uvd_ps;
1564 /* vce requirements */
1565 struct amdgpu_vce_state vce_states[AMDGPU_MAX_VCE_LEVELS];
1566 enum amdgpu_vce_level vce_level;
Rex Zhu3a2c7882015-08-25 15:57:43 +08001567 enum amd_pm_state_type state;
1568 enum amd_pm_state_type user_state;
Alex Deucher97b2e202015-04-20 16:51:00 -04001569 u32 platform_caps;
1570 u32 voltage_response_time;
1571 u32 backbias_response_time;
1572 void *priv;
1573 u32 new_active_crtcs;
1574 int new_active_crtc_count;
1575 u32 current_active_crtcs;
1576 int current_active_crtc_count;
1577 struct amdgpu_dpm_dynamic_state dyn_state;
1578 struct amdgpu_dpm_fan fan;
1579 u32 tdp_limit;
1580 u32 near_tdp_limit;
1581 u32 near_tdp_limit_adjusted;
1582 u32 sq_ramping_threshold;
1583 u32 cac_leakage;
1584 u16 tdp_od_limit;
1585 u32 tdp_adjustment;
1586 u16 load_line_slope;
1587 bool power_control;
1588 bool ac_power;
1589 /* special states active */
1590 bool thermal_active;
1591 bool uvd_active;
1592 bool vce_active;
1593 /* thermal handling */
1594 struct amdgpu_dpm_thermal thermal;
1595 /* forced levels */
1596 enum amdgpu_dpm_forced_level forced_level;
1597};
1598
1599struct amdgpu_pm {
1600 struct mutex mutex;
Alex Deucher97b2e202015-04-20 16:51:00 -04001601 u32 current_sclk;
1602 u32 current_mclk;
1603 u32 default_sclk;
1604 u32 default_mclk;
1605 struct amdgpu_i2c_chan *i2c_bus;
1606 /* internal thermal controller on rv6xx+ */
1607 enum amdgpu_int_thermal_type int_thermal_type;
1608 struct device *int_hwmon_dev;
1609 /* fan control parameters */
1610 bool no_fan;
1611 u8 fan_pulses_per_revolution;
1612 u8 fan_min_rpm;
1613 u8 fan_max_rpm;
1614 /* dpm */
1615 bool dpm_enabled;
Alex Deucherc86f5ebf2015-10-23 10:45:14 -04001616 bool sysfs_initialized;
Alex Deucher97b2e202015-04-20 16:51:00 -04001617 struct amdgpu_dpm dpm;
1618 const struct firmware *fw; /* SMC firmware */
1619 uint32_t fw_version;
1620 const struct amdgpu_dpm_funcs *funcs;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05001621 uint32_t pcie_gen_mask;
1622 uint32_t pcie_mlw_mask;
Rex Zhu7fb72a12015-11-19 13:35:30 +08001623 struct amd_pp_display_configuration pm_display_cfg;/* set by DAL */
Alex Deucher97b2e202015-04-20 16:51:00 -04001624};
1625
Alex Deucherd0dd7f02015-11-11 19:45:06 -05001626void amdgpu_get_pcie_info(struct amdgpu_device *adev);
1627
Alex Deucher97b2e202015-04-20 16:51:00 -04001628/*
1629 * UVD
1630 */
1631#define AMDGPU_MAX_UVD_HANDLES 10
1632#define AMDGPU_UVD_STACK_SIZE (1024*1024)
1633#define AMDGPU_UVD_HEAP_SIZE (1024*1024)
1634#define AMDGPU_UVD_FIRMWARE_OFFSET 256
1635
1636struct amdgpu_uvd {
1637 struct amdgpu_bo *vcpu_bo;
1638 void *cpu_addr;
1639 uint64_t gpu_addr;
Alex Deucher97b2e202015-04-20 16:51:00 -04001640 atomic_t handles[AMDGPU_MAX_UVD_HANDLES];
1641 struct drm_file *filp[AMDGPU_MAX_UVD_HANDLES];
1642 struct delayed_work idle_work;
1643 const struct firmware *fw; /* UVD firmware */
1644 struct amdgpu_ring ring;
1645 struct amdgpu_irq_src irq;
1646 bool address_64_bit;
1647};
1648
1649/*
1650 * VCE
1651 */
1652#define AMDGPU_MAX_VCE_HANDLES 16
Alex Deucher97b2e202015-04-20 16:51:00 -04001653#define AMDGPU_VCE_FIRMWARE_OFFSET 256
1654
Alex Deucher6a585772015-07-10 14:16:24 -04001655#define AMDGPU_VCE_HARVEST_VCE0 (1 << 0)
1656#define AMDGPU_VCE_HARVEST_VCE1 (1 << 1)
1657
Alex Deucher97b2e202015-04-20 16:51:00 -04001658struct amdgpu_vce {
1659 struct amdgpu_bo *vcpu_bo;
1660 uint64_t gpu_addr;
1661 unsigned fw_version;
1662 unsigned fb_version;
1663 atomic_t handles[AMDGPU_MAX_VCE_HANDLES];
1664 struct drm_file *filp[AMDGPU_MAX_VCE_HANDLES];
Christian Königf1689ec2015-06-11 20:56:18 +02001665 uint32_t img_size[AMDGPU_MAX_VCE_HANDLES];
Alex Deucher97b2e202015-04-20 16:51:00 -04001666 struct delayed_work idle_work;
1667 const struct firmware *fw; /* VCE firmware */
1668 struct amdgpu_ring ring[AMDGPU_MAX_VCE_RINGS];
1669 struct amdgpu_irq_src irq;
Alex Deucher6a585772015-07-10 14:16:24 -04001670 unsigned harvest_config;
Alex Deucher97b2e202015-04-20 16:51:00 -04001671};
1672
1673/*
1674 * SDMA
1675 */
Alex Deucherc113ea12015-10-08 16:30:37 -04001676struct amdgpu_sdma_instance {
Alex Deucher97b2e202015-04-20 16:51:00 -04001677 /* SDMA firmware */
1678 const struct firmware *fw;
1679 uint32_t fw_version;
Jammy Zhoucfa21042015-08-04 10:50:47 +08001680 uint32_t feature_version;
Alex Deucher97b2e202015-04-20 16:51:00 -04001681
1682 struct amdgpu_ring ring;
Jammy Zhou18111de2015-08-31 14:06:39 +08001683 bool burst_nop;
Alex Deucher97b2e202015-04-20 16:51:00 -04001684};
1685
Alex Deucherc113ea12015-10-08 16:30:37 -04001686struct amdgpu_sdma {
1687 struct amdgpu_sdma_instance instance[AMDGPU_MAX_SDMA_INSTANCES];
1688 struct amdgpu_irq_src trap_irq;
1689 struct amdgpu_irq_src illegal_inst_irq;
1690 int num_instances;
1691};
1692
Alex Deucher97b2e202015-04-20 16:51:00 -04001693/*
1694 * Firmware
1695 */
1696struct amdgpu_firmware {
1697 struct amdgpu_firmware_info ucode[AMDGPU_UCODE_ID_MAXIMUM];
1698 bool smu_load;
1699 struct amdgpu_bo *fw_buf;
1700 unsigned int fw_size;
1701};
1702
1703/*
1704 * Benchmarking
1705 */
1706void amdgpu_benchmark(struct amdgpu_device *adev, int test_number);
1707
1708
1709/*
1710 * Testing
1711 */
1712void amdgpu_test_moves(struct amdgpu_device *adev);
1713void amdgpu_test_ring_sync(struct amdgpu_device *adev,
1714 struct amdgpu_ring *cpA,
1715 struct amdgpu_ring *cpB);
1716void amdgpu_test_syncing(struct amdgpu_device *adev);
1717
1718/*
1719 * MMU Notifier
1720 */
1721#if defined(CONFIG_MMU_NOTIFIER)
1722int amdgpu_mn_register(struct amdgpu_bo *bo, unsigned long addr);
1723void amdgpu_mn_unregister(struct amdgpu_bo *bo);
1724#else
Harry Wentland1d1106b2015-07-15 07:10:41 -04001725static inline int amdgpu_mn_register(struct amdgpu_bo *bo, unsigned long addr)
Alex Deucher97b2e202015-04-20 16:51:00 -04001726{
1727 return -ENODEV;
1728}
Harry Wentland1d1106b2015-07-15 07:10:41 -04001729static inline void amdgpu_mn_unregister(struct amdgpu_bo *bo) {}
Alex Deucher97b2e202015-04-20 16:51:00 -04001730#endif
1731
1732/*
1733 * Debugfs
1734 */
1735struct amdgpu_debugfs {
1736 struct drm_info_list *files;
1737 unsigned num_files;
1738};
1739
1740int amdgpu_debugfs_add_files(struct amdgpu_device *adev,
1741 struct drm_info_list *files,
1742 unsigned nfiles);
1743int amdgpu_debugfs_fence_init(struct amdgpu_device *adev);
1744
1745#if defined(CONFIG_DEBUG_FS)
1746int amdgpu_debugfs_init(struct drm_minor *minor);
1747void amdgpu_debugfs_cleanup(struct drm_minor *minor);
1748#endif
1749
1750/*
1751 * amdgpu smumgr functions
1752 */
1753struct amdgpu_smumgr_funcs {
1754 int (*check_fw_load_finish)(struct amdgpu_device *adev, uint32_t fwtype);
1755 int (*request_smu_load_fw)(struct amdgpu_device *adev);
1756 int (*request_smu_specific_fw)(struct amdgpu_device *adev, uint32_t fwtype);
1757};
1758
1759/*
1760 * amdgpu smumgr
1761 */
1762struct amdgpu_smumgr {
1763 struct amdgpu_bo *toc_buf;
1764 struct amdgpu_bo *smu_buf;
1765 /* asic priv smu data */
1766 void *priv;
1767 spinlock_t smu_lock;
1768 /* smumgr functions */
1769 const struct amdgpu_smumgr_funcs *smumgr_funcs;
1770 /* ucode loading complete flag */
1771 uint32_t fw_flags;
1772};
1773
1774/*
1775 * ASIC specific register table accessible by UMD
1776 */
1777struct amdgpu_allowed_register_entry {
1778 uint32_t reg_offset;
1779 bool untouched;
1780 bool grbm_indexed;
1781};
1782
1783struct amdgpu_cu_info {
1784 uint32_t number; /* total active CU number */
1785 uint32_t ao_cu_mask;
1786 uint32_t bitmap[4][4];
1787};
1788
1789
1790/*
1791 * ASIC specific functions.
1792 */
1793struct amdgpu_asic_funcs {
1794 bool (*read_disabled_bios)(struct amdgpu_device *adev);
Alex Deucher7946b872015-11-24 10:14:28 -05001795 bool (*read_bios_from_rom)(struct amdgpu_device *adev,
1796 u8 *bios, u32 length_bytes);
Alex Deucher97b2e202015-04-20 16:51:00 -04001797 int (*read_register)(struct amdgpu_device *adev, u32 se_num,
1798 u32 sh_num, u32 reg_offset, u32 *value);
1799 void (*set_vga_state)(struct amdgpu_device *adev, bool state);
1800 int (*reset)(struct amdgpu_device *adev);
1801 /* wait for mc_idle */
1802 int (*wait_for_mc_idle)(struct amdgpu_device *adev);
1803 /* get the reference clock */
1804 u32 (*get_xclk)(struct amdgpu_device *adev);
1805 /* get the gpu clock counter */
1806 uint64_t (*get_gpu_clock_counter)(struct amdgpu_device *adev);
1807 int (*get_cu_info)(struct amdgpu_device *adev, struct amdgpu_cu_info *info);
1808 /* MM block clocks */
1809 int (*set_uvd_clocks)(struct amdgpu_device *adev, u32 vclk, u32 dclk);
1810 int (*set_vce_clocks)(struct amdgpu_device *adev, u32 evclk, u32 ecclk);
1811};
1812
1813/*
1814 * IOCTL.
1815 */
1816int amdgpu_gem_create_ioctl(struct drm_device *dev, void *data,
1817 struct drm_file *filp);
1818int amdgpu_bo_list_ioctl(struct drm_device *dev, void *data,
1819 struct drm_file *filp);
1820
1821int amdgpu_gem_info_ioctl(struct drm_device *dev, void *data,
1822 struct drm_file *filp);
1823int amdgpu_gem_userptr_ioctl(struct drm_device *dev, void *data,
1824 struct drm_file *filp);
1825int amdgpu_gem_mmap_ioctl(struct drm_device *dev, void *data,
1826 struct drm_file *filp);
1827int amdgpu_gem_wait_idle_ioctl(struct drm_device *dev, void *data,
1828 struct drm_file *filp);
1829int amdgpu_gem_va_ioctl(struct drm_device *dev, void *data,
1830 struct drm_file *filp);
1831int amdgpu_gem_op_ioctl(struct drm_device *dev, void *data,
1832 struct drm_file *filp);
1833int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
1834int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
1835
1836int amdgpu_gem_metadata_ioctl(struct drm_device *dev, void *data,
1837 struct drm_file *filp);
1838
1839/* VRAM scratch page for HDP bug, default vram page */
1840struct amdgpu_vram_scratch {
1841 struct amdgpu_bo *robj;
1842 volatile uint32_t *ptr;
1843 u64 gpu_addr;
1844};
1845
1846/*
1847 * ACPI
1848 */
1849struct amdgpu_atif_notification_cfg {
1850 bool enabled;
1851 int command_code;
1852};
1853
1854struct amdgpu_atif_notifications {
1855 bool display_switch;
1856 bool expansion_mode_change;
1857 bool thermal_state;
1858 bool forced_power_state;
1859 bool system_power_state;
1860 bool display_conf_change;
1861 bool px_gfx_switch;
1862 bool brightness_change;
1863 bool dgpu_display_event;
1864};
1865
1866struct amdgpu_atif_functions {
1867 bool system_params;
1868 bool sbios_requests;
1869 bool select_active_disp;
1870 bool lid_state;
1871 bool get_tv_standard;
1872 bool set_tv_standard;
1873 bool get_panel_expansion_mode;
1874 bool set_panel_expansion_mode;
1875 bool temperature_change;
1876 bool graphics_device_types;
1877};
1878
1879struct amdgpu_atif {
1880 struct amdgpu_atif_notifications notifications;
1881 struct amdgpu_atif_functions functions;
1882 struct amdgpu_atif_notification_cfg notification_cfg;
1883 struct amdgpu_encoder *encoder_for_bl;
1884};
1885
1886struct amdgpu_atcs_functions {
1887 bool get_ext_state;
1888 bool pcie_perf_req;
1889 bool pcie_dev_rdy;
1890 bool pcie_bus_width;
1891};
1892
1893struct amdgpu_atcs {
1894 struct amdgpu_atcs_functions functions;
1895};
1896
Alex Deucher97b2e202015-04-20 16:51:00 -04001897/*
Chunming Zhoud03846a2015-07-28 14:20:03 -04001898 * CGS
1899 */
1900void *amdgpu_cgs_create_device(struct amdgpu_device *adev);
1901void amdgpu_cgs_destroy_device(void *cgs_device);
1902
1903
1904/*
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -04001905 * CGS
1906 */
1907void *amdgpu_cgs_create_device(struct amdgpu_device *adev);
1908void amdgpu_cgs_destroy_device(void *cgs_device);
1909
1910
Alex Deucher7e471e62016-02-01 11:13:04 -05001911/* GPU virtualization */
1912struct amdgpu_virtualization {
1913 bool supports_sr_iov;
1914};
1915
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -04001916/*
Alex Deucher97b2e202015-04-20 16:51:00 -04001917 * Core structure, functions and helpers.
1918 */
1919typedef uint32_t (*amdgpu_rreg_t)(struct amdgpu_device*, uint32_t);
1920typedef void (*amdgpu_wreg_t)(struct amdgpu_device*, uint32_t, uint32_t);
1921
1922typedef uint32_t (*amdgpu_block_rreg_t)(struct amdgpu_device*, uint32_t, uint32_t);
1923typedef void (*amdgpu_block_wreg_t)(struct amdgpu_device*, uint32_t, uint32_t, uint32_t);
1924
Alex Deucher8faf0e02015-07-28 11:50:31 -04001925struct amdgpu_ip_block_status {
1926 bool valid;
1927 bool sw;
1928 bool hw;
1929};
1930
Alex Deucher97b2e202015-04-20 16:51:00 -04001931struct amdgpu_device {
1932 struct device *dev;
1933 struct drm_device *ddev;
1934 struct pci_dev *pdev;
Alex Deucher97b2e202015-04-20 16:51:00 -04001935
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -04001936#ifdef CONFIG_DRM_AMD_ACP
1937 struct amdgpu_acp acp;
1938#endif
1939
Alex Deucher97b2e202015-04-20 16:51:00 -04001940 /* ASIC */
Jammy Zhou2f7d10b2015-07-22 11:29:01 +08001941 enum amd_asic_type asic_type;
Alex Deucher97b2e202015-04-20 16:51:00 -04001942 uint32_t family;
1943 uint32_t rev_id;
1944 uint32_t external_rev_id;
1945 unsigned long flags;
1946 int usec_timeout;
1947 const struct amdgpu_asic_funcs *asic_funcs;
1948 bool shutdown;
1949 bool suspend;
1950 bool need_dma32;
1951 bool accel_working;
Alex Deucher97b2e202015-04-20 16:51:00 -04001952 struct work_struct reset_work;
1953 struct notifier_block acpi_nb;
1954 struct amdgpu_i2c_chan *i2c_bus[AMDGPU_MAX_I2C_BUS];
1955 struct amdgpu_debugfs debugfs[AMDGPU_DEBUGFS_MAX_COMPONENTS];
1956 unsigned debugfs_count;
1957#if defined(CONFIG_DEBUG_FS)
1958 struct dentry *debugfs_regs;
1959#endif
1960 struct amdgpu_atif atif;
1961 struct amdgpu_atcs atcs;
1962 struct mutex srbm_mutex;
1963 /* GRBM index mutex. Protects concurrent access to GRBM index */
1964 struct mutex grbm_idx_mutex;
1965 struct dev_pm_domain vga_pm_domain;
1966 bool have_disp_power_ref;
1967
1968 /* BIOS */
1969 uint8_t *bios;
1970 bool is_atom_bios;
1971 uint16_t bios_header_start;
1972 struct amdgpu_bo *stollen_vga_memory;
1973 uint32_t bios_scratch[AMDGPU_BIOS_NUM_SCRATCH];
1974
1975 /* Register/doorbell mmio */
1976 resource_size_t rmmio_base;
1977 resource_size_t rmmio_size;
1978 void __iomem *rmmio;
1979 /* protects concurrent MM_INDEX/DATA based register access */
1980 spinlock_t mmio_idx_lock;
1981 /* protects concurrent SMC based register access */
1982 spinlock_t smc_idx_lock;
1983 amdgpu_rreg_t smc_rreg;
1984 amdgpu_wreg_t smc_wreg;
1985 /* protects concurrent PCIE register access */
1986 spinlock_t pcie_idx_lock;
1987 amdgpu_rreg_t pcie_rreg;
1988 amdgpu_wreg_t pcie_wreg;
1989 /* protects concurrent UVD register access */
1990 spinlock_t uvd_ctx_idx_lock;
1991 amdgpu_rreg_t uvd_ctx_rreg;
1992 amdgpu_wreg_t uvd_ctx_wreg;
1993 /* protects concurrent DIDT register access */
1994 spinlock_t didt_idx_lock;
1995 amdgpu_rreg_t didt_rreg;
1996 amdgpu_wreg_t didt_wreg;
1997 /* protects concurrent ENDPOINT (audio) register access */
1998 spinlock_t audio_endpt_idx_lock;
1999 amdgpu_block_rreg_t audio_endpt_rreg;
2000 amdgpu_block_wreg_t audio_endpt_wreg;
2001 void __iomem *rio_mem;
2002 resource_size_t rio_mem_size;
2003 struct amdgpu_doorbell doorbell;
2004
2005 /* clock/pll info */
2006 struct amdgpu_clock clock;
2007
2008 /* MC */
2009 struct amdgpu_mc mc;
2010 struct amdgpu_gart gart;
2011 struct amdgpu_dummy_page dummy_page;
2012 struct amdgpu_vm_manager vm_manager;
2013
2014 /* memory management */
2015 struct amdgpu_mman mman;
2016 struct amdgpu_gem gem;
2017 struct amdgpu_vram_scratch vram_scratch;
2018 struct amdgpu_wb wb;
2019 atomic64_t vram_usage;
2020 atomic64_t vram_vis_usage;
2021 atomic64_t gtt_usage;
2022 atomic64_t num_bytes_moved;
Marek Olšákd94aed52015-05-05 21:13:49 +02002023 atomic_t gpu_reset_counter;
Alex Deucher97b2e202015-04-20 16:51:00 -04002024
2025 /* display */
2026 struct amdgpu_mode_info mode_info;
2027 struct work_struct hotplug_work;
2028 struct amdgpu_irq_src crtc_irq;
2029 struct amdgpu_irq_src pageflip_irq;
2030 struct amdgpu_irq_src hpd_irq;
2031
2032 /* rings */
Alex Deucher97b2e202015-04-20 16:51:00 -04002033 unsigned fence_context;
Alex Deucher97b2e202015-04-20 16:51:00 -04002034 unsigned num_rings;
2035 struct amdgpu_ring *rings[AMDGPU_MAX_RINGS];
2036 bool ib_pool_ready;
2037 struct amdgpu_sa_manager ring_tmp_bo;
2038
2039 /* interrupts */
2040 struct amdgpu_irq irq;
2041
Alex Deucher1f7371b2015-12-02 17:46:21 -05002042 /* powerplay */
2043 struct amd_powerplay powerplay;
Jammy Zhoue61710c2015-11-10 18:31:08 -05002044 bool pp_enabled;
Eric Huangf3898ea2015-12-11 16:24:34 -05002045 bool pp_force_state_enabled;
Alex Deucher1f7371b2015-12-02 17:46:21 -05002046
Alex Deucher97b2e202015-04-20 16:51:00 -04002047 /* dpm */
2048 struct amdgpu_pm pm;
2049 u32 cg_flags;
2050 u32 pg_flags;
2051
2052 /* amdgpu smumgr */
2053 struct amdgpu_smumgr smu;
2054
2055 /* gfx */
2056 struct amdgpu_gfx gfx;
2057
2058 /* sdma */
Alex Deucherc113ea12015-10-08 16:30:37 -04002059 struct amdgpu_sdma sdma;
Alex Deucher97b2e202015-04-20 16:51:00 -04002060
2061 /* uvd */
2062 bool has_uvd;
2063 struct amdgpu_uvd uvd;
2064
2065 /* vce */
2066 struct amdgpu_vce vce;
2067
2068 /* firmwares */
2069 struct amdgpu_firmware firmware;
2070
2071 /* GDS */
2072 struct amdgpu_gds gds;
2073
2074 const struct amdgpu_ip_block_version *ip_blocks;
2075 int num_ip_blocks;
Alex Deucher8faf0e02015-07-28 11:50:31 -04002076 struct amdgpu_ip_block_status *ip_block_status;
Alex Deucher97b2e202015-04-20 16:51:00 -04002077 struct mutex mn_lock;
2078 DECLARE_HASHTABLE(mn_hash, 7);
2079
2080 /* tracking pinned memory */
2081 u64 vram_pin_size;
2082 u64 gart_pin_size;
Oded Gabbay130e0372015-06-12 21:35:14 +03002083
2084 /* amdkfd interface */
2085 struct kfd_dev *kfd;
Chunming Zhou23ca0e42015-07-06 13:42:58 +08002086
2087 /* kernel conext for IB submission */
Christian König47f38502015-08-04 17:51:05 +02002088 struct amdgpu_ctx kernel_ctx;
Alex Deucher7e471e62016-02-01 11:13:04 -05002089
2090 struct amdgpu_virtualization virtualization;
Alex Deucher97b2e202015-04-20 16:51:00 -04002091};
2092
2093bool amdgpu_device_is_px(struct drm_device *dev);
2094int amdgpu_device_init(struct amdgpu_device *adev,
2095 struct drm_device *ddev,
2096 struct pci_dev *pdev,
2097 uint32_t flags);
2098void amdgpu_device_fini(struct amdgpu_device *adev);
2099int amdgpu_gpu_wait_for_idle(struct amdgpu_device *adev);
2100
2101uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg,
2102 bool always_indirect);
2103void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
2104 bool always_indirect);
2105u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg);
2106void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v);
2107
2108u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index);
2109void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v);
2110
2111/*
2112 * Cast helper
2113 */
2114extern const struct fence_ops amdgpu_fence_ops;
2115static inline struct amdgpu_fence *to_amdgpu_fence(struct fence *f)
2116{
2117 struct amdgpu_fence *__f = container_of(f, struct amdgpu_fence, base);
2118
2119 if (__f->base.ops == &amdgpu_fence_ops)
2120 return __f;
2121
2122 return NULL;
2123}
2124
2125/*
2126 * Registers read & write functions.
2127 */
2128#define RREG32(reg) amdgpu_mm_rreg(adev, (reg), false)
2129#define RREG32_IDX(reg) amdgpu_mm_rreg(adev, (reg), true)
2130#define DREG32(reg) printk(KERN_INFO "REGISTER: " #reg " : 0x%08X\n", amdgpu_mm_rreg(adev, (reg), false))
2131#define WREG32(reg, v) amdgpu_mm_wreg(adev, (reg), (v), false)
2132#define WREG32_IDX(reg, v) amdgpu_mm_wreg(adev, (reg), (v), true)
2133#define REG_SET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
2134#define REG_GET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
2135#define RREG32_PCIE(reg) adev->pcie_rreg(adev, (reg))
2136#define WREG32_PCIE(reg, v) adev->pcie_wreg(adev, (reg), (v))
2137#define RREG32_SMC(reg) adev->smc_rreg(adev, (reg))
2138#define WREG32_SMC(reg, v) adev->smc_wreg(adev, (reg), (v))
2139#define RREG32_UVD_CTX(reg) adev->uvd_ctx_rreg(adev, (reg))
2140#define WREG32_UVD_CTX(reg, v) adev->uvd_ctx_wreg(adev, (reg), (v))
2141#define RREG32_DIDT(reg) adev->didt_rreg(adev, (reg))
2142#define WREG32_DIDT(reg, v) adev->didt_wreg(adev, (reg), (v))
2143#define RREG32_AUDIO_ENDPT(block, reg) adev->audio_endpt_rreg(adev, (block), (reg))
2144#define WREG32_AUDIO_ENDPT(block, reg, v) adev->audio_endpt_wreg(adev, (block), (reg), (v))
2145#define WREG32_P(reg, val, mask) \
2146 do { \
2147 uint32_t tmp_ = RREG32(reg); \
2148 tmp_ &= (mask); \
2149 tmp_ |= ((val) & ~(mask)); \
2150 WREG32(reg, tmp_); \
2151 } while (0)
2152#define WREG32_AND(reg, and) WREG32_P(reg, 0, and)
2153#define WREG32_OR(reg, or) WREG32_P(reg, or, ~(or))
2154#define WREG32_PLL_P(reg, val, mask) \
2155 do { \
2156 uint32_t tmp_ = RREG32_PLL(reg); \
2157 tmp_ &= (mask); \
2158 tmp_ |= ((val) & ~(mask)); \
2159 WREG32_PLL(reg, tmp_); \
2160 } while (0)
2161#define DREG32_SYS(sqf, adev, reg) seq_printf((sqf), #reg " : 0x%08X\n", amdgpu_mm_rreg((adev), (reg), false))
2162#define RREG32_IO(reg) amdgpu_io_rreg(adev, (reg))
2163#define WREG32_IO(reg, v) amdgpu_io_wreg(adev, (reg), (v))
2164
2165#define RDOORBELL32(index) amdgpu_mm_rdoorbell(adev, (index))
2166#define WDOORBELL32(index, v) amdgpu_mm_wdoorbell(adev, (index), (v))
2167
2168#define REG_FIELD_SHIFT(reg, field) reg##__##field##__SHIFT
2169#define REG_FIELD_MASK(reg, field) reg##__##field##_MASK
2170
2171#define REG_SET_FIELD(orig_val, reg, field, field_val) \
2172 (((orig_val) & ~REG_FIELD_MASK(reg, field)) | \
2173 (REG_FIELD_MASK(reg, field) & ((field_val) << REG_FIELD_SHIFT(reg, field))))
2174
2175#define REG_GET_FIELD(value, reg, field) \
2176 (((value) & REG_FIELD_MASK(reg, field)) >> REG_FIELD_SHIFT(reg, field))
2177
2178/*
2179 * BIOS helpers.
2180 */
2181#define RBIOS8(i) (adev->bios[i])
2182#define RBIOS16(i) (RBIOS8(i) | (RBIOS8((i)+1) << 8))
2183#define RBIOS32(i) ((RBIOS16(i)) | (RBIOS16((i)+2) << 16))
2184
2185/*
2186 * RING helpers.
2187 */
2188static inline void amdgpu_ring_write(struct amdgpu_ring *ring, uint32_t v)
2189{
2190 if (ring->count_dw <= 0)
Jammy Zhou86c2b792015-05-13 22:52:42 +08002191 DRM_ERROR("amdgpu: writing more dwords to the ring than expected!\n");
Alex Deucher97b2e202015-04-20 16:51:00 -04002192 ring->ring[ring->wptr++] = v;
2193 ring->wptr &= ring->ptr_mask;
2194 ring->count_dw--;
Alex Deucher97b2e202015-04-20 16:51:00 -04002195}
2196
Alex Deucherc113ea12015-10-08 16:30:37 -04002197static inline struct amdgpu_sdma_instance *
2198amdgpu_get_sdma_instance(struct amdgpu_ring *ring)
Jammy Zhou4b2f7e22015-09-01 12:56:17 +08002199{
2200 struct amdgpu_device *adev = ring->adev;
2201 int i;
2202
Alex Deucherc113ea12015-10-08 16:30:37 -04002203 for (i = 0; i < adev->sdma.num_instances; i++)
2204 if (&adev->sdma.instance[i].ring == ring)
Jammy Zhou4b2f7e22015-09-01 12:56:17 +08002205 break;
2206
2207 if (i < AMDGPU_MAX_SDMA_INSTANCES)
Alex Deucherc113ea12015-10-08 16:30:37 -04002208 return &adev->sdma.instance[i];
Jammy Zhou4b2f7e22015-09-01 12:56:17 +08002209 else
2210 return NULL;
2211}
2212
Alex Deucher97b2e202015-04-20 16:51:00 -04002213/*
2214 * ASICs macro.
2215 */
2216#define amdgpu_asic_set_vga_state(adev, state) (adev)->asic_funcs->set_vga_state((adev), (state))
2217#define amdgpu_asic_reset(adev) (adev)->asic_funcs->reset((adev))
2218#define amdgpu_asic_wait_for_mc_idle(adev) (adev)->asic_funcs->wait_for_mc_idle((adev))
2219#define amdgpu_asic_get_xclk(adev) (adev)->asic_funcs->get_xclk((adev))
2220#define amdgpu_asic_set_uvd_clocks(adev, v, d) (adev)->asic_funcs->set_uvd_clocks((adev), (v), (d))
2221#define amdgpu_asic_set_vce_clocks(adev, ev, ec) (adev)->asic_funcs->set_vce_clocks((adev), (ev), (ec))
2222#define amdgpu_asic_get_gpu_clock_counter(adev) (adev)->asic_funcs->get_gpu_clock_counter((adev))
2223#define amdgpu_asic_read_disabled_bios(adev) (adev)->asic_funcs->read_disabled_bios((adev))
Alex Deucher7946b872015-11-24 10:14:28 -05002224#define amdgpu_asic_read_bios_from_rom(adev, b, l) (adev)->asic_funcs->read_bios_from_rom((adev), (b), (l))
Alex Deucher97b2e202015-04-20 16:51:00 -04002225#define amdgpu_asic_read_register(adev, se, sh, offset, v)((adev)->asic_funcs->read_register((adev), (se), (sh), (offset), (v)))
2226#define amdgpu_asic_get_cu_info(adev, info) (adev)->asic_funcs->get_cu_info((adev), (info))
2227#define amdgpu_gart_flush_gpu_tlb(adev, vmid) (adev)->gart.gart_funcs->flush_gpu_tlb((adev), (vmid))
2228#define amdgpu_gart_set_pte_pde(adev, pt, idx, addr, flags) (adev)->gart.gart_funcs->set_pte_pde((adev), (pt), (idx), (addr), (flags))
2229#define amdgpu_vm_copy_pte(adev, ib, pe, src, count) ((adev)->vm_manager.vm_pte_funcs->copy_pte((ib), (pe), (src), (count)))
Christian Königb07c9d22015-11-30 13:26:07 +01002230#define amdgpu_vm_write_pte(adev, ib, pa, pe, addr, count, incr, flags) ((adev)->vm_manager.vm_pte_funcs->write_pte((ib), (pa), (pe), (addr), (count), (incr), (flags)))
Alex Deucher97b2e202015-04-20 16:51:00 -04002231#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)))
Alex Deucher97b2e202015-04-20 16:51:00 -04002232#define amdgpu_ring_parse_cs(r, p, ib) ((r)->funcs->parse_cs((p), (ib)))
2233#define amdgpu_ring_test_ring(r) (r)->funcs->test_ring((r))
2234#define amdgpu_ring_test_ib(r) (r)->funcs->test_ib((r))
Alex Deucher97b2e202015-04-20 16:51:00 -04002235#define amdgpu_ring_get_rptr(r) (r)->funcs->get_rptr((r))
2236#define amdgpu_ring_get_wptr(r) (r)->funcs->get_wptr((r))
2237#define amdgpu_ring_set_wptr(r) (r)->funcs->set_wptr((r))
2238#define amdgpu_ring_emit_ib(r, ib) (r)->funcs->emit_ib((r), (ib))
2239#define amdgpu_ring_emit_vm_flush(r, vmid, addr) (r)->funcs->emit_vm_flush((r), (vmid), (addr))
Chunming Zhou890ee232015-06-01 14:35:03 +08002240#define amdgpu_ring_emit_fence(r, addr, seq, flags) (r)->funcs->emit_fence((r), (addr), (seq), (flags))
Alex Deucher97b2e202015-04-20 16:51:00 -04002241#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 +02002242#define amdgpu_ring_emit_hdp_flush(r) (r)->funcs->emit_hdp_flush((r))
Christian König9e5d53092016-01-31 12:20:55 +01002243#define amdgpu_ring_pad_ib(r, ib) ((r)->funcs->pad_ib((r), (ib)))
Alex Deucher97b2e202015-04-20 16:51:00 -04002244#define amdgpu_ih_get_wptr(adev) (adev)->irq.ih_funcs->get_wptr((adev))
2245#define amdgpu_ih_decode_iv(adev, iv) (adev)->irq.ih_funcs->decode_iv((adev), (iv))
2246#define amdgpu_ih_set_rptr(adev) (adev)->irq.ih_funcs->set_rptr((adev))
2247#define amdgpu_display_set_vga_render_state(adev, r) (adev)->mode_info.funcs->set_vga_render_state((adev), (r))
2248#define amdgpu_display_vblank_get_counter(adev, crtc) (adev)->mode_info.funcs->vblank_get_counter((adev), (crtc))
2249#define amdgpu_display_vblank_wait(adev, crtc) (adev)->mode_info.funcs->vblank_wait((adev), (crtc))
2250#define amdgpu_display_is_display_hung(adev) (adev)->mode_info.funcs->is_display_hung((adev))
2251#define amdgpu_display_backlight_set_level(adev, e, l) (adev)->mode_info.funcs->backlight_set_level((e), (l))
2252#define amdgpu_display_backlight_get_level(adev, e) (adev)->mode_info.funcs->backlight_get_level((e))
2253#define amdgpu_display_hpd_sense(adev, h) (adev)->mode_info.funcs->hpd_sense((adev), (h))
2254#define amdgpu_display_hpd_set_polarity(adev, h) (adev)->mode_info.funcs->hpd_set_polarity((adev), (h))
2255#define amdgpu_display_hpd_get_gpio_reg(adev) (adev)->mode_info.funcs->hpd_get_gpio_reg((adev))
2256#define amdgpu_display_bandwidth_update(adev) (adev)->mode_info.funcs->bandwidth_update((adev))
2257#define amdgpu_display_page_flip(adev, crtc, base) (adev)->mode_info.funcs->page_flip((adev), (crtc), (base))
2258#define amdgpu_display_page_flip_get_scanoutpos(adev, crtc, vbl, pos) (adev)->mode_info.funcs->page_flip_get_scanoutpos((adev), (crtc), (vbl), (pos))
2259#define amdgpu_display_add_encoder(adev, e, s, c) (adev)->mode_info.funcs->add_encoder((adev), (e), (s), (c))
2260#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))
2261#define amdgpu_display_stop_mc_access(adev, s) (adev)->mode_info.funcs->stop_mc_access((adev), (s))
2262#define amdgpu_display_resume_mc_access(adev, s) (adev)->mode_info.funcs->resume_mc_access((adev), (s))
Chunming Zhouc7ae72c2015-08-25 17:23:45 +08002263#define amdgpu_emit_copy_buffer(adev, ib, s, d, b) (adev)->mman.buffer_funcs->emit_copy_buffer((ib), (s), (d), (b))
Chunming Zhou6e7a3842015-08-27 13:46:09 +08002264#define amdgpu_emit_fill_buffer(adev, ib, s, d, b) (adev)->mman.buffer_funcs->emit_fill_buffer((ib), (s), (d), (b))
Alex Deucher97b2e202015-04-20 16:51:00 -04002265#define amdgpu_dpm_pre_set_power_state(adev) (adev)->pm.funcs->pre_set_power_state((adev))
2266#define amdgpu_dpm_set_power_state(adev) (adev)->pm.funcs->set_power_state((adev))
2267#define amdgpu_dpm_post_set_power_state(adev) (adev)->pm.funcs->post_set_power_state((adev))
2268#define amdgpu_dpm_display_configuration_changed(adev) (adev)->pm.funcs->display_configuration_changed((adev))
Alex Deucher97b2e202015-04-20 16:51:00 -04002269#define amdgpu_dpm_print_power_state(adev, ps) (adev)->pm.funcs->print_power_state((adev), (ps))
Alex Deucher97b2e202015-04-20 16:51:00 -04002270#define amdgpu_dpm_vblank_too_short(adev) (adev)->pm.funcs->vblank_too_short((adev))
Alex Deucher97b2e202015-04-20 16:51:00 -04002271#define amdgpu_dpm_enable_bapm(adev, e) (adev)->pm.funcs->enable_bapm((adev), (e))
Rex Zhu3af76f22015-10-15 17:23:43 +08002272
2273#define amdgpu_dpm_get_temperature(adev) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002274 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002275 (adev)->powerplay.pp_funcs->get_temperature((adev)->powerplay.pp_handle) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002276 (adev)->pm.funcs->get_temperature((adev)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002277
2278#define amdgpu_dpm_set_fan_control_mode(adev, m) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002279 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002280 (adev)->powerplay.pp_funcs->set_fan_control_mode((adev)->powerplay.pp_handle, (m)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002281 (adev)->pm.funcs->set_fan_control_mode((adev), (m)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002282
2283#define amdgpu_dpm_get_fan_control_mode(adev) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002284 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002285 (adev)->powerplay.pp_funcs->get_fan_control_mode((adev)->powerplay.pp_handle) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002286 (adev)->pm.funcs->get_fan_control_mode((adev)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002287
2288#define amdgpu_dpm_set_fan_speed_percent(adev, s) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002289 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002290 (adev)->powerplay.pp_funcs->set_fan_speed_percent((adev)->powerplay.pp_handle, (s)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002291 (adev)->pm.funcs->set_fan_speed_percent((adev), (s)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002292
2293#define amdgpu_dpm_get_fan_speed_percent(adev, s) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002294 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002295 (adev)->powerplay.pp_funcs->get_fan_speed_percent((adev)->powerplay.pp_handle, (s)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002296 (adev)->pm.funcs->get_fan_speed_percent((adev), (s)))
Alex Deucher97b2e202015-04-20 16:51:00 -04002297
Rex Zhu1b5708f2015-11-10 18:25:24 -05002298#define amdgpu_dpm_get_sclk(adev, l) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002299 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002300 (adev)->powerplay.pp_funcs->get_sclk((adev)->powerplay.pp_handle, (l)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002301 (adev)->pm.funcs->get_sclk((adev), (l)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002302
2303#define amdgpu_dpm_get_mclk(adev, l) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002304 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002305 (adev)->powerplay.pp_funcs->get_mclk((adev)->powerplay.pp_handle, (l)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002306 (adev)->pm.funcs->get_mclk((adev), (l)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002307
2308
2309#define amdgpu_dpm_force_performance_level(adev, l) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002310 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002311 (adev)->powerplay.pp_funcs->force_performance_level((adev)->powerplay.pp_handle, (l)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002312 (adev)->pm.funcs->force_performance_level((adev), (l)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002313
2314#define amdgpu_dpm_powergate_uvd(adev, g) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002315 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002316 (adev)->powerplay.pp_funcs->powergate_uvd((adev)->powerplay.pp_handle, (g)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002317 (adev)->pm.funcs->powergate_uvd((adev), (g)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002318
2319#define amdgpu_dpm_powergate_vce(adev, g) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002320 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002321 (adev)->powerplay.pp_funcs->powergate_vce((adev)->powerplay.pp_handle, (g)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002322 (adev)->pm.funcs->powergate_vce((adev), (g)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002323
2324#define amdgpu_dpm_debugfs_print_current_performance_level(adev, m) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002325 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002326 (adev)->powerplay.pp_funcs->print_current_performance_level((adev)->powerplay.pp_handle, (m)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002327 (adev)->pm.funcs->debugfs_print_current_performance_level((adev), (m)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002328
2329#define amdgpu_dpm_get_current_power_state(adev) \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002330 (adev)->powerplay.pp_funcs->get_current_power_state((adev)->powerplay.pp_handle)
Rex Zhu1b5708f2015-11-10 18:25:24 -05002331
2332#define amdgpu_dpm_get_performance_level(adev) \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002333 (adev)->powerplay.pp_funcs->get_performance_level((adev)->powerplay.pp_handle)
Rex Zhu1b5708f2015-11-10 18:25:24 -05002334
Eric Huangf3898ea2015-12-11 16:24:34 -05002335#define amdgpu_dpm_get_pp_num_states(adev, data) \
2336 (adev)->powerplay.pp_funcs->get_pp_num_states((adev)->powerplay.pp_handle, data)
2337
2338#define amdgpu_dpm_get_pp_table(adev, table) \
2339 (adev)->powerplay.pp_funcs->get_pp_table((adev)->powerplay.pp_handle, table)
2340
2341#define amdgpu_dpm_set_pp_table(adev, buf, size) \
2342 (adev)->powerplay.pp_funcs->set_pp_table((adev)->powerplay.pp_handle, buf, size)
2343
2344#define amdgpu_dpm_print_clock_levels(adev, type, buf) \
2345 (adev)->powerplay.pp_funcs->print_clock_levels((adev)->powerplay.pp_handle, type, buf)
2346
2347#define amdgpu_dpm_force_clock_level(adev, type, level) \
2348 (adev)->powerplay.pp_funcs->force_clock_level((adev)->powerplay.pp_handle, type, level)
2349
Jammy Zhoue61710c2015-11-10 18:31:08 -05002350#define amdgpu_dpm_dispatch_task(adev, event_id, input, output) \
Rex Zhu1b5708f2015-11-10 18:25:24 -05002351 (adev)->powerplay.pp_funcs->dispatch_tasks((adev)->powerplay.pp_handle, (event_id), (input), (output))
Alex Deucher97b2e202015-04-20 16:51:00 -04002352
2353#define amdgpu_gds_switch(adev, r, v, d, w, a) (adev)->gds.funcs->patch_gds_switch((r), (v), (d), (w), (a))
2354
2355/* Common functions */
2356int amdgpu_gpu_reset(struct amdgpu_device *adev);
2357void amdgpu_pci_config_reset(struct amdgpu_device *adev);
2358bool amdgpu_card_posted(struct amdgpu_device *adev);
2359void amdgpu_update_display_priority(struct amdgpu_device *adev);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08002360
Alex Deucher97b2e202015-04-20 16:51:00 -04002361int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data);
2362int amdgpu_cs_get_ring(struct amdgpu_device *adev, u32 ip_type,
2363 u32 ip_instance, u32 ring,
2364 struct amdgpu_ring **out_ring);
2365void amdgpu_ttm_placement_from_domain(struct amdgpu_bo *rbo, u32 domain);
2366bool amdgpu_ttm_bo_is_amdgpu_bo(struct ttm_buffer_object *bo);
2367int amdgpu_ttm_tt_set_userptr(struct ttm_tt *ttm, uint64_t addr,
2368 uint32_t flags);
Christian Königcc325d12016-02-08 11:08:35 +01002369struct mm_struct *amdgpu_ttm_tt_get_usermm(struct ttm_tt *ttm);
Christian Königd7006962016-02-08 10:57:22 +01002370bool amdgpu_ttm_tt_affect_userptr(struct ttm_tt *ttm, unsigned long start,
2371 unsigned long end);
Alex Deucher97b2e202015-04-20 16:51:00 -04002372bool amdgpu_ttm_tt_is_readonly(struct ttm_tt *ttm);
2373uint32_t amdgpu_ttm_tt_pte_flags(struct amdgpu_device *adev, struct ttm_tt *ttm,
2374 struct ttm_mem_reg *mem);
2375void amdgpu_vram_location(struct amdgpu_device *adev, struct amdgpu_mc *mc, u64 base);
2376void amdgpu_gtt_location(struct amdgpu_device *adev, struct amdgpu_mc *mc);
2377void amdgpu_ttm_set_active_vram_size(struct amdgpu_device *adev, u64 size);
2378void amdgpu_program_register_sequence(struct amdgpu_device *adev,
2379 const u32 *registers,
2380 const u32 array_size);
2381
2382bool amdgpu_device_is_px(struct drm_device *dev);
2383/* atpx handler */
2384#if defined(CONFIG_VGA_SWITCHEROO)
2385void amdgpu_register_atpx_handler(void);
2386void amdgpu_unregister_atpx_handler(void);
2387#else
2388static inline void amdgpu_register_atpx_handler(void) {}
2389static inline void amdgpu_unregister_atpx_handler(void) {}
2390#endif
2391
2392/*
2393 * KMS
2394 */
2395extern const struct drm_ioctl_desc amdgpu_ioctls_kms[];
2396extern int amdgpu_max_kms_ioctl;
2397
2398int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags);
2399int amdgpu_driver_unload_kms(struct drm_device *dev);
2400void amdgpu_driver_lastclose_kms(struct drm_device *dev);
2401int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv);
2402void amdgpu_driver_postclose_kms(struct drm_device *dev,
2403 struct drm_file *file_priv);
2404void amdgpu_driver_preclose_kms(struct drm_device *dev,
2405 struct drm_file *file_priv);
2406int amdgpu_suspend_kms(struct drm_device *dev, bool suspend, bool fbcon);
2407int amdgpu_resume_kms(struct drm_device *dev, bool resume, bool fbcon);
Thierry Reding88e72712015-09-24 18:35:31 +02002408u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe);
2409int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe);
2410void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe);
2411int amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
Alex Deucher97b2e202015-04-20 16:51:00 -04002412 int *max_error,
2413 struct timeval *vblank_time,
2414 unsigned flags);
2415long amdgpu_kms_compat_ioctl(struct file *filp, unsigned int cmd,
2416 unsigned long arg);
2417
2418/*
Alex Deucher97b2e202015-04-20 16:51:00 -04002419 * functions used by amdgpu_encoder.c
2420 */
2421struct amdgpu_afmt_acr {
2422 u32 clock;
2423
2424 int n_32khz;
2425 int cts_32khz;
2426
2427 int n_44_1khz;
2428 int cts_44_1khz;
2429
2430 int n_48khz;
2431 int cts_48khz;
2432
2433};
2434
2435struct amdgpu_afmt_acr amdgpu_afmt_acr(uint32_t clock);
2436
2437/* amdgpu_acpi.c */
2438#if defined(CONFIG_ACPI)
2439int amdgpu_acpi_init(struct amdgpu_device *adev);
2440void amdgpu_acpi_fini(struct amdgpu_device *adev);
2441bool amdgpu_acpi_is_pcie_performance_request_supported(struct amdgpu_device *adev);
2442int amdgpu_acpi_pcie_performance_request(struct amdgpu_device *adev,
2443 u8 perf_req, bool advertise);
2444int amdgpu_acpi_pcie_notify_device_ready(struct amdgpu_device *adev);
2445#else
2446static inline int amdgpu_acpi_init(struct amdgpu_device *adev) { return 0; }
2447static inline void amdgpu_acpi_fini(struct amdgpu_device *adev) { }
2448#endif
2449
2450struct amdgpu_bo_va_mapping *
2451amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
2452 uint64_t addr, struct amdgpu_bo **bo);
2453
2454#include "amdgpu_object.h"
2455
2456#endif