blob: e31ffe819ec77e6a99760be0c3d3477d894aad6b [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"
Flora Cuic632d792016-08-02 11:32:41 +080054#include "amdgpu_ttm.h"
Alex Deucher97b2e202015-04-20 16:51:00 -040055#include "amdgpu_gds.h"
Alex Deucher1f7371b2015-12-02 17:46:21 -050056#include "amd_powerplay.h"
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -040057#include "amdgpu_acp.h"
Alex Deucher97b2e202015-04-20 16:51:00 -040058
Alex Deucherb80d8472015-08-16 22:55:02 -040059#include "gpu_scheduler.h"
60
Alex Deucher97b2e202015-04-20 16:51:00 -040061/*
62 * Modules parameters.
63 */
64extern int amdgpu_modeset;
65extern int amdgpu_vram_limit;
66extern int amdgpu_gart_size;
Marek Olšák95844d22016-08-17 23:49:27 +020067extern int amdgpu_moverate;
Alex Deucher97b2e202015-04-20 16:51:00 -040068extern int amdgpu_benchmarking;
69extern int amdgpu_testing;
70extern int amdgpu_audio;
71extern int amdgpu_disp_priority;
72extern int amdgpu_hw_i2c;
73extern int amdgpu_pcie_gen2;
74extern int amdgpu_msi;
75extern int amdgpu_lockup_timeout;
76extern int amdgpu_dpm;
77extern int amdgpu_smc_load_fw;
78extern int amdgpu_aspm;
79extern int amdgpu_runtime_pm;
Alex Deucher97b2e202015-04-20 16:51:00 -040080extern unsigned amdgpu_ip_block_mask;
81extern int amdgpu_bapm;
82extern int amdgpu_deep_color;
83extern int amdgpu_vm_size;
84extern int amdgpu_vm_block_size;
Christian Königd9c13152015-09-28 12:31:26 +020085extern int amdgpu_vm_fault_stop;
Christian Königb495bd32015-09-10 14:00:35 +020086extern int amdgpu_vm_debug;
Jammy Zhou1333f722015-07-30 16:36:58 +080087extern int amdgpu_sched_jobs;
Jammy Zhou4afcb302015-07-30 16:44:05 +080088extern int amdgpu_sched_hw_submission;
Alex Deucher1f7371b2015-12-02 17:46:21 -050089extern int amdgpu_powerplay;
Huang Rui6bb6b292016-05-24 13:47:05 +080090extern int amdgpu_powercontainment;
Alex Deuchercd474ba2016-02-04 10:21:23 -050091extern unsigned amdgpu_pcie_gen_cap;
92extern unsigned amdgpu_pcie_lane_cap;
Nicolai Hähnle395d1fb2016-06-02 12:32:07 +020093extern unsigned amdgpu_cg_mask;
94extern unsigned amdgpu_pg_mask;
Nicolai Hähnle6f8941a2016-06-17 19:31:33 +020095extern char *amdgpu_disable_cu;
Rex Zhu66bc3f72016-07-28 17:36:35 +080096extern int amdgpu_sclk_deep_sleep_en;
Emily Deng9accf2f2016-08-10 16:01:25 +080097extern char *amdgpu_virtual_display;
Alex Deucher97b2e202015-04-20 16:51:00 -040098
Chunming Zhou4b559c92015-07-21 15:53:04 +080099#define AMDGPU_WAIT_IDLE_TIMEOUT_IN_MS 3000
Alex Deucher97b2e202015-04-20 16:51:00 -0400100#define AMDGPU_MAX_USEC_TIMEOUT 100000 /* 100 ms */
101#define AMDGPU_FENCE_JIFFIES_TIMEOUT (HZ / 2)
102/* AMDGPU_IB_POOL_SIZE must be a power of 2 */
103#define AMDGPU_IB_POOL_SIZE 16
104#define AMDGPU_DEBUGFS_MAX_COMPONENTS 32
105#define AMDGPUFB_CONN_LIMIT 4
106#define AMDGPU_BIOS_NUM_SCRATCH 8
107
Alex Deucher97b2e202015-04-20 16:51:00 -0400108/* max number of rings */
109#define AMDGPU_MAX_RINGS 16
110#define AMDGPU_MAX_GFX_RINGS 1
111#define AMDGPU_MAX_COMPUTE_RINGS 8
Alex Deucher6f0359f2016-08-24 17:15:33 -0400112#define AMDGPU_MAX_VCE_RINGS 3
Alex Deucher97b2e202015-04-20 16:51:00 -0400113
Jammy Zhou36f523a2015-09-01 12:54:27 +0800114/* max number of IP instances */
115#define AMDGPU_MAX_SDMA_INSTANCES 2
116
Alex Deucher97b2e202015-04-20 16:51:00 -0400117/* hardcode that limit for now */
118#define AMDGPU_VA_RESERVED_SIZE (8 << 20)
119
120/* hard reset data */
121#define AMDGPU_ASIC_RESET_DATA 0x39d5e86b
122
123/* reset flags */
124#define AMDGPU_RESET_GFX (1 << 0)
125#define AMDGPU_RESET_COMPUTE (1 << 1)
126#define AMDGPU_RESET_DMA (1 << 2)
127#define AMDGPU_RESET_CP (1 << 3)
128#define AMDGPU_RESET_GRBM (1 << 4)
129#define AMDGPU_RESET_DMA1 (1 << 5)
130#define AMDGPU_RESET_RLC (1 << 6)
131#define AMDGPU_RESET_SEM (1 << 7)
132#define AMDGPU_RESET_IH (1 << 8)
133#define AMDGPU_RESET_VMC (1 << 9)
134#define AMDGPU_RESET_MC (1 << 10)
135#define AMDGPU_RESET_DISPLAY (1 << 11)
136#define AMDGPU_RESET_UVD (1 << 12)
137#define AMDGPU_RESET_VCE (1 << 13)
138#define AMDGPU_RESET_VCE1 (1 << 14)
139
Alex Deucher97b2e202015-04-20 16:51:00 -0400140/* GFX current status */
141#define AMDGPU_GFX_NORMAL_MODE 0x00000000L
142#define AMDGPU_GFX_SAFE_MODE 0x00000001L
143#define AMDGPU_GFX_PG_DISABLED_MODE 0x00000002L
144#define AMDGPU_GFX_CG_DISABLED_MODE 0x00000004L
145#define AMDGPU_GFX_LBPW_DISABLED_MODE 0x00000008L
146
147/* max cursor sizes (in pixels) */
148#define CIK_CURSOR_WIDTH 128
149#define CIK_CURSOR_HEIGHT 128
150
151struct amdgpu_device;
Alex Deucher97b2e202015-04-20 16:51:00 -0400152struct amdgpu_ib;
153struct amdgpu_vm;
154struct amdgpu_ring;
Alex Deucher97b2e202015-04-20 16:51:00 -0400155struct amdgpu_cs_parser;
Chunming Zhoubb977d32015-08-18 15:16:40 +0800156struct amdgpu_job;
Alex Deucher97b2e202015-04-20 16:51:00 -0400157struct amdgpu_irq_src;
Alex Deucher0b492a42015-08-16 22:48:26 -0400158struct amdgpu_fpriv;
Alex Deucher97b2e202015-04-20 16:51:00 -0400159
160enum amdgpu_cp_irq {
161 AMDGPU_CP_IRQ_GFX_EOP = 0,
162 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE0_EOP,
163 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE1_EOP,
164 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE2_EOP,
165 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE3_EOP,
166 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE0_EOP,
167 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE1_EOP,
168 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE2_EOP,
169 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE3_EOP,
170
171 AMDGPU_CP_IRQ_LAST
172};
173
174enum amdgpu_sdma_irq {
175 AMDGPU_SDMA_IRQ_TRAP0 = 0,
176 AMDGPU_SDMA_IRQ_TRAP1,
177
178 AMDGPU_SDMA_IRQ_LAST
179};
180
181enum amdgpu_thermal_irq {
182 AMDGPU_THERMAL_IRQ_LOW_TO_HIGH = 0,
183 AMDGPU_THERMAL_IRQ_HIGH_TO_LOW,
184
185 AMDGPU_THERMAL_IRQ_LAST
186};
187
Alex Deucher97b2e202015-04-20 16:51:00 -0400188int amdgpu_set_clockgating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400189 enum amd_ip_block_type block_type,
190 enum amd_clockgating_state state);
Alex Deucher97b2e202015-04-20 16:51:00 -0400191int amdgpu_set_powergating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400192 enum amd_ip_block_type block_type,
193 enum amd_powergating_state state);
Alex Deucher5dbbb602016-06-23 11:41:04 -0400194int amdgpu_wait_for_idle(struct amdgpu_device *adev,
195 enum amd_ip_block_type block_type);
196bool amdgpu_is_idle(struct amdgpu_device *adev,
197 enum amd_ip_block_type block_type);
Alex Deucher97b2e202015-04-20 16:51:00 -0400198
199struct amdgpu_ip_block_version {
yanyang15fc3aee2015-05-22 14:39:35 -0400200 enum amd_ip_block_type type;
Alex Deucher97b2e202015-04-20 16:51:00 -0400201 u32 major;
202 u32 minor;
203 u32 rev;
yanyang15fc3aee2015-05-22 14:39:35 -0400204 const struct amd_ip_funcs *funcs;
Alex Deucher97b2e202015-04-20 16:51:00 -0400205};
206
207int amdgpu_ip_block_version_cmp(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400208 enum amd_ip_block_type type,
Alex Deucher97b2e202015-04-20 16:51:00 -0400209 u32 major, u32 minor);
210
211const struct amdgpu_ip_block_version * amdgpu_get_ip_block(
212 struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400213 enum amd_ip_block_type type);
Alex Deucher97b2e202015-04-20 16:51:00 -0400214
215/* provided by hw blocks that can move/clear data. e.g., gfx or sdma */
216struct amdgpu_buffer_funcs {
217 /* maximum bytes in a single operation */
218 uint32_t copy_max_bytes;
219
220 /* number of dw to reserve per operation */
221 unsigned copy_num_dw;
222
223 /* used for buffer migration */
Chunming Zhouc7ae72c2015-08-25 17:23:45 +0800224 void (*emit_copy_buffer)(struct amdgpu_ib *ib,
Alex Deucher97b2e202015-04-20 16:51:00 -0400225 /* src addr in bytes */
226 uint64_t src_offset,
227 /* dst addr in bytes */
228 uint64_t dst_offset,
229 /* number of byte to transfer */
230 uint32_t byte_count);
231
232 /* maximum bytes in a single operation */
233 uint32_t fill_max_bytes;
234
235 /* number of dw to reserve per operation */
236 unsigned fill_num_dw;
237
238 /* used for buffer clearing */
Chunming Zhou6e7a3842015-08-27 13:46:09 +0800239 void (*emit_fill_buffer)(struct amdgpu_ib *ib,
Alex Deucher97b2e202015-04-20 16:51:00 -0400240 /* value to write to memory */
241 uint32_t src_data,
242 /* dst addr in bytes */
243 uint64_t dst_offset,
244 /* number of byte to fill */
245 uint32_t byte_count);
246};
247
248/* provided by hw blocks that can write ptes, e.g., sdma */
249struct amdgpu_vm_pte_funcs {
250 /* copy pte entries from GART */
251 void (*copy_pte)(struct amdgpu_ib *ib,
252 uint64_t pe, uint64_t src,
253 unsigned count);
254 /* write pte one entry at a time with addr mapping */
Christian Königde9ea7b2016-08-12 11:33:30 +0200255 void (*write_pte)(struct amdgpu_ib *ib, uint64_t pe,
256 uint64_t value, unsigned count,
257 uint32_t incr);
Alex Deucher97b2e202015-04-20 16:51:00 -0400258 /* for linear pte/pde updates without addr mapping */
259 void (*set_pte_pde)(struct amdgpu_ib *ib,
260 uint64_t pe,
261 uint64_t addr, unsigned count,
262 uint32_t incr, uint32_t flags);
Alex Deucher97b2e202015-04-20 16:51:00 -0400263};
264
265/* provided by the gmc block */
266struct amdgpu_gart_funcs {
267 /* flush the vm tlb via mmio */
268 void (*flush_gpu_tlb)(struct amdgpu_device *adev,
269 uint32_t vmid);
270 /* write pte/pde updates using the cpu */
271 int (*set_pte_pde)(struct amdgpu_device *adev,
272 void *cpu_pt_addr, /* cpu addr of page table */
273 uint32_t gpu_page_idx, /* pte/pde to update */
274 uint64_t addr, /* addr to write into pte/pde */
275 uint32_t flags); /* access flags */
276};
277
278/* provided by the ih block */
279struct amdgpu_ih_funcs {
280 /* ring read/write ptr handling, called from interrupt context */
281 u32 (*get_wptr)(struct amdgpu_device *adev);
282 void (*decode_iv)(struct amdgpu_device *adev,
283 struct amdgpu_iv_entry *entry);
284 void (*set_rptr)(struct amdgpu_device *adev);
285};
286
287/* provided by hw blocks that expose a ring buffer for commands */
288struct amdgpu_ring_funcs {
289 /* ring read/write ptr handling */
290 u32 (*get_rptr)(struct amdgpu_ring *ring);
291 u32 (*get_wptr)(struct amdgpu_ring *ring);
292 void (*set_wptr)(struct amdgpu_ring *ring);
293 /* validating and patching of IBs */
294 int (*parse_cs)(struct amdgpu_cs_parser *p, uint32_t ib_idx);
295 /* command emit functions */
296 void (*emit_ib)(struct amdgpu_ring *ring,
Christian Königd88bf582016-05-06 17:50:03 +0200297 struct amdgpu_ib *ib,
298 unsigned vm_id, bool ctx_switch);
Alex Deucher97b2e202015-04-20 16:51:00 -0400299 void (*emit_fence)(struct amdgpu_ring *ring, uint64_t addr,
Chunming Zhou890ee232015-06-01 14:35:03 +0800300 uint64_t seq, unsigned flags);
Christian Königb8c7b392016-03-01 15:42:52 +0100301 void (*emit_pipeline_sync)(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -0400302 void (*emit_vm_flush)(struct amdgpu_ring *ring, unsigned vm_id,
303 uint64_t pd_addr);
Christian Königd2edb072015-05-11 14:10:34 +0200304 void (*emit_hdp_flush)(struct amdgpu_ring *ring);
Chunming Zhou11afbde2016-03-03 11:38:48 +0800305 void (*emit_hdp_invalidate)(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -0400306 void (*emit_gds_switch)(struct amdgpu_ring *ring, uint32_t vmid,
307 uint32_t gds_base, uint32_t gds_size,
308 uint32_t gws_base, uint32_t gws_size,
309 uint32_t oa_base, uint32_t oa_size);
310 /* testing functions */
311 int (*test_ring)(struct amdgpu_ring *ring);
Christian Königbbec97a2016-07-05 21:07:17 +0200312 int (*test_ib)(struct amdgpu_ring *ring, long timeout);
Jammy Zhouedff0e22015-09-01 13:04:08 +0800313 /* insert NOP packets */
314 void (*insert_nop)(struct amdgpu_ring *ring, uint32_t count);
Christian König9e5d53092016-01-31 12:20:55 +0100315 /* pad the indirect buffer to the necessary number of dw */
316 void (*pad_ib)(struct amdgpu_ring *ring, struct amdgpu_ib *ib);
Monk Liu03ccf482016-01-14 19:07:38 +0800317 unsigned (*init_cond_exec)(struct amdgpu_ring *ring);
318 void (*patch_cond_exec)(struct amdgpu_ring *ring, unsigned offset);
Christian Königf06505b2016-07-20 13:49:34 +0200319 /* note usage for clock and power gating */
320 void (*begin_use)(struct amdgpu_ring *ring);
321 void (*end_use)(struct amdgpu_ring *ring);
Monk Liuc2167a62016-08-26 14:12:37 +0800322 void (*emit_switch_buffer) (struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -0400323};
324
325/*
326 * BIOS.
327 */
328bool amdgpu_get_bios(struct amdgpu_device *adev);
329bool amdgpu_read_bios(struct amdgpu_device *adev);
330
331/*
332 * Dummy page
333 */
334struct amdgpu_dummy_page {
335 struct page *page;
336 dma_addr_t addr;
337};
338int amdgpu_dummy_page_init(struct amdgpu_device *adev);
339void amdgpu_dummy_page_fini(struct amdgpu_device *adev);
340
341
342/*
343 * Clocks
344 */
345
346#define AMDGPU_MAX_PPLL 3
347
348struct amdgpu_clock {
349 struct amdgpu_pll ppll[AMDGPU_MAX_PPLL];
350 struct amdgpu_pll spll;
351 struct amdgpu_pll mpll;
352 /* 10 Khz units */
353 uint32_t default_mclk;
354 uint32_t default_sclk;
355 uint32_t default_dispclk;
356 uint32_t current_dispclk;
357 uint32_t dp_extclk;
358 uint32_t max_pixel_clock;
359};
360
361/*
362 * Fences.
363 */
364struct amdgpu_fence_driver {
Alex Deucher97b2e202015-04-20 16:51:00 -0400365 uint64_t gpu_addr;
366 volatile uint32_t *cpu_addr;
367 /* sync_seq is protected by ring emission lock */
Christian König742c0852016-03-14 15:46:06 +0100368 uint32_t sync_seq;
369 atomic_t last_seq;
Alex Deucher97b2e202015-04-20 16:51:00 -0400370 bool initialized;
Alex Deucher97b2e202015-04-20 16:51:00 -0400371 struct amdgpu_irq_src *irq_src;
372 unsigned irq_type;
Christian Königc2776af2015-11-03 13:27:39 +0100373 struct timer_list fallback_timer;
Christian Königc89377d2016-03-13 19:19:48 +0100374 unsigned num_fences_mask;
Christian König4a7d74f2016-03-14 14:29:46 +0100375 spinlock_t lock;
Christian Königc89377d2016-03-13 19:19:48 +0100376 struct fence **fences;
Alex Deucher97b2e202015-04-20 16:51:00 -0400377};
378
379/* some special values for the owner field */
380#define AMDGPU_FENCE_OWNER_UNDEFINED ((void*)0ul)
381#define AMDGPU_FENCE_OWNER_VM ((void*)1ul)
Alex Deucher97b2e202015-04-20 16:51:00 -0400382
Chunming Zhou890ee232015-06-01 14:35:03 +0800383#define AMDGPU_FENCE_FLAG_64BIT (1 << 0)
384#define AMDGPU_FENCE_FLAG_INT (1 << 1)
385
Alex Deucher97b2e202015-04-20 16:51:00 -0400386int amdgpu_fence_driver_init(struct amdgpu_device *adev);
387void amdgpu_fence_driver_fini(struct amdgpu_device *adev);
388void amdgpu_fence_driver_force_completion(struct amdgpu_device *adev);
389
Christian Könige6151a02016-03-15 14:52:26 +0100390int amdgpu_fence_driver_init_ring(struct amdgpu_ring *ring,
391 unsigned num_hw_submission);
Alex Deucher97b2e202015-04-20 16:51:00 -0400392int amdgpu_fence_driver_start_ring(struct amdgpu_ring *ring,
393 struct amdgpu_irq_src *irq_src,
394 unsigned irq_type);
Alex Deucher5ceb54c2015-08-05 12:41:48 -0400395void amdgpu_fence_driver_suspend(struct amdgpu_device *adev);
396void amdgpu_fence_driver_resume(struct amdgpu_device *adev);
Christian König364beb22016-02-16 17:39:39 +0100397int amdgpu_fence_emit(struct amdgpu_ring *ring, struct fence **fence);
Alex Deucher97b2e202015-04-20 16:51:00 -0400398void amdgpu_fence_process(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -0400399int amdgpu_fence_wait_empty(struct amdgpu_ring *ring);
400unsigned amdgpu_fence_count_emitted(struct amdgpu_ring *ring);
401
Alex Deucher97b2e202015-04-20 16:51:00 -0400402/*
Flora Cuic632d792016-08-02 11:32:41 +0800403 * BO.
Alex Deucher97b2e202015-04-20 16:51:00 -0400404 */
Christian König29b32592016-04-15 17:19:16 +0200405
Alex Deucher97b2e202015-04-20 16:51:00 -0400406struct amdgpu_bo_list_entry {
407 struct amdgpu_bo *robj;
408 struct ttm_validate_buffer tv;
409 struct amdgpu_bo_va *bo_va;
Alex Deucher97b2e202015-04-20 16:51:00 -0400410 uint32_t priority;
Christian König2f568db2016-02-23 12:36:59 +0100411 struct page **user_pages;
412 int user_invalidated;
Alex Deucher97b2e202015-04-20 16:51:00 -0400413};
414
415struct amdgpu_bo_va_mapping {
416 struct list_head list;
417 struct interval_tree_node it;
418 uint64_t offset;
419 uint32_t flags;
420};
421
422/* bo virtual addresses in a specific vm */
423struct amdgpu_bo_va {
424 /* protected by bo being reserved */
425 struct list_head bo_list;
Chunming Zhoubb1e38a42015-08-03 18:19:38 +0800426 struct fence *last_pt_update;
Alex Deucher97b2e202015-04-20 16:51:00 -0400427 unsigned ref_count;
428
Christian König7fc11952015-07-30 11:53:42 +0200429 /* protected by vm mutex and spinlock */
Alex Deucher97b2e202015-04-20 16:51:00 -0400430 struct list_head vm_status;
431
Christian König7fc11952015-07-30 11:53:42 +0200432 /* mappings for this bo_va */
433 struct list_head invalids;
434 struct list_head valids;
435
Alex Deucher97b2e202015-04-20 16:51:00 -0400436 /* constant after initialization */
437 struct amdgpu_vm *vm;
438 struct amdgpu_bo *bo;
439};
440
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800441#define AMDGPU_GEM_DOMAIN_MAX 0x3
442
Alex Deucher97b2e202015-04-20 16:51:00 -0400443struct amdgpu_bo {
444 /* Protected by gem.mutex */
445 struct list_head list;
446 /* Protected by tbo.reserved */
Christian König1ea863f2015-12-18 22:13:12 +0100447 u32 prefered_domains;
448 u32 allowed_domains;
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800449 struct ttm_place placements[AMDGPU_GEM_DOMAIN_MAX + 1];
Alex Deucher97b2e202015-04-20 16:51:00 -0400450 struct ttm_placement placement;
451 struct ttm_buffer_object tbo;
452 struct ttm_bo_kmap_obj kmap;
453 u64 flags;
454 unsigned pin_count;
455 void *kptr;
456 u64 tiling_flags;
457 u64 metadata_flags;
458 void *metadata;
459 u32 metadata_size;
460 /* list of all virtual address to which this bo
461 * is associated to
462 */
463 struct list_head va;
464 /* Constant after initialization */
465 struct amdgpu_device *adev;
466 struct drm_gem_object gem_base;
Christian König82b9c552015-11-27 16:49:00 +0100467 struct amdgpu_bo *parent;
Chunming Zhoue7893c42016-07-26 14:13:21 +0800468 struct amdgpu_bo *shadow;
Alex Deucher97b2e202015-04-20 16:51:00 -0400469
470 struct ttm_bo_kmap_obj dma_buf_vmap;
Alex Deucher97b2e202015-04-20 16:51:00 -0400471 struct amdgpu_mn *mn;
472 struct list_head mn_list;
Chunming Zhou0c4e7fa2016-08-17 11:41:30 +0800473 struct list_head shadow_list;
Alex Deucher97b2e202015-04-20 16:51:00 -0400474};
475#define gem_to_amdgpu_bo(gobj) container_of((gobj), struct amdgpu_bo, gem_base)
476
477void amdgpu_gem_object_free(struct drm_gem_object *obj);
478int amdgpu_gem_object_open(struct drm_gem_object *obj,
479 struct drm_file *file_priv);
480void amdgpu_gem_object_close(struct drm_gem_object *obj,
481 struct drm_file *file_priv);
482unsigned long amdgpu_gem_timeout(uint64_t timeout_ns);
483struct sg_table *amdgpu_gem_prime_get_sg_table(struct drm_gem_object *obj);
Christian König4d9c5142016-05-03 18:46:19 +0200484struct drm_gem_object *
485amdgpu_gem_prime_import_sg_table(struct drm_device *dev,
486 struct dma_buf_attachment *attach,
487 struct sg_table *sg);
Alex Deucher97b2e202015-04-20 16:51:00 -0400488struct dma_buf *amdgpu_gem_prime_export(struct drm_device *dev,
489 struct drm_gem_object *gobj,
490 int flags);
491int amdgpu_gem_prime_pin(struct drm_gem_object *obj);
492void amdgpu_gem_prime_unpin(struct drm_gem_object *obj);
493struct reservation_object *amdgpu_gem_prime_res_obj(struct drm_gem_object *);
494void *amdgpu_gem_prime_vmap(struct drm_gem_object *obj);
495void amdgpu_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
496int amdgpu_gem_debugfs_init(struct amdgpu_device *adev);
497
498/* sub-allocation manager, it has to be protected by another lock.
499 * By conception this is an helper for other part of the driver
500 * like the indirect buffer or semaphore, which both have their
501 * locking.
502 *
503 * Principe is simple, we keep a list of sub allocation in offset
504 * order (first entry has offset == 0, last entry has the highest
505 * offset).
506 *
507 * When allocating new object we first check if there is room at
508 * the end total_size - (last_object_offset + last_object_size) >=
509 * alloc_size. If so we allocate new object there.
510 *
511 * When there is not enough room at the end, we start waiting for
512 * each sub object until we reach object_offset+object_size >=
513 * alloc_size, this object then become the sub object we return.
514 *
515 * Alignment can't be bigger than page size.
516 *
517 * Hole are not considered for allocation to keep things simple.
518 * Assumption is that there won't be hole (all object on same
519 * alignment).
520 */
Christian König6ba60b82016-03-11 14:50:08 +0100521
522#define AMDGPU_SA_NUM_FENCE_LISTS 32
523
Alex Deucher97b2e202015-04-20 16:51:00 -0400524struct amdgpu_sa_manager {
525 wait_queue_head_t wq;
526 struct amdgpu_bo *bo;
527 struct list_head *hole;
Christian König6ba60b82016-03-11 14:50:08 +0100528 struct list_head flist[AMDGPU_SA_NUM_FENCE_LISTS];
Alex Deucher97b2e202015-04-20 16:51:00 -0400529 struct list_head olist;
530 unsigned size;
531 uint64_t gpu_addr;
532 void *cpu_ptr;
533 uint32_t domain;
534 uint32_t align;
535};
536
Alex Deucher97b2e202015-04-20 16:51:00 -0400537/* sub-allocation buffer */
538struct amdgpu_sa_bo {
539 struct list_head olist;
540 struct list_head flist;
541 struct amdgpu_sa_manager *manager;
542 unsigned soffset;
543 unsigned eoffset;
Chunming Zhou4ce98912015-08-19 16:41:19 +0800544 struct fence *fence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400545};
546
547/*
548 * GEM objects.
549 */
Christian König418aa0c2016-02-15 16:59:57 +0100550void amdgpu_gem_force_release(struct amdgpu_device *adev);
Alex Deucher97b2e202015-04-20 16:51:00 -0400551int amdgpu_gem_object_create(struct amdgpu_device *adev, unsigned long size,
552 int alignment, u32 initial_domain,
553 u64 flags, bool kernel,
554 struct drm_gem_object **obj);
555
556int amdgpu_mode_dumb_create(struct drm_file *file_priv,
557 struct drm_device *dev,
558 struct drm_mode_create_dumb *args);
559int amdgpu_mode_dumb_mmap(struct drm_file *filp,
560 struct drm_device *dev,
561 uint32_t handle, uint64_t *offset_p);
Alex Deucher97b2e202015-04-20 16:51:00 -0400562/*
563 * Synchronization
564 */
565struct amdgpu_sync {
Christian Königf91b3a62015-08-20 14:47:40 +0800566 DECLARE_HASHTABLE(fences, 4);
Chunming Zhou3c623382015-08-20 18:33:59 +0800567 struct fence *last_vm_update;
Alex Deucher97b2e202015-04-20 16:51:00 -0400568};
569
570void amdgpu_sync_create(struct amdgpu_sync *sync);
Christian König91e1a522015-07-06 22:06:40 +0200571int amdgpu_sync_fence(struct amdgpu_device *adev, struct amdgpu_sync *sync,
572 struct fence *f);
Alex Deucher97b2e202015-04-20 16:51:00 -0400573int amdgpu_sync_resv(struct amdgpu_device *adev,
574 struct amdgpu_sync *sync,
575 struct reservation_object *resv,
576 void *owner);
Christian König1fbb2e92016-06-01 10:47:36 +0200577struct fence *amdgpu_sync_peek_fence(struct amdgpu_sync *sync,
578 struct amdgpu_ring *ring);
Christian Könige61235d2015-08-25 11:05:36 +0200579struct fence *amdgpu_sync_get_fence(struct amdgpu_sync *sync);
Christian König8a8f0b42016-02-03 15:11:39 +0100580void amdgpu_sync_free(struct amdgpu_sync *sync);
Christian König257bf152016-02-16 11:24:58 +0100581int amdgpu_sync_init(void);
582void amdgpu_sync_fini(void);
Rex Zhud573de22016-05-12 13:27:28 +0800583int amdgpu_fence_slab_init(void);
584void amdgpu_fence_slab_fini(void);
Alex Deucher97b2e202015-04-20 16:51:00 -0400585
586/*
587 * GART structures, functions & helpers
588 */
589struct amdgpu_mc;
590
591#define AMDGPU_GPU_PAGE_SIZE 4096
592#define AMDGPU_GPU_PAGE_MASK (AMDGPU_GPU_PAGE_SIZE - 1)
593#define AMDGPU_GPU_PAGE_SHIFT 12
594#define AMDGPU_GPU_PAGE_ALIGN(a) (((a) + AMDGPU_GPU_PAGE_MASK) & ~AMDGPU_GPU_PAGE_MASK)
595
596struct amdgpu_gart {
597 dma_addr_t table_addr;
598 struct amdgpu_bo *robj;
599 void *ptr;
600 unsigned num_gpu_pages;
601 unsigned num_cpu_pages;
602 unsigned table_size;
Christian Königa1d29472016-03-30 14:42:57 +0200603#ifdef CONFIG_DRM_AMDGPU_GART_DEBUGFS
Alex Deucher97b2e202015-04-20 16:51:00 -0400604 struct page **pages;
Christian Königa1d29472016-03-30 14:42:57 +0200605#endif
Alex Deucher97b2e202015-04-20 16:51:00 -0400606 bool ready;
607 const struct amdgpu_gart_funcs *gart_funcs;
608};
609
610int amdgpu_gart_table_ram_alloc(struct amdgpu_device *adev);
611void amdgpu_gart_table_ram_free(struct amdgpu_device *adev);
612int amdgpu_gart_table_vram_alloc(struct amdgpu_device *adev);
613void amdgpu_gart_table_vram_free(struct amdgpu_device *adev);
614int amdgpu_gart_table_vram_pin(struct amdgpu_device *adev);
615void amdgpu_gart_table_vram_unpin(struct amdgpu_device *adev);
616int amdgpu_gart_init(struct amdgpu_device *adev);
617void amdgpu_gart_fini(struct amdgpu_device *adev);
618void amdgpu_gart_unbind(struct amdgpu_device *adev, unsigned offset,
619 int pages);
620int amdgpu_gart_bind(struct amdgpu_device *adev, unsigned offset,
621 int pages, struct page **pagelist,
622 dma_addr_t *dma_addr, uint32_t flags);
623
624/*
625 * GPU MC structures, functions & helpers
626 */
627struct amdgpu_mc {
628 resource_size_t aper_size;
629 resource_size_t aper_base;
630 resource_size_t agp_base;
631 /* for some chips with <= 32MB we need to lie
632 * about vram size near mc fb location */
633 u64 mc_vram_size;
634 u64 visible_vram_size;
635 u64 gtt_size;
636 u64 gtt_start;
637 u64 gtt_end;
638 u64 vram_start;
639 u64 vram_end;
640 unsigned vram_width;
641 u64 real_vram_size;
642 int vram_mtrr;
643 u64 gtt_base_align;
644 u64 mc_mask;
645 const struct firmware *fw; /* MC firmware */
646 uint32_t fw_version;
647 struct amdgpu_irq_src vm_fault;
Ken Wang81c59f52015-06-03 21:02:01 +0800648 uint32_t vram_type;
Chunming Zhou50b01972016-07-18 16:59:24 +0800649 uint32_t srbm_soft_reset;
650 struct amdgpu_mode_mc_save save;
Alex Deucher97b2e202015-04-20 16:51:00 -0400651};
652
653/*
654 * GPU doorbell structures, functions & helpers
655 */
656typedef enum _AMDGPU_DOORBELL_ASSIGNMENT
657{
658 AMDGPU_DOORBELL_KIQ = 0x000,
659 AMDGPU_DOORBELL_HIQ = 0x001,
660 AMDGPU_DOORBELL_DIQ = 0x002,
661 AMDGPU_DOORBELL_MEC_RING0 = 0x010,
662 AMDGPU_DOORBELL_MEC_RING1 = 0x011,
663 AMDGPU_DOORBELL_MEC_RING2 = 0x012,
664 AMDGPU_DOORBELL_MEC_RING3 = 0x013,
665 AMDGPU_DOORBELL_MEC_RING4 = 0x014,
666 AMDGPU_DOORBELL_MEC_RING5 = 0x015,
667 AMDGPU_DOORBELL_MEC_RING6 = 0x016,
668 AMDGPU_DOORBELL_MEC_RING7 = 0x017,
669 AMDGPU_DOORBELL_GFX_RING0 = 0x020,
670 AMDGPU_DOORBELL_sDMA_ENGINE0 = 0x1E0,
671 AMDGPU_DOORBELL_sDMA_ENGINE1 = 0x1E1,
672 AMDGPU_DOORBELL_IH = 0x1E8,
673 AMDGPU_DOORBELL_MAX_ASSIGNMENT = 0x3FF,
674 AMDGPU_DOORBELL_INVALID = 0xFFFF
675} AMDGPU_DOORBELL_ASSIGNMENT;
676
677struct amdgpu_doorbell {
678 /* doorbell mmio */
679 resource_size_t base;
680 resource_size_t size;
681 u32 __iomem *ptr;
682 u32 num_doorbells; /* Number of doorbells actually reserved for amdgpu. */
683};
684
685void amdgpu_doorbell_get_kfd_info(struct amdgpu_device *adev,
686 phys_addr_t *aperture_base,
687 size_t *aperture_size,
688 size_t *start_offset);
689
690/*
691 * IRQS.
692 */
693
694struct amdgpu_flip_work {
Michel Dänzer325cbba2016-08-04 12:39:37 +0900695 struct delayed_work flip_work;
Alex Deucher97b2e202015-04-20 16:51:00 -0400696 struct work_struct unpin_work;
697 struct amdgpu_device *adev;
698 int crtc_id;
Michel Dänzer325cbba2016-08-04 12:39:37 +0900699 u32 target_vblank;
Alex Deucher97b2e202015-04-20 16:51:00 -0400700 uint64_t base;
701 struct drm_pending_vblank_event *event;
702 struct amdgpu_bo *old_rbo;
Christian König1ffd2652015-08-11 17:29:52 +0200703 struct fence *excl;
704 unsigned shared_count;
705 struct fence **shared;
Christian Königc3874b72016-02-11 15:48:30 +0100706 struct fence_cb cb;
Alex Deuchercb9e59d2016-05-05 16:03:57 -0400707 bool async;
Alex Deucher97b2e202015-04-20 16:51:00 -0400708};
709
710
711/*
712 * CP & rings.
713 */
714
715struct amdgpu_ib {
716 struct amdgpu_sa_bo *sa_bo;
717 uint32_t length_dw;
718 uint64_t gpu_addr;
719 uint32_t *ptr;
Jammy Zhoude807f82015-05-11 23:41:41 +0800720 uint32_t flags;
Alex Deucher97b2e202015-04-20 16:51:00 -0400721};
722
723enum amdgpu_ring_type {
724 AMDGPU_RING_TYPE_GFX,
725 AMDGPU_RING_TYPE_COMPUTE,
726 AMDGPU_RING_TYPE_SDMA,
727 AMDGPU_RING_TYPE_UVD,
728 AMDGPU_RING_TYPE_VCE
729};
730
Nils Wallménius62250a92016-04-10 16:30:00 +0200731extern const struct amd_sched_backend_ops amdgpu_sched_ops;
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800732
Christian König50838c82016-02-03 13:44:52 +0100733int amdgpu_job_alloc(struct amdgpu_device *adev, unsigned num_ibs,
Monk Liuc5637832016-04-19 20:11:32 +0800734 struct amdgpu_job **job, struct amdgpu_vm *vm);
Christian Königd71518b2016-02-01 12:20:25 +0100735int amdgpu_job_alloc_with_ib(struct amdgpu_device *adev, unsigned size,
736 struct amdgpu_job **job);
Monk Liub6723c82016-03-10 12:14:44 +0800737
Christian Königa5fb4ec2016-06-29 15:10:31 +0200738void amdgpu_job_free_resources(struct amdgpu_job *job);
Christian König50838c82016-02-03 13:44:52 +0100739void amdgpu_job_free(struct amdgpu_job *job);
Christian Königd71518b2016-02-01 12:20:25 +0100740int amdgpu_job_submit(struct amdgpu_job *job, struct amdgpu_ring *ring,
Christian König2bd9ccf2016-02-01 12:53:58 +0100741 struct amd_sched_entity *entity, void *owner,
742 struct fence **f);
Chunming Zhou3c704e92015-07-29 10:33:14 +0800743
Alex Deucher97b2e202015-04-20 16:51:00 -0400744struct amdgpu_ring {
745 struct amdgpu_device *adev;
746 const struct amdgpu_ring_funcs *funcs;
747 struct amdgpu_fence_driver fence_drv;
Christian Königedf600d2016-05-03 15:54:54 +0200748 struct amd_gpu_scheduler sched;
Alex Deucher97b2e202015-04-20 16:51:00 -0400749
Alex Deucher97b2e202015-04-20 16:51:00 -0400750 struct amdgpu_bo *ring_obj;
751 volatile uint32_t *ring;
752 unsigned rptr_offs;
Alex Deucher97b2e202015-04-20 16:51:00 -0400753 unsigned wptr;
754 unsigned wptr_old;
755 unsigned ring_size;
Christian Königc7e6be22016-01-21 13:06:05 +0100756 unsigned max_dw;
Alex Deucher97b2e202015-04-20 16:51:00 -0400757 int count_dw;
Alex Deucher97b2e202015-04-20 16:51:00 -0400758 uint64_t gpu_addr;
759 uint32_t align_mask;
760 uint32_t ptr_mask;
761 bool ready;
762 u32 nop;
763 u32 idx;
Alex Deucher97b2e202015-04-20 16:51:00 -0400764 u32 me;
765 u32 pipe;
766 u32 queue;
767 struct amdgpu_bo *mqd_obj;
768 u32 doorbell_index;
769 bool use_doorbell;
770 unsigned wptr_offs;
Alex Deucher97b2e202015-04-20 16:51:00 -0400771 unsigned fence_offs;
Christian Königaa3b73f2016-05-03 15:17:40 +0200772 uint64_t current_ctx;
Alex Deucher97b2e202015-04-20 16:51:00 -0400773 enum amdgpu_ring_type type;
774 char name[16];
Monk Liu128cff12016-01-14 18:08:16 +0800775 unsigned cond_exe_offs;
Christian König92c023c2016-07-19 14:34:17 +0200776 u64 cond_exe_gpu_addr;
777 volatile u32 *cond_exe_cpu_addr;
Monk Liua909c6b2016-06-14 12:02:21 -0400778#if defined(CONFIG_DEBUG_FS)
779 struct dentry *ent;
780#endif
Alex Deucher97b2e202015-04-20 16:51:00 -0400781};
782
783/*
784 * VM
785 */
786
787/* maximum number of VMIDs */
788#define AMDGPU_NUM_VM 16
789
Christian König96105e52016-08-12 12:59:59 +0200790/* Maximum number of PTEs the hardware can write with one command */
791#define AMDGPU_VM_MAX_UPDATE_SIZE 0x3FFFF
792
Alex Deucher97b2e202015-04-20 16:51:00 -0400793/* number of entries in page table */
794#define AMDGPU_VM_PTE_COUNT (1 << amdgpu_vm_block_size)
795
796/* PTBs (Page Table Blocks) need to be aligned to 32K */
797#define AMDGPU_VM_PTB_ALIGN_SIZE 32768
Alex Deucher97b2e202015-04-20 16:51:00 -0400798
Christian König1303c732016-08-03 17:46:42 +0200799/* LOG2 number of continuous pages for the fragment field */
800#define AMDGPU_LOG2_PAGES_PER_FRAG 4
801
Alex Deucher97b2e202015-04-20 16:51:00 -0400802#define AMDGPU_PTE_VALID (1 << 0)
803#define AMDGPU_PTE_SYSTEM (1 << 1)
804#define AMDGPU_PTE_SNOOPED (1 << 2)
805
806/* VI only */
807#define AMDGPU_PTE_EXECUTABLE (1 << 4)
808
809#define AMDGPU_PTE_READABLE (1 << 5)
810#define AMDGPU_PTE_WRITEABLE (1 << 6)
811
Christian König1303c732016-08-03 17:46:42 +0200812#define AMDGPU_PTE_FRAG(x) ((x & 0x1f) << 7)
Alex Deucher97b2e202015-04-20 16:51:00 -0400813
Christian Königd9c13152015-09-28 12:31:26 +0200814/* How to programm VM fault handling */
815#define AMDGPU_VM_FAULT_STOP_NEVER 0
816#define AMDGPU_VM_FAULT_STOP_FIRST 1
817#define AMDGPU_VM_FAULT_STOP_ALWAYS 2
818
Alex Deucher97b2e202015-04-20 16:51:00 -0400819struct amdgpu_vm_pt {
Christian Königee1782c2015-12-11 21:01:23 +0100820 struct amdgpu_bo_list_entry entry;
821 uint64_t addr;
Chunming Zhou6557e3d2016-08-15 11:36:54 +0800822 uint64_t shadow_addr;
Alex Deucher97b2e202015-04-20 16:51:00 -0400823};
824
Alex Deucher97b2e202015-04-20 16:51:00 -0400825struct amdgpu_vm {
Christian König25cfc3c2015-12-19 19:42:05 +0100826 /* tree of virtual addresses mapped */
Alex Deucher97b2e202015-04-20 16:51:00 -0400827 struct rb_root va;
828
Christian König7fc11952015-07-30 11:53:42 +0200829 /* protecting invalidated */
Alex Deucher97b2e202015-04-20 16:51:00 -0400830 spinlock_t status_lock;
831
832 /* BOs moved, but not yet updated in the PT */
833 struct list_head invalidated;
834
Christian König7fc11952015-07-30 11:53:42 +0200835 /* BOs cleared in the PT because of a move */
836 struct list_head cleared;
837
838 /* BO mappings freed, but not yet updated in the PT */
Alex Deucher97b2e202015-04-20 16:51:00 -0400839 struct list_head freed;
840
841 /* contains the page directory */
842 struct amdgpu_bo *page_directory;
843 unsigned max_pde_used;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200844 struct fence *page_directory_fence;
Christian König5a712a82016-06-21 16:28:15 +0200845 uint64_t last_eviction_counter;
Alex Deucher97b2e202015-04-20 16:51:00 -0400846
847 /* array of page tables, one for each page directory entry */
848 struct amdgpu_vm_pt *page_tables;
849
850 /* for id and flush management per ring */
Christian Königbcb1ba32016-03-08 15:40:11 +0100851 struct amdgpu_vm_id *ids[AMDGPU_MAX_RINGS];
Christian König25cfc3c2015-12-19 19:42:05 +0100852
jimqu81d75a32015-12-04 17:17:00 +0800853 /* protecting freed */
854 spinlock_t freed_lock;
Christian König2bd9ccf2016-02-01 12:53:58 +0100855
856 /* Scheduler entity for page table updates */
857 struct amd_sched_entity entity;
Chunming Zhou031e2982016-04-25 10:19:13 +0800858
859 /* client id */
860 u64 client_id;
Alex Deucher97b2e202015-04-20 16:51:00 -0400861};
862
Christian Königbcb1ba32016-03-08 15:40:11 +0100863struct amdgpu_vm_id {
Christian Königa9a78b32016-01-21 10:19:11 +0100864 struct list_head list;
Christian König832a9022016-02-15 12:33:02 +0100865 struct fence *first;
866 struct amdgpu_sync active;
Christian König41d9eb22016-03-01 16:46:18 +0100867 struct fence *last_flush;
Christian König0ea54b92016-05-04 10:20:01 +0200868 atomic64_t owner;
Christian König971fe9a92016-03-01 15:09:25 +0100869
Christian Königbcb1ba32016-03-08 15:40:11 +0100870 uint64_t pd_gpu_addr;
871 /* last flushed PD/PT update */
872 struct fence *flushed_updates;
873
Chunming Zhou6adb0512016-06-27 17:06:01 +0800874 uint32_t current_gpu_reset_count;
875
Christian König971fe9a92016-03-01 15:09:25 +0100876 uint32_t gds_base;
877 uint32_t gds_size;
878 uint32_t gws_base;
879 uint32_t gws_size;
880 uint32_t oa_base;
881 uint32_t oa_size;
Christian Königa9a78b32016-01-21 10:19:11 +0100882};
Christian König8d0a7ce2015-11-03 20:58:50 +0100883
Christian Königa9a78b32016-01-21 10:19:11 +0100884struct amdgpu_vm_manager {
885 /* Handling of VMIDs */
886 struct mutex lock;
887 unsigned num_ids;
888 struct list_head ids_lru;
Christian Königbcb1ba32016-03-08 15:40:11 +0100889 struct amdgpu_vm_id ids[AMDGPU_NUM_VM];
Christian König1c16c0a2015-11-14 21:31:40 +0100890
Christian König1fbb2e92016-06-01 10:47:36 +0200891 /* Handling of VM fences */
892 u64 fence_context;
893 unsigned seqno[AMDGPU_MAX_RINGS];
894
Christian König8b4fb002015-11-15 16:04:16 +0100895 uint32_t max_pfn;
Alex Deucher97b2e202015-04-20 16:51:00 -0400896 /* vram base address for page table entry */
Christian König8b4fb002015-11-15 16:04:16 +0100897 u64 vram_base_offset;
Alex Deucher97b2e202015-04-20 16:51:00 -0400898 /* is vm enabled? */
Christian König8b4fb002015-11-15 16:04:16 +0100899 bool enabled;
Alex Deucher97b2e202015-04-20 16:51:00 -0400900 /* vm pte handling */
901 const struct amdgpu_vm_pte_funcs *vm_pte_funcs;
Christian König2d55e452016-02-08 17:37:38 +0100902 struct amdgpu_ring *vm_pte_rings[AMDGPU_MAX_RINGS];
903 unsigned vm_pte_num_rings;
904 atomic_t vm_pte_next_ring;
Chunming Zhou031e2982016-04-25 10:19:13 +0800905 /* client id counter */
906 atomic64_t client_counter;
Alex Deucher97b2e202015-04-20 16:51:00 -0400907};
908
Christian Königa9a78b32016-01-21 10:19:11 +0100909void amdgpu_vm_manager_init(struct amdgpu_device *adev);
Christian Königea89f8c2015-11-15 20:52:06 +0100910void amdgpu_vm_manager_fini(struct amdgpu_device *adev);
Christian König8b4fb002015-11-15 16:04:16 +0100911int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm);
912void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm);
Christian König56467eb2015-12-11 15:16:32 +0100913void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
914 struct list_head *validated,
915 struct amdgpu_bo_list_entry *entry);
Christian König5a712a82016-06-21 16:28:15 +0200916void amdgpu_vm_get_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
917 struct list_head *duplicates);
Christian Königeceb8a12016-01-11 15:35:21 +0100918void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev,
919 struct amdgpu_vm *vm);
Christian König8b4fb002015-11-15 16:04:16 +0100920int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Christian König4ff37a82016-02-26 16:18:26 +0100921 struct amdgpu_sync *sync, struct fence *fence,
Chunming Zhoufd53be32016-07-01 17:59:01 +0800922 struct amdgpu_job *job);
923int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job);
Christian König971fe9a92016-03-01 15:09:25 +0100924void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vm_id);
Christian König8b4fb002015-11-15 16:04:16 +0100925int amdgpu_vm_update_page_directory(struct amdgpu_device *adev,
926 struct amdgpu_vm *vm);
927int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
928 struct amdgpu_vm *vm);
929int amdgpu_vm_clear_invalids(struct amdgpu_device *adev, struct amdgpu_vm *vm,
930 struct amdgpu_sync *sync);
931int amdgpu_vm_bo_update(struct amdgpu_device *adev,
932 struct amdgpu_bo_va *bo_va,
Christian König99e124f2016-08-16 14:43:17 +0200933 bool clear);
Christian König8b4fb002015-11-15 16:04:16 +0100934void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
935 struct amdgpu_bo *bo);
936struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
937 struct amdgpu_bo *bo);
938struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
939 struct amdgpu_vm *vm,
940 struct amdgpu_bo *bo);
941int amdgpu_vm_bo_map(struct amdgpu_device *adev,
942 struct amdgpu_bo_va *bo_va,
943 uint64_t addr, uint64_t offset,
944 uint64_t size, uint32_t flags);
945int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
946 struct amdgpu_bo_va *bo_va,
947 uint64_t addr);
948void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
949 struct amdgpu_bo_va *bo_va);
Christian König8b4fb002015-11-15 16:04:16 +0100950
Alex Deucher97b2e202015-04-20 16:51:00 -0400951/*
952 * context related structures
953 */
954
Christian König21c16bf2015-07-07 17:24:49 +0200955struct amdgpu_ctx_ring {
Christian König91404fb2015-08-05 18:33:21 +0200956 uint64_t sequence;
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800957 struct fence **fences;
Christian König91404fb2015-08-05 18:33:21 +0200958 struct amd_sched_entity entity;
Christian König21c16bf2015-07-07 17:24:49 +0200959};
960
Alex Deucher97b2e202015-04-20 16:51:00 -0400961struct amdgpu_ctx {
Alex Deucher0b492a42015-08-16 22:48:26 -0400962 struct kref refcount;
Chunming Zhou9cb7e5a2015-07-21 13:17:19 +0800963 struct amdgpu_device *adev;
Alex Deucher0b492a42015-08-16 22:48:26 -0400964 unsigned reset_counter;
Christian König21c16bf2015-07-07 17:24:49 +0200965 spinlock_t ring_lock;
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800966 struct fence **fences;
Christian König21c16bf2015-07-07 17:24:49 +0200967 struct amdgpu_ctx_ring rings[AMDGPU_MAX_RINGS];
Alex Deucher97b2e202015-04-20 16:51:00 -0400968};
969
970struct amdgpu_ctx_mgr {
Alex Deucher0b492a42015-08-16 22:48:26 -0400971 struct amdgpu_device *adev;
972 struct mutex lock;
973 /* protected by lock */
974 struct idr ctx_handles;
Alex Deucher97b2e202015-04-20 16:51:00 -0400975};
976
Alex Deucher0b492a42015-08-16 22:48:26 -0400977struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id);
978int amdgpu_ctx_put(struct amdgpu_ctx *ctx);
979
Christian König21c16bf2015-07-07 17:24:49 +0200980uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
Christian Königce882e62015-08-19 15:00:55 +0200981 struct fence *fence);
Christian König21c16bf2015-07-07 17:24:49 +0200982struct fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
983 struct amdgpu_ring *ring, uint64_t seq);
984
Alex Deucher0b492a42015-08-16 22:48:26 -0400985int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
986 struct drm_file *filp);
987
Christian Königefd4ccb2015-08-04 16:20:31 +0200988void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr);
989void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr);
Alex Deucher0b492a42015-08-16 22:48:26 -0400990
Alex Deucher97b2e202015-04-20 16:51:00 -0400991/*
992 * file private structure
993 */
994
995struct amdgpu_fpriv {
996 struct amdgpu_vm vm;
997 struct mutex bo_list_lock;
998 struct idr bo_list_handles;
Alex Deucher0b492a42015-08-16 22:48:26 -0400999 struct amdgpu_ctx_mgr ctx_mgr;
Alex Deucher97b2e202015-04-20 16:51:00 -04001000};
1001
1002/*
1003 * residency list
1004 */
1005
1006struct amdgpu_bo_list {
1007 struct mutex lock;
1008 struct amdgpu_bo *gds_obj;
1009 struct amdgpu_bo *gws_obj;
1010 struct amdgpu_bo *oa_obj;
Christian König211dff52016-02-22 15:40:59 +01001011 unsigned first_userptr;
Alex Deucher97b2e202015-04-20 16:51:00 -04001012 unsigned num_entries;
1013 struct amdgpu_bo_list_entry *array;
1014};
1015
1016struct amdgpu_bo_list *
1017amdgpu_bo_list_get(struct amdgpu_fpriv *fpriv, int id);
Christian König636ce252015-12-18 21:26:47 +01001018void amdgpu_bo_list_get_list(struct amdgpu_bo_list *list,
1019 struct list_head *validated);
Alex Deucher97b2e202015-04-20 16:51:00 -04001020void amdgpu_bo_list_put(struct amdgpu_bo_list *list);
1021void amdgpu_bo_list_free(struct amdgpu_bo_list *list);
1022
1023/*
1024 * GFX stuff
1025 */
1026#include "clearstate_defs.h"
1027
Alex Deucher79e54122016-04-08 15:45:13 -04001028struct amdgpu_rlc_funcs {
1029 void (*enter_safe_mode)(struct amdgpu_device *adev);
1030 void (*exit_safe_mode)(struct amdgpu_device *adev);
1031};
1032
Alex Deucher97b2e202015-04-20 16:51:00 -04001033struct amdgpu_rlc {
1034 /* for power gating */
1035 struct amdgpu_bo *save_restore_obj;
1036 uint64_t save_restore_gpu_addr;
1037 volatile uint32_t *sr_ptr;
1038 const u32 *reg_list;
1039 u32 reg_list_size;
1040 /* for clear state */
1041 struct amdgpu_bo *clear_state_obj;
1042 uint64_t clear_state_gpu_addr;
1043 volatile uint32_t *cs_ptr;
1044 const struct cs_section_def *cs_data;
1045 u32 clear_state_size;
1046 /* for cp tables */
1047 struct amdgpu_bo *cp_table_obj;
1048 uint64_t cp_table_gpu_addr;
1049 volatile uint32_t *cp_table_ptr;
1050 u32 cp_table_size;
Alex Deucher79e54122016-04-08 15:45:13 -04001051
1052 /* safe mode for updating CG/PG state */
1053 bool in_safe_mode;
1054 const struct amdgpu_rlc_funcs *funcs;
Eric Huang2b6cd972016-04-14 17:26:07 -04001055
1056 /* for firmware data */
1057 u32 save_and_restore_offset;
1058 u32 clear_state_descriptor_offset;
1059 u32 avail_scratch_ram_locations;
1060 u32 reg_restore_list_size;
1061 u32 reg_list_format_start;
1062 u32 reg_list_format_separate_start;
1063 u32 starting_offsets_start;
1064 u32 reg_list_format_size_bytes;
1065 u32 reg_list_size_bytes;
1066
1067 u32 *register_list_format;
1068 u32 *register_restore;
Alex Deucher97b2e202015-04-20 16:51:00 -04001069};
1070
1071struct amdgpu_mec {
1072 struct amdgpu_bo *hpd_eop_obj;
1073 u64 hpd_eop_gpu_addr;
1074 u32 num_pipe;
1075 u32 num_mec;
1076 u32 num_queue;
1077};
1078
1079/*
1080 * GPU scratch registers structures, functions & helpers
1081 */
1082struct amdgpu_scratch {
1083 unsigned num_reg;
1084 uint32_t reg_base;
1085 bool free[32];
1086 uint32_t reg[32];
1087};
1088
1089/*
1090 * GFX configurations
1091 */
1092struct amdgpu_gca_config {
1093 unsigned max_shader_engines;
1094 unsigned max_tile_pipes;
1095 unsigned max_cu_per_sh;
1096 unsigned max_sh_per_se;
1097 unsigned max_backends_per_se;
1098 unsigned max_texture_channel_caches;
1099 unsigned max_gprs;
1100 unsigned max_gs_threads;
1101 unsigned max_hw_contexts;
1102 unsigned sc_prim_fifo_size_frontend;
1103 unsigned sc_prim_fifo_size_backend;
1104 unsigned sc_hiz_tile_fifo_size;
1105 unsigned sc_earlyz_tile_fifo_size;
1106
1107 unsigned num_tile_pipes;
1108 unsigned backend_enable_mask;
1109 unsigned mem_max_burst_length_bytes;
1110 unsigned mem_row_size_in_kb;
1111 unsigned shader_engine_tile_size;
1112 unsigned num_gpus;
1113 unsigned multi_gpu_tile_size;
1114 unsigned mc_arb_ramcfg;
1115 unsigned gb_addr_config;
Alex Deucher8f8e00c2016-02-12 00:39:13 -05001116 unsigned num_rbs;
Alex Deucher97b2e202015-04-20 16:51:00 -04001117
1118 uint32_t tile_mode_array[32];
1119 uint32_t macrotile_mode_array[16];
1120};
1121
Alex Deucher7dae69a2016-05-03 16:25:53 -04001122struct amdgpu_cu_info {
1123 uint32_t number; /* total active CU number */
1124 uint32_t ao_cu_mask;
1125 uint32_t bitmap[4][4];
1126};
1127
Alex Deucherb95e31f2016-07-07 15:01:42 -04001128struct amdgpu_gfx_funcs {
1129 /* get the gpu clock counter */
1130 uint64_t (*get_gpu_clock_counter)(struct amdgpu_device *adev);
Tom St Denis9559ef52016-06-28 10:26:48 -04001131 void (*select_se_sh)(struct amdgpu_device *adev, u32 se_num, u32 sh_num, u32 instance);
Alex Deucherb95e31f2016-07-07 15:01:42 -04001132};
1133
Alex Deucher97b2e202015-04-20 16:51:00 -04001134struct amdgpu_gfx {
1135 struct mutex gpu_clock_mutex;
1136 struct amdgpu_gca_config config;
1137 struct amdgpu_rlc rlc;
1138 struct amdgpu_mec mec;
1139 struct amdgpu_scratch scratch;
1140 const struct firmware *me_fw; /* ME firmware */
1141 uint32_t me_fw_version;
1142 const struct firmware *pfp_fw; /* PFP firmware */
1143 uint32_t pfp_fw_version;
1144 const struct firmware *ce_fw; /* CE firmware */
1145 uint32_t ce_fw_version;
1146 const struct firmware *rlc_fw; /* RLC firmware */
1147 uint32_t rlc_fw_version;
1148 const struct firmware *mec_fw; /* MEC firmware */
1149 uint32_t mec_fw_version;
1150 const struct firmware *mec2_fw; /* MEC2 firmware */
1151 uint32_t mec2_fw_version;
Ken Wang02558a02015-06-03 19:52:06 +08001152 uint32_t me_feature_version;
1153 uint32_t ce_feature_version;
1154 uint32_t pfp_feature_version;
Jammy Zhou351643d2015-08-04 10:43:50 +08001155 uint32_t rlc_feature_version;
1156 uint32_t mec_feature_version;
1157 uint32_t mec2_feature_version;
Alex Deucher97b2e202015-04-20 16:51:00 -04001158 struct amdgpu_ring gfx_ring[AMDGPU_MAX_GFX_RINGS];
1159 unsigned num_gfx_rings;
1160 struct amdgpu_ring compute_ring[AMDGPU_MAX_COMPUTE_RINGS];
1161 unsigned num_compute_rings;
1162 struct amdgpu_irq_src eop_irq;
1163 struct amdgpu_irq_src priv_reg_irq;
1164 struct amdgpu_irq_src priv_inst_irq;
1165 /* gfx status */
Alex Deucher7dae69a2016-05-03 16:25:53 -04001166 uint32_t gfx_current_status;
Ken Wanga101a892015-06-03 17:47:54 +08001167 /* ce ram size*/
Alex Deucher7dae69a2016-05-03 16:25:53 -04001168 unsigned ce_ram_size;
1169 struct amdgpu_cu_info cu_info;
Alex Deucherb95e31f2016-07-07 15:01:42 -04001170 const struct amdgpu_gfx_funcs *funcs;
Chunming Zhou3d7c6382016-07-15 11:28:30 +08001171
1172 /* reset mask */
1173 uint32_t grbm_soft_reset;
1174 uint32_t srbm_soft_reset;
Alex Deucher97b2e202015-04-20 16:51:00 -04001175};
1176
Christian Königb07c60c2016-01-31 12:29:04 +01001177int amdgpu_ib_get(struct amdgpu_device *adev, struct amdgpu_vm *vm,
Alex Deucher97b2e202015-04-20 16:51:00 -04001178 unsigned size, struct amdgpu_ib *ib);
Christian König4d9c5142016-05-03 18:46:19 +02001179void amdgpu_ib_free(struct amdgpu_device *adev, struct amdgpu_ib *ib,
1180 struct fence *f);
Christian Königb07c60c2016-01-31 12:29:04 +01001181int amdgpu_ib_schedule(struct amdgpu_ring *ring, unsigned num_ibs,
Christian König336d1f52016-02-16 10:57:10 +01001182 struct amdgpu_ib *ib, struct fence *last_vm_update,
Monk Liuc5637832016-04-19 20:11:32 +08001183 struct amdgpu_job *job, struct fence **f);
Alex Deucher97b2e202015-04-20 16:51:00 -04001184int amdgpu_ib_pool_init(struct amdgpu_device *adev);
1185void amdgpu_ib_pool_fini(struct amdgpu_device *adev);
1186int amdgpu_ib_ring_tests(struct amdgpu_device *adev);
Alex Deucher97b2e202015-04-20 16:51:00 -04001187int amdgpu_ring_alloc(struct amdgpu_ring *ring, unsigned ndw);
Jammy Zhouedff0e22015-09-01 13:04:08 +08001188void amdgpu_ring_insert_nop(struct amdgpu_ring *ring, uint32_t count);
Christian König9e5d53092016-01-31 12:20:55 +01001189void amdgpu_ring_generic_pad_ib(struct amdgpu_ring *ring, struct amdgpu_ib *ib);
Alex Deucher97b2e202015-04-20 16:51:00 -04001190void amdgpu_ring_commit(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -04001191void amdgpu_ring_undo(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -04001192int amdgpu_ring_init(struct amdgpu_device *adev, struct amdgpu_ring *ring,
1193 unsigned ring_size, u32 nop, u32 align_mask,
1194 struct amdgpu_irq_src *irq_src, unsigned irq_type,
1195 enum amdgpu_ring_type ring_type);
1196void amdgpu_ring_fini(struct amdgpu_ring *ring);
1197
1198/*
1199 * CS.
1200 */
1201struct amdgpu_cs_chunk {
1202 uint32_t chunk_id;
1203 uint32_t length_dw;
Christian König758ac172016-05-06 22:14:00 +02001204 void *kdata;
Alex Deucher97b2e202015-04-20 16:51:00 -04001205};
1206
1207struct amdgpu_cs_parser {
1208 struct amdgpu_device *adev;
1209 struct drm_file *filp;
Christian König3cb485f2015-05-11 15:34:59 +02001210 struct amdgpu_ctx *ctx;
Christian Königc3cca412015-12-15 14:41:33 +01001211
Alex Deucher97b2e202015-04-20 16:51:00 -04001212 /* chunks */
1213 unsigned nchunks;
1214 struct amdgpu_cs_chunk *chunks;
Alex Deucher97b2e202015-04-20 16:51:00 -04001215
Christian König50838c82016-02-03 13:44:52 +01001216 /* scheduler job object */
1217 struct amdgpu_job *job;
Alex Deucher97b2e202015-04-20 16:51:00 -04001218
Christian Königc3cca412015-12-15 14:41:33 +01001219 /* buffer objects */
1220 struct ww_acquire_ctx ticket;
1221 struct amdgpu_bo_list *bo_list;
1222 struct amdgpu_bo_list_entry vm_pd;
1223 struct list_head validated;
1224 struct fence *fence;
1225 uint64_t bytes_moved_threshold;
1226 uint64_t bytes_moved;
Alex Deucher97b2e202015-04-20 16:51:00 -04001227
1228 /* user fence */
Christian König91acbeb2015-12-14 16:42:31 +01001229 struct amdgpu_bo_list_entry uf_entry;
Alex Deucher97b2e202015-04-20 16:51:00 -04001230};
1231
Chunming Zhoubb977d32015-08-18 15:16:40 +08001232struct amdgpu_job {
1233 struct amd_sched_job base;
1234 struct amdgpu_device *adev;
Christian Königedf600d2016-05-03 15:54:54 +02001235 struct amdgpu_vm *vm;
Christian Königb07c60c2016-01-31 12:29:04 +01001236 struct amdgpu_ring *ring;
Christian Könige86f9ce2016-02-08 12:13:05 +01001237 struct amdgpu_sync sync;
Chunming Zhoubb977d32015-08-18 15:16:40 +08001238 struct amdgpu_ib *ibs;
Monk Liu73cfa5f2016-03-17 13:48:13 +08001239 struct fence *fence; /* the hw fence */
Chunming Zhoubb977d32015-08-18 15:16:40 +08001240 uint32_t num_ibs;
Christian Könige2840222015-11-05 19:49:48 +01001241 void *owner;
Christian König92f25092016-05-06 15:57:42 +02001242 uint64_t ctx;
Chunming Zhoufd53be32016-07-01 17:59:01 +08001243 bool vm_needs_flush;
Christian Königd88bf582016-05-06 17:50:03 +02001244 unsigned vm_id;
1245 uint64_t vm_pd_addr;
1246 uint32_t gds_base, gds_size;
1247 uint32_t gws_base, gws_size;
1248 uint32_t oa_base, oa_size;
Christian König758ac172016-05-06 22:14:00 +02001249
1250 /* user fence handling */
Christian Königb5f5acb2016-06-29 13:26:41 +02001251 uint64_t uf_addr;
Christian König758ac172016-05-06 22:14:00 +02001252 uint64_t uf_sequence;
1253
Chunming Zhoubb977d32015-08-18 15:16:40 +08001254};
Junwei Zhanga6db8a32015-09-09 09:21:19 +08001255#define to_amdgpu_job(sched_job) \
1256 container_of((sched_job), struct amdgpu_job, base)
Chunming Zhoubb977d32015-08-18 15:16:40 +08001257
Christian König7270f832016-01-31 11:00:41 +01001258static inline u32 amdgpu_get_ib_value(struct amdgpu_cs_parser *p,
1259 uint32_t ib_idx, int idx)
Alex Deucher97b2e202015-04-20 16:51:00 -04001260{
Christian König50838c82016-02-03 13:44:52 +01001261 return p->job->ibs[ib_idx].ptr[idx];
Alex Deucher97b2e202015-04-20 16:51:00 -04001262}
1263
Christian König7270f832016-01-31 11:00:41 +01001264static inline void amdgpu_set_ib_value(struct amdgpu_cs_parser *p,
1265 uint32_t ib_idx, int idx,
1266 uint32_t value)
1267{
Christian König50838c82016-02-03 13:44:52 +01001268 p->job->ibs[ib_idx].ptr[idx] = value;
Christian König7270f832016-01-31 11:00:41 +01001269}
1270
Alex Deucher97b2e202015-04-20 16:51:00 -04001271/*
1272 * Writeback
1273 */
1274#define AMDGPU_MAX_WB 1024 /* Reserve at most 1024 WB slots for amdgpu-owned rings. */
1275
1276struct amdgpu_wb {
1277 struct amdgpu_bo *wb_obj;
1278 volatile uint32_t *wb;
1279 uint64_t gpu_addr;
1280 u32 num_wb; /* Number of wb slots actually reserved for amdgpu. */
1281 unsigned long used[DIV_ROUND_UP(AMDGPU_MAX_WB, BITS_PER_LONG)];
1282};
1283
1284int amdgpu_wb_get(struct amdgpu_device *adev, u32 *wb);
1285void amdgpu_wb_free(struct amdgpu_device *adev, u32 wb);
1286
Alex Deucher97b2e202015-04-20 16:51:00 -04001287
Alex Deucher97b2e202015-04-20 16:51:00 -04001288
1289enum amdgpu_int_thermal_type {
1290 THERMAL_TYPE_NONE,
1291 THERMAL_TYPE_EXTERNAL,
1292 THERMAL_TYPE_EXTERNAL_GPIO,
1293 THERMAL_TYPE_RV6XX,
1294 THERMAL_TYPE_RV770,
1295 THERMAL_TYPE_ADT7473_WITH_INTERNAL,
1296 THERMAL_TYPE_EVERGREEN,
1297 THERMAL_TYPE_SUMO,
1298 THERMAL_TYPE_NI,
1299 THERMAL_TYPE_SI,
1300 THERMAL_TYPE_EMC2103_WITH_INTERNAL,
1301 THERMAL_TYPE_CI,
1302 THERMAL_TYPE_KV,
1303};
1304
1305enum amdgpu_dpm_auto_throttle_src {
1306 AMDGPU_DPM_AUTO_THROTTLE_SRC_THERMAL,
1307 AMDGPU_DPM_AUTO_THROTTLE_SRC_EXTERNAL
1308};
1309
1310enum amdgpu_dpm_event_src {
1311 AMDGPU_DPM_EVENT_SRC_ANALOG = 0,
1312 AMDGPU_DPM_EVENT_SRC_EXTERNAL = 1,
1313 AMDGPU_DPM_EVENT_SRC_DIGITAL = 2,
1314 AMDGPU_DPM_EVENT_SRC_ANALOG_OR_EXTERNAL = 3,
1315 AMDGPU_DPM_EVENT_SRC_DIGIAL_OR_EXTERNAL = 4
1316};
1317
1318#define AMDGPU_MAX_VCE_LEVELS 6
1319
1320enum amdgpu_vce_level {
1321 AMDGPU_VCE_LEVEL_AC_ALL = 0, /* AC, All cases */
1322 AMDGPU_VCE_LEVEL_DC_EE = 1, /* DC, entropy encoding */
1323 AMDGPU_VCE_LEVEL_DC_LL_LOW = 2, /* DC, low latency queue, res <= 720 */
1324 AMDGPU_VCE_LEVEL_DC_LL_HIGH = 3, /* DC, low latency queue, 1080 >= res > 720 */
1325 AMDGPU_VCE_LEVEL_DC_GP_LOW = 4, /* DC, general purpose queue, res <= 720 */
1326 AMDGPU_VCE_LEVEL_DC_GP_HIGH = 5, /* DC, general purpose queue, 1080 >= res > 720 */
1327};
1328
1329struct amdgpu_ps {
1330 u32 caps; /* vbios flags */
1331 u32 class; /* vbios flags */
1332 u32 class2; /* vbios flags */
1333 /* UVD clocks */
1334 u32 vclk;
1335 u32 dclk;
1336 /* VCE clocks */
1337 u32 evclk;
1338 u32 ecclk;
1339 bool vce_active;
1340 enum amdgpu_vce_level vce_level;
1341 /* asic priv */
1342 void *ps_priv;
1343};
1344
1345struct amdgpu_dpm_thermal {
1346 /* thermal interrupt work */
1347 struct work_struct work;
1348 /* low temperature threshold */
1349 int min_temp;
1350 /* high temperature threshold */
1351 int max_temp;
1352 /* was last interrupt low to high or high to low */
1353 bool high_to_low;
1354 /* interrupt source */
1355 struct amdgpu_irq_src irq;
1356};
1357
1358enum amdgpu_clk_action
1359{
1360 AMDGPU_SCLK_UP = 1,
1361 AMDGPU_SCLK_DOWN
1362};
1363
1364struct amdgpu_blacklist_clocks
1365{
1366 u32 sclk;
1367 u32 mclk;
1368 enum amdgpu_clk_action action;
1369};
1370
1371struct amdgpu_clock_and_voltage_limits {
1372 u32 sclk;
1373 u32 mclk;
1374 u16 vddc;
1375 u16 vddci;
1376};
1377
1378struct amdgpu_clock_array {
1379 u32 count;
1380 u32 *values;
1381};
1382
1383struct amdgpu_clock_voltage_dependency_entry {
1384 u32 clk;
1385 u16 v;
1386};
1387
1388struct amdgpu_clock_voltage_dependency_table {
1389 u32 count;
1390 struct amdgpu_clock_voltage_dependency_entry *entries;
1391};
1392
1393union amdgpu_cac_leakage_entry {
1394 struct {
1395 u16 vddc;
1396 u32 leakage;
1397 };
1398 struct {
1399 u16 vddc1;
1400 u16 vddc2;
1401 u16 vddc3;
1402 };
1403};
1404
1405struct amdgpu_cac_leakage_table {
1406 u32 count;
1407 union amdgpu_cac_leakage_entry *entries;
1408};
1409
1410struct amdgpu_phase_shedding_limits_entry {
1411 u16 voltage;
1412 u32 sclk;
1413 u32 mclk;
1414};
1415
1416struct amdgpu_phase_shedding_limits_table {
1417 u32 count;
1418 struct amdgpu_phase_shedding_limits_entry *entries;
1419};
1420
1421struct amdgpu_uvd_clock_voltage_dependency_entry {
1422 u32 vclk;
1423 u32 dclk;
1424 u16 v;
1425};
1426
1427struct amdgpu_uvd_clock_voltage_dependency_table {
1428 u8 count;
1429 struct amdgpu_uvd_clock_voltage_dependency_entry *entries;
1430};
1431
1432struct amdgpu_vce_clock_voltage_dependency_entry {
1433 u32 ecclk;
1434 u32 evclk;
1435 u16 v;
1436};
1437
1438struct amdgpu_vce_clock_voltage_dependency_table {
1439 u8 count;
1440 struct amdgpu_vce_clock_voltage_dependency_entry *entries;
1441};
1442
1443struct amdgpu_ppm_table {
1444 u8 ppm_design;
1445 u16 cpu_core_number;
1446 u32 platform_tdp;
1447 u32 small_ac_platform_tdp;
1448 u32 platform_tdc;
1449 u32 small_ac_platform_tdc;
1450 u32 apu_tdp;
1451 u32 dgpu_tdp;
1452 u32 dgpu_ulv_power;
1453 u32 tj_max;
1454};
1455
1456struct amdgpu_cac_tdp_table {
1457 u16 tdp;
1458 u16 configurable_tdp;
1459 u16 tdc;
1460 u16 battery_power_limit;
1461 u16 small_power_limit;
1462 u16 low_cac_leakage;
1463 u16 high_cac_leakage;
1464 u16 maximum_power_delivery_limit;
1465};
1466
1467struct amdgpu_dpm_dynamic_state {
1468 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_sclk;
1469 struct amdgpu_clock_voltage_dependency_table vddci_dependency_on_mclk;
1470 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_mclk;
1471 struct amdgpu_clock_voltage_dependency_table mvdd_dependency_on_mclk;
1472 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_dispclk;
1473 struct amdgpu_uvd_clock_voltage_dependency_table uvd_clock_voltage_dependency_table;
1474 struct amdgpu_vce_clock_voltage_dependency_table vce_clock_voltage_dependency_table;
1475 struct amdgpu_clock_voltage_dependency_table samu_clock_voltage_dependency_table;
1476 struct amdgpu_clock_voltage_dependency_table acp_clock_voltage_dependency_table;
1477 struct amdgpu_clock_voltage_dependency_table vddgfx_dependency_on_sclk;
1478 struct amdgpu_clock_array valid_sclk_values;
1479 struct amdgpu_clock_array valid_mclk_values;
1480 struct amdgpu_clock_and_voltage_limits max_clock_voltage_on_dc;
1481 struct amdgpu_clock_and_voltage_limits max_clock_voltage_on_ac;
1482 u32 mclk_sclk_ratio;
1483 u32 sclk_mclk_delta;
1484 u16 vddc_vddci_delta;
1485 u16 min_vddc_for_pcie_gen2;
1486 struct amdgpu_cac_leakage_table cac_leakage_table;
1487 struct amdgpu_phase_shedding_limits_table phase_shedding_limits_table;
1488 struct amdgpu_ppm_table *ppm_table;
1489 struct amdgpu_cac_tdp_table *cac_tdp_table;
1490};
1491
1492struct amdgpu_dpm_fan {
1493 u16 t_min;
1494 u16 t_med;
1495 u16 t_high;
1496 u16 pwm_min;
1497 u16 pwm_med;
1498 u16 pwm_high;
1499 u8 t_hyst;
1500 u32 cycle_delay;
1501 u16 t_max;
1502 u8 control_mode;
1503 u16 default_max_fan_pwm;
1504 u16 default_fan_output_sensitivity;
1505 u16 fan_output_sensitivity;
1506 bool ucode_fan_control;
1507};
1508
1509enum amdgpu_pcie_gen {
1510 AMDGPU_PCIE_GEN1 = 0,
1511 AMDGPU_PCIE_GEN2 = 1,
1512 AMDGPU_PCIE_GEN3 = 2,
1513 AMDGPU_PCIE_GEN_INVALID = 0xffff
1514};
1515
1516enum amdgpu_dpm_forced_level {
1517 AMDGPU_DPM_FORCED_LEVEL_AUTO = 0,
1518 AMDGPU_DPM_FORCED_LEVEL_LOW = 1,
1519 AMDGPU_DPM_FORCED_LEVEL_HIGH = 2,
Eric Huangf3898ea2015-12-11 16:24:34 -05001520 AMDGPU_DPM_FORCED_LEVEL_MANUAL = 3,
Alex Deucher97b2e202015-04-20 16:51:00 -04001521};
1522
1523struct amdgpu_vce_state {
1524 /* vce clocks */
1525 u32 evclk;
1526 u32 ecclk;
1527 /* gpu clocks */
1528 u32 sclk;
1529 u32 mclk;
1530 u8 clk_idx;
1531 u8 pstate;
1532};
1533
1534struct amdgpu_dpm_funcs {
1535 int (*get_temperature)(struct amdgpu_device *adev);
1536 int (*pre_set_power_state)(struct amdgpu_device *adev);
1537 int (*set_power_state)(struct amdgpu_device *adev);
1538 void (*post_set_power_state)(struct amdgpu_device *adev);
1539 void (*display_configuration_changed)(struct amdgpu_device *adev);
1540 u32 (*get_sclk)(struct amdgpu_device *adev, bool low);
1541 u32 (*get_mclk)(struct amdgpu_device *adev, bool low);
1542 void (*print_power_state)(struct amdgpu_device *adev, struct amdgpu_ps *ps);
1543 void (*debugfs_print_current_performance_level)(struct amdgpu_device *adev, struct seq_file *m);
1544 int (*force_performance_level)(struct amdgpu_device *adev, enum amdgpu_dpm_forced_level level);
1545 bool (*vblank_too_short)(struct amdgpu_device *adev);
1546 void (*powergate_uvd)(struct amdgpu_device *adev, bool gate);
Sonny Jiangb7a07762015-05-28 15:47:53 -04001547 void (*powergate_vce)(struct amdgpu_device *adev, bool gate);
Alex Deucher97b2e202015-04-20 16:51:00 -04001548 void (*enable_bapm)(struct amdgpu_device *adev, bool enable);
1549 void (*set_fan_control_mode)(struct amdgpu_device *adev, u32 mode);
1550 u32 (*get_fan_control_mode)(struct amdgpu_device *adev);
1551 int (*set_fan_speed_percent)(struct amdgpu_device *adev, u32 speed);
1552 int (*get_fan_speed_percent)(struct amdgpu_device *adev, u32 *speed);
Eric Huangc85e2992016-05-19 15:41:25 -04001553 int (*force_clock_level)(struct amdgpu_device *adev, enum pp_clock_type type, uint32_t mask);
1554 int (*print_clock_levels)(struct amdgpu_device *adev, enum pp_clock_type type, char *buf);
Eric Huang8b2e5742016-05-19 15:46:10 -04001555 int (*get_sclk_od)(struct amdgpu_device *adev);
1556 int (*set_sclk_od)(struct amdgpu_device *adev, uint32_t value);
Eric Huangf2bdc052016-05-24 15:11:17 -04001557 int (*get_mclk_od)(struct amdgpu_device *adev);
1558 int (*set_mclk_od)(struct amdgpu_device *adev, uint32_t value);
Alex Deucher97b2e202015-04-20 16:51:00 -04001559};
1560
1561struct amdgpu_dpm {
1562 struct amdgpu_ps *ps;
1563 /* number of valid power states */
1564 int num_ps;
1565 /* current power state that is active */
1566 struct amdgpu_ps *current_ps;
1567 /* requested power state */
1568 struct amdgpu_ps *requested_ps;
1569 /* boot up power state */
1570 struct amdgpu_ps *boot_ps;
1571 /* default uvd power state */
1572 struct amdgpu_ps *uvd_ps;
1573 /* vce requirements */
1574 struct amdgpu_vce_state vce_states[AMDGPU_MAX_VCE_LEVELS];
1575 enum amdgpu_vce_level vce_level;
Rex Zhu3a2c7882015-08-25 15:57:43 +08001576 enum amd_pm_state_type state;
1577 enum amd_pm_state_type user_state;
Alex Deucher97b2e202015-04-20 16:51:00 -04001578 u32 platform_caps;
1579 u32 voltage_response_time;
1580 u32 backbias_response_time;
1581 void *priv;
1582 u32 new_active_crtcs;
1583 int new_active_crtc_count;
1584 u32 current_active_crtcs;
1585 int current_active_crtc_count;
1586 struct amdgpu_dpm_dynamic_state dyn_state;
1587 struct amdgpu_dpm_fan fan;
1588 u32 tdp_limit;
1589 u32 near_tdp_limit;
1590 u32 near_tdp_limit_adjusted;
1591 u32 sq_ramping_threshold;
1592 u32 cac_leakage;
1593 u16 tdp_od_limit;
1594 u32 tdp_adjustment;
1595 u16 load_line_slope;
1596 bool power_control;
1597 bool ac_power;
1598 /* special states active */
1599 bool thermal_active;
1600 bool uvd_active;
1601 bool vce_active;
1602 /* thermal handling */
1603 struct amdgpu_dpm_thermal thermal;
1604 /* forced levels */
1605 enum amdgpu_dpm_forced_level forced_level;
1606};
1607
1608struct amdgpu_pm {
1609 struct mutex mutex;
Alex Deucher97b2e202015-04-20 16:51:00 -04001610 u32 current_sclk;
1611 u32 current_mclk;
1612 u32 default_sclk;
1613 u32 default_mclk;
1614 struct amdgpu_i2c_chan *i2c_bus;
1615 /* internal thermal controller on rv6xx+ */
1616 enum amdgpu_int_thermal_type int_thermal_type;
1617 struct device *int_hwmon_dev;
1618 /* fan control parameters */
1619 bool no_fan;
1620 u8 fan_pulses_per_revolution;
1621 u8 fan_min_rpm;
1622 u8 fan_max_rpm;
1623 /* dpm */
1624 bool dpm_enabled;
Alex Deucherc86f5ebf2015-10-23 10:45:14 -04001625 bool sysfs_initialized;
Alex Deucher97b2e202015-04-20 16:51:00 -04001626 struct amdgpu_dpm dpm;
1627 const struct firmware *fw; /* SMC firmware */
1628 uint32_t fw_version;
1629 const struct amdgpu_dpm_funcs *funcs;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05001630 uint32_t pcie_gen_mask;
1631 uint32_t pcie_mlw_mask;
Rex Zhu7fb72a12015-11-19 13:35:30 +08001632 struct amd_pp_display_configuration pm_display_cfg;/* set by DAL */
Alex Deucher97b2e202015-04-20 16:51:00 -04001633};
1634
Alex Deucherd0dd7f02015-11-11 19:45:06 -05001635void amdgpu_get_pcie_info(struct amdgpu_device *adev);
1636
Alex Deucher97b2e202015-04-20 16:51:00 -04001637/*
1638 * UVD
1639 */
Arindam Nathc0365542016-04-12 13:46:15 +02001640#define AMDGPU_DEFAULT_UVD_HANDLES 10
1641#define AMDGPU_MAX_UVD_HANDLES 40
1642#define AMDGPU_UVD_STACK_SIZE (200*1024)
1643#define AMDGPU_UVD_HEAP_SIZE (256*1024)
1644#define AMDGPU_UVD_SESSION_SIZE (50*1024)
1645#define AMDGPU_UVD_FIRMWARE_OFFSET 256
Alex Deucher97b2e202015-04-20 16:51:00 -04001646
1647struct amdgpu_uvd {
1648 struct amdgpu_bo *vcpu_bo;
1649 void *cpu_addr;
1650 uint64_t gpu_addr;
Sonny Jiang562e2682016-04-18 16:05:04 -04001651 unsigned fw_version;
Leo Liu3f99dd82016-04-01 10:36:06 -04001652 void *saved_bo;
Arindam Nathc0365542016-04-12 13:46:15 +02001653 unsigned max_handles;
Alex Deucher97b2e202015-04-20 16:51:00 -04001654 atomic_t handles[AMDGPU_MAX_UVD_HANDLES];
1655 struct drm_file *filp[AMDGPU_MAX_UVD_HANDLES];
1656 struct delayed_work idle_work;
1657 const struct firmware *fw; /* UVD firmware */
1658 struct amdgpu_ring ring;
1659 struct amdgpu_irq_src irq;
1660 bool address_64_bit;
Christian König4cb5877c2016-07-26 12:05:40 +02001661 bool use_ctx_buf;
Christian Königead833e2016-02-10 14:35:19 +01001662 struct amd_sched_entity entity;
Chunming Zhoufc0b3b92016-07-18 17:18:01 +08001663 uint32_t srbm_soft_reset;
Alex Deucher97b2e202015-04-20 16:51:00 -04001664};
1665
1666/*
1667 * VCE
1668 */
1669#define AMDGPU_MAX_VCE_HANDLES 16
Alex Deucher97b2e202015-04-20 16:51:00 -04001670#define AMDGPU_VCE_FIRMWARE_OFFSET 256
1671
Alex Deucher6a585772015-07-10 14:16:24 -04001672#define AMDGPU_VCE_HARVEST_VCE0 (1 << 0)
1673#define AMDGPU_VCE_HARVEST_VCE1 (1 << 1)
1674
Alex Deucher97b2e202015-04-20 16:51:00 -04001675struct amdgpu_vce {
1676 struct amdgpu_bo *vcpu_bo;
1677 uint64_t gpu_addr;
1678 unsigned fw_version;
1679 unsigned fb_version;
1680 atomic_t handles[AMDGPU_MAX_VCE_HANDLES];
1681 struct drm_file *filp[AMDGPU_MAX_VCE_HANDLES];
Christian Königf1689ec2015-06-11 20:56:18 +02001682 uint32_t img_size[AMDGPU_MAX_VCE_HANDLES];
Alex Deucher97b2e202015-04-20 16:51:00 -04001683 struct delayed_work idle_work;
Christian Königebff4852016-07-20 16:53:36 +02001684 struct mutex idle_mutex;
Alex Deucher97b2e202015-04-20 16:51:00 -04001685 const struct firmware *fw; /* VCE firmware */
1686 struct amdgpu_ring ring[AMDGPU_MAX_VCE_RINGS];
1687 struct amdgpu_irq_src irq;
Alex Deucher6a585772015-07-10 14:16:24 -04001688 unsigned harvest_config;
Christian Königc5949892016-02-10 17:43:00 +01001689 struct amd_sched_entity entity;
Chunming Zhou115933a2016-07-18 17:38:50 +08001690 uint32_t srbm_soft_reset;
Alex Deucher75c65482016-08-24 16:56:21 -04001691 unsigned num_rings;
Alex Deucher97b2e202015-04-20 16:51:00 -04001692};
1693
1694/*
1695 * SDMA
1696 */
Alex Deucherc113ea12015-10-08 16:30:37 -04001697struct amdgpu_sdma_instance {
Alex Deucher97b2e202015-04-20 16:51:00 -04001698 /* SDMA firmware */
1699 const struct firmware *fw;
1700 uint32_t fw_version;
Jammy Zhoucfa21042015-08-04 10:50:47 +08001701 uint32_t feature_version;
Alex Deucher97b2e202015-04-20 16:51:00 -04001702
1703 struct amdgpu_ring ring;
Jammy Zhou18111de2015-08-31 14:06:39 +08001704 bool burst_nop;
Alex Deucher97b2e202015-04-20 16:51:00 -04001705};
1706
Alex Deucherc113ea12015-10-08 16:30:37 -04001707struct amdgpu_sdma {
1708 struct amdgpu_sdma_instance instance[AMDGPU_MAX_SDMA_INSTANCES];
1709 struct amdgpu_irq_src trap_irq;
1710 struct amdgpu_irq_src illegal_inst_irq;
Christian Königedf600d2016-05-03 15:54:54 +02001711 int num_instances;
Chunming Zhoue702a682016-07-13 10:28:56 +08001712 uint32_t srbm_soft_reset;
Alex Deucherc113ea12015-10-08 16:30:37 -04001713};
1714
Alex Deucher97b2e202015-04-20 16:51:00 -04001715/*
1716 * Firmware
1717 */
1718struct amdgpu_firmware {
1719 struct amdgpu_firmware_info ucode[AMDGPU_UCODE_ID_MAXIMUM];
1720 bool smu_load;
1721 struct amdgpu_bo *fw_buf;
1722 unsigned int fw_size;
1723};
1724
1725/*
1726 * Benchmarking
1727 */
1728void amdgpu_benchmark(struct amdgpu_device *adev, int test_number);
1729
1730
1731/*
1732 * Testing
1733 */
1734void amdgpu_test_moves(struct amdgpu_device *adev);
1735void amdgpu_test_ring_sync(struct amdgpu_device *adev,
1736 struct amdgpu_ring *cpA,
1737 struct amdgpu_ring *cpB);
1738void amdgpu_test_syncing(struct amdgpu_device *adev);
1739
1740/*
1741 * MMU Notifier
1742 */
1743#if defined(CONFIG_MMU_NOTIFIER)
1744int amdgpu_mn_register(struct amdgpu_bo *bo, unsigned long addr);
1745void amdgpu_mn_unregister(struct amdgpu_bo *bo);
1746#else
Harry Wentland1d1106b2015-07-15 07:10:41 -04001747static inline int amdgpu_mn_register(struct amdgpu_bo *bo, unsigned long addr)
Alex Deucher97b2e202015-04-20 16:51:00 -04001748{
1749 return -ENODEV;
1750}
Harry Wentland1d1106b2015-07-15 07:10:41 -04001751static inline void amdgpu_mn_unregister(struct amdgpu_bo *bo) {}
Alex Deucher97b2e202015-04-20 16:51:00 -04001752#endif
1753
1754/*
1755 * Debugfs
1756 */
1757struct amdgpu_debugfs {
Nils Wallménius06ab6832016-05-02 12:46:15 -04001758 const struct drm_info_list *files;
Alex Deucher97b2e202015-04-20 16:51:00 -04001759 unsigned num_files;
1760};
1761
1762int amdgpu_debugfs_add_files(struct amdgpu_device *adev,
Nils Wallménius06ab6832016-05-02 12:46:15 -04001763 const struct drm_info_list *files,
Alex Deucher97b2e202015-04-20 16:51:00 -04001764 unsigned nfiles);
1765int amdgpu_debugfs_fence_init(struct amdgpu_device *adev);
1766
1767#if defined(CONFIG_DEBUG_FS)
1768int amdgpu_debugfs_init(struct drm_minor *minor);
1769void amdgpu_debugfs_cleanup(struct drm_minor *minor);
1770#endif
1771
Huang Rui50ab2532016-06-12 15:51:09 +08001772int amdgpu_debugfs_firmware_init(struct amdgpu_device *adev);
1773
Alex Deucher97b2e202015-04-20 16:51:00 -04001774/*
1775 * amdgpu smumgr functions
1776 */
1777struct amdgpu_smumgr_funcs {
1778 int (*check_fw_load_finish)(struct amdgpu_device *adev, uint32_t fwtype);
1779 int (*request_smu_load_fw)(struct amdgpu_device *adev);
1780 int (*request_smu_specific_fw)(struct amdgpu_device *adev, uint32_t fwtype);
1781};
1782
1783/*
1784 * amdgpu smumgr
1785 */
1786struct amdgpu_smumgr {
1787 struct amdgpu_bo *toc_buf;
1788 struct amdgpu_bo *smu_buf;
1789 /* asic priv smu data */
1790 void *priv;
1791 spinlock_t smu_lock;
1792 /* smumgr functions */
1793 const struct amdgpu_smumgr_funcs *smumgr_funcs;
1794 /* ucode loading complete flag */
1795 uint32_t fw_flags;
1796};
1797
1798/*
1799 * ASIC specific register table accessible by UMD
1800 */
1801struct amdgpu_allowed_register_entry {
1802 uint32_t reg_offset;
1803 bool untouched;
1804 bool grbm_indexed;
1805};
1806
Alex Deucher97b2e202015-04-20 16:51:00 -04001807/*
1808 * ASIC specific functions.
1809 */
1810struct amdgpu_asic_funcs {
1811 bool (*read_disabled_bios)(struct amdgpu_device *adev);
Alex Deucher7946b872015-11-24 10:14:28 -05001812 bool (*read_bios_from_rom)(struct amdgpu_device *adev,
1813 u8 *bios, u32 length_bytes);
Alex Deucher97b2e202015-04-20 16:51:00 -04001814 int (*read_register)(struct amdgpu_device *adev, u32 se_num,
1815 u32 sh_num, u32 reg_offset, u32 *value);
1816 void (*set_vga_state)(struct amdgpu_device *adev, bool state);
1817 int (*reset)(struct amdgpu_device *adev);
Alex Deucher97b2e202015-04-20 16:51:00 -04001818 /* get the reference clock */
1819 u32 (*get_xclk)(struct amdgpu_device *adev);
Alex Deucher97b2e202015-04-20 16:51:00 -04001820 /* MM block clocks */
1821 int (*set_uvd_clocks)(struct amdgpu_device *adev, u32 vclk, u32 dclk);
1822 int (*set_vce_clocks)(struct amdgpu_device *adev, u32 evclk, u32 ecclk);
Andres Rodriguez048765a2016-06-11 02:51:32 -04001823 /* query virtual capabilities */
1824 u32 (*get_virtual_caps)(struct amdgpu_device *adev);
Alex Deucher97b2e202015-04-20 16:51:00 -04001825};
1826
1827/*
1828 * IOCTL.
1829 */
1830int amdgpu_gem_create_ioctl(struct drm_device *dev, void *data,
1831 struct drm_file *filp);
1832int amdgpu_bo_list_ioctl(struct drm_device *dev, void *data,
1833 struct drm_file *filp);
1834
1835int amdgpu_gem_info_ioctl(struct drm_device *dev, void *data,
1836 struct drm_file *filp);
1837int amdgpu_gem_userptr_ioctl(struct drm_device *dev, void *data,
1838 struct drm_file *filp);
1839int amdgpu_gem_mmap_ioctl(struct drm_device *dev, void *data,
1840 struct drm_file *filp);
1841int amdgpu_gem_wait_idle_ioctl(struct drm_device *dev, void *data,
1842 struct drm_file *filp);
1843int amdgpu_gem_va_ioctl(struct drm_device *dev, void *data,
1844 struct drm_file *filp);
1845int amdgpu_gem_op_ioctl(struct drm_device *dev, void *data,
1846 struct drm_file *filp);
1847int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
1848int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
1849
1850int amdgpu_gem_metadata_ioctl(struct drm_device *dev, void *data,
1851 struct drm_file *filp);
1852
1853/* VRAM scratch page for HDP bug, default vram page */
1854struct amdgpu_vram_scratch {
1855 struct amdgpu_bo *robj;
1856 volatile uint32_t *ptr;
1857 u64 gpu_addr;
1858};
1859
1860/*
1861 * ACPI
1862 */
1863struct amdgpu_atif_notification_cfg {
1864 bool enabled;
1865 int command_code;
1866};
1867
1868struct amdgpu_atif_notifications {
1869 bool display_switch;
1870 bool expansion_mode_change;
1871 bool thermal_state;
1872 bool forced_power_state;
1873 bool system_power_state;
1874 bool display_conf_change;
1875 bool px_gfx_switch;
1876 bool brightness_change;
1877 bool dgpu_display_event;
1878};
1879
1880struct amdgpu_atif_functions {
1881 bool system_params;
1882 bool sbios_requests;
1883 bool select_active_disp;
1884 bool lid_state;
1885 bool get_tv_standard;
1886 bool set_tv_standard;
1887 bool get_panel_expansion_mode;
1888 bool set_panel_expansion_mode;
1889 bool temperature_change;
1890 bool graphics_device_types;
1891};
1892
1893struct amdgpu_atif {
1894 struct amdgpu_atif_notifications notifications;
1895 struct amdgpu_atif_functions functions;
1896 struct amdgpu_atif_notification_cfg notification_cfg;
1897 struct amdgpu_encoder *encoder_for_bl;
1898};
1899
1900struct amdgpu_atcs_functions {
1901 bool get_ext_state;
1902 bool pcie_perf_req;
1903 bool pcie_dev_rdy;
1904 bool pcie_bus_width;
1905};
1906
1907struct amdgpu_atcs {
1908 struct amdgpu_atcs_functions functions;
1909};
1910
Alex Deucher97b2e202015-04-20 16:51:00 -04001911/*
Chunming Zhoud03846a2015-07-28 14:20:03 -04001912 * CGS
1913 */
Dave Airlie110e6f22016-04-12 13:25:48 +10001914struct cgs_device *amdgpu_cgs_create_device(struct amdgpu_device *adev);
1915void amdgpu_cgs_destroy_device(struct cgs_device *cgs_device);
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -04001916
1917
Alex Deucher7e471e62016-02-01 11:13:04 -05001918/* GPU virtualization */
Andres Rodriguez048765a2016-06-11 02:51:32 -04001919#define AMDGPU_VIRT_CAPS_SRIOV_EN (1 << 0)
1920#define AMDGPU_VIRT_CAPS_IS_VF (1 << 1)
Alex Deucher7e471e62016-02-01 11:13:04 -05001921struct amdgpu_virtualization {
1922 bool supports_sr_iov;
Andres Rodriguez048765a2016-06-11 02:51:32 -04001923 bool is_virtual;
1924 u32 caps;
Alex Deucher7e471e62016-02-01 11:13:04 -05001925};
1926
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -04001927/*
Alex Deucher97b2e202015-04-20 16:51:00 -04001928 * Core structure, functions and helpers.
1929 */
1930typedef uint32_t (*amdgpu_rreg_t)(struct amdgpu_device*, uint32_t);
1931typedef void (*amdgpu_wreg_t)(struct amdgpu_device*, uint32_t, uint32_t);
1932
1933typedef uint32_t (*amdgpu_block_rreg_t)(struct amdgpu_device*, uint32_t, uint32_t);
1934typedef void (*amdgpu_block_wreg_t)(struct amdgpu_device*, uint32_t, uint32_t, uint32_t);
1935
Alex Deucher8faf0e02015-07-28 11:50:31 -04001936struct amdgpu_ip_block_status {
1937 bool valid;
1938 bool sw;
1939 bool hw;
Chunming Zhou63fbf422016-07-15 11:19:20 +08001940 bool hang;
Alex Deucher8faf0e02015-07-28 11:50:31 -04001941};
1942
Alex Deucher97b2e202015-04-20 16:51:00 -04001943struct amdgpu_device {
1944 struct device *dev;
1945 struct drm_device *ddev;
1946 struct pci_dev *pdev;
Alex Deucher97b2e202015-04-20 16:51:00 -04001947
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -04001948#ifdef CONFIG_DRM_AMD_ACP
1949 struct amdgpu_acp acp;
1950#endif
1951
Alex Deucher97b2e202015-04-20 16:51:00 -04001952 /* ASIC */
Jammy Zhou2f7d10b2015-07-22 11:29:01 +08001953 enum amd_asic_type asic_type;
Alex Deucher97b2e202015-04-20 16:51:00 -04001954 uint32_t family;
1955 uint32_t rev_id;
1956 uint32_t external_rev_id;
1957 unsigned long flags;
1958 int usec_timeout;
1959 const struct amdgpu_asic_funcs *asic_funcs;
1960 bool shutdown;
Alex Deucher97b2e202015-04-20 16:51:00 -04001961 bool need_dma32;
1962 bool accel_working;
Christian Königedf600d2016-05-03 15:54:54 +02001963 struct work_struct reset_work;
Alex Deucher97b2e202015-04-20 16:51:00 -04001964 struct notifier_block acpi_nb;
1965 struct amdgpu_i2c_chan *i2c_bus[AMDGPU_MAX_I2C_BUS];
1966 struct amdgpu_debugfs debugfs[AMDGPU_DEBUGFS_MAX_COMPONENTS];
Christian Königedf600d2016-05-03 15:54:54 +02001967 unsigned debugfs_count;
Alex Deucher97b2e202015-04-20 16:51:00 -04001968#if defined(CONFIG_DEBUG_FS)
Tom St Denisadcec282016-04-15 13:08:44 -04001969 struct dentry *debugfs_regs[AMDGPU_DEBUGFS_MAX_COMPONENTS];
Alex Deucher97b2e202015-04-20 16:51:00 -04001970#endif
1971 struct amdgpu_atif atif;
1972 struct amdgpu_atcs atcs;
1973 struct mutex srbm_mutex;
1974 /* GRBM index mutex. Protects concurrent access to GRBM index */
1975 struct mutex grbm_idx_mutex;
1976 struct dev_pm_domain vga_pm_domain;
1977 bool have_disp_power_ref;
1978
1979 /* BIOS */
1980 uint8_t *bios;
1981 bool is_atom_bios;
Alex Deucher97b2e202015-04-20 16:51:00 -04001982 struct amdgpu_bo *stollen_vga_memory;
1983 uint32_t bios_scratch[AMDGPU_BIOS_NUM_SCRATCH];
1984
1985 /* Register/doorbell mmio */
1986 resource_size_t rmmio_base;
1987 resource_size_t rmmio_size;
1988 void __iomem *rmmio;
1989 /* protects concurrent MM_INDEX/DATA based register access */
1990 spinlock_t mmio_idx_lock;
1991 /* protects concurrent SMC based register access */
1992 spinlock_t smc_idx_lock;
1993 amdgpu_rreg_t smc_rreg;
1994 amdgpu_wreg_t smc_wreg;
1995 /* protects concurrent PCIE register access */
1996 spinlock_t pcie_idx_lock;
1997 amdgpu_rreg_t pcie_rreg;
1998 amdgpu_wreg_t pcie_wreg;
1999 /* protects concurrent UVD register access */
2000 spinlock_t uvd_ctx_idx_lock;
2001 amdgpu_rreg_t uvd_ctx_rreg;
2002 amdgpu_wreg_t uvd_ctx_wreg;
2003 /* protects concurrent DIDT register access */
2004 spinlock_t didt_idx_lock;
2005 amdgpu_rreg_t didt_rreg;
2006 amdgpu_wreg_t didt_wreg;
Rex Zhuccdbb202016-06-08 12:47:41 +08002007 /* protects concurrent gc_cac register access */
2008 spinlock_t gc_cac_idx_lock;
2009 amdgpu_rreg_t gc_cac_rreg;
2010 amdgpu_wreg_t gc_cac_wreg;
Alex Deucher97b2e202015-04-20 16:51:00 -04002011 /* protects concurrent ENDPOINT (audio) register access */
2012 spinlock_t audio_endpt_idx_lock;
2013 amdgpu_block_rreg_t audio_endpt_rreg;
2014 amdgpu_block_wreg_t audio_endpt_wreg;
2015 void __iomem *rio_mem;
2016 resource_size_t rio_mem_size;
2017 struct amdgpu_doorbell doorbell;
2018
2019 /* clock/pll info */
2020 struct amdgpu_clock clock;
2021
2022 /* MC */
2023 struct amdgpu_mc mc;
2024 struct amdgpu_gart gart;
2025 struct amdgpu_dummy_page dummy_page;
2026 struct amdgpu_vm_manager vm_manager;
2027
2028 /* memory management */
2029 struct amdgpu_mman mman;
Alex Deucher97b2e202015-04-20 16:51:00 -04002030 struct amdgpu_vram_scratch vram_scratch;
2031 struct amdgpu_wb wb;
2032 atomic64_t vram_usage;
2033 atomic64_t vram_vis_usage;
2034 atomic64_t gtt_usage;
2035 atomic64_t num_bytes_moved;
Christian Königdbd5ed62016-06-21 16:28:14 +02002036 atomic64_t num_evictions;
Marek Olšákd94aed52015-05-05 21:13:49 +02002037 atomic_t gpu_reset_counter;
Alex Deucher97b2e202015-04-20 16:51:00 -04002038
Marek Olšák95844d22016-08-17 23:49:27 +02002039 /* data for buffer migration throttling */
2040 struct {
2041 spinlock_t lock;
2042 s64 last_update_us;
2043 s64 accum_us; /* accumulated microseconds */
2044 u32 log2_max_MBps;
2045 } mm_stats;
2046
Alex Deucher97b2e202015-04-20 16:51:00 -04002047 /* display */
Emily Deng9accf2f2016-08-10 16:01:25 +08002048 bool enable_virtual_display;
Alex Deucher97b2e202015-04-20 16:51:00 -04002049 struct amdgpu_mode_info mode_info;
2050 struct work_struct hotplug_work;
2051 struct amdgpu_irq_src crtc_irq;
2052 struct amdgpu_irq_src pageflip_irq;
2053 struct amdgpu_irq_src hpd_irq;
2054
2055 /* rings */
Christian König76bf0db2016-06-01 15:10:02 +02002056 u64 fence_context;
Alex Deucher97b2e202015-04-20 16:51:00 -04002057 unsigned num_rings;
2058 struct amdgpu_ring *rings[AMDGPU_MAX_RINGS];
2059 bool ib_pool_ready;
2060 struct amdgpu_sa_manager ring_tmp_bo;
2061
2062 /* interrupts */
2063 struct amdgpu_irq irq;
2064
Alex Deucher1f7371b2015-12-02 17:46:21 -05002065 /* powerplay */
2066 struct amd_powerplay powerplay;
Jammy Zhoue61710c2015-11-10 18:31:08 -05002067 bool pp_enabled;
Eric Huangf3898ea2015-12-11 16:24:34 -05002068 bool pp_force_state_enabled;
Alex Deucher1f7371b2015-12-02 17:46:21 -05002069
Alex Deucher97b2e202015-04-20 16:51:00 -04002070 /* dpm */
2071 struct amdgpu_pm pm;
2072 u32 cg_flags;
2073 u32 pg_flags;
2074
2075 /* amdgpu smumgr */
2076 struct amdgpu_smumgr smu;
2077
2078 /* gfx */
2079 struct amdgpu_gfx gfx;
2080
2081 /* sdma */
Alex Deucherc113ea12015-10-08 16:30:37 -04002082 struct amdgpu_sdma sdma;
Alex Deucher97b2e202015-04-20 16:51:00 -04002083
2084 /* uvd */
Alex Deucher97b2e202015-04-20 16:51:00 -04002085 struct amdgpu_uvd uvd;
2086
2087 /* vce */
2088 struct amdgpu_vce vce;
2089
2090 /* firmwares */
2091 struct amdgpu_firmware firmware;
2092
2093 /* GDS */
2094 struct amdgpu_gds gds;
2095
2096 const struct amdgpu_ip_block_version *ip_blocks;
2097 int num_ip_blocks;
Alex Deucher8faf0e02015-07-28 11:50:31 -04002098 struct amdgpu_ip_block_status *ip_block_status;
Alex Deucher97b2e202015-04-20 16:51:00 -04002099 struct mutex mn_lock;
2100 DECLARE_HASHTABLE(mn_hash, 7);
2101
2102 /* tracking pinned memory */
2103 u64 vram_pin_size;
Chunming Zhoue131b912016-04-05 10:48:48 +08002104 u64 invisible_pin_size;
Alex Deucher97b2e202015-04-20 16:51:00 -04002105 u64 gart_pin_size;
Oded Gabbay130e0372015-06-12 21:35:14 +03002106
2107 /* amdkfd interface */
2108 struct kfd_dev *kfd;
Chunming Zhou23ca0e42015-07-06 13:42:58 +08002109
Alex Deucher7e471e62016-02-01 11:13:04 -05002110 struct amdgpu_virtualization virtualization;
Chunming Zhou0c4e7fa2016-08-17 11:41:30 +08002111
2112 /* link all shadow bo */
2113 struct list_head shadow_list;
2114 struct mutex shadow_list_lock;
Alex Deucher97b2e202015-04-20 16:51:00 -04002115};
2116
2117bool amdgpu_device_is_px(struct drm_device *dev);
2118int amdgpu_device_init(struct amdgpu_device *adev,
2119 struct drm_device *ddev,
2120 struct pci_dev *pdev,
2121 uint32_t flags);
2122void amdgpu_device_fini(struct amdgpu_device *adev);
2123int amdgpu_gpu_wait_for_idle(struct amdgpu_device *adev);
2124
2125uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg,
2126 bool always_indirect);
2127void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
2128 bool always_indirect);
2129u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg);
2130void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v);
2131
2132u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index);
2133void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v);
2134
2135/*
Alex Deucher97b2e202015-04-20 16:51:00 -04002136 * Registers read & write functions.
2137 */
2138#define RREG32(reg) amdgpu_mm_rreg(adev, (reg), false)
2139#define RREG32_IDX(reg) amdgpu_mm_rreg(adev, (reg), true)
2140#define DREG32(reg) printk(KERN_INFO "REGISTER: " #reg " : 0x%08X\n", amdgpu_mm_rreg(adev, (reg), false))
2141#define WREG32(reg, v) amdgpu_mm_wreg(adev, (reg), (v), false)
2142#define WREG32_IDX(reg, v) amdgpu_mm_wreg(adev, (reg), (v), true)
2143#define REG_SET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
2144#define REG_GET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
2145#define RREG32_PCIE(reg) adev->pcie_rreg(adev, (reg))
2146#define WREG32_PCIE(reg, v) adev->pcie_wreg(adev, (reg), (v))
2147#define RREG32_SMC(reg) adev->smc_rreg(adev, (reg))
2148#define WREG32_SMC(reg, v) adev->smc_wreg(adev, (reg), (v))
2149#define RREG32_UVD_CTX(reg) adev->uvd_ctx_rreg(adev, (reg))
2150#define WREG32_UVD_CTX(reg, v) adev->uvd_ctx_wreg(adev, (reg), (v))
2151#define RREG32_DIDT(reg) adev->didt_rreg(adev, (reg))
2152#define WREG32_DIDT(reg, v) adev->didt_wreg(adev, (reg), (v))
Rex Zhuccdbb202016-06-08 12:47:41 +08002153#define RREG32_GC_CAC(reg) adev->gc_cac_rreg(adev, (reg))
2154#define WREG32_GC_CAC(reg, v) adev->gc_cac_wreg(adev, (reg), (v))
Alex Deucher97b2e202015-04-20 16:51:00 -04002155#define RREG32_AUDIO_ENDPT(block, reg) adev->audio_endpt_rreg(adev, (block), (reg))
2156#define WREG32_AUDIO_ENDPT(block, reg, v) adev->audio_endpt_wreg(adev, (block), (reg), (v))
2157#define WREG32_P(reg, val, mask) \
2158 do { \
2159 uint32_t tmp_ = RREG32(reg); \
2160 tmp_ &= (mask); \
2161 tmp_ |= ((val) & ~(mask)); \
2162 WREG32(reg, tmp_); \
2163 } while (0)
2164#define WREG32_AND(reg, and) WREG32_P(reg, 0, and)
2165#define WREG32_OR(reg, or) WREG32_P(reg, or, ~(or))
2166#define WREG32_PLL_P(reg, val, mask) \
2167 do { \
2168 uint32_t tmp_ = RREG32_PLL(reg); \
2169 tmp_ &= (mask); \
2170 tmp_ |= ((val) & ~(mask)); \
2171 WREG32_PLL(reg, tmp_); \
2172 } while (0)
2173#define DREG32_SYS(sqf, adev, reg) seq_printf((sqf), #reg " : 0x%08X\n", amdgpu_mm_rreg((adev), (reg), false))
2174#define RREG32_IO(reg) amdgpu_io_rreg(adev, (reg))
2175#define WREG32_IO(reg, v) amdgpu_io_wreg(adev, (reg), (v))
2176
2177#define RDOORBELL32(index) amdgpu_mm_rdoorbell(adev, (index))
2178#define WDOORBELL32(index, v) amdgpu_mm_wdoorbell(adev, (index), (v))
2179
2180#define REG_FIELD_SHIFT(reg, field) reg##__##field##__SHIFT
2181#define REG_FIELD_MASK(reg, field) reg##__##field##_MASK
2182
2183#define REG_SET_FIELD(orig_val, reg, field, field_val) \
2184 (((orig_val) & ~REG_FIELD_MASK(reg, field)) | \
2185 (REG_FIELD_MASK(reg, field) & ((field_val) << REG_FIELD_SHIFT(reg, field))))
2186
2187#define REG_GET_FIELD(value, reg, field) \
2188 (((value) & REG_FIELD_MASK(reg, field)) >> REG_FIELD_SHIFT(reg, field))
2189
Tom St Denis61cb8ce2016-08-09 10:13:21 -04002190#define WREG32_FIELD(reg, field, val) \
2191 WREG32(mm##reg, (RREG32(mm##reg) & ~REG_FIELD_MASK(reg, field)) | (val) << REG_FIELD_SHIFT(reg, field))
2192
Alex Deucher97b2e202015-04-20 16:51:00 -04002193/*
2194 * BIOS helpers.
2195 */
2196#define RBIOS8(i) (adev->bios[i])
2197#define RBIOS16(i) (RBIOS8(i) | (RBIOS8((i)+1) << 8))
2198#define RBIOS32(i) ((RBIOS16(i)) | (RBIOS16((i)+2) << 16))
2199
2200/*
2201 * RING helpers.
2202 */
2203static inline void amdgpu_ring_write(struct amdgpu_ring *ring, uint32_t v)
2204{
2205 if (ring->count_dw <= 0)
Jammy Zhou86c2b792015-05-13 22:52:42 +08002206 DRM_ERROR("amdgpu: writing more dwords to the ring than expected!\n");
Alex Deucher97b2e202015-04-20 16:51:00 -04002207 ring->ring[ring->wptr++] = v;
2208 ring->wptr &= ring->ptr_mask;
2209 ring->count_dw--;
Alex Deucher97b2e202015-04-20 16:51:00 -04002210}
2211
Alex Deucherc113ea12015-10-08 16:30:37 -04002212static inline struct amdgpu_sdma_instance *
2213amdgpu_get_sdma_instance(struct amdgpu_ring *ring)
Jammy Zhou4b2f7e22015-09-01 12:56:17 +08002214{
2215 struct amdgpu_device *adev = ring->adev;
2216 int i;
2217
Alex Deucherc113ea12015-10-08 16:30:37 -04002218 for (i = 0; i < adev->sdma.num_instances; i++)
2219 if (&adev->sdma.instance[i].ring == ring)
Jammy Zhou4b2f7e22015-09-01 12:56:17 +08002220 break;
2221
2222 if (i < AMDGPU_MAX_SDMA_INSTANCES)
Alex Deucherc113ea12015-10-08 16:30:37 -04002223 return &adev->sdma.instance[i];
Jammy Zhou4b2f7e22015-09-01 12:56:17 +08002224 else
2225 return NULL;
2226}
2227
Alex Deucher97b2e202015-04-20 16:51:00 -04002228/*
2229 * ASICs macro.
2230 */
2231#define amdgpu_asic_set_vga_state(adev, state) (adev)->asic_funcs->set_vga_state((adev), (state))
2232#define amdgpu_asic_reset(adev) (adev)->asic_funcs->reset((adev))
Alex Deucher97b2e202015-04-20 16:51:00 -04002233#define amdgpu_asic_get_xclk(adev) (adev)->asic_funcs->get_xclk((adev))
2234#define amdgpu_asic_set_uvd_clocks(adev, v, d) (adev)->asic_funcs->set_uvd_clocks((adev), (v), (d))
2235#define amdgpu_asic_set_vce_clocks(adev, ev, ec) (adev)->asic_funcs->set_vce_clocks((adev), (ev), (ec))
Andres Rodriguez048765a2016-06-11 02:51:32 -04002236#define amdgpu_asic_get_virtual_caps(adev) ((adev)->asic_funcs->get_virtual_caps((adev)))
Alex Deucher97b2e202015-04-20 16:51:00 -04002237#define amdgpu_asic_read_disabled_bios(adev) (adev)->asic_funcs->read_disabled_bios((adev))
Alex Deucher7946b872015-11-24 10:14:28 -05002238#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 -04002239#define amdgpu_asic_read_register(adev, se, sh, offset, v)((adev)->asic_funcs->read_register((adev), (se), (sh), (offset), (v)))
Alex Deucher97b2e202015-04-20 16:51:00 -04002240#define amdgpu_gart_flush_gpu_tlb(adev, vmid) (adev)->gart.gart_funcs->flush_gpu_tlb((adev), (vmid))
2241#define amdgpu_gart_set_pte_pde(adev, pt, idx, addr, flags) (adev)->gart.gart_funcs->set_pte_pde((adev), (pt), (idx), (addr), (flags))
2242#define amdgpu_vm_copy_pte(adev, ib, pe, src, count) ((adev)->vm_manager.vm_pte_funcs->copy_pte((ib), (pe), (src), (count)))
Christian Königde9ea7b2016-08-12 11:33:30 +02002243#define amdgpu_vm_write_pte(adev, ib, pe, value, count, incr) ((adev)->vm_manager.vm_pte_funcs->write_pte((ib), (pe), (value), (count), (incr)))
Alex Deucher97b2e202015-04-20 16:51:00 -04002244#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 -04002245#define amdgpu_ring_parse_cs(r, p, ib) ((r)->funcs->parse_cs((p), (ib)))
2246#define amdgpu_ring_test_ring(r) (r)->funcs->test_ring((r))
Christian Königbbec97a2016-07-05 21:07:17 +02002247#define amdgpu_ring_test_ib(r, t) (r)->funcs->test_ib((r), (t))
Alex Deucher97b2e202015-04-20 16:51:00 -04002248#define amdgpu_ring_get_rptr(r) (r)->funcs->get_rptr((r))
2249#define amdgpu_ring_get_wptr(r) (r)->funcs->get_wptr((r))
2250#define amdgpu_ring_set_wptr(r) (r)->funcs->set_wptr((r))
Christian Königd88bf582016-05-06 17:50:03 +02002251#define amdgpu_ring_emit_ib(r, ib, vm_id, c) (r)->funcs->emit_ib((r), (ib), (vm_id), (c))
Christian Königb8c7b392016-03-01 15:42:52 +01002252#define amdgpu_ring_emit_pipeline_sync(r) (r)->funcs->emit_pipeline_sync((r))
Alex Deucher97b2e202015-04-20 16:51:00 -04002253#define amdgpu_ring_emit_vm_flush(r, vmid, addr) (r)->funcs->emit_vm_flush((r), (vmid), (addr))
Chunming Zhou890ee232015-06-01 14:35:03 +08002254#define amdgpu_ring_emit_fence(r, addr, seq, flags) (r)->funcs->emit_fence((r), (addr), (seq), (flags))
Alex Deucher97b2e202015-04-20 16:51:00 -04002255#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 +02002256#define amdgpu_ring_emit_hdp_flush(r) (r)->funcs->emit_hdp_flush((r))
Chunming Zhou11afbde2016-03-03 11:38:48 +08002257#define amdgpu_ring_emit_hdp_invalidate(r) (r)->funcs->emit_hdp_invalidate((r))
Monk Liuc2167a62016-08-26 14:12:37 +08002258#define amdgpu_ring_emit_switch_buffer(r) (r)->funcs->emit_switch_buffer((r))
Christian König9e5d53092016-01-31 12:20:55 +01002259#define amdgpu_ring_pad_ib(r, ib) ((r)->funcs->pad_ib((r), (ib)))
Monk Liu03ccf482016-01-14 19:07:38 +08002260#define amdgpu_ring_init_cond_exec(r) (r)->funcs->init_cond_exec((r))
2261#define amdgpu_ring_patch_cond_exec(r,o) (r)->funcs->patch_cond_exec((r),(o))
Alex Deucher97b2e202015-04-20 16:51:00 -04002262#define amdgpu_ih_get_wptr(adev) (adev)->irq.ih_funcs->get_wptr((adev))
2263#define amdgpu_ih_decode_iv(adev, iv) (adev)->irq.ih_funcs->decode_iv((adev), (iv))
2264#define amdgpu_ih_set_rptr(adev) (adev)->irq.ih_funcs->set_rptr((adev))
2265#define amdgpu_display_set_vga_render_state(adev, r) (adev)->mode_info.funcs->set_vga_render_state((adev), (r))
2266#define amdgpu_display_vblank_get_counter(adev, crtc) (adev)->mode_info.funcs->vblank_get_counter((adev), (crtc))
2267#define amdgpu_display_vblank_wait(adev, crtc) (adev)->mode_info.funcs->vblank_wait((adev), (crtc))
2268#define amdgpu_display_is_display_hung(adev) (adev)->mode_info.funcs->is_display_hung((adev))
2269#define amdgpu_display_backlight_set_level(adev, e, l) (adev)->mode_info.funcs->backlight_set_level((e), (l))
2270#define amdgpu_display_backlight_get_level(adev, e) (adev)->mode_info.funcs->backlight_get_level((e))
2271#define amdgpu_display_hpd_sense(adev, h) (adev)->mode_info.funcs->hpd_sense((adev), (h))
2272#define amdgpu_display_hpd_set_polarity(adev, h) (adev)->mode_info.funcs->hpd_set_polarity((adev), (h))
2273#define amdgpu_display_hpd_get_gpio_reg(adev) (adev)->mode_info.funcs->hpd_get_gpio_reg((adev))
2274#define amdgpu_display_bandwidth_update(adev) (adev)->mode_info.funcs->bandwidth_update((adev))
Alex Deuchercb9e59d2016-05-05 16:03:57 -04002275#define amdgpu_display_page_flip(adev, crtc, base, async) (adev)->mode_info.funcs->page_flip((adev), (crtc), (base), (async))
Alex Deucher97b2e202015-04-20 16:51:00 -04002276#define amdgpu_display_page_flip_get_scanoutpos(adev, crtc, vbl, pos) (adev)->mode_info.funcs->page_flip_get_scanoutpos((adev), (crtc), (vbl), (pos))
2277#define amdgpu_display_add_encoder(adev, e, s, c) (adev)->mode_info.funcs->add_encoder((adev), (e), (s), (c))
2278#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))
2279#define amdgpu_display_stop_mc_access(adev, s) (adev)->mode_info.funcs->stop_mc_access((adev), (s))
2280#define amdgpu_display_resume_mc_access(adev, s) (adev)->mode_info.funcs->resume_mc_access((adev), (s))
Chunming Zhouc7ae72c2015-08-25 17:23:45 +08002281#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 +08002282#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 -04002283#define amdgpu_dpm_pre_set_power_state(adev) (adev)->pm.funcs->pre_set_power_state((adev))
2284#define amdgpu_dpm_set_power_state(adev) (adev)->pm.funcs->set_power_state((adev))
2285#define amdgpu_dpm_post_set_power_state(adev) (adev)->pm.funcs->post_set_power_state((adev))
2286#define amdgpu_dpm_display_configuration_changed(adev) (adev)->pm.funcs->display_configuration_changed((adev))
Alex Deucher97b2e202015-04-20 16:51:00 -04002287#define amdgpu_dpm_print_power_state(adev, ps) (adev)->pm.funcs->print_power_state((adev), (ps))
Alex Deucher97b2e202015-04-20 16:51:00 -04002288#define amdgpu_dpm_vblank_too_short(adev) (adev)->pm.funcs->vblank_too_short((adev))
Alex Deucher97b2e202015-04-20 16:51:00 -04002289#define amdgpu_dpm_enable_bapm(adev, e) (adev)->pm.funcs->enable_bapm((adev), (e))
Alex Deucherb95e31f2016-07-07 15:01:42 -04002290#define amdgpu_gfx_get_gpu_clock_counter(adev) (adev)->gfx.funcs->get_gpu_clock_counter((adev))
Tom St Denis9559ef52016-06-28 10:26:48 -04002291#define amdgpu_gfx_select_se_sh(adev, se, sh, instance) (adev)->gfx.funcs->select_se_sh((adev), (se), (sh), (instance))
Rex Zhu3af76f22015-10-15 17:23:43 +08002292
2293#define amdgpu_dpm_get_temperature(adev) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002294 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002295 (adev)->powerplay.pp_funcs->get_temperature((adev)->powerplay.pp_handle) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002296 (adev)->pm.funcs->get_temperature((adev)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002297
2298#define amdgpu_dpm_set_fan_control_mode(adev, m) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002299 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002300 (adev)->powerplay.pp_funcs->set_fan_control_mode((adev)->powerplay.pp_handle, (m)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002301 (adev)->pm.funcs->set_fan_control_mode((adev), (m)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002302
2303#define amdgpu_dpm_get_fan_control_mode(adev) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002304 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002305 (adev)->powerplay.pp_funcs->get_fan_control_mode((adev)->powerplay.pp_handle) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002306 (adev)->pm.funcs->get_fan_control_mode((adev)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002307
2308#define amdgpu_dpm_set_fan_speed_percent(adev, s) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002309 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002310 (adev)->powerplay.pp_funcs->set_fan_speed_percent((adev)->powerplay.pp_handle, (s)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002311 (adev)->pm.funcs->set_fan_speed_percent((adev), (s)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002312
2313#define amdgpu_dpm_get_fan_speed_percent(adev, s) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002314 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002315 (adev)->powerplay.pp_funcs->get_fan_speed_percent((adev)->powerplay.pp_handle, (s)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002316 (adev)->pm.funcs->get_fan_speed_percent((adev), (s)))
Alex Deucher97b2e202015-04-20 16:51:00 -04002317
Rex Zhu1b5708f2015-11-10 18:25:24 -05002318#define amdgpu_dpm_get_sclk(adev, l) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002319 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002320 (adev)->powerplay.pp_funcs->get_sclk((adev)->powerplay.pp_handle, (l)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002321 (adev)->pm.funcs->get_sclk((adev), (l)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002322
2323#define amdgpu_dpm_get_mclk(adev, l) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002324 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002325 (adev)->powerplay.pp_funcs->get_mclk((adev)->powerplay.pp_handle, (l)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002326 (adev)->pm.funcs->get_mclk((adev), (l)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002327
2328
2329#define amdgpu_dpm_force_performance_level(adev, l) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002330 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002331 (adev)->powerplay.pp_funcs->force_performance_level((adev)->powerplay.pp_handle, (l)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002332 (adev)->pm.funcs->force_performance_level((adev), (l)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002333
2334#define amdgpu_dpm_powergate_uvd(adev, g) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002335 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002336 (adev)->powerplay.pp_funcs->powergate_uvd((adev)->powerplay.pp_handle, (g)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002337 (adev)->pm.funcs->powergate_uvd((adev), (g)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002338
2339#define amdgpu_dpm_powergate_vce(adev, g) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002340 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002341 (adev)->powerplay.pp_funcs->powergate_vce((adev)->powerplay.pp_handle, (g)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002342 (adev)->pm.funcs->powergate_vce((adev), (g)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002343
2344#define amdgpu_dpm_debugfs_print_current_performance_level(adev, m) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002345 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002346 (adev)->powerplay.pp_funcs->print_current_performance_level((adev)->powerplay.pp_handle, (m)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002347 (adev)->pm.funcs->debugfs_print_current_performance_level((adev), (m)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002348
2349#define amdgpu_dpm_get_current_power_state(adev) \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002350 (adev)->powerplay.pp_funcs->get_current_power_state((adev)->powerplay.pp_handle)
Rex Zhu1b5708f2015-11-10 18:25:24 -05002351
2352#define amdgpu_dpm_get_performance_level(adev) \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002353 (adev)->powerplay.pp_funcs->get_performance_level((adev)->powerplay.pp_handle)
Rex Zhu1b5708f2015-11-10 18:25:24 -05002354
Eric Huangf3898ea2015-12-11 16:24:34 -05002355#define amdgpu_dpm_get_pp_num_states(adev, data) \
2356 (adev)->powerplay.pp_funcs->get_pp_num_states((adev)->powerplay.pp_handle, data)
2357
2358#define amdgpu_dpm_get_pp_table(adev, table) \
2359 (adev)->powerplay.pp_funcs->get_pp_table((adev)->powerplay.pp_handle, table)
2360
2361#define amdgpu_dpm_set_pp_table(adev, buf, size) \
2362 (adev)->powerplay.pp_funcs->set_pp_table((adev)->powerplay.pp_handle, buf, size)
2363
2364#define amdgpu_dpm_print_clock_levels(adev, type, buf) \
2365 (adev)->powerplay.pp_funcs->print_clock_levels((adev)->powerplay.pp_handle, type, buf)
2366
2367#define amdgpu_dpm_force_clock_level(adev, type, level) \
2368 (adev)->powerplay.pp_funcs->force_clock_level((adev)->powerplay.pp_handle, type, level)
2369
Eric Huang428bafa2016-05-12 14:51:21 -04002370#define amdgpu_dpm_get_sclk_od(adev) \
2371 (adev)->powerplay.pp_funcs->get_sclk_od((adev)->powerplay.pp_handle)
2372
2373#define amdgpu_dpm_set_sclk_od(adev, value) \
2374 (adev)->powerplay.pp_funcs->set_sclk_od((adev)->powerplay.pp_handle, value)
2375
Eric Huangf2bdc052016-05-24 15:11:17 -04002376#define amdgpu_dpm_get_mclk_od(adev) \
2377 ((adev)->powerplay.pp_funcs->get_mclk_od((adev)->powerplay.pp_handle))
2378
2379#define amdgpu_dpm_set_mclk_od(adev, value) \
2380 ((adev)->powerplay.pp_funcs->set_mclk_od((adev)->powerplay.pp_handle, value))
2381
Jammy Zhoue61710c2015-11-10 18:31:08 -05002382#define amdgpu_dpm_dispatch_task(adev, event_id, input, output) \
Rex Zhu1b5708f2015-11-10 18:25:24 -05002383 (adev)->powerplay.pp_funcs->dispatch_tasks((adev)->powerplay.pp_handle, (event_id), (input), (output))
Alex Deucher97b2e202015-04-20 16:51:00 -04002384
2385#define amdgpu_gds_switch(adev, r, v, d, w, a) (adev)->gds.funcs->patch_gds_switch((r), (v), (d), (w), (a))
2386
2387/* Common functions */
2388int amdgpu_gpu_reset(struct amdgpu_device *adev);
Chunming Zhou3ad81f12016-08-05 17:30:17 +08002389bool amdgpu_need_backup(struct amdgpu_device *adev);
Alex Deucher97b2e202015-04-20 16:51:00 -04002390void amdgpu_pci_config_reset(struct amdgpu_device *adev);
2391bool amdgpu_card_posted(struct amdgpu_device *adev);
2392void amdgpu_update_display_priority(struct amdgpu_device *adev);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08002393
Alex Deucher97b2e202015-04-20 16:51:00 -04002394int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data);
2395int amdgpu_cs_get_ring(struct amdgpu_device *adev, u32 ip_type,
2396 u32 ip_instance, u32 ring,
2397 struct amdgpu_ring **out_ring);
2398void amdgpu_ttm_placement_from_domain(struct amdgpu_bo *rbo, u32 domain);
2399bool amdgpu_ttm_bo_is_amdgpu_bo(struct ttm_buffer_object *bo);
Christian König2f568db2016-02-23 12:36:59 +01002400int amdgpu_ttm_tt_get_user_pages(struct ttm_tt *ttm, struct page **pages);
Alex Deucher97b2e202015-04-20 16:51:00 -04002401int amdgpu_ttm_tt_set_userptr(struct ttm_tt *ttm, uint64_t addr,
2402 uint32_t flags);
2403bool amdgpu_ttm_tt_has_userptr(struct ttm_tt *ttm);
Christian Königcc325d12016-02-08 11:08:35 +01002404struct mm_struct *amdgpu_ttm_tt_get_usermm(struct ttm_tt *ttm);
Christian Königd7006962016-02-08 10:57:22 +01002405bool amdgpu_ttm_tt_affect_userptr(struct ttm_tt *ttm, unsigned long start,
2406 unsigned long end);
Christian König2f568db2016-02-23 12:36:59 +01002407bool amdgpu_ttm_tt_userptr_invalidated(struct ttm_tt *ttm,
2408 int *last_invalidated);
Alex Deucher97b2e202015-04-20 16:51:00 -04002409bool amdgpu_ttm_tt_is_readonly(struct ttm_tt *ttm);
2410uint32_t amdgpu_ttm_tt_pte_flags(struct amdgpu_device *adev, struct ttm_tt *ttm,
2411 struct ttm_mem_reg *mem);
2412void amdgpu_vram_location(struct amdgpu_device *adev, struct amdgpu_mc *mc, u64 base);
2413void amdgpu_gtt_location(struct amdgpu_device *adev, struct amdgpu_mc *mc);
2414void amdgpu_ttm_set_active_vram_size(struct amdgpu_device *adev, u64 size);
Ken Wanga693e052016-07-27 19:18:01 +08002415u64 amdgpu_ttm_get_gtt_mem_size(struct amdgpu_device *adev);
2416int amdgpu_ttm_global_init(struct amdgpu_device *adev);
Alex Deucher97b2e202015-04-20 16:51:00 -04002417void amdgpu_program_register_sequence(struct amdgpu_device *adev,
2418 const u32 *registers,
2419 const u32 array_size);
2420
2421bool amdgpu_device_is_px(struct drm_device *dev);
2422/* atpx handler */
2423#if defined(CONFIG_VGA_SWITCHEROO)
2424void amdgpu_register_atpx_handler(void);
2425void amdgpu_unregister_atpx_handler(void);
Alex Deuchera78fe132016-06-01 13:08:21 -04002426bool amdgpu_has_atpx_dgpu_power_cntl(void);
Alex Deucher2f5af822016-06-02 09:04:01 -04002427bool amdgpu_is_atpx_hybrid(void);
Alex Deucher97b2e202015-04-20 16:51:00 -04002428#else
2429static inline void amdgpu_register_atpx_handler(void) {}
2430static inline void amdgpu_unregister_atpx_handler(void) {}
Alex Deuchera78fe132016-06-01 13:08:21 -04002431static inline bool amdgpu_has_atpx_dgpu_power_cntl(void) { return false; }
Alex Deucher2f5af822016-06-02 09:04:01 -04002432static inline bool amdgpu_is_atpx_hybrid(void) { return false; }
Alex Deucher97b2e202015-04-20 16:51:00 -04002433#endif
2434
2435/*
2436 * KMS
2437 */
2438extern const struct drm_ioctl_desc amdgpu_ioctls_kms[];
Nils Wallméniusf498d9e2016-04-10 16:29:59 +02002439extern const int amdgpu_max_kms_ioctl;
Alex Deucher97b2e202015-04-20 16:51:00 -04002440
2441int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags);
2442int amdgpu_driver_unload_kms(struct drm_device *dev);
2443void amdgpu_driver_lastclose_kms(struct drm_device *dev);
2444int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv);
2445void amdgpu_driver_postclose_kms(struct drm_device *dev,
2446 struct drm_file *file_priv);
2447void amdgpu_driver_preclose_kms(struct drm_device *dev,
2448 struct drm_file *file_priv);
Alex Deucher810ddc32016-08-23 13:25:49 -04002449int amdgpu_device_suspend(struct drm_device *dev, bool suspend, bool fbcon);
2450int amdgpu_device_resume(struct drm_device *dev, bool resume, bool fbcon);
Thierry Reding88e72712015-09-24 18:35:31 +02002451u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe);
2452int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe);
2453void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe);
2454int amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
Alex Deucher97b2e202015-04-20 16:51:00 -04002455 int *max_error,
2456 struct timeval *vblank_time,
2457 unsigned flags);
2458long amdgpu_kms_compat_ioctl(struct file *filp, unsigned int cmd,
2459 unsigned long arg);
2460
2461/*
Alex Deucher97b2e202015-04-20 16:51:00 -04002462 * functions used by amdgpu_encoder.c
2463 */
2464struct amdgpu_afmt_acr {
2465 u32 clock;
2466
2467 int n_32khz;
2468 int cts_32khz;
2469
2470 int n_44_1khz;
2471 int cts_44_1khz;
2472
2473 int n_48khz;
2474 int cts_48khz;
2475
2476};
2477
2478struct amdgpu_afmt_acr amdgpu_afmt_acr(uint32_t clock);
2479
2480/* amdgpu_acpi.c */
2481#if defined(CONFIG_ACPI)
2482int amdgpu_acpi_init(struct amdgpu_device *adev);
2483void amdgpu_acpi_fini(struct amdgpu_device *adev);
2484bool amdgpu_acpi_is_pcie_performance_request_supported(struct amdgpu_device *adev);
2485int amdgpu_acpi_pcie_performance_request(struct amdgpu_device *adev,
2486 u8 perf_req, bool advertise);
2487int amdgpu_acpi_pcie_notify_device_ready(struct amdgpu_device *adev);
2488#else
2489static inline int amdgpu_acpi_init(struct amdgpu_device *adev) { return 0; }
2490static inline void amdgpu_acpi_fini(struct amdgpu_device *adev) { }
2491#endif
2492
2493struct amdgpu_bo_va_mapping *
2494amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
2495 uint64_t addr, struct amdgpu_bo **bo);
2496
2497#include "amdgpu_object.h"
Alex Deucher97b2e202015-04-20 16:51:00 -04002498#endif