blob: 7dee9af331967a1bfc8728b53af6b54ce0869685 [file] [log] [blame]
Alex Deucher97b2e202015-04-20 16:51:00 -04001/*
2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Authors: Dave Airlie
25 * Alex Deucher
26 * Jerome Glisse
27 */
28#ifndef __AMDGPU_H__
29#define __AMDGPU_H__
30
31#include <linux/atomic.h>
32#include <linux/wait.h>
33#include <linux/list.h>
34#include <linux/kref.h>
35#include <linux/interval_tree.h>
36#include <linux/hashtable.h>
37#include <linux/fence.h>
38
39#include <ttm/ttm_bo_api.h>
40#include <ttm/ttm_bo_driver.h>
41#include <ttm/ttm_placement.h>
42#include <ttm/ttm_module.h>
43#include <ttm/ttm_execbuf_util.h>
44
Chunming Zhoud03846a2015-07-28 14:20:03 -040045#include <drm/drmP.h>
Alex Deucher97b2e202015-04-20 16:51:00 -040046#include <drm/drm_gem.h>
Chunming Zhou7e5a5472015-04-24 17:37:30 +080047#include <drm/amdgpu_drm.h>
Alex Deucher97b2e202015-04-20 16:51:00 -040048
yanyang15fc3aee2015-05-22 14:39:35 -040049#include "amd_shared.h"
Alex Deucher97b2e202015-04-20 16:51:00 -040050#include "amdgpu_mode.h"
51#include "amdgpu_ih.h"
52#include "amdgpu_irq.h"
53#include "amdgpu_ucode.h"
54#include "amdgpu_gds.h"
Alex Deucher1f7371b2015-12-02 17:46:21 -050055#include "amd_powerplay.h"
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -040056#include "amdgpu_acp.h"
Alex Deucher97b2e202015-04-20 16:51:00 -040057
Alex Deucherb80d8472015-08-16 22:55:02 -040058#include "gpu_scheduler.h"
59
Alex Deucher97b2e202015-04-20 16:51:00 -040060/*
61 * Modules parameters.
62 */
63extern int amdgpu_modeset;
64extern int amdgpu_vram_limit;
65extern int amdgpu_gart_size;
66extern int amdgpu_benchmarking;
67extern int amdgpu_testing;
68extern int amdgpu_audio;
69extern int amdgpu_disp_priority;
70extern int amdgpu_hw_i2c;
71extern int amdgpu_pcie_gen2;
72extern int amdgpu_msi;
73extern int amdgpu_lockup_timeout;
74extern int amdgpu_dpm;
75extern int amdgpu_smc_load_fw;
76extern int amdgpu_aspm;
77extern int amdgpu_runtime_pm;
Alex Deucher97b2e202015-04-20 16:51:00 -040078extern unsigned amdgpu_ip_block_mask;
79extern int amdgpu_bapm;
80extern int amdgpu_deep_color;
81extern int amdgpu_vm_size;
82extern int amdgpu_vm_block_size;
Christian Königd9c13152015-09-28 12:31:26 +020083extern int amdgpu_vm_fault_stop;
Christian Königb495bd32015-09-10 14:00:35 +020084extern int amdgpu_vm_debug;
Jammy Zhou1333f722015-07-30 16:36:58 +080085extern int amdgpu_sched_jobs;
Jammy Zhou4afcb302015-07-30 16:44:05 +080086extern int amdgpu_sched_hw_submission;
Alex Deucher1f7371b2015-12-02 17:46:21 -050087extern int amdgpu_powerplay;
Alex Deucher97b2e202015-04-20 16:51:00 -040088
Chunming Zhou4b559c92015-07-21 15:53:04 +080089#define AMDGPU_WAIT_IDLE_TIMEOUT_IN_MS 3000
Alex Deucher97b2e202015-04-20 16:51:00 -040090#define AMDGPU_MAX_USEC_TIMEOUT 100000 /* 100 ms */
91#define AMDGPU_FENCE_JIFFIES_TIMEOUT (HZ / 2)
92/* AMDGPU_IB_POOL_SIZE must be a power of 2 */
93#define AMDGPU_IB_POOL_SIZE 16
94#define AMDGPU_DEBUGFS_MAX_COMPONENTS 32
95#define AMDGPUFB_CONN_LIMIT 4
96#define AMDGPU_BIOS_NUM_SCRATCH 8
97
Alex Deucher97b2e202015-04-20 16:51:00 -040098/* max number of rings */
99#define AMDGPU_MAX_RINGS 16
100#define AMDGPU_MAX_GFX_RINGS 1
101#define AMDGPU_MAX_COMPUTE_RINGS 8
102#define AMDGPU_MAX_VCE_RINGS 2
103
Jammy Zhou36f523a2015-09-01 12:54:27 +0800104/* max number of IP instances */
105#define AMDGPU_MAX_SDMA_INSTANCES 2
106
Alex Deucher97b2e202015-04-20 16:51:00 -0400107/* hardcode that limit for now */
108#define AMDGPU_VA_RESERVED_SIZE (8 << 20)
109
110/* hard reset data */
111#define AMDGPU_ASIC_RESET_DATA 0x39d5e86b
112
113/* reset flags */
114#define AMDGPU_RESET_GFX (1 << 0)
115#define AMDGPU_RESET_COMPUTE (1 << 1)
116#define AMDGPU_RESET_DMA (1 << 2)
117#define AMDGPU_RESET_CP (1 << 3)
118#define AMDGPU_RESET_GRBM (1 << 4)
119#define AMDGPU_RESET_DMA1 (1 << 5)
120#define AMDGPU_RESET_RLC (1 << 6)
121#define AMDGPU_RESET_SEM (1 << 7)
122#define AMDGPU_RESET_IH (1 << 8)
123#define AMDGPU_RESET_VMC (1 << 9)
124#define AMDGPU_RESET_MC (1 << 10)
125#define AMDGPU_RESET_DISPLAY (1 << 11)
126#define AMDGPU_RESET_UVD (1 << 12)
127#define AMDGPU_RESET_VCE (1 << 13)
128#define AMDGPU_RESET_VCE1 (1 << 14)
129
130/* CG block flags */
131#define AMDGPU_CG_BLOCK_GFX (1 << 0)
132#define AMDGPU_CG_BLOCK_MC (1 << 1)
133#define AMDGPU_CG_BLOCK_SDMA (1 << 2)
134#define AMDGPU_CG_BLOCK_UVD (1 << 3)
135#define AMDGPU_CG_BLOCK_VCE (1 << 4)
136#define AMDGPU_CG_BLOCK_HDP (1 << 5)
137#define AMDGPU_CG_BLOCK_BIF (1 << 6)
138
139/* CG flags */
140#define AMDGPU_CG_SUPPORT_GFX_MGCG (1 << 0)
141#define AMDGPU_CG_SUPPORT_GFX_MGLS (1 << 1)
142#define AMDGPU_CG_SUPPORT_GFX_CGCG (1 << 2)
143#define AMDGPU_CG_SUPPORT_GFX_CGLS (1 << 3)
144#define AMDGPU_CG_SUPPORT_GFX_CGTS (1 << 4)
145#define AMDGPU_CG_SUPPORT_GFX_CGTS_LS (1 << 5)
146#define AMDGPU_CG_SUPPORT_GFX_CP_LS (1 << 6)
147#define AMDGPU_CG_SUPPORT_GFX_RLC_LS (1 << 7)
148#define AMDGPU_CG_SUPPORT_MC_LS (1 << 8)
149#define AMDGPU_CG_SUPPORT_MC_MGCG (1 << 9)
150#define AMDGPU_CG_SUPPORT_SDMA_LS (1 << 10)
151#define AMDGPU_CG_SUPPORT_SDMA_MGCG (1 << 11)
152#define AMDGPU_CG_SUPPORT_BIF_LS (1 << 12)
153#define AMDGPU_CG_SUPPORT_UVD_MGCG (1 << 13)
154#define AMDGPU_CG_SUPPORT_VCE_MGCG (1 << 14)
155#define AMDGPU_CG_SUPPORT_HDP_LS (1 << 15)
156#define AMDGPU_CG_SUPPORT_HDP_MGCG (1 << 16)
157
158/* PG flags */
159#define AMDGPU_PG_SUPPORT_GFX_PG (1 << 0)
160#define AMDGPU_PG_SUPPORT_GFX_SMG (1 << 1)
161#define AMDGPU_PG_SUPPORT_GFX_DMG (1 << 2)
162#define AMDGPU_PG_SUPPORT_UVD (1 << 3)
163#define AMDGPU_PG_SUPPORT_VCE (1 << 4)
164#define AMDGPU_PG_SUPPORT_CP (1 << 5)
165#define AMDGPU_PG_SUPPORT_GDS (1 << 6)
166#define AMDGPU_PG_SUPPORT_RLC_SMU_HS (1 << 7)
167#define AMDGPU_PG_SUPPORT_SDMA (1 << 8)
168#define AMDGPU_PG_SUPPORT_ACP (1 << 9)
169#define AMDGPU_PG_SUPPORT_SAMU (1 << 10)
170
171/* GFX current status */
172#define AMDGPU_GFX_NORMAL_MODE 0x00000000L
173#define AMDGPU_GFX_SAFE_MODE 0x00000001L
174#define AMDGPU_GFX_PG_DISABLED_MODE 0x00000002L
175#define AMDGPU_GFX_CG_DISABLED_MODE 0x00000004L
176#define AMDGPU_GFX_LBPW_DISABLED_MODE 0x00000008L
177
178/* max cursor sizes (in pixels) */
179#define CIK_CURSOR_WIDTH 128
180#define CIK_CURSOR_HEIGHT 128
181
182struct amdgpu_device;
Alex Deucher97b2e202015-04-20 16:51:00 -0400183struct amdgpu_ib;
184struct amdgpu_vm;
185struct amdgpu_ring;
Alex Deucher97b2e202015-04-20 16:51:00 -0400186struct amdgpu_cs_parser;
Chunming Zhoubb977d32015-08-18 15:16:40 +0800187struct amdgpu_job;
Alex Deucher97b2e202015-04-20 16:51:00 -0400188struct amdgpu_irq_src;
Alex Deucher0b492a42015-08-16 22:48:26 -0400189struct amdgpu_fpriv;
Alex Deucher97b2e202015-04-20 16:51:00 -0400190
191enum amdgpu_cp_irq {
192 AMDGPU_CP_IRQ_GFX_EOP = 0,
193 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE0_EOP,
194 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE1_EOP,
195 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE2_EOP,
196 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE3_EOP,
197 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE0_EOP,
198 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE1_EOP,
199 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE2_EOP,
200 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE3_EOP,
201
202 AMDGPU_CP_IRQ_LAST
203};
204
205enum amdgpu_sdma_irq {
206 AMDGPU_SDMA_IRQ_TRAP0 = 0,
207 AMDGPU_SDMA_IRQ_TRAP1,
208
209 AMDGPU_SDMA_IRQ_LAST
210};
211
212enum amdgpu_thermal_irq {
213 AMDGPU_THERMAL_IRQ_LOW_TO_HIGH = 0,
214 AMDGPU_THERMAL_IRQ_HIGH_TO_LOW,
215
216 AMDGPU_THERMAL_IRQ_LAST
217};
218
Alex Deucher97b2e202015-04-20 16:51:00 -0400219int amdgpu_set_clockgating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400220 enum amd_ip_block_type block_type,
221 enum amd_clockgating_state state);
Alex Deucher97b2e202015-04-20 16:51:00 -0400222int amdgpu_set_powergating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400223 enum amd_ip_block_type block_type,
224 enum amd_powergating_state state);
Alex Deucher97b2e202015-04-20 16:51:00 -0400225
226struct amdgpu_ip_block_version {
yanyang15fc3aee2015-05-22 14:39:35 -0400227 enum amd_ip_block_type type;
Alex Deucher97b2e202015-04-20 16:51:00 -0400228 u32 major;
229 u32 minor;
230 u32 rev;
yanyang15fc3aee2015-05-22 14:39:35 -0400231 const struct amd_ip_funcs *funcs;
Alex Deucher97b2e202015-04-20 16:51:00 -0400232};
233
234int amdgpu_ip_block_version_cmp(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400235 enum amd_ip_block_type type,
Alex Deucher97b2e202015-04-20 16:51:00 -0400236 u32 major, u32 minor);
237
238const struct amdgpu_ip_block_version * amdgpu_get_ip_block(
239 struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400240 enum amd_ip_block_type type);
Alex Deucher97b2e202015-04-20 16:51:00 -0400241
242/* provided by hw blocks that can move/clear data. e.g., gfx or sdma */
243struct amdgpu_buffer_funcs {
244 /* maximum bytes in a single operation */
245 uint32_t copy_max_bytes;
246
247 /* number of dw to reserve per operation */
248 unsigned copy_num_dw;
249
250 /* used for buffer migration */
Chunming Zhouc7ae72c2015-08-25 17:23:45 +0800251 void (*emit_copy_buffer)(struct amdgpu_ib *ib,
Alex Deucher97b2e202015-04-20 16:51:00 -0400252 /* src addr in bytes */
253 uint64_t src_offset,
254 /* dst addr in bytes */
255 uint64_t dst_offset,
256 /* number of byte to transfer */
257 uint32_t byte_count);
258
259 /* maximum bytes in a single operation */
260 uint32_t fill_max_bytes;
261
262 /* number of dw to reserve per operation */
263 unsigned fill_num_dw;
264
265 /* used for buffer clearing */
Chunming Zhou6e7a3842015-08-27 13:46:09 +0800266 void (*emit_fill_buffer)(struct amdgpu_ib *ib,
Alex Deucher97b2e202015-04-20 16:51:00 -0400267 /* value to write to memory */
268 uint32_t src_data,
269 /* dst addr in bytes */
270 uint64_t dst_offset,
271 /* number of byte to fill */
272 uint32_t byte_count);
273};
274
275/* provided by hw blocks that can write ptes, e.g., sdma */
276struct amdgpu_vm_pte_funcs {
277 /* copy pte entries from GART */
278 void (*copy_pte)(struct amdgpu_ib *ib,
279 uint64_t pe, uint64_t src,
280 unsigned count);
281 /* write pte one entry at a time with addr mapping */
282 void (*write_pte)(struct amdgpu_ib *ib,
Christian Königb07c9d22015-11-30 13:26:07 +0100283 const dma_addr_t *pages_addr, uint64_t pe,
Alex Deucher97b2e202015-04-20 16:51:00 -0400284 uint64_t addr, unsigned count,
285 uint32_t incr, uint32_t flags);
286 /* for linear pte/pde updates without addr mapping */
287 void (*set_pte_pde)(struct amdgpu_ib *ib,
288 uint64_t pe,
289 uint64_t addr, unsigned count,
290 uint32_t incr, uint32_t flags);
Alex Deucher97b2e202015-04-20 16:51:00 -0400291};
292
293/* provided by the gmc block */
294struct amdgpu_gart_funcs {
295 /* flush the vm tlb via mmio */
296 void (*flush_gpu_tlb)(struct amdgpu_device *adev,
297 uint32_t vmid);
298 /* write pte/pde updates using the cpu */
299 int (*set_pte_pde)(struct amdgpu_device *adev,
300 void *cpu_pt_addr, /* cpu addr of page table */
301 uint32_t gpu_page_idx, /* pte/pde to update */
302 uint64_t addr, /* addr to write into pte/pde */
303 uint32_t flags); /* access flags */
304};
305
306/* provided by the ih block */
307struct amdgpu_ih_funcs {
308 /* ring read/write ptr handling, called from interrupt context */
309 u32 (*get_wptr)(struct amdgpu_device *adev);
310 void (*decode_iv)(struct amdgpu_device *adev,
311 struct amdgpu_iv_entry *entry);
312 void (*set_rptr)(struct amdgpu_device *adev);
313};
314
315/* provided by hw blocks that expose a ring buffer for commands */
316struct amdgpu_ring_funcs {
317 /* ring read/write ptr handling */
318 u32 (*get_rptr)(struct amdgpu_ring *ring);
319 u32 (*get_wptr)(struct amdgpu_ring *ring);
320 void (*set_wptr)(struct amdgpu_ring *ring);
321 /* validating and patching of IBs */
322 int (*parse_cs)(struct amdgpu_cs_parser *p, uint32_t ib_idx);
323 /* command emit functions */
324 void (*emit_ib)(struct amdgpu_ring *ring,
325 struct amdgpu_ib *ib);
326 void (*emit_fence)(struct amdgpu_ring *ring, uint64_t addr,
Chunming Zhou890ee232015-06-01 14:35:03 +0800327 uint64_t seq, unsigned flags);
Christian Königb8c7b392016-03-01 15:42:52 +0100328 void (*emit_pipeline_sync)(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -0400329 void (*emit_vm_flush)(struct amdgpu_ring *ring, unsigned vm_id,
330 uint64_t pd_addr);
Christian Königd2edb072015-05-11 14:10:34 +0200331 void (*emit_hdp_flush)(struct amdgpu_ring *ring);
Chunming Zhou11afbde2016-03-03 11:38:48 +0800332 void (*emit_hdp_invalidate)(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -0400333 void (*emit_gds_switch)(struct amdgpu_ring *ring, uint32_t vmid,
334 uint32_t gds_base, uint32_t gds_size,
335 uint32_t gws_base, uint32_t gws_size,
336 uint32_t oa_base, uint32_t oa_size);
337 /* testing functions */
338 int (*test_ring)(struct amdgpu_ring *ring);
339 int (*test_ib)(struct amdgpu_ring *ring);
Jammy Zhouedff0e22015-09-01 13:04:08 +0800340 /* insert NOP packets */
341 void (*insert_nop)(struct amdgpu_ring *ring, uint32_t count);
Christian König9e5d53092016-01-31 12:20:55 +0100342 /* pad the indirect buffer to the necessary number of dw */
343 void (*pad_ib)(struct amdgpu_ring *ring, struct amdgpu_ib *ib);
Alex Deucher97b2e202015-04-20 16:51:00 -0400344};
345
346/*
347 * BIOS.
348 */
349bool amdgpu_get_bios(struct amdgpu_device *adev);
350bool amdgpu_read_bios(struct amdgpu_device *adev);
351
352/*
353 * Dummy page
354 */
355struct amdgpu_dummy_page {
356 struct page *page;
357 dma_addr_t addr;
358};
359int amdgpu_dummy_page_init(struct amdgpu_device *adev);
360void amdgpu_dummy_page_fini(struct amdgpu_device *adev);
361
362
363/*
364 * Clocks
365 */
366
367#define AMDGPU_MAX_PPLL 3
368
369struct amdgpu_clock {
370 struct amdgpu_pll ppll[AMDGPU_MAX_PPLL];
371 struct amdgpu_pll spll;
372 struct amdgpu_pll mpll;
373 /* 10 Khz units */
374 uint32_t default_mclk;
375 uint32_t default_sclk;
376 uint32_t default_dispclk;
377 uint32_t current_dispclk;
378 uint32_t dp_extclk;
379 uint32_t max_pixel_clock;
380};
381
382/*
383 * Fences.
384 */
385struct amdgpu_fence_driver {
Alex Deucher97b2e202015-04-20 16:51:00 -0400386 uint64_t gpu_addr;
387 volatile uint32_t *cpu_addr;
388 /* sync_seq is protected by ring emission lock */
Christian König5907a0d2016-01-18 15:16:53 +0100389 uint64_t sync_seq;
Alex Deucher97b2e202015-04-20 16:51:00 -0400390 atomic64_t last_seq;
391 bool initialized;
Alex Deucher97b2e202015-04-20 16:51:00 -0400392 struct amdgpu_irq_src *irq_src;
393 unsigned irq_type;
Christian Königc2776af2015-11-03 13:27:39 +0100394 struct timer_list fallback_timer;
monk.liu7f06c232015-07-30 18:28:12 +0800395 wait_queue_head_t fence_queue;
Alex Deucher97b2e202015-04-20 16:51:00 -0400396};
397
398/* some special values for the owner field */
399#define AMDGPU_FENCE_OWNER_UNDEFINED ((void*)0ul)
400#define AMDGPU_FENCE_OWNER_VM ((void*)1ul)
Alex Deucher97b2e202015-04-20 16:51:00 -0400401
Chunming Zhou890ee232015-06-01 14:35:03 +0800402#define AMDGPU_FENCE_FLAG_64BIT (1 << 0)
403#define AMDGPU_FENCE_FLAG_INT (1 << 1)
404
Alex Deucher97b2e202015-04-20 16:51:00 -0400405struct amdgpu_user_fence {
406 /* write-back bo */
407 struct amdgpu_bo *bo;
408 /* write-back address offset to bo start */
409 uint32_t offset;
410};
411
412int amdgpu_fence_driver_init(struct amdgpu_device *adev);
413void amdgpu_fence_driver_fini(struct amdgpu_device *adev);
414void amdgpu_fence_driver_force_completion(struct amdgpu_device *adev);
415
Christian König4f839a22015-09-08 20:22:31 +0200416int amdgpu_fence_driver_init_ring(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -0400417int amdgpu_fence_driver_start_ring(struct amdgpu_ring *ring,
418 struct amdgpu_irq_src *irq_src,
419 unsigned irq_type);
Alex Deucher5ceb54c2015-08-05 12:41:48 -0400420void amdgpu_fence_driver_suspend(struct amdgpu_device *adev);
421void amdgpu_fence_driver_resume(struct amdgpu_device *adev);
Christian König364beb22016-02-16 17:39:39 +0100422int amdgpu_fence_emit(struct amdgpu_ring *ring, struct fence **fence);
Alex Deucher97b2e202015-04-20 16:51:00 -0400423void amdgpu_fence_process(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -0400424int amdgpu_fence_wait_empty(struct amdgpu_ring *ring);
425unsigned amdgpu_fence_count_emitted(struct amdgpu_ring *ring);
426
Alex Deucher97b2e202015-04-20 16:51:00 -0400427/*
428 * TTM.
429 */
430struct amdgpu_mman {
431 struct ttm_bo_global_ref bo_global_ref;
432 struct drm_global_reference mem_global_ref;
433 struct ttm_bo_device bdev;
434 bool mem_global_referenced;
435 bool initialized;
436
437#if defined(CONFIG_DEBUG_FS)
438 struct dentry *vram;
439 struct dentry *gtt;
440#endif
441
442 /* buffer handling */
443 const struct amdgpu_buffer_funcs *buffer_funcs;
444 struct amdgpu_ring *buffer_funcs_ring;
Christian König703297c2016-02-10 14:20:50 +0100445 /* Scheduler entity for buffer moves */
446 struct amd_sched_entity entity;
Alex Deucher97b2e202015-04-20 16:51:00 -0400447};
448
449int amdgpu_copy_buffer(struct amdgpu_ring *ring,
450 uint64_t src_offset,
451 uint64_t dst_offset,
452 uint32_t byte_count,
453 struct reservation_object *resv,
Chunming Zhouc7ae72c2015-08-25 17:23:45 +0800454 struct fence **fence);
Alex Deucher97b2e202015-04-20 16:51:00 -0400455int amdgpu_mmap(struct file *filp, struct vm_area_struct *vma);
456
457struct amdgpu_bo_list_entry {
458 struct amdgpu_bo *robj;
459 struct ttm_validate_buffer tv;
460 struct amdgpu_bo_va *bo_va;
Alex Deucher97b2e202015-04-20 16:51:00 -0400461 uint32_t priority;
Christian König2f568db2016-02-23 12:36:59 +0100462 struct page **user_pages;
463 int user_invalidated;
Alex Deucher97b2e202015-04-20 16:51:00 -0400464};
465
466struct amdgpu_bo_va_mapping {
467 struct list_head list;
468 struct interval_tree_node it;
469 uint64_t offset;
470 uint32_t flags;
471};
472
473/* bo virtual addresses in a specific vm */
474struct amdgpu_bo_va {
475 /* protected by bo being reserved */
476 struct list_head bo_list;
Chunming Zhoubb1e38a42015-08-03 18:19:38 +0800477 struct fence *last_pt_update;
Alex Deucher97b2e202015-04-20 16:51:00 -0400478 unsigned ref_count;
479
Christian König7fc11952015-07-30 11:53:42 +0200480 /* protected by vm mutex and spinlock */
Alex Deucher97b2e202015-04-20 16:51:00 -0400481 struct list_head vm_status;
482
Christian König7fc11952015-07-30 11:53:42 +0200483 /* mappings for this bo_va */
484 struct list_head invalids;
485 struct list_head valids;
486
Alex Deucher97b2e202015-04-20 16:51:00 -0400487 /* constant after initialization */
488 struct amdgpu_vm *vm;
489 struct amdgpu_bo *bo;
490};
491
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800492#define AMDGPU_GEM_DOMAIN_MAX 0x3
493
Alex Deucher97b2e202015-04-20 16:51:00 -0400494struct amdgpu_bo {
495 /* Protected by gem.mutex */
496 struct list_head list;
497 /* Protected by tbo.reserved */
Christian König1ea863f2015-12-18 22:13:12 +0100498 u32 prefered_domains;
499 u32 allowed_domains;
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800500 struct ttm_place placements[AMDGPU_GEM_DOMAIN_MAX + 1];
Alex Deucher97b2e202015-04-20 16:51:00 -0400501 struct ttm_placement placement;
502 struct ttm_buffer_object tbo;
503 struct ttm_bo_kmap_obj kmap;
504 u64 flags;
505 unsigned pin_count;
506 void *kptr;
507 u64 tiling_flags;
508 u64 metadata_flags;
509 void *metadata;
510 u32 metadata_size;
511 /* list of all virtual address to which this bo
512 * is associated to
513 */
514 struct list_head va;
515 /* Constant after initialization */
516 struct amdgpu_device *adev;
517 struct drm_gem_object gem_base;
Christian König82b9c552015-11-27 16:49:00 +0100518 struct amdgpu_bo *parent;
Alex Deucher97b2e202015-04-20 16:51:00 -0400519
520 struct ttm_bo_kmap_obj dma_buf_vmap;
Alex Deucher97b2e202015-04-20 16:51:00 -0400521 struct amdgpu_mn *mn;
522 struct list_head mn_list;
523};
524#define gem_to_amdgpu_bo(gobj) container_of((gobj), struct amdgpu_bo, gem_base)
525
526void amdgpu_gem_object_free(struct drm_gem_object *obj);
527int amdgpu_gem_object_open(struct drm_gem_object *obj,
528 struct drm_file *file_priv);
529void amdgpu_gem_object_close(struct drm_gem_object *obj,
530 struct drm_file *file_priv);
531unsigned long amdgpu_gem_timeout(uint64_t timeout_ns);
532struct sg_table *amdgpu_gem_prime_get_sg_table(struct drm_gem_object *obj);
533struct drm_gem_object *amdgpu_gem_prime_import_sg_table(struct drm_device *dev,
534 struct dma_buf_attachment *attach,
535 struct sg_table *sg);
536struct dma_buf *amdgpu_gem_prime_export(struct drm_device *dev,
537 struct drm_gem_object *gobj,
538 int flags);
539int amdgpu_gem_prime_pin(struct drm_gem_object *obj);
540void amdgpu_gem_prime_unpin(struct drm_gem_object *obj);
541struct reservation_object *amdgpu_gem_prime_res_obj(struct drm_gem_object *);
542void *amdgpu_gem_prime_vmap(struct drm_gem_object *obj);
543void amdgpu_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
544int amdgpu_gem_debugfs_init(struct amdgpu_device *adev);
545
546/* sub-allocation manager, it has to be protected by another lock.
547 * By conception this is an helper for other part of the driver
548 * like the indirect buffer or semaphore, which both have their
549 * locking.
550 *
551 * Principe is simple, we keep a list of sub allocation in offset
552 * order (first entry has offset == 0, last entry has the highest
553 * offset).
554 *
555 * When allocating new object we first check if there is room at
556 * the end total_size - (last_object_offset + last_object_size) >=
557 * alloc_size. If so we allocate new object there.
558 *
559 * When there is not enough room at the end, we start waiting for
560 * each sub object until we reach object_offset+object_size >=
561 * alloc_size, this object then become the sub object we return.
562 *
563 * Alignment can't be bigger than page size.
564 *
565 * Hole are not considered for allocation to keep things simple.
566 * Assumption is that there won't be hole (all object on same
567 * alignment).
568 */
Christian König6ba60b82016-03-11 14:50:08 +0100569
570#define AMDGPU_SA_NUM_FENCE_LISTS 32
571
Alex Deucher97b2e202015-04-20 16:51:00 -0400572struct amdgpu_sa_manager {
573 wait_queue_head_t wq;
574 struct amdgpu_bo *bo;
575 struct list_head *hole;
Christian König6ba60b82016-03-11 14:50:08 +0100576 struct list_head flist[AMDGPU_SA_NUM_FENCE_LISTS];
Alex Deucher97b2e202015-04-20 16:51:00 -0400577 struct list_head olist;
578 unsigned size;
579 uint64_t gpu_addr;
580 void *cpu_ptr;
581 uint32_t domain;
582 uint32_t align;
583};
584
585struct amdgpu_sa_bo;
586
587/* sub-allocation buffer */
588struct amdgpu_sa_bo {
589 struct list_head olist;
590 struct list_head flist;
591 struct amdgpu_sa_manager *manager;
592 unsigned soffset;
593 unsigned eoffset;
Chunming Zhou4ce98912015-08-19 16:41:19 +0800594 struct fence *fence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400595};
596
597/*
598 * GEM objects.
599 */
Christian König418aa0c2016-02-15 16:59:57 +0100600void amdgpu_gem_force_release(struct amdgpu_device *adev);
Alex Deucher97b2e202015-04-20 16:51:00 -0400601int amdgpu_gem_object_create(struct amdgpu_device *adev, unsigned long size,
602 int alignment, u32 initial_domain,
603 u64 flags, bool kernel,
604 struct drm_gem_object **obj);
605
606int amdgpu_mode_dumb_create(struct drm_file *file_priv,
607 struct drm_device *dev,
608 struct drm_mode_create_dumb *args);
609int amdgpu_mode_dumb_mmap(struct drm_file *filp,
610 struct drm_device *dev,
611 uint32_t handle, uint64_t *offset_p);
Alex Deucher97b2e202015-04-20 16:51:00 -0400612/*
613 * Synchronization
614 */
615struct amdgpu_sync {
Christian Königf91b3a62015-08-20 14:47:40 +0800616 DECLARE_HASHTABLE(fences, 4);
Chunming Zhou3c623382015-08-20 18:33:59 +0800617 struct fence *last_vm_update;
Alex Deucher97b2e202015-04-20 16:51:00 -0400618};
619
620void amdgpu_sync_create(struct amdgpu_sync *sync);
Christian König91e1a522015-07-06 22:06:40 +0200621int amdgpu_sync_fence(struct amdgpu_device *adev, struct amdgpu_sync *sync,
622 struct fence *f);
Alex Deucher97b2e202015-04-20 16:51:00 -0400623int amdgpu_sync_resv(struct amdgpu_device *adev,
624 struct amdgpu_sync *sync,
625 struct reservation_object *resv,
626 void *owner);
Christian Könige61235d2015-08-25 11:05:36 +0200627struct fence *amdgpu_sync_get_fence(struct amdgpu_sync *sync);
Christian Königf91b3a62015-08-20 14:47:40 +0800628int amdgpu_sync_wait(struct amdgpu_sync *sync);
Christian König8a8f0b42016-02-03 15:11:39 +0100629void amdgpu_sync_free(struct amdgpu_sync *sync);
Christian König257bf152016-02-16 11:24:58 +0100630int amdgpu_sync_init(void);
631void amdgpu_sync_fini(void);
Alex Deucher97b2e202015-04-20 16:51:00 -0400632
633/*
634 * GART structures, functions & helpers
635 */
636struct amdgpu_mc;
637
638#define AMDGPU_GPU_PAGE_SIZE 4096
639#define AMDGPU_GPU_PAGE_MASK (AMDGPU_GPU_PAGE_SIZE - 1)
640#define AMDGPU_GPU_PAGE_SHIFT 12
641#define AMDGPU_GPU_PAGE_ALIGN(a) (((a) + AMDGPU_GPU_PAGE_MASK) & ~AMDGPU_GPU_PAGE_MASK)
642
643struct amdgpu_gart {
644 dma_addr_t table_addr;
645 struct amdgpu_bo *robj;
646 void *ptr;
647 unsigned num_gpu_pages;
648 unsigned num_cpu_pages;
649 unsigned table_size;
650 struct page **pages;
651 dma_addr_t *pages_addr;
652 bool ready;
653 const struct amdgpu_gart_funcs *gart_funcs;
654};
655
656int amdgpu_gart_table_ram_alloc(struct amdgpu_device *adev);
657void amdgpu_gart_table_ram_free(struct amdgpu_device *adev);
658int amdgpu_gart_table_vram_alloc(struct amdgpu_device *adev);
659void amdgpu_gart_table_vram_free(struct amdgpu_device *adev);
660int amdgpu_gart_table_vram_pin(struct amdgpu_device *adev);
661void amdgpu_gart_table_vram_unpin(struct amdgpu_device *adev);
662int amdgpu_gart_init(struct amdgpu_device *adev);
663void amdgpu_gart_fini(struct amdgpu_device *adev);
664void amdgpu_gart_unbind(struct amdgpu_device *adev, unsigned offset,
665 int pages);
666int amdgpu_gart_bind(struct amdgpu_device *adev, unsigned offset,
667 int pages, struct page **pagelist,
668 dma_addr_t *dma_addr, uint32_t flags);
669
670/*
671 * GPU MC structures, functions & helpers
672 */
673struct amdgpu_mc {
674 resource_size_t aper_size;
675 resource_size_t aper_base;
676 resource_size_t agp_base;
677 /* for some chips with <= 32MB we need to lie
678 * about vram size near mc fb location */
679 u64 mc_vram_size;
680 u64 visible_vram_size;
681 u64 gtt_size;
682 u64 gtt_start;
683 u64 gtt_end;
684 u64 vram_start;
685 u64 vram_end;
686 unsigned vram_width;
687 u64 real_vram_size;
688 int vram_mtrr;
689 u64 gtt_base_align;
690 u64 mc_mask;
691 const struct firmware *fw; /* MC firmware */
692 uint32_t fw_version;
693 struct amdgpu_irq_src vm_fault;
Ken Wang81c59f52015-06-03 21:02:01 +0800694 uint32_t vram_type;
Alex Deucher97b2e202015-04-20 16:51:00 -0400695};
696
697/*
698 * GPU doorbell structures, functions & helpers
699 */
700typedef enum _AMDGPU_DOORBELL_ASSIGNMENT
701{
702 AMDGPU_DOORBELL_KIQ = 0x000,
703 AMDGPU_DOORBELL_HIQ = 0x001,
704 AMDGPU_DOORBELL_DIQ = 0x002,
705 AMDGPU_DOORBELL_MEC_RING0 = 0x010,
706 AMDGPU_DOORBELL_MEC_RING1 = 0x011,
707 AMDGPU_DOORBELL_MEC_RING2 = 0x012,
708 AMDGPU_DOORBELL_MEC_RING3 = 0x013,
709 AMDGPU_DOORBELL_MEC_RING4 = 0x014,
710 AMDGPU_DOORBELL_MEC_RING5 = 0x015,
711 AMDGPU_DOORBELL_MEC_RING6 = 0x016,
712 AMDGPU_DOORBELL_MEC_RING7 = 0x017,
713 AMDGPU_DOORBELL_GFX_RING0 = 0x020,
714 AMDGPU_DOORBELL_sDMA_ENGINE0 = 0x1E0,
715 AMDGPU_DOORBELL_sDMA_ENGINE1 = 0x1E1,
716 AMDGPU_DOORBELL_IH = 0x1E8,
717 AMDGPU_DOORBELL_MAX_ASSIGNMENT = 0x3FF,
718 AMDGPU_DOORBELL_INVALID = 0xFFFF
719} AMDGPU_DOORBELL_ASSIGNMENT;
720
721struct amdgpu_doorbell {
722 /* doorbell mmio */
723 resource_size_t base;
724 resource_size_t size;
725 u32 __iomem *ptr;
726 u32 num_doorbells; /* Number of doorbells actually reserved for amdgpu. */
727};
728
729void amdgpu_doorbell_get_kfd_info(struct amdgpu_device *adev,
730 phys_addr_t *aperture_base,
731 size_t *aperture_size,
732 size_t *start_offset);
733
734/*
735 * IRQS.
736 */
737
738struct amdgpu_flip_work {
739 struct work_struct flip_work;
740 struct work_struct unpin_work;
741 struct amdgpu_device *adev;
742 int crtc_id;
743 uint64_t base;
744 struct drm_pending_vblank_event *event;
745 struct amdgpu_bo *old_rbo;
Christian König1ffd2652015-08-11 17:29:52 +0200746 struct fence *excl;
747 unsigned shared_count;
748 struct fence **shared;
Christian Königc3874b72016-02-11 15:48:30 +0100749 struct fence_cb cb;
Alex Deucher97b2e202015-04-20 16:51:00 -0400750};
751
752
753/*
754 * CP & rings.
755 */
756
757struct amdgpu_ib {
758 struct amdgpu_sa_bo *sa_bo;
759 uint32_t length_dw;
760 uint64_t gpu_addr;
761 uint32_t *ptr;
Christian König364beb22016-02-16 17:39:39 +0100762 struct fence *fence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400763 struct amdgpu_user_fence *user;
764 struct amdgpu_vm *vm;
Christian König4ff37a82016-02-26 16:18:26 +0100765 unsigned vm_id;
766 uint64_t vm_pd_addr;
Christian König3cb485f2015-05-11 15:34:59 +0200767 struct amdgpu_ctx *ctx;
Alex Deucher97b2e202015-04-20 16:51:00 -0400768 uint32_t gds_base, gds_size;
769 uint32_t gws_base, gws_size;
770 uint32_t oa_base, oa_size;
Jammy Zhoude807f82015-05-11 23:41:41 +0800771 uint32_t flags;
Christian König5430a3f2015-07-21 18:02:21 +0200772 /* resulting sequence number */
773 uint64_t sequence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400774};
775
776enum amdgpu_ring_type {
777 AMDGPU_RING_TYPE_GFX,
778 AMDGPU_RING_TYPE_COMPUTE,
779 AMDGPU_RING_TYPE_SDMA,
780 AMDGPU_RING_TYPE_UVD,
781 AMDGPU_RING_TYPE_VCE
782};
783
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800784extern struct amd_sched_backend_ops amdgpu_sched_ops;
785
Christian König50838c82016-02-03 13:44:52 +0100786int amdgpu_job_alloc(struct amdgpu_device *adev, unsigned num_ibs,
787 struct amdgpu_job **job);
Christian Königd71518b2016-02-01 12:20:25 +0100788int amdgpu_job_alloc_with_ib(struct amdgpu_device *adev, unsigned size,
789 struct amdgpu_job **job);
Christian König50838c82016-02-03 13:44:52 +0100790void amdgpu_job_free(struct amdgpu_job *job);
Christian Königd71518b2016-02-01 12:20:25 +0100791int amdgpu_job_submit(struct amdgpu_job *job, struct amdgpu_ring *ring,
Christian König2bd9ccf2016-02-01 12:53:58 +0100792 struct amd_sched_entity *entity, void *owner,
793 struct fence **f);
Chunming Zhou3c704e92015-07-29 10:33:14 +0800794
Alex Deucher97b2e202015-04-20 16:51:00 -0400795struct amdgpu_ring {
796 struct amdgpu_device *adev;
797 const struct amdgpu_ring_funcs *funcs;
798 struct amdgpu_fence_driver fence_drv;
Christian König4f839a22015-09-08 20:22:31 +0200799 struct amd_gpu_scheduler sched;
Alex Deucher97b2e202015-04-20 16:51:00 -0400800
Chunming Zhou176e1ab2015-07-24 10:49:47 +0800801 spinlock_t fence_lock;
Alex Deucher97b2e202015-04-20 16:51:00 -0400802 struct amdgpu_bo *ring_obj;
803 volatile uint32_t *ring;
804 unsigned rptr_offs;
805 u64 next_rptr_gpu_addr;
806 volatile u32 *next_rptr_cpu_addr;
807 unsigned wptr;
808 unsigned wptr_old;
809 unsigned ring_size;
Christian Königc7e6be22016-01-21 13:06:05 +0100810 unsigned max_dw;
Alex Deucher97b2e202015-04-20 16:51:00 -0400811 int count_dw;
Alex Deucher97b2e202015-04-20 16:51:00 -0400812 uint64_t gpu_addr;
813 uint32_t align_mask;
814 uint32_t ptr_mask;
815 bool ready;
816 u32 nop;
817 u32 idx;
Alex Deucher97b2e202015-04-20 16:51:00 -0400818 u32 me;
819 u32 pipe;
820 u32 queue;
821 struct amdgpu_bo *mqd_obj;
822 u32 doorbell_index;
823 bool use_doorbell;
824 unsigned wptr_offs;
825 unsigned next_rptr_offs;
826 unsigned fence_offs;
Christian König3cb485f2015-05-11 15:34:59 +0200827 struct amdgpu_ctx *current_ctx;
Alex Deucher97b2e202015-04-20 16:51:00 -0400828 enum amdgpu_ring_type type;
829 char name[16];
830};
831
832/*
833 * VM
834 */
835
836/* maximum number of VMIDs */
837#define AMDGPU_NUM_VM 16
838
839/* number of entries in page table */
840#define AMDGPU_VM_PTE_COUNT (1 << amdgpu_vm_block_size)
841
842/* PTBs (Page Table Blocks) need to be aligned to 32K */
843#define AMDGPU_VM_PTB_ALIGN_SIZE 32768
844#define AMDGPU_VM_PTB_ALIGN_MASK (AMDGPU_VM_PTB_ALIGN_SIZE - 1)
845#define AMDGPU_VM_PTB_ALIGN(a) (((a) + AMDGPU_VM_PTB_ALIGN_MASK) & ~AMDGPU_VM_PTB_ALIGN_MASK)
846
847#define AMDGPU_PTE_VALID (1 << 0)
848#define AMDGPU_PTE_SYSTEM (1 << 1)
849#define AMDGPU_PTE_SNOOPED (1 << 2)
850
851/* VI only */
852#define AMDGPU_PTE_EXECUTABLE (1 << 4)
853
854#define AMDGPU_PTE_READABLE (1 << 5)
855#define AMDGPU_PTE_WRITEABLE (1 << 6)
856
857/* PTE (Page Table Entry) fragment field for different page sizes */
858#define AMDGPU_PTE_FRAG_4KB (0 << 7)
859#define AMDGPU_PTE_FRAG_64KB (4 << 7)
860#define AMDGPU_LOG2_PAGES_PER_FRAG 4
861
Christian Königd9c13152015-09-28 12:31:26 +0200862/* How to programm VM fault handling */
863#define AMDGPU_VM_FAULT_STOP_NEVER 0
864#define AMDGPU_VM_FAULT_STOP_FIRST 1
865#define AMDGPU_VM_FAULT_STOP_ALWAYS 2
866
Alex Deucher97b2e202015-04-20 16:51:00 -0400867struct amdgpu_vm_pt {
Christian Königee1782c2015-12-11 21:01:23 +0100868 struct amdgpu_bo_list_entry entry;
869 uint64_t addr;
Alex Deucher97b2e202015-04-20 16:51:00 -0400870};
871
872struct amdgpu_vm_id {
Christian König4ff37a82016-02-26 16:18:26 +0100873 struct amdgpu_vm_manager_id *mgr_id;
874 uint64_t pd_gpu_addr;
Alex Deucher97b2e202015-04-20 16:51:00 -0400875 /* last flushed PD/PT update */
Christian König4ff37a82016-02-26 16:18:26 +0100876 struct fence *flushed_updates;
Alex Deucher97b2e202015-04-20 16:51:00 -0400877};
878
879struct amdgpu_vm {
Christian König25cfc3c2015-12-19 19:42:05 +0100880 /* tree of virtual addresses mapped */
Alex Deucher97b2e202015-04-20 16:51:00 -0400881 struct rb_root va;
882
Christian König7fc11952015-07-30 11:53:42 +0200883 /* protecting invalidated */
Alex Deucher97b2e202015-04-20 16:51:00 -0400884 spinlock_t status_lock;
885
886 /* BOs moved, but not yet updated in the PT */
887 struct list_head invalidated;
888
Christian König7fc11952015-07-30 11:53:42 +0200889 /* BOs cleared in the PT because of a move */
890 struct list_head cleared;
891
892 /* BO mappings freed, but not yet updated in the PT */
Alex Deucher97b2e202015-04-20 16:51:00 -0400893 struct list_head freed;
894
895 /* contains the page directory */
896 struct amdgpu_bo *page_directory;
897 unsigned max_pde_used;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200898 struct fence *page_directory_fence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400899
900 /* array of page tables, one for each page directory entry */
901 struct amdgpu_vm_pt *page_tables;
902
903 /* for id and flush management per ring */
904 struct amdgpu_vm_id ids[AMDGPU_MAX_RINGS];
Christian König25cfc3c2015-12-19 19:42:05 +0100905
jimqu81d75a32015-12-04 17:17:00 +0800906 /* protecting freed */
907 spinlock_t freed_lock;
Christian König2bd9ccf2016-02-01 12:53:58 +0100908
909 /* Scheduler entity for page table updates */
910 struct amd_sched_entity entity;
Alex Deucher97b2e202015-04-20 16:51:00 -0400911};
912
Christian Königa9a78b32016-01-21 10:19:11 +0100913struct amdgpu_vm_manager_id {
914 struct list_head list;
915 struct fence *active;
916 atomic_long_t owner;
Christian König971fe9a92016-03-01 15:09:25 +0100917
918 uint32_t gds_base;
919 uint32_t gds_size;
920 uint32_t gws_base;
921 uint32_t gws_size;
922 uint32_t oa_base;
923 uint32_t oa_size;
Christian Königa9a78b32016-01-21 10:19:11 +0100924};
Christian König8d0a7ce2015-11-03 20:58:50 +0100925
Christian Königa9a78b32016-01-21 10:19:11 +0100926struct amdgpu_vm_manager {
927 /* Handling of VMIDs */
928 struct mutex lock;
929 unsigned num_ids;
930 struct list_head ids_lru;
931 struct amdgpu_vm_manager_id ids[AMDGPU_NUM_VM];
Christian König1c16c0a2015-11-14 21:31:40 +0100932
Christian König8b4fb002015-11-15 16:04:16 +0100933 uint32_t max_pfn;
Alex Deucher97b2e202015-04-20 16:51:00 -0400934 /* vram base address for page table entry */
Christian König8b4fb002015-11-15 16:04:16 +0100935 u64 vram_base_offset;
Alex Deucher97b2e202015-04-20 16:51:00 -0400936 /* is vm enabled? */
Christian König8b4fb002015-11-15 16:04:16 +0100937 bool enabled;
Alex Deucher97b2e202015-04-20 16:51:00 -0400938 /* vm pte handling */
939 const struct amdgpu_vm_pte_funcs *vm_pte_funcs;
Christian König2d55e452016-02-08 17:37:38 +0100940 struct amdgpu_ring *vm_pte_rings[AMDGPU_MAX_RINGS];
941 unsigned vm_pte_num_rings;
942 atomic_t vm_pte_next_ring;
Alex Deucher97b2e202015-04-20 16:51:00 -0400943};
944
Christian Königa9a78b32016-01-21 10:19:11 +0100945void amdgpu_vm_manager_init(struct amdgpu_device *adev);
Christian Königea89f8c2015-11-15 20:52:06 +0100946void amdgpu_vm_manager_fini(struct amdgpu_device *adev);
Christian König8b4fb002015-11-15 16:04:16 +0100947int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm);
948void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm);
Christian König56467eb2015-12-11 15:16:32 +0100949void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
950 struct list_head *validated,
951 struct amdgpu_bo_list_entry *entry);
Christian Königee1782c2015-12-11 21:01:23 +0100952void amdgpu_vm_get_pt_bos(struct amdgpu_vm *vm, struct list_head *duplicates);
Christian Königeceb8a12016-01-11 15:35:21 +0100953void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev,
954 struct amdgpu_vm *vm);
Christian König8b4fb002015-11-15 16:04:16 +0100955int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Christian König4ff37a82016-02-26 16:18:26 +0100956 struct amdgpu_sync *sync, struct fence *fence,
957 unsigned *vm_id, uint64_t *vm_pd_addr);
Christian König8b4fb002015-11-15 16:04:16 +0100958void amdgpu_vm_flush(struct amdgpu_ring *ring,
Christian Königcffadc82016-03-01 13:34:49 +0100959 unsigned vm_id, uint64_t pd_addr,
960 uint32_t gds_base, uint32_t gds_size,
961 uint32_t gws_base, uint32_t gws_size,
962 uint32_t oa_base, uint32_t oa_size);
Christian König971fe9a92016-03-01 15:09:25 +0100963void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vm_id);
Christian Königb07c9d22015-11-30 13:26:07 +0100964uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr);
Christian König8b4fb002015-11-15 16:04:16 +0100965int amdgpu_vm_update_page_directory(struct amdgpu_device *adev,
966 struct amdgpu_vm *vm);
967int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
968 struct amdgpu_vm *vm);
969int amdgpu_vm_clear_invalids(struct amdgpu_device *adev, struct amdgpu_vm *vm,
970 struct amdgpu_sync *sync);
971int amdgpu_vm_bo_update(struct amdgpu_device *adev,
972 struct amdgpu_bo_va *bo_va,
973 struct ttm_mem_reg *mem);
974void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
975 struct amdgpu_bo *bo);
976struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
977 struct amdgpu_bo *bo);
978struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
979 struct amdgpu_vm *vm,
980 struct amdgpu_bo *bo);
981int amdgpu_vm_bo_map(struct amdgpu_device *adev,
982 struct amdgpu_bo_va *bo_va,
983 uint64_t addr, uint64_t offset,
984 uint64_t size, uint32_t flags);
985int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
986 struct amdgpu_bo_va *bo_va,
987 uint64_t addr);
988void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
989 struct amdgpu_bo_va *bo_va);
Christian König8b4fb002015-11-15 16:04:16 +0100990
Alex Deucher97b2e202015-04-20 16:51:00 -0400991/*
992 * context related structures
993 */
994
Christian König21c16bf2015-07-07 17:24:49 +0200995struct amdgpu_ctx_ring {
Christian König91404fb2015-08-05 18:33:21 +0200996 uint64_t sequence;
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800997 struct fence **fences;
Christian König91404fb2015-08-05 18:33:21 +0200998 struct amd_sched_entity entity;
Christian König21c16bf2015-07-07 17:24:49 +0200999};
1000
Alex Deucher97b2e202015-04-20 16:51:00 -04001001struct amdgpu_ctx {
Alex Deucher0b492a42015-08-16 22:48:26 -04001002 struct kref refcount;
Chunming Zhou9cb7e5a2015-07-21 13:17:19 +08001003 struct amdgpu_device *adev;
Alex Deucher0b492a42015-08-16 22:48:26 -04001004 unsigned reset_counter;
Christian König21c16bf2015-07-07 17:24:49 +02001005 spinlock_t ring_lock;
Chunming Zhou37cd0ca2015-12-10 15:45:11 +08001006 struct fence **fences;
Christian König21c16bf2015-07-07 17:24:49 +02001007 struct amdgpu_ctx_ring rings[AMDGPU_MAX_RINGS];
Alex Deucher97b2e202015-04-20 16:51:00 -04001008};
1009
1010struct amdgpu_ctx_mgr {
Alex Deucher0b492a42015-08-16 22:48:26 -04001011 struct amdgpu_device *adev;
1012 struct mutex lock;
1013 /* protected by lock */
1014 struct idr ctx_handles;
Alex Deucher97b2e202015-04-20 16:51:00 -04001015};
1016
Alex Deucher0b492a42015-08-16 22:48:26 -04001017struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id);
1018int amdgpu_ctx_put(struct amdgpu_ctx *ctx);
1019
Christian König21c16bf2015-07-07 17:24:49 +02001020uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
Christian Königce882e62015-08-19 15:00:55 +02001021 struct fence *fence);
Christian König21c16bf2015-07-07 17:24:49 +02001022struct fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
1023 struct amdgpu_ring *ring, uint64_t seq);
1024
Alex Deucher0b492a42015-08-16 22:48:26 -04001025int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
1026 struct drm_file *filp);
1027
Christian Königefd4ccb2015-08-04 16:20:31 +02001028void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr);
1029void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr);
Alex Deucher0b492a42015-08-16 22:48:26 -04001030
Alex Deucher97b2e202015-04-20 16:51:00 -04001031/*
1032 * file private structure
1033 */
1034
1035struct amdgpu_fpriv {
1036 struct amdgpu_vm vm;
1037 struct mutex bo_list_lock;
1038 struct idr bo_list_handles;
Alex Deucher0b492a42015-08-16 22:48:26 -04001039 struct amdgpu_ctx_mgr ctx_mgr;
Alex Deucher97b2e202015-04-20 16:51:00 -04001040};
1041
1042/*
1043 * residency list
1044 */
1045
1046struct amdgpu_bo_list {
1047 struct mutex lock;
1048 struct amdgpu_bo *gds_obj;
1049 struct amdgpu_bo *gws_obj;
1050 struct amdgpu_bo *oa_obj;
Christian König211dff52016-02-22 15:40:59 +01001051 unsigned first_userptr;
Alex Deucher97b2e202015-04-20 16:51:00 -04001052 unsigned num_entries;
1053 struct amdgpu_bo_list_entry *array;
1054};
1055
1056struct amdgpu_bo_list *
1057amdgpu_bo_list_get(struct amdgpu_fpriv *fpriv, int id);
Christian König636ce252015-12-18 21:26:47 +01001058void amdgpu_bo_list_get_list(struct amdgpu_bo_list *list,
1059 struct list_head *validated);
Alex Deucher97b2e202015-04-20 16:51:00 -04001060void amdgpu_bo_list_put(struct amdgpu_bo_list *list);
1061void amdgpu_bo_list_free(struct amdgpu_bo_list *list);
1062
1063/*
1064 * GFX stuff
1065 */
1066#include "clearstate_defs.h"
1067
1068struct amdgpu_rlc {
1069 /* for power gating */
1070 struct amdgpu_bo *save_restore_obj;
1071 uint64_t save_restore_gpu_addr;
1072 volatile uint32_t *sr_ptr;
1073 const u32 *reg_list;
1074 u32 reg_list_size;
1075 /* for clear state */
1076 struct amdgpu_bo *clear_state_obj;
1077 uint64_t clear_state_gpu_addr;
1078 volatile uint32_t *cs_ptr;
1079 const struct cs_section_def *cs_data;
1080 u32 clear_state_size;
1081 /* for cp tables */
1082 struct amdgpu_bo *cp_table_obj;
1083 uint64_t cp_table_gpu_addr;
1084 volatile uint32_t *cp_table_ptr;
1085 u32 cp_table_size;
1086};
1087
1088struct amdgpu_mec {
1089 struct amdgpu_bo *hpd_eop_obj;
1090 u64 hpd_eop_gpu_addr;
1091 u32 num_pipe;
1092 u32 num_mec;
1093 u32 num_queue;
1094};
1095
1096/*
1097 * GPU scratch registers structures, functions & helpers
1098 */
1099struct amdgpu_scratch {
1100 unsigned num_reg;
1101 uint32_t reg_base;
1102 bool free[32];
1103 uint32_t reg[32];
1104};
1105
1106/*
1107 * GFX configurations
1108 */
1109struct amdgpu_gca_config {
1110 unsigned max_shader_engines;
1111 unsigned max_tile_pipes;
1112 unsigned max_cu_per_sh;
1113 unsigned max_sh_per_se;
1114 unsigned max_backends_per_se;
1115 unsigned max_texture_channel_caches;
1116 unsigned max_gprs;
1117 unsigned max_gs_threads;
1118 unsigned max_hw_contexts;
1119 unsigned sc_prim_fifo_size_frontend;
1120 unsigned sc_prim_fifo_size_backend;
1121 unsigned sc_hiz_tile_fifo_size;
1122 unsigned sc_earlyz_tile_fifo_size;
1123
1124 unsigned num_tile_pipes;
1125 unsigned backend_enable_mask;
1126 unsigned mem_max_burst_length_bytes;
1127 unsigned mem_row_size_in_kb;
1128 unsigned shader_engine_tile_size;
1129 unsigned num_gpus;
1130 unsigned multi_gpu_tile_size;
1131 unsigned mc_arb_ramcfg;
1132 unsigned gb_addr_config;
Alex Deucher8f8e00c2016-02-12 00:39:13 -05001133 unsigned num_rbs;
Alex Deucher97b2e202015-04-20 16:51:00 -04001134
1135 uint32_t tile_mode_array[32];
1136 uint32_t macrotile_mode_array[16];
1137};
1138
1139struct amdgpu_gfx {
1140 struct mutex gpu_clock_mutex;
1141 struct amdgpu_gca_config config;
1142 struct amdgpu_rlc rlc;
1143 struct amdgpu_mec mec;
1144 struct amdgpu_scratch scratch;
1145 const struct firmware *me_fw; /* ME firmware */
1146 uint32_t me_fw_version;
1147 const struct firmware *pfp_fw; /* PFP firmware */
1148 uint32_t pfp_fw_version;
1149 const struct firmware *ce_fw; /* CE firmware */
1150 uint32_t ce_fw_version;
1151 const struct firmware *rlc_fw; /* RLC firmware */
1152 uint32_t rlc_fw_version;
1153 const struct firmware *mec_fw; /* MEC firmware */
1154 uint32_t mec_fw_version;
1155 const struct firmware *mec2_fw; /* MEC2 firmware */
1156 uint32_t mec2_fw_version;
Ken Wang02558a02015-06-03 19:52:06 +08001157 uint32_t me_feature_version;
1158 uint32_t ce_feature_version;
1159 uint32_t pfp_feature_version;
Jammy Zhou351643d2015-08-04 10:43:50 +08001160 uint32_t rlc_feature_version;
1161 uint32_t mec_feature_version;
1162 uint32_t mec2_feature_version;
Alex Deucher97b2e202015-04-20 16:51:00 -04001163 struct amdgpu_ring gfx_ring[AMDGPU_MAX_GFX_RINGS];
1164 unsigned num_gfx_rings;
1165 struct amdgpu_ring compute_ring[AMDGPU_MAX_COMPUTE_RINGS];
1166 unsigned num_compute_rings;
1167 struct amdgpu_irq_src eop_irq;
1168 struct amdgpu_irq_src priv_reg_irq;
1169 struct amdgpu_irq_src priv_inst_irq;
1170 /* gfx status */
1171 uint32_t gfx_current_status;
Ken Wanga101a892015-06-03 17:47:54 +08001172 /* ce ram size*/
1173 unsigned ce_ram_size;
Alex Deucher97b2e202015-04-20 16:51:00 -04001174};
1175
Christian Königb07c60c2016-01-31 12:29:04 +01001176int amdgpu_ib_get(struct amdgpu_device *adev, struct amdgpu_vm *vm,
Alex Deucher97b2e202015-04-20 16:51:00 -04001177 unsigned size, struct amdgpu_ib *ib);
1178void amdgpu_ib_free(struct amdgpu_device *adev, struct amdgpu_ib *ib);
Christian Königb07c60c2016-01-31 12:29:04 +01001179int amdgpu_ib_schedule(struct amdgpu_ring *ring, unsigned num_ibs,
Christian König336d1f52016-02-16 10:57:10 +01001180 struct amdgpu_ib *ib, struct fence *last_vm_update,
Christian Königec72b802016-02-01 11:56:35 +01001181 struct fence **f);
Alex Deucher97b2e202015-04-20 16:51:00 -04001182int amdgpu_ib_pool_init(struct amdgpu_device *adev);
1183void amdgpu_ib_pool_fini(struct amdgpu_device *adev);
1184int amdgpu_ib_ring_tests(struct amdgpu_device *adev);
Alex Deucher97b2e202015-04-20 16:51:00 -04001185int amdgpu_ring_alloc(struct amdgpu_ring *ring, unsigned ndw);
Jammy Zhouedff0e22015-09-01 13:04:08 +08001186void amdgpu_ring_insert_nop(struct amdgpu_ring *ring, uint32_t count);
Christian König9e5d53092016-01-31 12:20:55 +01001187void amdgpu_ring_generic_pad_ib(struct amdgpu_ring *ring, struct amdgpu_ib *ib);
Alex Deucher97b2e202015-04-20 16:51:00 -04001188void amdgpu_ring_commit(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -04001189void amdgpu_ring_undo(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -04001190unsigned amdgpu_ring_backup(struct amdgpu_ring *ring,
1191 uint32_t **data);
1192int amdgpu_ring_restore(struct amdgpu_ring *ring,
1193 unsigned size, uint32_t *data);
1194int amdgpu_ring_init(struct amdgpu_device *adev, struct amdgpu_ring *ring,
1195 unsigned ring_size, u32 nop, u32 align_mask,
1196 struct amdgpu_irq_src *irq_src, unsigned irq_type,
1197 enum amdgpu_ring_type ring_type);
1198void amdgpu_ring_fini(struct amdgpu_ring *ring);
1199
1200/*
1201 * CS.
1202 */
1203struct amdgpu_cs_chunk {
1204 uint32_t chunk_id;
1205 uint32_t length_dw;
1206 uint32_t *kdata;
Alex Deucher97b2e202015-04-20 16:51:00 -04001207};
1208
1209struct amdgpu_cs_parser {
1210 struct amdgpu_device *adev;
1211 struct drm_file *filp;
Christian König3cb485f2015-05-11 15:34:59 +02001212 struct amdgpu_ctx *ctx;
Christian Königc3cca412015-12-15 14:41:33 +01001213
Alex Deucher97b2e202015-04-20 16:51:00 -04001214 /* chunks */
1215 unsigned nchunks;
1216 struct amdgpu_cs_chunk *chunks;
Alex Deucher97b2e202015-04-20 16:51:00 -04001217
Christian König50838c82016-02-03 13:44:52 +01001218 /* scheduler job object */
1219 struct amdgpu_job *job;
Alex Deucher97b2e202015-04-20 16:51:00 -04001220
Christian Königc3cca412015-12-15 14:41:33 +01001221 /* buffer objects */
1222 struct ww_acquire_ctx ticket;
1223 struct amdgpu_bo_list *bo_list;
1224 struct amdgpu_bo_list_entry vm_pd;
1225 struct list_head validated;
1226 struct fence *fence;
1227 uint64_t bytes_moved_threshold;
1228 uint64_t bytes_moved;
Alex Deucher97b2e202015-04-20 16:51:00 -04001229
1230 /* user fence */
Christian König91acbeb2015-12-14 16:42:31 +01001231 struct amdgpu_bo_list_entry uf_entry;
Alex Deucher97b2e202015-04-20 16:51:00 -04001232};
1233
Chunming Zhoubb977d32015-08-18 15:16:40 +08001234struct amdgpu_job {
1235 struct amd_sched_job base;
1236 struct amdgpu_device *adev;
Christian Königb07c60c2016-01-31 12:29:04 +01001237 struct amdgpu_ring *ring;
Christian Könige86f9ce2016-02-08 12:13:05 +01001238 struct amdgpu_sync sync;
Chunming Zhoubb977d32015-08-18 15:16:40 +08001239 struct amdgpu_ib *ibs;
1240 uint32_t num_ibs;
Christian Könige2840222015-11-05 19:49:48 +01001241 void *owner;
Chunming Zhoubb977d32015-08-18 15:16:40 +08001242 struct amdgpu_user_fence uf;
Chunming Zhoubb977d32015-08-18 15:16:40 +08001243};
Junwei Zhanga6db8a32015-09-09 09:21:19 +08001244#define to_amdgpu_job(sched_job) \
1245 container_of((sched_job), struct amdgpu_job, base)
Chunming Zhoubb977d32015-08-18 15:16:40 +08001246
Christian König7270f832016-01-31 11:00:41 +01001247static inline u32 amdgpu_get_ib_value(struct amdgpu_cs_parser *p,
1248 uint32_t ib_idx, int idx)
Alex Deucher97b2e202015-04-20 16:51:00 -04001249{
Christian König50838c82016-02-03 13:44:52 +01001250 return p->job->ibs[ib_idx].ptr[idx];
Alex Deucher97b2e202015-04-20 16:51:00 -04001251}
1252
Christian König7270f832016-01-31 11:00:41 +01001253static inline void amdgpu_set_ib_value(struct amdgpu_cs_parser *p,
1254 uint32_t ib_idx, int idx,
1255 uint32_t value)
1256{
Christian König50838c82016-02-03 13:44:52 +01001257 p->job->ibs[ib_idx].ptr[idx] = value;
Christian König7270f832016-01-31 11:00:41 +01001258}
1259
Alex Deucher97b2e202015-04-20 16:51:00 -04001260/*
1261 * Writeback
1262 */
1263#define AMDGPU_MAX_WB 1024 /* Reserve at most 1024 WB slots for amdgpu-owned rings. */
1264
1265struct amdgpu_wb {
1266 struct amdgpu_bo *wb_obj;
1267 volatile uint32_t *wb;
1268 uint64_t gpu_addr;
1269 u32 num_wb; /* Number of wb slots actually reserved for amdgpu. */
1270 unsigned long used[DIV_ROUND_UP(AMDGPU_MAX_WB, BITS_PER_LONG)];
1271};
1272
1273int amdgpu_wb_get(struct amdgpu_device *adev, u32 *wb);
1274void amdgpu_wb_free(struct amdgpu_device *adev, u32 wb);
1275
Alex Deucher97b2e202015-04-20 16:51:00 -04001276
Alex Deucher97b2e202015-04-20 16:51:00 -04001277
1278enum amdgpu_int_thermal_type {
1279 THERMAL_TYPE_NONE,
1280 THERMAL_TYPE_EXTERNAL,
1281 THERMAL_TYPE_EXTERNAL_GPIO,
1282 THERMAL_TYPE_RV6XX,
1283 THERMAL_TYPE_RV770,
1284 THERMAL_TYPE_ADT7473_WITH_INTERNAL,
1285 THERMAL_TYPE_EVERGREEN,
1286 THERMAL_TYPE_SUMO,
1287 THERMAL_TYPE_NI,
1288 THERMAL_TYPE_SI,
1289 THERMAL_TYPE_EMC2103_WITH_INTERNAL,
1290 THERMAL_TYPE_CI,
1291 THERMAL_TYPE_KV,
1292};
1293
1294enum amdgpu_dpm_auto_throttle_src {
1295 AMDGPU_DPM_AUTO_THROTTLE_SRC_THERMAL,
1296 AMDGPU_DPM_AUTO_THROTTLE_SRC_EXTERNAL
1297};
1298
1299enum amdgpu_dpm_event_src {
1300 AMDGPU_DPM_EVENT_SRC_ANALOG = 0,
1301 AMDGPU_DPM_EVENT_SRC_EXTERNAL = 1,
1302 AMDGPU_DPM_EVENT_SRC_DIGITAL = 2,
1303 AMDGPU_DPM_EVENT_SRC_ANALOG_OR_EXTERNAL = 3,
1304 AMDGPU_DPM_EVENT_SRC_DIGIAL_OR_EXTERNAL = 4
1305};
1306
1307#define AMDGPU_MAX_VCE_LEVELS 6
1308
1309enum amdgpu_vce_level {
1310 AMDGPU_VCE_LEVEL_AC_ALL = 0, /* AC, All cases */
1311 AMDGPU_VCE_LEVEL_DC_EE = 1, /* DC, entropy encoding */
1312 AMDGPU_VCE_LEVEL_DC_LL_LOW = 2, /* DC, low latency queue, res <= 720 */
1313 AMDGPU_VCE_LEVEL_DC_LL_HIGH = 3, /* DC, low latency queue, 1080 >= res > 720 */
1314 AMDGPU_VCE_LEVEL_DC_GP_LOW = 4, /* DC, general purpose queue, res <= 720 */
1315 AMDGPU_VCE_LEVEL_DC_GP_HIGH = 5, /* DC, general purpose queue, 1080 >= res > 720 */
1316};
1317
1318struct amdgpu_ps {
1319 u32 caps; /* vbios flags */
1320 u32 class; /* vbios flags */
1321 u32 class2; /* vbios flags */
1322 /* UVD clocks */
1323 u32 vclk;
1324 u32 dclk;
1325 /* VCE clocks */
1326 u32 evclk;
1327 u32 ecclk;
1328 bool vce_active;
1329 enum amdgpu_vce_level vce_level;
1330 /* asic priv */
1331 void *ps_priv;
1332};
1333
1334struct amdgpu_dpm_thermal {
1335 /* thermal interrupt work */
1336 struct work_struct work;
1337 /* low temperature threshold */
1338 int min_temp;
1339 /* high temperature threshold */
1340 int max_temp;
1341 /* was last interrupt low to high or high to low */
1342 bool high_to_low;
1343 /* interrupt source */
1344 struct amdgpu_irq_src irq;
1345};
1346
1347enum amdgpu_clk_action
1348{
1349 AMDGPU_SCLK_UP = 1,
1350 AMDGPU_SCLK_DOWN
1351};
1352
1353struct amdgpu_blacklist_clocks
1354{
1355 u32 sclk;
1356 u32 mclk;
1357 enum amdgpu_clk_action action;
1358};
1359
1360struct amdgpu_clock_and_voltage_limits {
1361 u32 sclk;
1362 u32 mclk;
1363 u16 vddc;
1364 u16 vddci;
1365};
1366
1367struct amdgpu_clock_array {
1368 u32 count;
1369 u32 *values;
1370};
1371
1372struct amdgpu_clock_voltage_dependency_entry {
1373 u32 clk;
1374 u16 v;
1375};
1376
1377struct amdgpu_clock_voltage_dependency_table {
1378 u32 count;
1379 struct amdgpu_clock_voltage_dependency_entry *entries;
1380};
1381
1382union amdgpu_cac_leakage_entry {
1383 struct {
1384 u16 vddc;
1385 u32 leakage;
1386 };
1387 struct {
1388 u16 vddc1;
1389 u16 vddc2;
1390 u16 vddc3;
1391 };
1392};
1393
1394struct amdgpu_cac_leakage_table {
1395 u32 count;
1396 union amdgpu_cac_leakage_entry *entries;
1397};
1398
1399struct amdgpu_phase_shedding_limits_entry {
1400 u16 voltage;
1401 u32 sclk;
1402 u32 mclk;
1403};
1404
1405struct amdgpu_phase_shedding_limits_table {
1406 u32 count;
1407 struct amdgpu_phase_shedding_limits_entry *entries;
1408};
1409
1410struct amdgpu_uvd_clock_voltage_dependency_entry {
1411 u32 vclk;
1412 u32 dclk;
1413 u16 v;
1414};
1415
1416struct amdgpu_uvd_clock_voltage_dependency_table {
1417 u8 count;
1418 struct amdgpu_uvd_clock_voltage_dependency_entry *entries;
1419};
1420
1421struct amdgpu_vce_clock_voltage_dependency_entry {
1422 u32 ecclk;
1423 u32 evclk;
1424 u16 v;
1425};
1426
1427struct amdgpu_vce_clock_voltage_dependency_table {
1428 u8 count;
1429 struct amdgpu_vce_clock_voltage_dependency_entry *entries;
1430};
1431
1432struct amdgpu_ppm_table {
1433 u8 ppm_design;
1434 u16 cpu_core_number;
1435 u32 platform_tdp;
1436 u32 small_ac_platform_tdp;
1437 u32 platform_tdc;
1438 u32 small_ac_platform_tdc;
1439 u32 apu_tdp;
1440 u32 dgpu_tdp;
1441 u32 dgpu_ulv_power;
1442 u32 tj_max;
1443};
1444
1445struct amdgpu_cac_tdp_table {
1446 u16 tdp;
1447 u16 configurable_tdp;
1448 u16 tdc;
1449 u16 battery_power_limit;
1450 u16 small_power_limit;
1451 u16 low_cac_leakage;
1452 u16 high_cac_leakage;
1453 u16 maximum_power_delivery_limit;
1454};
1455
1456struct amdgpu_dpm_dynamic_state {
1457 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_sclk;
1458 struct amdgpu_clock_voltage_dependency_table vddci_dependency_on_mclk;
1459 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_mclk;
1460 struct amdgpu_clock_voltage_dependency_table mvdd_dependency_on_mclk;
1461 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_dispclk;
1462 struct amdgpu_uvd_clock_voltage_dependency_table uvd_clock_voltage_dependency_table;
1463 struct amdgpu_vce_clock_voltage_dependency_table vce_clock_voltage_dependency_table;
1464 struct amdgpu_clock_voltage_dependency_table samu_clock_voltage_dependency_table;
1465 struct amdgpu_clock_voltage_dependency_table acp_clock_voltage_dependency_table;
1466 struct amdgpu_clock_voltage_dependency_table vddgfx_dependency_on_sclk;
1467 struct amdgpu_clock_array valid_sclk_values;
1468 struct amdgpu_clock_array valid_mclk_values;
1469 struct amdgpu_clock_and_voltage_limits max_clock_voltage_on_dc;
1470 struct amdgpu_clock_and_voltage_limits max_clock_voltage_on_ac;
1471 u32 mclk_sclk_ratio;
1472 u32 sclk_mclk_delta;
1473 u16 vddc_vddci_delta;
1474 u16 min_vddc_for_pcie_gen2;
1475 struct amdgpu_cac_leakage_table cac_leakage_table;
1476 struct amdgpu_phase_shedding_limits_table phase_shedding_limits_table;
1477 struct amdgpu_ppm_table *ppm_table;
1478 struct amdgpu_cac_tdp_table *cac_tdp_table;
1479};
1480
1481struct amdgpu_dpm_fan {
1482 u16 t_min;
1483 u16 t_med;
1484 u16 t_high;
1485 u16 pwm_min;
1486 u16 pwm_med;
1487 u16 pwm_high;
1488 u8 t_hyst;
1489 u32 cycle_delay;
1490 u16 t_max;
1491 u8 control_mode;
1492 u16 default_max_fan_pwm;
1493 u16 default_fan_output_sensitivity;
1494 u16 fan_output_sensitivity;
1495 bool ucode_fan_control;
1496};
1497
1498enum amdgpu_pcie_gen {
1499 AMDGPU_PCIE_GEN1 = 0,
1500 AMDGPU_PCIE_GEN2 = 1,
1501 AMDGPU_PCIE_GEN3 = 2,
1502 AMDGPU_PCIE_GEN_INVALID = 0xffff
1503};
1504
1505enum amdgpu_dpm_forced_level {
1506 AMDGPU_DPM_FORCED_LEVEL_AUTO = 0,
1507 AMDGPU_DPM_FORCED_LEVEL_LOW = 1,
1508 AMDGPU_DPM_FORCED_LEVEL_HIGH = 2,
Eric Huangf3898ea2015-12-11 16:24:34 -05001509 AMDGPU_DPM_FORCED_LEVEL_MANUAL = 3,
Alex Deucher97b2e202015-04-20 16:51:00 -04001510};
1511
1512struct amdgpu_vce_state {
1513 /* vce clocks */
1514 u32 evclk;
1515 u32 ecclk;
1516 /* gpu clocks */
1517 u32 sclk;
1518 u32 mclk;
1519 u8 clk_idx;
1520 u8 pstate;
1521};
1522
1523struct amdgpu_dpm_funcs {
1524 int (*get_temperature)(struct amdgpu_device *adev);
1525 int (*pre_set_power_state)(struct amdgpu_device *adev);
1526 int (*set_power_state)(struct amdgpu_device *adev);
1527 void (*post_set_power_state)(struct amdgpu_device *adev);
1528 void (*display_configuration_changed)(struct amdgpu_device *adev);
1529 u32 (*get_sclk)(struct amdgpu_device *adev, bool low);
1530 u32 (*get_mclk)(struct amdgpu_device *adev, bool low);
1531 void (*print_power_state)(struct amdgpu_device *adev, struct amdgpu_ps *ps);
1532 void (*debugfs_print_current_performance_level)(struct amdgpu_device *adev, struct seq_file *m);
1533 int (*force_performance_level)(struct amdgpu_device *adev, enum amdgpu_dpm_forced_level level);
1534 bool (*vblank_too_short)(struct amdgpu_device *adev);
1535 void (*powergate_uvd)(struct amdgpu_device *adev, bool gate);
Sonny Jiangb7a07762015-05-28 15:47:53 -04001536 void (*powergate_vce)(struct amdgpu_device *adev, bool gate);
Alex Deucher97b2e202015-04-20 16:51:00 -04001537 void (*enable_bapm)(struct amdgpu_device *adev, bool enable);
1538 void (*set_fan_control_mode)(struct amdgpu_device *adev, u32 mode);
1539 u32 (*get_fan_control_mode)(struct amdgpu_device *adev);
1540 int (*set_fan_speed_percent)(struct amdgpu_device *adev, u32 speed);
1541 int (*get_fan_speed_percent)(struct amdgpu_device *adev, u32 *speed);
1542};
1543
1544struct amdgpu_dpm {
1545 struct amdgpu_ps *ps;
1546 /* number of valid power states */
1547 int num_ps;
1548 /* current power state that is active */
1549 struct amdgpu_ps *current_ps;
1550 /* requested power state */
1551 struct amdgpu_ps *requested_ps;
1552 /* boot up power state */
1553 struct amdgpu_ps *boot_ps;
1554 /* default uvd power state */
1555 struct amdgpu_ps *uvd_ps;
1556 /* vce requirements */
1557 struct amdgpu_vce_state vce_states[AMDGPU_MAX_VCE_LEVELS];
1558 enum amdgpu_vce_level vce_level;
Rex Zhu3a2c7882015-08-25 15:57:43 +08001559 enum amd_pm_state_type state;
1560 enum amd_pm_state_type user_state;
Alex Deucher97b2e202015-04-20 16:51:00 -04001561 u32 platform_caps;
1562 u32 voltage_response_time;
1563 u32 backbias_response_time;
1564 void *priv;
1565 u32 new_active_crtcs;
1566 int new_active_crtc_count;
1567 u32 current_active_crtcs;
1568 int current_active_crtc_count;
1569 struct amdgpu_dpm_dynamic_state dyn_state;
1570 struct amdgpu_dpm_fan fan;
1571 u32 tdp_limit;
1572 u32 near_tdp_limit;
1573 u32 near_tdp_limit_adjusted;
1574 u32 sq_ramping_threshold;
1575 u32 cac_leakage;
1576 u16 tdp_od_limit;
1577 u32 tdp_adjustment;
1578 u16 load_line_slope;
1579 bool power_control;
1580 bool ac_power;
1581 /* special states active */
1582 bool thermal_active;
1583 bool uvd_active;
1584 bool vce_active;
1585 /* thermal handling */
1586 struct amdgpu_dpm_thermal thermal;
1587 /* forced levels */
1588 enum amdgpu_dpm_forced_level forced_level;
1589};
1590
1591struct amdgpu_pm {
1592 struct mutex mutex;
Alex Deucher97b2e202015-04-20 16:51:00 -04001593 u32 current_sclk;
1594 u32 current_mclk;
1595 u32 default_sclk;
1596 u32 default_mclk;
1597 struct amdgpu_i2c_chan *i2c_bus;
1598 /* internal thermal controller on rv6xx+ */
1599 enum amdgpu_int_thermal_type int_thermal_type;
1600 struct device *int_hwmon_dev;
1601 /* fan control parameters */
1602 bool no_fan;
1603 u8 fan_pulses_per_revolution;
1604 u8 fan_min_rpm;
1605 u8 fan_max_rpm;
1606 /* dpm */
1607 bool dpm_enabled;
Alex Deucherc86f5ebf2015-10-23 10:45:14 -04001608 bool sysfs_initialized;
Alex Deucher97b2e202015-04-20 16:51:00 -04001609 struct amdgpu_dpm dpm;
1610 const struct firmware *fw; /* SMC firmware */
1611 uint32_t fw_version;
1612 const struct amdgpu_dpm_funcs *funcs;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05001613 uint32_t pcie_gen_mask;
1614 uint32_t pcie_mlw_mask;
Rex Zhu7fb72a12015-11-19 13:35:30 +08001615 struct amd_pp_display_configuration pm_display_cfg;/* set by DAL */
Alex Deucher97b2e202015-04-20 16:51:00 -04001616};
1617
Alex Deucherd0dd7f02015-11-11 19:45:06 -05001618void amdgpu_get_pcie_info(struct amdgpu_device *adev);
1619
Alex Deucher97b2e202015-04-20 16:51:00 -04001620/*
1621 * UVD
1622 */
1623#define AMDGPU_MAX_UVD_HANDLES 10
1624#define AMDGPU_UVD_STACK_SIZE (1024*1024)
1625#define AMDGPU_UVD_HEAP_SIZE (1024*1024)
1626#define AMDGPU_UVD_FIRMWARE_OFFSET 256
1627
1628struct amdgpu_uvd {
1629 struct amdgpu_bo *vcpu_bo;
1630 void *cpu_addr;
1631 uint64_t gpu_addr;
Alex Deucher97b2e202015-04-20 16:51:00 -04001632 atomic_t handles[AMDGPU_MAX_UVD_HANDLES];
1633 struct drm_file *filp[AMDGPU_MAX_UVD_HANDLES];
1634 struct delayed_work idle_work;
1635 const struct firmware *fw; /* UVD firmware */
1636 struct amdgpu_ring ring;
1637 struct amdgpu_irq_src irq;
1638 bool address_64_bit;
Christian Königead833e2016-02-10 14:35:19 +01001639 struct amd_sched_entity entity;
Alex Deucher97b2e202015-04-20 16:51:00 -04001640};
1641
1642/*
1643 * VCE
1644 */
1645#define AMDGPU_MAX_VCE_HANDLES 16
Alex Deucher97b2e202015-04-20 16:51:00 -04001646#define AMDGPU_VCE_FIRMWARE_OFFSET 256
1647
Alex Deucher6a585772015-07-10 14:16:24 -04001648#define AMDGPU_VCE_HARVEST_VCE0 (1 << 0)
1649#define AMDGPU_VCE_HARVEST_VCE1 (1 << 1)
1650
Alex Deucher97b2e202015-04-20 16:51:00 -04001651struct amdgpu_vce {
1652 struct amdgpu_bo *vcpu_bo;
1653 uint64_t gpu_addr;
1654 unsigned fw_version;
1655 unsigned fb_version;
1656 atomic_t handles[AMDGPU_MAX_VCE_HANDLES];
1657 struct drm_file *filp[AMDGPU_MAX_VCE_HANDLES];
Christian Königf1689ec2015-06-11 20:56:18 +02001658 uint32_t img_size[AMDGPU_MAX_VCE_HANDLES];
Alex Deucher97b2e202015-04-20 16:51:00 -04001659 struct delayed_work idle_work;
1660 const struct firmware *fw; /* VCE firmware */
1661 struct amdgpu_ring ring[AMDGPU_MAX_VCE_RINGS];
1662 struct amdgpu_irq_src irq;
Alex Deucher6a585772015-07-10 14:16:24 -04001663 unsigned harvest_config;
Christian Königc5949892016-02-10 17:43:00 +01001664 struct amd_sched_entity entity;
Alex Deucher97b2e202015-04-20 16:51:00 -04001665};
1666
1667/*
1668 * SDMA
1669 */
Alex Deucherc113ea12015-10-08 16:30:37 -04001670struct amdgpu_sdma_instance {
Alex Deucher97b2e202015-04-20 16:51:00 -04001671 /* SDMA firmware */
1672 const struct firmware *fw;
1673 uint32_t fw_version;
Jammy Zhoucfa21042015-08-04 10:50:47 +08001674 uint32_t feature_version;
Alex Deucher97b2e202015-04-20 16:51:00 -04001675
1676 struct amdgpu_ring ring;
Jammy Zhou18111de2015-08-31 14:06:39 +08001677 bool burst_nop;
Alex Deucher97b2e202015-04-20 16:51:00 -04001678};
1679
Alex Deucherc113ea12015-10-08 16:30:37 -04001680struct amdgpu_sdma {
1681 struct amdgpu_sdma_instance instance[AMDGPU_MAX_SDMA_INSTANCES];
1682 struct amdgpu_irq_src trap_irq;
1683 struct amdgpu_irq_src illegal_inst_irq;
1684 int num_instances;
1685};
1686
Alex Deucher97b2e202015-04-20 16:51:00 -04001687/*
1688 * Firmware
1689 */
1690struct amdgpu_firmware {
1691 struct amdgpu_firmware_info ucode[AMDGPU_UCODE_ID_MAXIMUM];
1692 bool smu_load;
1693 struct amdgpu_bo *fw_buf;
1694 unsigned int fw_size;
1695};
1696
1697/*
1698 * Benchmarking
1699 */
1700void amdgpu_benchmark(struct amdgpu_device *adev, int test_number);
1701
1702
1703/*
1704 * Testing
1705 */
1706void amdgpu_test_moves(struct amdgpu_device *adev);
1707void amdgpu_test_ring_sync(struct amdgpu_device *adev,
1708 struct amdgpu_ring *cpA,
1709 struct amdgpu_ring *cpB);
1710void amdgpu_test_syncing(struct amdgpu_device *adev);
1711
1712/*
1713 * MMU Notifier
1714 */
1715#if defined(CONFIG_MMU_NOTIFIER)
1716int amdgpu_mn_register(struct amdgpu_bo *bo, unsigned long addr);
1717void amdgpu_mn_unregister(struct amdgpu_bo *bo);
1718#else
Harry Wentland1d1106b2015-07-15 07:10:41 -04001719static inline int amdgpu_mn_register(struct amdgpu_bo *bo, unsigned long addr)
Alex Deucher97b2e202015-04-20 16:51:00 -04001720{
1721 return -ENODEV;
1722}
Harry Wentland1d1106b2015-07-15 07:10:41 -04001723static inline void amdgpu_mn_unregister(struct amdgpu_bo *bo) {}
Alex Deucher97b2e202015-04-20 16:51:00 -04001724#endif
1725
1726/*
1727 * Debugfs
1728 */
1729struct amdgpu_debugfs {
1730 struct drm_info_list *files;
1731 unsigned num_files;
1732};
1733
1734int amdgpu_debugfs_add_files(struct amdgpu_device *adev,
1735 struct drm_info_list *files,
1736 unsigned nfiles);
1737int amdgpu_debugfs_fence_init(struct amdgpu_device *adev);
1738
1739#if defined(CONFIG_DEBUG_FS)
1740int amdgpu_debugfs_init(struct drm_minor *minor);
1741void amdgpu_debugfs_cleanup(struct drm_minor *minor);
1742#endif
1743
1744/*
1745 * amdgpu smumgr functions
1746 */
1747struct amdgpu_smumgr_funcs {
1748 int (*check_fw_load_finish)(struct amdgpu_device *adev, uint32_t fwtype);
1749 int (*request_smu_load_fw)(struct amdgpu_device *adev);
1750 int (*request_smu_specific_fw)(struct amdgpu_device *adev, uint32_t fwtype);
1751};
1752
1753/*
1754 * amdgpu smumgr
1755 */
1756struct amdgpu_smumgr {
1757 struct amdgpu_bo *toc_buf;
1758 struct amdgpu_bo *smu_buf;
1759 /* asic priv smu data */
1760 void *priv;
1761 spinlock_t smu_lock;
1762 /* smumgr functions */
1763 const struct amdgpu_smumgr_funcs *smumgr_funcs;
1764 /* ucode loading complete flag */
1765 uint32_t fw_flags;
1766};
1767
1768/*
1769 * ASIC specific register table accessible by UMD
1770 */
1771struct amdgpu_allowed_register_entry {
1772 uint32_t reg_offset;
1773 bool untouched;
1774 bool grbm_indexed;
1775};
1776
1777struct amdgpu_cu_info {
1778 uint32_t number; /* total active CU number */
1779 uint32_t ao_cu_mask;
1780 uint32_t bitmap[4][4];
1781};
1782
1783
1784/*
1785 * ASIC specific functions.
1786 */
1787struct amdgpu_asic_funcs {
1788 bool (*read_disabled_bios)(struct amdgpu_device *adev);
Alex Deucher7946b872015-11-24 10:14:28 -05001789 bool (*read_bios_from_rom)(struct amdgpu_device *adev,
1790 u8 *bios, u32 length_bytes);
Alex Deucher97b2e202015-04-20 16:51:00 -04001791 int (*read_register)(struct amdgpu_device *adev, u32 se_num,
1792 u32 sh_num, u32 reg_offset, u32 *value);
1793 void (*set_vga_state)(struct amdgpu_device *adev, bool state);
1794 int (*reset)(struct amdgpu_device *adev);
1795 /* wait for mc_idle */
1796 int (*wait_for_mc_idle)(struct amdgpu_device *adev);
1797 /* get the reference clock */
1798 u32 (*get_xclk)(struct amdgpu_device *adev);
1799 /* get the gpu clock counter */
1800 uint64_t (*get_gpu_clock_counter)(struct amdgpu_device *adev);
1801 int (*get_cu_info)(struct amdgpu_device *adev, struct amdgpu_cu_info *info);
1802 /* MM block clocks */
1803 int (*set_uvd_clocks)(struct amdgpu_device *adev, u32 vclk, u32 dclk);
1804 int (*set_vce_clocks)(struct amdgpu_device *adev, u32 evclk, u32 ecclk);
1805};
1806
1807/*
1808 * IOCTL.
1809 */
1810int amdgpu_gem_create_ioctl(struct drm_device *dev, void *data,
1811 struct drm_file *filp);
1812int amdgpu_bo_list_ioctl(struct drm_device *dev, void *data,
1813 struct drm_file *filp);
1814
1815int amdgpu_gem_info_ioctl(struct drm_device *dev, void *data,
1816 struct drm_file *filp);
1817int amdgpu_gem_userptr_ioctl(struct drm_device *dev, void *data,
1818 struct drm_file *filp);
1819int amdgpu_gem_mmap_ioctl(struct drm_device *dev, void *data,
1820 struct drm_file *filp);
1821int amdgpu_gem_wait_idle_ioctl(struct drm_device *dev, void *data,
1822 struct drm_file *filp);
1823int amdgpu_gem_va_ioctl(struct drm_device *dev, void *data,
1824 struct drm_file *filp);
1825int amdgpu_gem_op_ioctl(struct drm_device *dev, void *data,
1826 struct drm_file *filp);
1827int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
1828int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
1829
1830int amdgpu_gem_metadata_ioctl(struct drm_device *dev, void *data,
1831 struct drm_file *filp);
1832
1833/* VRAM scratch page for HDP bug, default vram page */
1834struct amdgpu_vram_scratch {
1835 struct amdgpu_bo *robj;
1836 volatile uint32_t *ptr;
1837 u64 gpu_addr;
1838};
1839
1840/*
1841 * ACPI
1842 */
1843struct amdgpu_atif_notification_cfg {
1844 bool enabled;
1845 int command_code;
1846};
1847
1848struct amdgpu_atif_notifications {
1849 bool display_switch;
1850 bool expansion_mode_change;
1851 bool thermal_state;
1852 bool forced_power_state;
1853 bool system_power_state;
1854 bool display_conf_change;
1855 bool px_gfx_switch;
1856 bool brightness_change;
1857 bool dgpu_display_event;
1858};
1859
1860struct amdgpu_atif_functions {
1861 bool system_params;
1862 bool sbios_requests;
1863 bool select_active_disp;
1864 bool lid_state;
1865 bool get_tv_standard;
1866 bool set_tv_standard;
1867 bool get_panel_expansion_mode;
1868 bool set_panel_expansion_mode;
1869 bool temperature_change;
1870 bool graphics_device_types;
1871};
1872
1873struct amdgpu_atif {
1874 struct amdgpu_atif_notifications notifications;
1875 struct amdgpu_atif_functions functions;
1876 struct amdgpu_atif_notification_cfg notification_cfg;
1877 struct amdgpu_encoder *encoder_for_bl;
1878};
1879
1880struct amdgpu_atcs_functions {
1881 bool get_ext_state;
1882 bool pcie_perf_req;
1883 bool pcie_dev_rdy;
1884 bool pcie_bus_width;
1885};
1886
1887struct amdgpu_atcs {
1888 struct amdgpu_atcs_functions functions;
1889};
1890
Alex Deucher97b2e202015-04-20 16:51:00 -04001891/*
Chunming Zhoud03846a2015-07-28 14:20:03 -04001892 * CGS
1893 */
1894void *amdgpu_cgs_create_device(struct amdgpu_device *adev);
1895void amdgpu_cgs_destroy_device(void *cgs_device);
1896
1897
1898/*
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -04001899 * CGS
1900 */
1901void *amdgpu_cgs_create_device(struct amdgpu_device *adev);
1902void amdgpu_cgs_destroy_device(void *cgs_device);
1903
1904
Alex Deucher7e471e62016-02-01 11:13:04 -05001905/* GPU virtualization */
1906struct amdgpu_virtualization {
1907 bool supports_sr_iov;
1908};
1909
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -04001910/*
Alex Deucher97b2e202015-04-20 16:51:00 -04001911 * Core structure, functions and helpers.
1912 */
1913typedef uint32_t (*amdgpu_rreg_t)(struct amdgpu_device*, uint32_t);
1914typedef void (*amdgpu_wreg_t)(struct amdgpu_device*, uint32_t, uint32_t);
1915
1916typedef uint32_t (*amdgpu_block_rreg_t)(struct amdgpu_device*, uint32_t, uint32_t);
1917typedef void (*amdgpu_block_wreg_t)(struct amdgpu_device*, uint32_t, uint32_t, uint32_t);
1918
Alex Deucher8faf0e02015-07-28 11:50:31 -04001919struct amdgpu_ip_block_status {
1920 bool valid;
1921 bool sw;
1922 bool hw;
1923};
1924
Alex Deucher97b2e202015-04-20 16:51:00 -04001925struct amdgpu_device {
1926 struct device *dev;
1927 struct drm_device *ddev;
1928 struct pci_dev *pdev;
Alex Deucher97b2e202015-04-20 16:51:00 -04001929
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -04001930#ifdef CONFIG_DRM_AMD_ACP
1931 struct amdgpu_acp acp;
1932#endif
1933
Alex Deucher97b2e202015-04-20 16:51:00 -04001934 /* ASIC */
Jammy Zhou2f7d10b2015-07-22 11:29:01 +08001935 enum amd_asic_type asic_type;
Alex Deucher97b2e202015-04-20 16:51:00 -04001936 uint32_t family;
1937 uint32_t rev_id;
1938 uint32_t external_rev_id;
1939 unsigned long flags;
1940 int usec_timeout;
1941 const struct amdgpu_asic_funcs *asic_funcs;
1942 bool shutdown;
1943 bool suspend;
1944 bool need_dma32;
1945 bool accel_working;
Alex Deucher97b2e202015-04-20 16:51:00 -04001946 struct work_struct reset_work;
1947 struct notifier_block acpi_nb;
1948 struct amdgpu_i2c_chan *i2c_bus[AMDGPU_MAX_I2C_BUS];
1949 struct amdgpu_debugfs debugfs[AMDGPU_DEBUGFS_MAX_COMPONENTS];
1950 unsigned debugfs_count;
1951#if defined(CONFIG_DEBUG_FS)
1952 struct dentry *debugfs_regs;
1953#endif
1954 struct amdgpu_atif atif;
1955 struct amdgpu_atcs atcs;
1956 struct mutex srbm_mutex;
1957 /* GRBM index mutex. Protects concurrent access to GRBM index */
1958 struct mutex grbm_idx_mutex;
1959 struct dev_pm_domain vga_pm_domain;
1960 bool have_disp_power_ref;
1961
1962 /* BIOS */
1963 uint8_t *bios;
1964 bool is_atom_bios;
1965 uint16_t bios_header_start;
1966 struct amdgpu_bo *stollen_vga_memory;
1967 uint32_t bios_scratch[AMDGPU_BIOS_NUM_SCRATCH];
1968
1969 /* Register/doorbell mmio */
1970 resource_size_t rmmio_base;
1971 resource_size_t rmmio_size;
1972 void __iomem *rmmio;
1973 /* protects concurrent MM_INDEX/DATA based register access */
1974 spinlock_t mmio_idx_lock;
1975 /* protects concurrent SMC based register access */
1976 spinlock_t smc_idx_lock;
1977 amdgpu_rreg_t smc_rreg;
1978 amdgpu_wreg_t smc_wreg;
1979 /* protects concurrent PCIE register access */
1980 spinlock_t pcie_idx_lock;
1981 amdgpu_rreg_t pcie_rreg;
1982 amdgpu_wreg_t pcie_wreg;
1983 /* protects concurrent UVD register access */
1984 spinlock_t uvd_ctx_idx_lock;
1985 amdgpu_rreg_t uvd_ctx_rreg;
1986 amdgpu_wreg_t uvd_ctx_wreg;
1987 /* protects concurrent DIDT register access */
1988 spinlock_t didt_idx_lock;
1989 amdgpu_rreg_t didt_rreg;
1990 amdgpu_wreg_t didt_wreg;
1991 /* protects concurrent ENDPOINT (audio) register access */
1992 spinlock_t audio_endpt_idx_lock;
1993 amdgpu_block_rreg_t audio_endpt_rreg;
1994 amdgpu_block_wreg_t audio_endpt_wreg;
1995 void __iomem *rio_mem;
1996 resource_size_t rio_mem_size;
1997 struct amdgpu_doorbell doorbell;
1998
1999 /* clock/pll info */
2000 struct amdgpu_clock clock;
2001
2002 /* MC */
2003 struct amdgpu_mc mc;
2004 struct amdgpu_gart gart;
2005 struct amdgpu_dummy_page dummy_page;
2006 struct amdgpu_vm_manager vm_manager;
2007
2008 /* memory management */
2009 struct amdgpu_mman mman;
Alex Deucher97b2e202015-04-20 16:51:00 -04002010 struct amdgpu_vram_scratch vram_scratch;
2011 struct amdgpu_wb wb;
2012 atomic64_t vram_usage;
2013 atomic64_t vram_vis_usage;
2014 atomic64_t gtt_usage;
2015 atomic64_t num_bytes_moved;
Marek Olšákd94aed52015-05-05 21:13:49 +02002016 atomic_t gpu_reset_counter;
Alex Deucher97b2e202015-04-20 16:51:00 -04002017
2018 /* display */
2019 struct amdgpu_mode_info mode_info;
2020 struct work_struct hotplug_work;
2021 struct amdgpu_irq_src crtc_irq;
2022 struct amdgpu_irq_src pageflip_irq;
2023 struct amdgpu_irq_src hpd_irq;
2024
2025 /* rings */
Alex Deucher97b2e202015-04-20 16:51:00 -04002026 unsigned fence_context;
Alex Deucher97b2e202015-04-20 16:51:00 -04002027 unsigned num_rings;
2028 struct amdgpu_ring *rings[AMDGPU_MAX_RINGS];
2029 bool ib_pool_ready;
2030 struct amdgpu_sa_manager ring_tmp_bo;
2031
2032 /* interrupts */
2033 struct amdgpu_irq irq;
2034
Alex Deucher1f7371b2015-12-02 17:46:21 -05002035 /* powerplay */
2036 struct amd_powerplay powerplay;
Jammy Zhoue61710c2015-11-10 18:31:08 -05002037 bool pp_enabled;
Eric Huangf3898ea2015-12-11 16:24:34 -05002038 bool pp_force_state_enabled;
Alex Deucher1f7371b2015-12-02 17:46:21 -05002039
Alex Deucher97b2e202015-04-20 16:51:00 -04002040 /* dpm */
2041 struct amdgpu_pm pm;
2042 u32 cg_flags;
2043 u32 pg_flags;
2044
2045 /* amdgpu smumgr */
2046 struct amdgpu_smumgr smu;
2047
2048 /* gfx */
2049 struct amdgpu_gfx gfx;
2050
2051 /* sdma */
Alex Deucherc113ea12015-10-08 16:30:37 -04002052 struct amdgpu_sdma sdma;
Alex Deucher97b2e202015-04-20 16:51:00 -04002053
2054 /* uvd */
Alex Deucher97b2e202015-04-20 16:51:00 -04002055 struct amdgpu_uvd uvd;
2056
2057 /* vce */
2058 struct amdgpu_vce vce;
2059
2060 /* firmwares */
2061 struct amdgpu_firmware firmware;
2062
2063 /* GDS */
2064 struct amdgpu_gds gds;
2065
2066 const struct amdgpu_ip_block_version *ip_blocks;
2067 int num_ip_blocks;
Alex Deucher8faf0e02015-07-28 11:50:31 -04002068 struct amdgpu_ip_block_status *ip_block_status;
Alex Deucher97b2e202015-04-20 16:51:00 -04002069 struct mutex mn_lock;
2070 DECLARE_HASHTABLE(mn_hash, 7);
2071
2072 /* tracking pinned memory */
2073 u64 vram_pin_size;
2074 u64 gart_pin_size;
Oded Gabbay130e0372015-06-12 21:35:14 +03002075
2076 /* amdkfd interface */
2077 struct kfd_dev *kfd;
Chunming Zhou23ca0e42015-07-06 13:42:58 +08002078
Alex Deucher7e471e62016-02-01 11:13:04 -05002079 struct amdgpu_virtualization virtualization;
Alex Deucher97b2e202015-04-20 16:51:00 -04002080};
2081
2082bool amdgpu_device_is_px(struct drm_device *dev);
2083int amdgpu_device_init(struct amdgpu_device *adev,
2084 struct drm_device *ddev,
2085 struct pci_dev *pdev,
2086 uint32_t flags);
2087void amdgpu_device_fini(struct amdgpu_device *adev);
2088int amdgpu_gpu_wait_for_idle(struct amdgpu_device *adev);
2089
2090uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg,
2091 bool always_indirect);
2092void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
2093 bool always_indirect);
2094u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg);
2095void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v);
2096
2097u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index);
2098void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v);
2099
2100/*
Alex Deucher97b2e202015-04-20 16:51:00 -04002101 * Registers read & write functions.
2102 */
2103#define RREG32(reg) amdgpu_mm_rreg(adev, (reg), false)
2104#define RREG32_IDX(reg) amdgpu_mm_rreg(adev, (reg), true)
2105#define DREG32(reg) printk(KERN_INFO "REGISTER: " #reg " : 0x%08X\n", amdgpu_mm_rreg(adev, (reg), false))
2106#define WREG32(reg, v) amdgpu_mm_wreg(adev, (reg), (v), false)
2107#define WREG32_IDX(reg, v) amdgpu_mm_wreg(adev, (reg), (v), true)
2108#define REG_SET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
2109#define REG_GET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
2110#define RREG32_PCIE(reg) adev->pcie_rreg(adev, (reg))
2111#define WREG32_PCIE(reg, v) adev->pcie_wreg(adev, (reg), (v))
2112#define RREG32_SMC(reg) adev->smc_rreg(adev, (reg))
2113#define WREG32_SMC(reg, v) adev->smc_wreg(adev, (reg), (v))
2114#define RREG32_UVD_CTX(reg) adev->uvd_ctx_rreg(adev, (reg))
2115#define WREG32_UVD_CTX(reg, v) adev->uvd_ctx_wreg(adev, (reg), (v))
2116#define RREG32_DIDT(reg) adev->didt_rreg(adev, (reg))
2117#define WREG32_DIDT(reg, v) adev->didt_wreg(adev, (reg), (v))
2118#define RREG32_AUDIO_ENDPT(block, reg) adev->audio_endpt_rreg(adev, (block), (reg))
2119#define WREG32_AUDIO_ENDPT(block, reg, v) adev->audio_endpt_wreg(adev, (block), (reg), (v))
2120#define WREG32_P(reg, val, mask) \
2121 do { \
2122 uint32_t tmp_ = RREG32(reg); \
2123 tmp_ &= (mask); \
2124 tmp_ |= ((val) & ~(mask)); \
2125 WREG32(reg, tmp_); \
2126 } while (0)
2127#define WREG32_AND(reg, and) WREG32_P(reg, 0, and)
2128#define WREG32_OR(reg, or) WREG32_P(reg, or, ~(or))
2129#define WREG32_PLL_P(reg, val, mask) \
2130 do { \
2131 uint32_t tmp_ = RREG32_PLL(reg); \
2132 tmp_ &= (mask); \
2133 tmp_ |= ((val) & ~(mask)); \
2134 WREG32_PLL(reg, tmp_); \
2135 } while (0)
2136#define DREG32_SYS(sqf, adev, reg) seq_printf((sqf), #reg " : 0x%08X\n", amdgpu_mm_rreg((adev), (reg), false))
2137#define RREG32_IO(reg) amdgpu_io_rreg(adev, (reg))
2138#define WREG32_IO(reg, v) amdgpu_io_wreg(adev, (reg), (v))
2139
2140#define RDOORBELL32(index) amdgpu_mm_rdoorbell(adev, (index))
2141#define WDOORBELL32(index, v) amdgpu_mm_wdoorbell(adev, (index), (v))
2142
2143#define REG_FIELD_SHIFT(reg, field) reg##__##field##__SHIFT
2144#define REG_FIELD_MASK(reg, field) reg##__##field##_MASK
2145
2146#define REG_SET_FIELD(orig_val, reg, field, field_val) \
2147 (((orig_val) & ~REG_FIELD_MASK(reg, field)) | \
2148 (REG_FIELD_MASK(reg, field) & ((field_val) << REG_FIELD_SHIFT(reg, field))))
2149
2150#define REG_GET_FIELD(value, reg, field) \
2151 (((value) & REG_FIELD_MASK(reg, field)) >> REG_FIELD_SHIFT(reg, field))
2152
2153/*
2154 * BIOS helpers.
2155 */
2156#define RBIOS8(i) (adev->bios[i])
2157#define RBIOS16(i) (RBIOS8(i) | (RBIOS8((i)+1) << 8))
2158#define RBIOS32(i) ((RBIOS16(i)) | (RBIOS16((i)+2) << 16))
2159
2160/*
2161 * RING helpers.
2162 */
2163static inline void amdgpu_ring_write(struct amdgpu_ring *ring, uint32_t v)
2164{
2165 if (ring->count_dw <= 0)
Jammy Zhou86c2b792015-05-13 22:52:42 +08002166 DRM_ERROR("amdgpu: writing more dwords to the ring than expected!\n");
Alex Deucher97b2e202015-04-20 16:51:00 -04002167 ring->ring[ring->wptr++] = v;
2168 ring->wptr &= ring->ptr_mask;
2169 ring->count_dw--;
Alex Deucher97b2e202015-04-20 16:51:00 -04002170}
2171
Alex Deucherc113ea12015-10-08 16:30:37 -04002172static inline struct amdgpu_sdma_instance *
2173amdgpu_get_sdma_instance(struct amdgpu_ring *ring)
Jammy Zhou4b2f7e22015-09-01 12:56:17 +08002174{
2175 struct amdgpu_device *adev = ring->adev;
2176 int i;
2177
Alex Deucherc113ea12015-10-08 16:30:37 -04002178 for (i = 0; i < adev->sdma.num_instances; i++)
2179 if (&adev->sdma.instance[i].ring == ring)
Jammy Zhou4b2f7e22015-09-01 12:56:17 +08002180 break;
2181
2182 if (i < AMDGPU_MAX_SDMA_INSTANCES)
Alex Deucherc113ea12015-10-08 16:30:37 -04002183 return &adev->sdma.instance[i];
Jammy Zhou4b2f7e22015-09-01 12:56:17 +08002184 else
2185 return NULL;
2186}
2187
Alex Deucher97b2e202015-04-20 16:51:00 -04002188/*
2189 * ASICs macro.
2190 */
2191#define amdgpu_asic_set_vga_state(adev, state) (adev)->asic_funcs->set_vga_state((adev), (state))
2192#define amdgpu_asic_reset(adev) (adev)->asic_funcs->reset((adev))
2193#define amdgpu_asic_wait_for_mc_idle(adev) (adev)->asic_funcs->wait_for_mc_idle((adev))
2194#define amdgpu_asic_get_xclk(adev) (adev)->asic_funcs->get_xclk((adev))
2195#define amdgpu_asic_set_uvd_clocks(adev, v, d) (adev)->asic_funcs->set_uvd_clocks((adev), (v), (d))
2196#define amdgpu_asic_set_vce_clocks(adev, ev, ec) (adev)->asic_funcs->set_vce_clocks((adev), (ev), (ec))
2197#define amdgpu_asic_get_gpu_clock_counter(adev) (adev)->asic_funcs->get_gpu_clock_counter((adev))
2198#define amdgpu_asic_read_disabled_bios(adev) (adev)->asic_funcs->read_disabled_bios((adev))
Alex Deucher7946b872015-11-24 10:14:28 -05002199#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 -04002200#define amdgpu_asic_read_register(adev, se, sh, offset, v)((adev)->asic_funcs->read_register((adev), (se), (sh), (offset), (v)))
2201#define amdgpu_asic_get_cu_info(adev, info) (adev)->asic_funcs->get_cu_info((adev), (info))
2202#define amdgpu_gart_flush_gpu_tlb(adev, vmid) (adev)->gart.gart_funcs->flush_gpu_tlb((adev), (vmid))
2203#define amdgpu_gart_set_pte_pde(adev, pt, idx, addr, flags) (adev)->gart.gart_funcs->set_pte_pde((adev), (pt), (idx), (addr), (flags))
2204#define amdgpu_vm_copy_pte(adev, ib, pe, src, count) ((adev)->vm_manager.vm_pte_funcs->copy_pte((ib), (pe), (src), (count)))
Christian Königb07c9d22015-11-30 13:26:07 +01002205#define amdgpu_vm_write_pte(adev, ib, pa, pe, addr, count, incr, flags) ((adev)->vm_manager.vm_pte_funcs->write_pte((ib), (pa), (pe), (addr), (count), (incr), (flags)))
Alex Deucher97b2e202015-04-20 16:51:00 -04002206#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 -04002207#define amdgpu_ring_parse_cs(r, p, ib) ((r)->funcs->parse_cs((p), (ib)))
2208#define amdgpu_ring_test_ring(r) (r)->funcs->test_ring((r))
2209#define amdgpu_ring_test_ib(r) (r)->funcs->test_ib((r))
Alex Deucher97b2e202015-04-20 16:51:00 -04002210#define amdgpu_ring_get_rptr(r) (r)->funcs->get_rptr((r))
2211#define amdgpu_ring_get_wptr(r) (r)->funcs->get_wptr((r))
2212#define amdgpu_ring_set_wptr(r) (r)->funcs->set_wptr((r))
2213#define amdgpu_ring_emit_ib(r, ib) (r)->funcs->emit_ib((r), (ib))
Christian Königb8c7b392016-03-01 15:42:52 +01002214#define amdgpu_ring_emit_pipeline_sync(r) (r)->funcs->emit_pipeline_sync((r))
Alex Deucher97b2e202015-04-20 16:51:00 -04002215#define amdgpu_ring_emit_vm_flush(r, vmid, addr) (r)->funcs->emit_vm_flush((r), (vmid), (addr))
Chunming Zhou890ee232015-06-01 14:35:03 +08002216#define amdgpu_ring_emit_fence(r, addr, seq, flags) (r)->funcs->emit_fence((r), (addr), (seq), (flags))
Alex Deucher97b2e202015-04-20 16:51:00 -04002217#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 +02002218#define amdgpu_ring_emit_hdp_flush(r) (r)->funcs->emit_hdp_flush((r))
Chunming Zhou11afbde2016-03-03 11:38:48 +08002219#define amdgpu_ring_emit_hdp_invalidate(r) (r)->funcs->emit_hdp_invalidate((r))
Christian König9e5d53092016-01-31 12:20:55 +01002220#define amdgpu_ring_pad_ib(r, ib) ((r)->funcs->pad_ib((r), (ib)))
Alex Deucher97b2e202015-04-20 16:51:00 -04002221#define amdgpu_ih_get_wptr(adev) (adev)->irq.ih_funcs->get_wptr((adev))
2222#define amdgpu_ih_decode_iv(adev, iv) (adev)->irq.ih_funcs->decode_iv((adev), (iv))
2223#define amdgpu_ih_set_rptr(adev) (adev)->irq.ih_funcs->set_rptr((adev))
2224#define amdgpu_display_set_vga_render_state(adev, r) (adev)->mode_info.funcs->set_vga_render_state((adev), (r))
2225#define amdgpu_display_vblank_get_counter(adev, crtc) (adev)->mode_info.funcs->vblank_get_counter((adev), (crtc))
2226#define amdgpu_display_vblank_wait(adev, crtc) (adev)->mode_info.funcs->vblank_wait((adev), (crtc))
2227#define amdgpu_display_is_display_hung(adev) (adev)->mode_info.funcs->is_display_hung((adev))
2228#define amdgpu_display_backlight_set_level(adev, e, l) (adev)->mode_info.funcs->backlight_set_level((e), (l))
2229#define amdgpu_display_backlight_get_level(adev, e) (adev)->mode_info.funcs->backlight_get_level((e))
2230#define amdgpu_display_hpd_sense(adev, h) (adev)->mode_info.funcs->hpd_sense((adev), (h))
2231#define amdgpu_display_hpd_set_polarity(adev, h) (adev)->mode_info.funcs->hpd_set_polarity((adev), (h))
2232#define amdgpu_display_hpd_get_gpio_reg(adev) (adev)->mode_info.funcs->hpd_get_gpio_reg((adev))
2233#define amdgpu_display_bandwidth_update(adev) (adev)->mode_info.funcs->bandwidth_update((adev))
2234#define amdgpu_display_page_flip(adev, crtc, base) (adev)->mode_info.funcs->page_flip((adev), (crtc), (base))
2235#define amdgpu_display_page_flip_get_scanoutpos(adev, crtc, vbl, pos) (adev)->mode_info.funcs->page_flip_get_scanoutpos((adev), (crtc), (vbl), (pos))
2236#define amdgpu_display_add_encoder(adev, e, s, c) (adev)->mode_info.funcs->add_encoder((adev), (e), (s), (c))
2237#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))
2238#define amdgpu_display_stop_mc_access(adev, s) (adev)->mode_info.funcs->stop_mc_access((adev), (s))
2239#define amdgpu_display_resume_mc_access(adev, s) (adev)->mode_info.funcs->resume_mc_access((adev), (s))
Chunming Zhouc7ae72c2015-08-25 17:23:45 +08002240#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 +08002241#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 -04002242#define amdgpu_dpm_pre_set_power_state(adev) (adev)->pm.funcs->pre_set_power_state((adev))
2243#define amdgpu_dpm_set_power_state(adev) (adev)->pm.funcs->set_power_state((adev))
2244#define amdgpu_dpm_post_set_power_state(adev) (adev)->pm.funcs->post_set_power_state((adev))
2245#define amdgpu_dpm_display_configuration_changed(adev) (adev)->pm.funcs->display_configuration_changed((adev))
Alex Deucher97b2e202015-04-20 16:51:00 -04002246#define amdgpu_dpm_print_power_state(adev, ps) (adev)->pm.funcs->print_power_state((adev), (ps))
Alex Deucher97b2e202015-04-20 16:51:00 -04002247#define amdgpu_dpm_vblank_too_short(adev) (adev)->pm.funcs->vblank_too_short((adev))
Alex Deucher97b2e202015-04-20 16:51:00 -04002248#define amdgpu_dpm_enable_bapm(adev, e) (adev)->pm.funcs->enable_bapm((adev), (e))
Rex Zhu3af76f22015-10-15 17:23:43 +08002249
2250#define amdgpu_dpm_get_temperature(adev) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002251 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002252 (adev)->powerplay.pp_funcs->get_temperature((adev)->powerplay.pp_handle) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002253 (adev)->pm.funcs->get_temperature((adev)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002254
2255#define amdgpu_dpm_set_fan_control_mode(adev, m) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002256 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002257 (adev)->powerplay.pp_funcs->set_fan_control_mode((adev)->powerplay.pp_handle, (m)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002258 (adev)->pm.funcs->set_fan_control_mode((adev), (m)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002259
2260#define amdgpu_dpm_get_fan_control_mode(adev) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002261 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002262 (adev)->powerplay.pp_funcs->get_fan_control_mode((adev)->powerplay.pp_handle) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002263 (adev)->pm.funcs->get_fan_control_mode((adev)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002264
2265#define amdgpu_dpm_set_fan_speed_percent(adev, s) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002266 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002267 (adev)->powerplay.pp_funcs->set_fan_speed_percent((adev)->powerplay.pp_handle, (s)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002268 (adev)->pm.funcs->set_fan_speed_percent((adev), (s)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002269
2270#define amdgpu_dpm_get_fan_speed_percent(adev, s) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002271 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002272 (adev)->powerplay.pp_funcs->get_fan_speed_percent((adev)->powerplay.pp_handle, (s)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002273 (adev)->pm.funcs->get_fan_speed_percent((adev), (s)))
Alex Deucher97b2e202015-04-20 16:51:00 -04002274
Rex Zhu1b5708f2015-11-10 18:25:24 -05002275#define amdgpu_dpm_get_sclk(adev, l) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002276 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002277 (adev)->powerplay.pp_funcs->get_sclk((adev)->powerplay.pp_handle, (l)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002278 (adev)->pm.funcs->get_sclk((adev), (l)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002279
2280#define amdgpu_dpm_get_mclk(adev, l) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002281 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002282 (adev)->powerplay.pp_funcs->get_mclk((adev)->powerplay.pp_handle, (l)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002283 (adev)->pm.funcs->get_mclk((adev), (l)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002284
2285
2286#define amdgpu_dpm_force_performance_level(adev, l) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002287 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002288 (adev)->powerplay.pp_funcs->force_performance_level((adev)->powerplay.pp_handle, (l)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002289 (adev)->pm.funcs->force_performance_level((adev), (l)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002290
2291#define amdgpu_dpm_powergate_uvd(adev, g) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002292 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002293 (adev)->powerplay.pp_funcs->powergate_uvd((adev)->powerplay.pp_handle, (g)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002294 (adev)->pm.funcs->powergate_uvd((adev), (g)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002295
2296#define amdgpu_dpm_powergate_vce(adev, g) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002297 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002298 (adev)->powerplay.pp_funcs->powergate_vce((adev)->powerplay.pp_handle, (g)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002299 (adev)->pm.funcs->powergate_vce((adev), (g)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002300
2301#define amdgpu_dpm_debugfs_print_current_performance_level(adev, m) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002302 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002303 (adev)->powerplay.pp_funcs->print_current_performance_level((adev)->powerplay.pp_handle, (m)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002304 (adev)->pm.funcs->debugfs_print_current_performance_level((adev), (m)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002305
2306#define amdgpu_dpm_get_current_power_state(adev) \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002307 (adev)->powerplay.pp_funcs->get_current_power_state((adev)->powerplay.pp_handle)
Rex Zhu1b5708f2015-11-10 18:25:24 -05002308
2309#define amdgpu_dpm_get_performance_level(adev) \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002310 (adev)->powerplay.pp_funcs->get_performance_level((adev)->powerplay.pp_handle)
Rex Zhu1b5708f2015-11-10 18:25:24 -05002311
Eric Huangf3898ea2015-12-11 16:24:34 -05002312#define amdgpu_dpm_get_pp_num_states(adev, data) \
2313 (adev)->powerplay.pp_funcs->get_pp_num_states((adev)->powerplay.pp_handle, data)
2314
2315#define amdgpu_dpm_get_pp_table(adev, table) \
2316 (adev)->powerplay.pp_funcs->get_pp_table((adev)->powerplay.pp_handle, table)
2317
2318#define amdgpu_dpm_set_pp_table(adev, buf, size) \
2319 (adev)->powerplay.pp_funcs->set_pp_table((adev)->powerplay.pp_handle, buf, size)
2320
2321#define amdgpu_dpm_print_clock_levels(adev, type, buf) \
2322 (adev)->powerplay.pp_funcs->print_clock_levels((adev)->powerplay.pp_handle, type, buf)
2323
2324#define amdgpu_dpm_force_clock_level(adev, type, level) \
2325 (adev)->powerplay.pp_funcs->force_clock_level((adev)->powerplay.pp_handle, type, level)
2326
Jammy Zhoue61710c2015-11-10 18:31:08 -05002327#define amdgpu_dpm_dispatch_task(adev, event_id, input, output) \
Rex Zhu1b5708f2015-11-10 18:25:24 -05002328 (adev)->powerplay.pp_funcs->dispatch_tasks((adev)->powerplay.pp_handle, (event_id), (input), (output))
Alex Deucher97b2e202015-04-20 16:51:00 -04002329
2330#define amdgpu_gds_switch(adev, r, v, d, w, a) (adev)->gds.funcs->patch_gds_switch((r), (v), (d), (w), (a))
2331
2332/* Common functions */
2333int amdgpu_gpu_reset(struct amdgpu_device *adev);
2334void amdgpu_pci_config_reset(struct amdgpu_device *adev);
2335bool amdgpu_card_posted(struct amdgpu_device *adev);
2336void amdgpu_update_display_priority(struct amdgpu_device *adev);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08002337
Alex Deucher97b2e202015-04-20 16:51:00 -04002338int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data);
2339int amdgpu_cs_get_ring(struct amdgpu_device *adev, u32 ip_type,
2340 u32 ip_instance, u32 ring,
2341 struct amdgpu_ring **out_ring);
2342void amdgpu_ttm_placement_from_domain(struct amdgpu_bo *rbo, u32 domain);
2343bool amdgpu_ttm_bo_is_amdgpu_bo(struct ttm_buffer_object *bo);
Christian König2f568db2016-02-23 12:36:59 +01002344int amdgpu_ttm_tt_get_user_pages(struct ttm_tt *ttm, struct page **pages);
Alex Deucher97b2e202015-04-20 16:51:00 -04002345int amdgpu_ttm_tt_set_userptr(struct ttm_tt *ttm, uint64_t addr,
2346 uint32_t flags);
Christian Königcc325d12016-02-08 11:08:35 +01002347struct mm_struct *amdgpu_ttm_tt_get_usermm(struct ttm_tt *ttm);
Christian Königd7006962016-02-08 10:57:22 +01002348bool amdgpu_ttm_tt_affect_userptr(struct ttm_tt *ttm, unsigned long start,
2349 unsigned long end);
Christian König2f568db2016-02-23 12:36:59 +01002350bool amdgpu_ttm_tt_userptr_invalidated(struct ttm_tt *ttm,
2351 int *last_invalidated);
Alex Deucher97b2e202015-04-20 16:51:00 -04002352bool amdgpu_ttm_tt_is_readonly(struct ttm_tt *ttm);
2353uint32_t amdgpu_ttm_tt_pte_flags(struct amdgpu_device *adev, struct ttm_tt *ttm,
2354 struct ttm_mem_reg *mem);
2355void amdgpu_vram_location(struct amdgpu_device *adev, struct amdgpu_mc *mc, u64 base);
2356void amdgpu_gtt_location(struct amdgpu_device *adev, struct amdgpu_mc *mc);
2357void amdgpu_ttm_set_active_vram_size(struct amdgpu_device *adev, u64 size);
2358void amdgpu_program_register_sequence(struct amdgpu_device *adev,
2359 const u32 *registers,
2360 const u32 array_size);
2361
2362bool amdgpu_device_is_px(struct drm_device *dev);
2363/* atpx handler */
2364#if defined(CONFIG_VGA_SWITCHEROO)
2365void amdgpu_register_atpx_handler(void);
2366void amdgpu_unregister_atpx_handler(void);
2367#else
2368static inline void amdgpu_register_atpx_handler(void) {}
2369static inline void amdgpu_unregister_atpx_handler(void) {}
2370#endif
2371
2372/*
2373 * KMS
2374 */
2375extern const struct drm_ioctl_desc amdgpu_ioctls_kms[];
2376extern int amdgpu_max_kms_ioctl;
2377
2378int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags);
2379int amdgpu_driver_unload_kms(struct drm_device *dev);
2380void amdgpu_driver_lastclose_kms(struct drm_device *dev);
2381int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv);
2382void amdgpu_driver_postclose_kms(struct drm_device *dev,
2383 struct drm_file *file_priv);
2384void amdgpu_driver_preclose_kms(struct drm_device *dev,
2385 struct drm_file *file_priv);
2386int amdgpu_suspend_kms(struct drm_device *dev, bool suspend, bool fbcon);
2387int amdgpu_resume_kms(struct drm_device *dev, bool resume, bool fbcon);
Thierry Reding88e72712015-09-24 18:35:31 +02002388u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe);
2389int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe);
2390void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe);
2391int amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
Alex Deucher97b2e202015-04-20 16:51:00 -04002392 int *max_error,
2393 struct timeval *vblank_time,
2394 unsigned flags);
2395long amdgpu_kms_compat_ioctl(struct file *filp, unsigned int cmd,
2396 unsigned long arg);
2397
2398/*
Alex Deucher97b2e202015-04-20 16:51:00 -04002399 * functions used by amdgpu_encoder.c
2400 */
2401struct amdgpu_afmt_acr {
2402 u32 clock;
2403
2404 int n_32khz;
2405 int cts_32khz;
2406
2407 int n_44_1khz;
2408 int cts_44_1khz;
2409
2410 int n_48khz;
2411 int cts_48khz;
2412
2413};
2414
2415struct amdgpu_afmt_acr amdgpu_afmt_acr(uint32_t clock);
2416
2417/* amdgpu_acpi.c */
2418#if defined(CONFIG_ACPI)
2419int amdgpu_acpi_init(struct amdgpu_device *adev);
2420void amdgpu_acpi_fini(struct amdgpu_device *adev);
2421bool amdgpu_acpi_is_pcie_performance_request_supported(struct amdgpu_device *adev);
2422int amdgpu_acpi_pcie_performance_request(struct amdgpu_device *adev,
2423 u8 perf_req, bool advertise);
2424int amdgpu_acpi_pcie_notify_device_ready(struct amdgpu_device *adev);
2425#else
2426static inline int amdgpu_acpi_init(struct amdgpu_device *adev) { return 0; }
2427static inline void amdgpu_acpi_fini(struct amdgpu_device *adev) { }
2428#endif
2429
2430struct amdgpu_bo_va_mapping *
2431amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
2432 uint64_t addr, struct amdgpu_bo **bo);
2433
2434#include "amdgpu_object.h"
2435
2436#endif