blob: fab6ddb26b5b7d260a8d17b59a74fe9663e9eb41 [file] [log] [blame]
Alex Deucher97b2e202015-04-20 16:51:00 -04001/*
2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Authors: Dave Airlie
25 * Alex Deucher
26 * Jerome Glisse
27 */
28#ifndef __AMDGPU_H__
29#define __AMDGPU_H__
30
31#include <linux/atomic.h>
32#include <linux/wait.h>
33#include <linux/list.h>
34#include <linux/kref.h>
35#include <linux/interval_tree.h>
36#include <linux/hashtable.h>
37#include <linux/fence.h>
38
39#include <ttm/ttm_bo_api.h>
40#include <ttm/ttm_bo_driver.h>
41#include <ttm/ttm_placement.h>
42#include <ttm/ttm_module.h>
43#include <ttm/ttm_execbuf_util.h>
44
Chunming Zhoud03846a2015-07-28 14:20:03 -040045#include <drm/drmP.h>
Alex Deucher97b2e202015-04-20 16:51:00 -040046#include <drm/drm_gem.h>
Chunming Zhou7e5a5472015-04-24 17:37:30 +080047#include <drm/amdgpu_drm.h>
Alex Deucher97b2e202015-04-20 16:51:00 -040048
yanyang15fc3aee2015-05-22 14:39:35 -040049#include "amd_shared.h"
Alex Deucher97b2e202015-04-20 16:51:00 -040050#include "amdgpu_mode.h"
51#include "amdgpu_ih.h"
52#include "amdgpu_irq.h"
53#include "amdgpu_ucode.h"
54#include "amdgpu_gds.h"
Alex Deucher1f7371b2015-12-02 17:46:21 -050055#include "amd_powerplay.h"
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -040056#include "amdgpu_acp.h"
Alex Deucher97b2e202015-04-20 16:51:00 -040057
Alex Deucherb80d8472015-08-16 22:55:02 -040058#include "gpu_scheduler.h"
59
Alex Deucher97b2e202015-04-20 16:51:00 -040060/*
61 * Modules parameters.
62 */
63extern int amdgpu_modeset;
64extern int amdgpu_vram_limit;
65extern int amdgpu_gart_size;
66extern int amdgpu_benchmarking;
67extern int amdgpu_testing;
68extern int amdgpu_audio;
69extern int amdgpu_disp_priority;
70extern int amdgpu_hw_i2c;
71extern int amdgpu_pcie_gen2;
72extern int amdgpu_msi;
73extern int amdgpu_lockup_timeout;
74extern int amdgpu_dpm;
75extern int amdgpu_smc_load_fw;
76extern int amdgpu_aspm;
77extern int amdgpu_runtime_pm;
Alex Deucher97b2e202015-04-20 16:51:00 -040078extern unsigned amdgpu_ip_block_mask;
79extern int amdgpu_bapm;
80extern int amdgpu_deep_color;
81extern int amdgpu_vm_size;
82extern int amdgpu_vm_block_size;
Christian Königd9c13152015-09-28 12:31:26 +020083extern int amdgpu_vm_fault_stop;
Christian Königb495bd32015-09-10 14:00:35 +020084extern int amdgpu_vm_debug;
Jammy Zhou1333f722015-07-30 16:36:58 +080085extern int amdgpu_sched_jobs;
Jammy Zhou4afcb302015-07-30 16:44:05 +080086extern int amdgpu_sched_hw_submission;
Alex Deucher1f7371b2015-12-02 17:46:21 -050087extern int amdgpu_powerplay;
Alex Deucher97b2e202015-04-20 16:51:00 -040088
Chunming Zhou4b559c92015-07-21 15:53:04 +080089#define AMDGPU_WAIT_IDLE_TIMEOUT_IN_MS 3000
Alex Deucher97b2e202015-04-20 16:51:00 -040090#define AMDGPU_MAX_USEC_TIMEOUT 100000 /* 100 ms */
91#define AMDGPU_FENCE_JIFFIES_TIMEOUT (HZ / 2)
92/* AMDGPU_IB_POOL_SIZE must be a power of 2 */
93#define AMDGPU_IB_POOL_SIZE 16
94#define AMDGPU_DEBUGFS_MAX_COMPONENTS 32
95#define AMDGPUFB_CONN_LIMIT 4
96#define AMDGPU_BIOS_NUM_SCRATCH 8
97
Alex Deucher97b2e202015-04-20 16:51:00 -040098/* max number of rings */
99#define AMDGPU_MAX_RINGS 16
100#define AMDGPU_MAX_GFX_RINGS 1
101#define AMDGPU_MAX_COMPUTE_RINGS 8
102#define AMDGPU_MAX_VCE_RINGS 2
103
Jammy Zhou36f523a2015-09-01 12:54:27 +0800104/* max number of IP instances */
105#define AMDGPU_MAX_SDMA_INSTANCES 2
106
Alex Deucher97b2e202015-04-20 16:51:00 -0400107/* hardcode that limit for now */
108#define AMDGPU_VA_RESERVED_SIZE (8 << 20)
109
110/* hard reset data */
111#define AMDGPU_ASIC_RESET_DATA 0x39d5e86b
112
113/* reset flags */
114#define AMDGPU_RESET_GFX (1 << 0)
115#define AMDGPU_RESET_COMPUTE (1 << 1)
116#define AMDGPU_RESET_DMA (1 << 2)
117#define AMDGPU_RESET_CP (1 << 3)
118#define AMDGPU_RESET_GRBM (1 << 4)
119#define AMDGPU_RESET_DMA1 (1 << 5)
120#define AMDGPU_RESET_RLC (1 << 6)
121#define AMDGPU_RESET_SEM (1 << 7)
122#define AMDGPU_RESET_IH (1 << 8)
123#define AMDGPU_RESET_VMC (1 << 9)
124#define AMDGPU_RESET_MC (1 << 10)
125#define AMDGPU_RESET_DISPLAY (1 << 11)
126#define AMDGPU_RESET_UVD (1 << 12)
127#define AMDGPU_RESET_VCE (1 << 13)
128#define AMDGPU_RESET_VCE1 (1 << 14)
129
130/* CG block flags */
131#define AMDGPU_CG_BLOCK_GFX (1 << 0)
132#define AMDGPU_CG_BLOCK_MC (1 << 1)
133#define AMDGPU_CG_BLOCK_SDMA (1 << 2)
134#define AMDGPU_CG_BLOCK_UVD (1 << 3)
135#define AMDGPU_CG_BLOCK_VCE (1 << 4)
136#define AMDGPU_CG_BLOCK_HDP (1 << 5)
137#define AMDGPU_CG_BLOCK_BIF (1 << 6)
138
139/* CG flags */
140#define AMDGPU_CG_SUPPORT_GFX_MGCG (1 << 0)
141#define AMDGPU_CG_SUPPORT_GFX_MGLS (1 << 1)
142#define AMDGPU_CG_SUPPORT_GFX_CGCG (1 << 2)
143#define AMDGPU_CG_SUPPORT_GFX_CGLS (1 << 3)
144#define AMDGPU_CG_SUPPORT_GFX_CGTS (1 << 4)
145#define AMDGPU_CG_SUPPORT_GFX_CGTS_LS (1 << 5)
146#define AMDGPU_CG_SUPPORT_GFX_CP_LS (1 << 6)
147#define AMDGPU_CG_SUPPORT_GFX_RLC_LS (1 << 7)
148#define AMDGPU_CG_SUPPORT_MC_LS (1 << 8)
149#define AMDGPU_CG_SUPPORT_MC_MGCG (1 << 9)
150#define AMDGPU_CG_SUPPORT_SDMA_LS (1 << 10)
151#define AMDGPU_CG_SUPPORT_SDMA_MGCG (1 << 11)
152#define AMDGPU_CG_SUPPORT_BIF_LS (1 << 12)
153#define AMDGPU_CG_SUPPORT_UVD_MGCG (1 << 13)
154#define AMDGPU_CG_SUPPORT_VCE_MGCG (1 << 14)
155#define AMDGPU_CG_SUPPORT_HDP_LS (1 << 15)
156#define AMDGPU_CG_SUPPORT_HDP_MGCG (1 << 16)
157
158/* PG flags */
159#define AMDGPU_PG_SUPPORT_GFX_PG (1 << 0)
160#define AMDGPU_PG_SUPPORT_GFX_SMG (1 << 1)
161#define AMDGPU_PG_SUPPORT_GFX_DMG (1 << 2)
162#define AMDGPU_PG_SUPPORT_UVD (1 << 3)
163#define AMDGPU_PG_SUPPORT_VCE (1 << 4)
164#define AMDGPU_PG_SUPPORT_CP (1 << 5)
165#define AMDGPU_PG_SUPPORT_GDS (1 << 6)
166#define AMDGPU_PG_SUPPORT_RLC_SMU_HS (1 << 7)
167#define AMDGPU_PG_SUPPORT_SDMA (1 << 8)
168#define AMDGPU_PG_SUPPORT_ACP (1 << 9)
169#define AMDGPU_PG_SUPPORT_SAMU (1 << 10)
170
171/* GFX current status */
172#define AMDGPU_GFX_NORMAL_MODE 0x00000000L
173#define AMDGPU_GFX_SAFE_MODE 0x00000001L
174#define AMDGPU_GFX_PG_DISABLED_MODE 0x00000002L
175#define AMDGPU_GFX_CG_DISABLED_MODE 0x00000004L
176#define AMDGPU_GFX_LBPW_DISABLED_MODE 0x00000008L
177
178/* max cursor sizes (in pixels) */
179#define CIK_CURSOR_WIDTH 128
180#define CIK_CURSOR_HEIGHT 128
181
182struct amdgpu_device;
183struct amdgpu_fence;
184struct amdgpu_ib;
185struct amdgpu_vm;
186struct amdgpu_ring;
Alex Deucher97b2e202015-04-20 16:51:00 -0400187struct amdgpu_cs_parser;
Chunming Zhoubb977d32015-08-18 15:16:40 +0800188struct amdgpu_job;
Alex Deucher97b2e202015-04-20 16:51:00 -0400189struct amdgpu_irq_src;
Alex Deucher0b492a42015-08-16 22:48:26 -0400190struct amdgpu_fpriv;
Alex Deucher97b2e202015-04-20 16:51:00 -0400191
192enum amdgpu_cp_irq {
193 AMDGPU_CP_IRQ_GFX_EOP = 0,
194 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE0_EOP,
195 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE1_EOP,
196 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE2_EOP,
197 AMDGPU_CP_IRQ_COMPUTE_MEC1_PIPE3_EOP,
198 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE0_EOP,
199 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE1_EOP,
200 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE2_EOP,
201 AMDGPU_CP_IRQ_COMPUTE_MEC2_PIPE3_EOP,
202
203 AMDGPU_CP_IRQ_LAST
204};
205
206enum amdgpu_sdma_irq {
207 AMDGPU_SDMA_IRQ_TRAP0 = 0,
208 AMDGPU_SDMA_IRQ_TRAP1,
209
210 AMDGPU_SDMA_IRQ_LAST
211};
212
213enum amdgpu_thermal_irq {
214 AMDGPU_THERMAL_IRQ_LOW_TO_HIGH = 0,
215 AMDGPU_THERMAL_IRQ_HIGH_TO_LOW,
216
217 AMDGPU_THERMAL_IRQ_LAST
218};
219
Alex Deucher97b2e202015-04-20 16:51:00 -0400220int amdgpu_set_clockgating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400221 enum amd_ip_block_type block_type,
222 enum amd_clockgating_state state);
Alex Deucher97b2e202015-04-20 16:51:00 -0400223int amdgpu_set_powergating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400224 enum amd_ip_block_type block_type,
225 enum amd_powergating_state state);
Alex Deucher97b2e202015-04-20 16:51:00 -0400226
227struct amdgpu_ip_block_version {
yanyang15fc3aee2015-05-22 14:39:35 -0400228 enum amd_ip_block_type type;
Alex Deucher97b2e202015-04-20 16:51:00 -0400229 u32 major;
230 u32 minor;
231 u32 rev;
yanyang15fc3aee2015-05-22 14:39:35 -0400232 const struct amd_ip_funcs *funcs;
Alex Deucher97b2e202015-04-20 16:51:00 -0400233};
234
235int amdgpu_ip_block_version_cmp(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400236 enum amd_ip_block_type type,
Alex Deucher97b2e202015-04-20 16:51:00 -0400237 u32 major, u32 minor);
238
239const struct amdgpu_ip_block_version * amdgpu_get_ip_block(
240 struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -0400241 enum amd_ip_block_type type);
Alex Deucher97b2e202015-04-20 16:51:00 -0400242
243/* provided by hw blocks that can move/clear data. e.g., gfx or sdma */
244struct amdgpu_buffer_funcs {
245 /* maximum bytes in a single operation */
246 uint32_t copy_max_bytes;
247
248 /* number of dw to reserve per operation */
249 unsigned copy_num_dw;
250
251 /* used for buffer migration */
Chunming Zhouc7ae72c2015-08-25 17:23:45 +0800252 void (*emit_copy_buffer)(struct amdgpu_ib *ib,
Alex Deucher97b2e202015-04-20 16:51:00 -0400253 /* src addr in bytes */
254 uint64_t src_offset,
255 /* dst addr in bytes */
256 uint64_t dst_offset,
257 /* number of byte to transfer */
258 uint32_t byte_count);
259
260 /* maximum bytes in a single operation */
261 uint32_t fill_max_bytes;
262
263 /* number of dw to reserve per operation */
264 unsigned fill_num_dw;
265
266 /* used for buffer clearing */
Chunming Zhou6e7a3842015-08-27 13:46:09 +0800267 void (*emit_fill_buffer)(struct amdgpu_ib *ib,
Alex Deucher97b2e202015-04-20 16:51:00 -0400268 /* value to write to memory */
269 uint32_t src_data,
270 /* dst addr in bytes */
271 uint64_t dst_offset,
272 /* number of byte to fill */
273 uint32_t byte_count);
274};
275
276/* provided by hw blocks that can write ptes, e.g., sdma */
277struct amdgpu_vm_pte_funcs {
278 /* copy pte entries from GART */
279 void (*copy_pte)(struct amdgpu_ib *ib,
280 uint64_t pe, uint64_t src,
281 unsigned count);
282 /* write pte one entry at a time with addr mapping */
283 void (*write_pte)(struct amdgpu_ib *ib,
Christian Königb07c9d22015-11-30 13:26:07 +0100284 const dma_addr_t *pages_addr, uint64_t pe,
Alex Deucher97b2e202015-04-20 16:51:00 -0400285 uint64_t addr, unsigned count,
286 uint32_t incr, uint32_t flags);
287 /* for linear pte/pde updates without addr mapping */
288 void (*set_pte_pde)(struct amdgpu_ib *ib,
289 uint64_t pe,
290 uint64_t addr, unsigned count,
291 uint32_t incr, uint32_t flags);
Alex Deucher97b2e202015-04-20 16:51:00 -0400292};
293
294/* provided by the gmc block */
295struct amdgpu_gart_funcs {
296 /* flush the vm tlb via mmio */
297 void (*flush_gpu_tlb)(struct amdgpu_device *adev,
298 uint32_t vmid);
299 /* write pte/pde updates using the cpu */
300 int (*set_pte_pde)(struct amdgpu_device *adev,
301 void *cpu_pt_addr, /* cpu addr of page table */
302 uint32_t gpu_page_idx, /* pte/pde to update */
303 uint64_t addr, /* addr to write into pte/pde */
304 uint32_t flags); /* access flags */
305};
306
307/* provided by the ih block */
308struct amdgpu_ih_funcs {
309 /* ring read/write ptr handling, called from interrupt context */
310 u32 (*get_wptr)(struct amdgpu_device *adev);
311 void (*decode_iv)(struct amdgpu_device *adev,
312 struct amdgpu_iv_entry *entry);
313 void (*set_rptr)(struct amdgpu_device *adev);
314};
315
316/* provided by hw blocks that expose a ring buffer for commands */
317struct amdgpu_ring_funcs {
318 /* ring read/write ptr handling */
319 u32 (*get_rptr)(struct amdgpu_ring *ring);
320 u32 (*get_wptr)(struct amdgpu_ring *ring);
321 void (*set_wptr)(struct amdgpu_ring *ring);
322 /* validating and patching of IBs */
323 int (*parse_cs)(struct amdgpu_cs_parser *p, uint32_t ib_idx);
324 /* command emit functions */
325 void (*emit_ib)(struct amdgpu_ring *ring,
326 struct amdgpu_ib *ib);
327 void (*emit_fence)(struct amdgpu_ring *ring, uint64_t addr,
Chunming Zhou890ee232015-06-01 14:35:03 +0800328 uint64_t seq, unsigned flags);
Alex Deucher97b2e202015-04-20 16:51:00 -0400329 void (*emit_vm_flush)(struct amdgpu_ring *ring, unsigned vm_id,
330 uint64_t pd_addr);
Christian Königd2edb072015-05-11 14:10:34 +0200331 void (*emit_hdp_flush)(struct amdgpu_ring *ring);
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_fence {
406 struct fence base;
Chunming Zhou4cef9262015-08-05 19:52:14 +0800407
Alex Deucher97b2e202015-04-20 16:51:00 -0400408 /* RB, DMA, etc. */
409 struct amdgpu_ring *ring;
410 uint64_t seq;
411
Alex Deucher97b2e202015-04-20 16:51:00 -0400412 wait_queue_t fence_wake;
413};
414
415struct amdgpu_user_fence {
416 /* write-back bo */
417 struct amdgpu_bo *bo;
418 /* write-back address offset to bo start */
419 uint32_t offset;
420};
421
422int amdgpu_fence_driver_init(struct amdgpu_device *adev);
423void amdgpu_fence_driver_fini(struct amdgpu_device *adev);
424void amdgpu_fence_driver_force_completion(struct amdgpu_device *adev);
425
Christian König4f839a22015-09-08 20:22:31 +0200426int amdgpu_fence_driver_init_ring(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -0400427int amdgpu_fence_driver_start_ring(struct amdgpu_ring *ring,
428 struct amdgpu_irq_src *irq_src,
429 unsigned irq_type);
Alex Deucher5ceb54c2015-08-05 12:41:48 -0400430void amdgpu_fence_driver_suspend(struct amdgpu_device *adev);
431void amdgpu_fence_driver_resume(struct amdgpu_device *adev);
Christian König336d1f52016-02-16 10:57:10 +0100432int amdgpu_fence_emit(struct amdgpu_ring *ring, struct amdgpu_fence **fence);
Alex Deucher97b2e202015-04-20 16:51:00 -0400433void amdgpu_fence_process(struct amdgpu_ring *ring);
434int amdgpu_fence_wait_next(struct amdgpu_ring *ring);
435int amdgpu_fence_wait_empty(struct amdgpu_ring *ring);
436unsigned amdgpu_fence_count_emitted(struct amdgpu_ring *ring);
437
Alex Deucher97b2e202015-04-20 16:51:00 -0400438/*
439 * TTM.
440 */
441struct amdgpu_mman {
442 struct ttm_bo_global_ref bo_global_ref;
443 struct drm_global_reference mem_global_ref;
444 struct ttm_bo_device bdev;
445 bool mem_global_referenced;
446 bool initialized;
447
448#if defined(CONFIG_DEBUG_FS)
449 struct dentry *vram;
450 struct dentry *gtt;
451#endif
452
453 /* buffer handling */
454 const struct amdgpu_buffer_funcs *buffer_funcs;
455 struct amdgpu_ring *buffer_funcs_ring;
Christian König703297c2016-02-10 14:20:50 +0100456 /* Scheduler entity for buffer moves */
457 struct amd_sched_entity entity;
Alex Deucher97b2e202015-04-20 16:51:00 -0400458};
459
460int amdgpu_copy_buffer(struct amdgpu_ring *ring,
461 uint64_t src_offset,
462 uint64_t dst_offset,
463 uint32_t byte_count,
464 struct reservation_object *resv,
Chunming Zhouc7ae72c2015-08-25 17:23:45 +0800465 struct fence **fence);
Alex Deucher97b2e202015-04-20 16:51:00 -0400466int amdgpu_mmap(struct file *filp, struct vm_area_struct *vma);
467
468struct amdgpu_bo_list_entry {
469 struct amdgpu_bo *robj;
470 struct ttm_validate_buffer tv;
471 struct amdgpu_bo_va *bo_va;
Alex Deucher97b2e202015-04-20 16:51:00 -0400472 uint32_t priority;
473};
474
475struct amdgpu_bo_va_mapping {
476 struct list_head list;
477 struct interval_tree_node it;
478 uint64_t offset;
479 uint32_t flags;
480};
481
482/* bo virtual addresses in a specific vm */
483struct amdgpu_bo_va {
Chunming Zhou69b576a2015-11-18 11:17:39 +0800484 struct mutex mutex;
Alex Deucher97b2e202015-04-20 16:51:00 -0400485 /* protected by bo being reserved */
486 struct list_head bo_list;
Chunming Zhoubb1e38a42015-08-03 18:19:38 +0800487 struct fence *last_pt_update;
Alex Deucher97b2e202015-04-20 16:51:00 -0400488 unsigned ref_count;
489
Christian König7fc11952015-07-30 11:53:42 +0200490 /* protected by vm mutex and spinlock */
Alex Deucher97b2e202015-04-20 16:51:00 -0400491 struct list_head vm_status;
492
Christian König7fc11952015-07-30 11:53:42 +0200493 /* mappings for this bo_va */
494 struct list_head invalids;
495 struct list_head valids;
496
Alex Deucher97b2e202015-04-20 16:51:00 -0400497 /* constant after initialization */
498 struct amdgpu_vm *vm;
499 struct amdgpu_bo *bo;
500};
501
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800502#define AMDGPU_GEM_DOMAIN_MAX 0x3
503
Alex Deucher97b2e202015-04-20 16:51:00 -0400504struct amdgpu_bo {
505 /* Protected by gem.mutex */
506 struct list_head list;
507 /* Protected by tbo.reserved */
Christian König1ea863f2015-12-18 22:13:12 +0100508 u32 prefered_domains;
509 u32 allowed_domains;
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800510 struct ttm_place placements[AMDGPU_GEM_DOMAIN_MAX + 1];
Alex Deucher97b2e202015-04-20 16:51:00 -0400511 struct ttm_placement placement;
512 struct ttm_buffer_object tbo;
513 struct ttm_bo_kmap_obj kmap;
514 u64 flags;
515 unsigned pin_count;
516 void *kptr;
517 u64 tiling_flags;
518 u64 metadata_flags;
519 void *metadata;
520 u32 metadata_size;
521 /* list of all virtual address to which this bo
522 * is associated to
523 */
524 struct list_head va;
525 /* Constant after initialization */
526 struct amdgpu_device *adev;
527 struct drm_gem_object gem_base;
Christian König82b9c552015-11-27 16:49:00 +0100528 struct amdgpu_bo *parent;
Alex Deucher97b2e202015-04-20 16:51:00 -0400529
530 struct ttm_bo_kmap_obj dma_buf_vmap;
Alex Deucher97b2e202015-04-20 16:51:00 -0400531 struct amdgpu_mn *mn;
532 struct list_head mn_list;
533};
534#define gem_to_amdgpu_bo(gobj) container_of((gobj), struct amdgpu_bo, gem_base)
535
536void amdgpu_gem_object_free(struct drm_gem_object *obj);
537int amdgpu_gem_object_open(struct drm_gem_object *obj,
538 struct drm_file *file_priv);
539void amdgpu_gem_object_close(struct drm_gem_object *obj,
540 struct drm_file *file_priv);
541unsigned long amdgpu_gem_timeout(uint64_t timeout_ns);
542struct sg_table *amdgpu_gem_prime_get_sg_table(struct drm_gem_object *obj);
543struct drm_gem_object *amdgpu_gem_prime_import_sg_table(struct drm_device *dev,
544 struct dma_buf_attachment *attach,
545 struct sg_table *sg);
546struct dma_buf *amdgpu_gem_prime_export(struct drm_device *dev,
547 struct drm_gem_object *gobj,
548 int flags);
549int amdgpu_gem_prime_pin(struct drm_gem_object *obj);
550void amdgpu_gem_prime_unpin(struct drm_gem_object *obj);
551struct reservation_object *amdgpu_gem_prime_res_obj(struct drm_gem_object *);
552void *amdgpu_gem_prime_vmap(struct drm_gem_object *obj);
553void amdgpu_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
554int amdgpu_gem_debugfs_init(struct amdgpu_device *adev);
555
556/* sub-allocation manager, it has to be protected by another lock.
557 * By conception this is an helper for other part of the driver
558 * like the indirect buffer or semaphore, which both have their
559 * locking.
560 *
561 * Principe is simple, we keep a list of sub allocation in offset
562 * order (first entry has offset == 0, last entry has the highest
563 * offset).
564 *
565 * When allocating new object we first check if there is room at
566 * the end total_size - (last_object_offset + last_object_size) >=
567 * alloc_size. If so we allocate new object there.
568 *
569 * When there is not enough room at the end, we start waiting for
570 * each sub object until we reach object_offset+object_size >=
571 * alloc_size, this object then become the sub object we return.
572 *
573 * Alignment can't be bigger than page size.
574 *
575 * Hole are not considered for allocation to keep things simple.
576 * Assumption is that there won't be hole (all object on same
577 * alignment).
578 */
579struct amdgpu_sa_manager {
580 wait_queue_head_t wq;
581 struct amdgpu_bo *bo;
582 struct list_head *hole;
583 struct list_head flist[AMDGPU_MAX_RINGS];
584 struct list_head olist;
585 unsigned size;
586 uint64_t gpu_addr;
587 void *cpu_ptr;
588 uint32_t domain;
589 uint32_t align;
590};
591
592struct amdgpu_sa_bo;
593
594/* sub-allocation buffer */
595struct amdgpu_sa_bo {
596 struct list_head olist;
597 struct list_head flist;
598 struct amdgpu_sa_manager *manager;
599 unsigned soffset;
600 unsigned eoffset;
Chunming Zhou4ce98912015-08-19 16:41:19 +0800601 struct fence *fence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400602};
603
604/*
605 * GEM objects.
606 */
Christian König418aa0c2016-02-15 16:59:57 +0100607void amdgpu_gem_force_release(struct amdgpu_device *adev);
Alex Deucher97b2e202015-04-20 16:51:00 -0400608int amdgpu_gem_object_create(struct amdgpu_device *adev, unsigned long size,
609 int alignment, u32 initial_domain,
610 u64 flags, bool kernel,
611 struct drm_gem_object **obj);
612
613int amdgpu_mode_dumb_create(struct drm_file *file_priv,
614 struct drm_device *dev,
615 struct drm_mode_create_dumb *args);
616int amdgpu_mode_dumb_mmap(struct drm_file *filp,
617 struct drm_device *dev,
618 uint32_t handle, uint64_t *offset_p);
Alex Deucher97b2e202015-04-20 16:51:00 -0400619/*
620 * Synchronization
621 */
622struct amdgpu_sync {
Christian Königf91b3a62015-08-20 14:47:40 +0800623 DECLARE_HASHTABLE(fences, 4);
Chunming Zhou3c623382015-08-20 18:33:59 +0800624 struct fence *last_vm_update;
Alex Deucher97b2e202015-04-20 16:51:00 -0400625};
626
627void amdgpu_sync_create(struct amdgpu_sync *sync);
Christian König91e1a522015-07-06 22:06:40 +0200628int amdgpu_sync_fence(struct amdgpu_device *adev, struct amdgpu_sync *sync,
629 struct fence *f);
Alex Deucher97b2e202015-04-20 16:51:00 -0400630int amdgpu_sync_resv(struct amdgpu_device *adev,
631 struct amdgpu_sync *sync,
632 struct reservation_object *resv,
633 void *owner);
Christian Könige61235d2015-08-25 11:05:36 +0200634struct fence *amdgpu_sync_get_fence(struct amdgpu_sync *sync);
Christian Königf91b3a62015-08-20 14:47:40 +0800635int amdgpu_sync_wait(struct amdgpu_sync *sync);
Christian König8a8f0b42016-02-03 15:11:39 +0100636void amdgpu_sync_free(struct amdgpu_sync *sync);
Alex Deucher97b2e202015-04-20 16:51:00 -0400637
638/*
639 * GART structures, functions & helpers
640 */
641struct amdgpu_mc;
642
643#define AMDGPU_GPU_PAGE_SIZE 4096
644#define AMDGPU_GPU_PAGE_MASK (AMDGPU_GPU_PAGE_SIZE - 1)
645#define AMDGPU_GPU_PAGE_SHIFT 12
646#define AMDGPU_GPU_PAGE_ALIGN(a) (((a) + AMDGPU_GPU_PAGE_MASK) & ~AMDGPU_GPU_PAGE_MASK)
647
648struct amdgpu_gart {
649 dma_addr_t table_addr;
650 struct amdgpu_bo *robj;
651 void *ptr;
652 unsigned num_gpu_pages;
653 unsigned num_cpu_pages;
654 unsigned table_size;
655 struct page **pages;
656 dma_addr_t *pages_addr;
657 bool ready;
658 const struct amdgpu_gart_funcs *gart_funcs;
659};
660
661int amdgpu_gart_table_ram_alloc(struct amdgpu_device *adev);
662void amdgpu_gart_table_ram_free(struct amdgpu_device *adev);
663int amdgpu_gart_table_vram_alloc(struct amdgpu_device *adev);
664void amdgpu_gart_table_vram_free(struct amdgpu_device *adev);
665int amdgpu_gart_table_vram_pin(struct amdgpu_device *adev);
666void amdgpu_gart_table_vram_unpin(struct amdgpu_device *adev);
667int amdgpu_gart_init(struct amdgpu_device *adev);
668void amdgpu_gart_fini(struct amdgpu_device *adev);
669void amdgpu_gart_unbind(struct amdgpu_device *adev, unsigned offset,
670 int pages);
671int amdgpu_gart_bind(struct amdgpu_device *adev, unsigned offset,
672 int pages, struct page **pagelist,
673 dma_addr_t *dma_addr, uint32_t flags);
674
675/*
676 * GPU MC structures, functions & helpers
677 */
678struct amdgpu_mc {
679 resource_size_t aper_size;
680 resource_size_t aper_base;
681 resource_size_t agp_base;
682 /* for some chips with <= 32MB we need to lie
683 * about vram size near mc fb location */
684 u64 mc_vram_size;
685 u64 visible_vram_size;
686 u64 gtt_size;
687 u64 gtt_start;
688 u64 gtt_end;
689 u64 vram_start;
690 u64 vram_end;
691 unsigned vram_width;
692 u64 real_vram_size;
693 int vram_mtrr;
694 u64 gtt_base_align;
695 u64 mc_mask;
696 const struct firmware *fw; /* MC firmware */
697 uint32_t fw_version;
698 struct amdgpu_irq_src vm_fault;
Ken Wang81c59f52015-06-03 21:02:01 +0800699 uint32_t vram_type;
Alex Deucher97b2e202015-04-20 16:51:00 -0400700};
701
702/*
703 * GPU doorbell structures, functions & helpers
704 */
705typedef enum _AMDGPU_DOORBELL_ASSIGNMENT
706{
707 AMDGPU_DOORBELL_KIQ = 0x000,
708 AMDGPU_DOORBELL_HIQ = 0x001,
709 AMDGPU_DOORBELL_DIQ = 0x002,
710 AMDGPU_DOORBELL_MEC_RING0 = 0x010,
711 AMDGPU_DOORBELL_MEC_RING1 = 0x011,
712 AMDGPU_DOORBELL_MEC_RING2 = 0x012,
713 AMDGPU_DOORBELL_MEC_RING3 = 0x013,
714 AMDGPU_DOORBELL_MEC_RING4 = 0x014,
715 AMDGPU_DOORBELL_MEC_RING5 = 0x015,
716 AMDGPU_DOORBELL_MEC_RING6 = 0x016,
717 AMDGPU_DOORBELL_MEC_RING7 = 0x017,
718 AMDGPU_DOORBELL_GFX_RING0 = 0x020,
719 AMDGPU_DOORBELL_sDMA_ENGINE0 = 0x1E0,
720 AMDGPU_DOORBELL_sDMA_ENGINE1 = 0x1E1,
721 AMDGPU_DOORBELL_IH = 0x1E8,
722 AMDGPU_DOORBELL_MAX_ASSIGNMENT = 0x3FF,
723 AMDGPU_DOORBELL_INVALID = 0xFFFF
724} AMDGPU_DOORBELL_ASSIGNMENT;
725
726struct amdgpu_doorbell {
727 /* doorbell mmio */
728 resource_size_t base;
729 resource_size_t size;
730 u32 __iomem *ptr;
731 u32 num_doorbells; /* Number of doorbells actually reserved for amdgpu. */
732};
733
734void amdgpu_doorbell_get_kfd_info(struct amdgpu_device *adev,
735 phys_addr_t *aperture_base,
736 size_t *aperture_size,
737 size_t *start_offset);
738
739/*
740 * IRQS.
741 */
742
743struct amdgpu_flip_work {
744 struct work_struct flip_work;
745 struct work_struct unpin_work;
746 struct amdgpu_device *adev;
747 int crtc_id;
748 uint64_t base;
749 struct drm_pending_vblank_event *event;
750 struct amdgpu_bo *old_rbo;
Christian König1ffd2652015-08-11 17:29:52 +0200751 struct fence *excl;
752 unsigned shared_count;
753 struct fence **shared;
Christian Königc3874b72016-02-11 15:48:30 +0100754 struct fence_cb cb;
Alex Deucher97b2e202015-04-20 16:51:00 -0400755};
756
757
758/*
759 * CP & rings.
760 */
761
762struct amdgpu_ib {
763 struct amdgpu_sa_bo *sa_bo;
764 uint32_t length_dw;
765 uint64_t gpu_addr;
766 uint32_t *ptr;
Alex Deucher97b2e202015-04-20 16:51:00 -0400767 struct amdgpu_fence *fence;
768 struct amdgpu_user_fence *user;
769 struct amdgpu_vm *vm;
Christian König4ff37a82016-02-26 16:18:26 +0100770 unsigned vm_id;
771 uint64_t vm_pd_addr;
Christian König3cb485f2015-05-11 15:34:59 +0200772 struct amdgpu_ctx *ctx;
Alex Deucher97b2e202015-04-20 16:51:00 -0400773 uint32_t gds_base, gds_size;
774 uint32_t gws_base, gws_size;
775 uint32_t oa_base, oa_size;
Jammy Zhoude807f82015-05-11 23:41:41 +0800776 uint32_t flags;
Christian König5430a3f2015-07-21 18:02:21 +0200777 /* resulting sequence number */
778 uint64_t sequence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400779};
780
781enum amdgpu_ring_type {
782 AMDGPU_RING_TYPE_GFX,
783 AMDGPU_RING_TYPE_COMPUTE,
784 AMDGPU_RING_TYPE_SDMA,
785 AMDGPU_RING_TYPE_UVD,
786 AMDGPU_RING_TYPE_VCE
787};
788
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800789extern struct amd_sched_backend_ops amdgpu_sched_ops;
790
Christian König50838c82016-02-03 13:44:52 +0100791int amdgpu_job_alloc(struct amdgpu_device *adev, unsigned num_ibs,
792 struct amdgpu_job **job);
Christian Königd71518b2016-02-01 12:20:25 +0100793int amdgpu_job_alloc_with_ib(struct amdgpu_device *adev, unsigned size,
794 struct amdgpu_job **job);
Christian König50838c82016-02-03 13:44:52 +0100795void amdgpu_job_free(struct amdgpu_job *job);
Christian Königd71518b2016-02-01 12:20:25 +0100796int amdgpu_job_submit(struct amdgpu_job *job, struct amdgpu_ring *ring,
Christian König2bd9ccf2016-02-01 12:53:58 +0100797 struct amd_sched_entity *entity, void *owner,
798 struct fence **f);
Chunming Zhou3c704e92015-07-29 10:33:14 +0800799
Alex Deucher97b2e202015-04-20 16:51:00 -0400800struct amdgpu_ring {
801 struct amdgpu_device *adev;
802 const struct amdgpu_ring_funcs *funcs;
803 struct amdgpu_fence_driver fence_drv;
Christian König4f839a22015-09-08 20:22:31 +0200804 struct amd_gpu_scheduler sched;
Alex Deucher97b2e202015-04-20 16:51:00 -0400805
Chunming Zhou176e1ab2015-07-24 10:49:47 +0800806 spinlock_t fence_lock;
Alex Deucher97b2e202015-04-20 16:51:00 -0400807 struct amdgpu_bo *ring_obj;
808 volatile uint32_t *ring;
809 unsigned rptr_offs;
810 u64 next_rptr_gpu_addr;
811 volatile u32 *next_rptr_cpu_addr;
812 unsigned wptr;
813 unsigned wptr_old;
814 unsigned ring_size;
Christian Königc7e6be22016-01-21 13:06:05 +0100815 unsigned max_dw;
Alex Deucher97b2e202015-04-20 16:51:00 -0400816 int count_dw;
Alex Deucher97b2e202015-04-20 16:51:00 -0400817 uint64_t gpu_addr;
818 uint32_t align_mask;
819 uint32_t ptr_mask;
820 bool ready;
821 u32 nop;
822 u32 idx;
Alex Deucher97b2e202015-04-20 16:51:00 -0400823 u32 me;
824 u32 pipe;
825 u32 queue;
826 struct amdgpu_bo *mqd_obj;
827 u32 doorbell_index;
828 bool use_doorbell;
829 unsigned wptr_offs;
830 unsigned next_rptr_offs;
831 unsigned fence_offs;
Christian König3cb485f2015-05-11 15:34:59 +0200832 struct amdgpu_ctx *current_ctx;
Alex Deucher97b2e202015-04-20 16:51:00 -0400833 enum amdgpu_ring_type type;
834 char name[16];
835};
836
837/*
838 * VM
839 */
840
841/* maximum number of VMIDs */
842#define AMDGPU_NUM_VM 16
843
844/* number of entries in page table */
845#define AMDGPU_VM_PTE_COUNT (1 << amdgpu_vm_block_size)
846
847/* PTBs (Page Table Blocks) need to be aligned to 32K */
848#define AMDGPU_VM_PTB_ALIGN_SIZE 32768
849#define AMDGPU_VM_PTB_ALIGN_MASK (AMDGPU_VM_PTB_ALIGN_SIZE - 1)
850#define AMDGPU_VM_PTB_ALIGN(a) (((a) + AMDGPU_VM_PTB_ALIGN_MASK) & ~AMDGPU_VM_PTB_ALIGN_MASK)
851
852#define AMDGPU_PTE_VALID (1 << 0)
853#define AMDGPU_PTE_SYSTEM (1 << 1)
854#define AMDGPU_PTE_SNOOPED (1 << 2)
855
856/* VI only */
857#define AMDGPU_PTE_EXECUTABLE (1 << 4)
858
859#define AMDGPU_PTE_READABLE (1 << 5)
860#define AMDGPU_PTE_WRITEABLE (1 << 6)
861
862/* PTE (Page Table Entry) fragment field for different page sizes */
863#define AMDGPU_PTE_FRAG_4KB (0 << 7)
864#define AMDGPU_PTE_FRAG_64KB (4 << 7)
865#define AMDGPU_LOG2_PAGES_PER_FRAG 4
866
Christian Königd9c13152015-09-28 12:31:26 +0200867/* How to programm VM fault handling */
868#define AMDGPU_VM_FAULT_STOP_NEVER 0
869#define AMDGPU_VM_FAULT_STOP_FIRST 1
870#define AMDGPU_VM_FAULT_STOP_ALWAYS 2
871
Alex Deucher97b2e202015-04-20 16:51:00 -0400872struct amdgpu_vm_pt {
Christian Königee1782c2015-12-11 21:01:23 +0100873 struct amdgpu_bo_list_entry entry;
874 uint64_t addr;
Alex Deucher97b2e202015-04-20 16:51:00 -0400875};
876
877struct amdgpu_vm_id {
Christian König4ff37a82016-02-26 16:18:26 +0100878 struct amdgpu_vm_manager_id *mgr_id;
879 uint64_t pd_gpu_addr;
Alex Deucher97b2e202015-04-20 16:51:00 -0400880 /* last flushed PD/PT update */
Christian König4ff37a82016-02-26 16:18:26 +0100881 struct fence *flushed_updates;
Alex Deucher97b2e202015-04-20 16:51:00 -0400882};
883
884struct amdgpu_vm {
Christian König25cfc3c2015-12-19 19:42:05 +0100885 /* tree of virtual addresses mapped */
886 spinlock_t it_lock;
Alex Deucher97b2e202015-04-20 16:51:00 -0400887 struct rb_root va;
888
Christian König7fc11952015-07-30 11:53:42 +0200889 /* protecting invalidated */
Alex Deucher97b2e202015-04-20 16:51:00 -0400890 spinlock_t status_lock;
891
892 /* BOs moved, but not yet updated in the PT */
893 struct list_head invalidated;
894
Christian König7fc11952015-07-30 11:53:42 +0200895 /* BOs cleared in the PT because of a move */
896 struct list_head cleared;
897
898 /* BO mappings freed, but not yet updated in the PT */
Alex Deucher97b2e202015-04-20 16:51:00 -0400899 struct list_head freed;
900
901 /* contains the page directory */
902 struct amdgpu_bo *page_directory;
903 unsigned max_pde_used;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200904 struct fence *page_directory_fence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400905
906 /* array of page tables, one for each page directory entry */
907 struct amdgpu_vm_pt *page_tables;
908
909 /* for id and flush management per ring */
910 struct amdgpu_vm_id ids[AMDGPU_MAX_RINGS];
Christian König25cfc3c2015-12-19 19:42:05 +0100911
jimqu81d75a32015-12-04 17:17:00 +0800912 /* protecting freed */
913 spinlock_t freed_lock;
Christian König2bd9ccf2016-02-01 12:53:58 +0100914
915 /* Scheduler entity for page table updates */
916 struct amd_sched_entity entity;
Alex Deucher97b2e202015-04-20 16:51:00 -0400917};
918
Christian Königa9a78b32016-01-21 10:19:11 +0100919struct amdgpu_vm_manager_id {
920 struct list_head list;
921 struct fence *active;
922 atomic_long_t owner;
923};
Christian König8d0a7ce2015-11-03 20:58:50 +0100924
Christian Königa9a78b32016-01-21 10:19:11 +0100925struct amdgpu_vm_manager {
926 /* Handling of VMIDs */
927 struct mutex lock;
928 unsigned num_ids;
929 struct list_head ids_lru;
930 struct amdgpu_vm_manager_id ids[AMDGPU_NUM_VM];
Christian König1c16c0a2015-11-14 21:31:40 +0100931
Christian König8b4fb002015-11-15 16:04:16 +0100932 uint32_t max_pfn;
Alex Deucher97b2e202015-04-20 16:51:00 -0400933 /* vram base address for page table entry */
Christian König8b4fb002015-11-15 16:04:16 +0100934 u64 vram_base_offset;
Alex Deucher97b2e202015-04-20 16:51:00 -0400935 /* is vm enabled? */
Christian König8b4fb002015-11-15 16:04:16 +0100936 bool enabled;
Alex Deucher97b2e202015-04-20 16:51:00 -0400937 /* vm pte handling */
938 const struct amdgpu_vm_pte_funcs *vm_pte_funcs;
Christian König2d55e452016-02-08 17:37:38 +0100939 struct amdgpu_ring *vm_pte_rings[AMDGPU_MAX_RINGS];
940 unsigned vm_pte_num_rings;
941 atomic_t vm_pte_next_ring;
Alex Deucher97b2e202015-04-20 16:51:00 -0400942};
943
Christian Königa9a78b32016-01-21 10:19:11 +0100944void amdgpu_vm_manager_init(struct amdgpu_device *adev);
Christian Königea89f8c2015-11-15 20:52:06 +0100945void amdgpu_vm_manager_fini(struct amdgpu_device *adev);
Christian König8b4fb002015-11-15 16:04:16 +0100946int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm);
947void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm);
Christian König56467eb2015-12-11 15:16:32 +0100948void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
949 struct list_head *validated,
950 struct amdgpu_bo_list_entry *entry);
Christian Königee1782c2015-12-11 21:01:23 +0100951void amdgpu_vm_get_pt_bos(struct amdgpu_vm *vm, struct list_head *duplicates);
Christian Königeceb8a12016-01-11 15:35:21 +0100952void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev,
953 struct amdgpu_vm *vm);
Christian König8b4fb002015-11-15 16:04:16 +0100954int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Christian König4ff37a82016-02-26 16:18:26 +0100955 struct amdgpu_sync *sync, struct fence *fence,
956 unsigned *vm_id, uint64_t *vm_pd_addr);
Christian König8b4fb002015-11-15 16:04:16 +0100957void amdgpu_vm_flush(struct amdgpu_ring *ring,
Christian König4ff37a82016-02-26 16:18:26 +0100958 unsigned vmid,
959 uint64_t pd_addr);
Christian Königb07c9d22015-11-30 13:26:07 +0100960uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr);
Christian König8b4fb002015-11-15 16:04:16 +0100961int amdgpu_vm_update_page_directory(struct amdgpu_device *adev,
962 struct amdgpu_vm *vm);
963int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
964 struct amdgpu_vm *vm);
965int amdgpu_vm_clear_invalids(struct amdgpu_device *adev, struct amdgpu_vm *vm,
966 struct amdgpu_sync *sync);
967int amdgpu_vm_bo_update(struct amdgpu_device *adev,
968 struct amdgpu_bo_va *bo_va,
969 struct ttm_mem_reg *mem);
970void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
971 struct amdgpu_bo *bo);
972struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
973 struct amdgpu_bo *bo);
974struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
975 struct amdgpu_vm *vm,
976 struct amdgpu_bo *bo);
977int amdgpu_vm_bo_map(struct amdgpu_device *adev,
978 struct amdgpu_bo_va *bo_va,
979 uint64_t addr, uint64_t offset,
980 uint64_t size, uint32_t flags);
981int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
982 struct amdgpu_bo_va *bo_va,
983 uint64_t addr);
984void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
985 struct amdgpu_bo_va *bo_va);
Christian König8b4fb002015-11-15 16:04:16 +0100986
Alex Deucher97b2e202015-04-20 16:51:00 -0400987/*
988 * context related structures
989 */
990
Christian König21c16bf2015-07-07 17:24:49 +0200991struct amdgpu_ctx_ring {
Christian König91404fb2015-08-05 18:33:21 +0200992 uint64_t sequence;
Chunming Zhou37cd0ca2015-12-10 15:45:11 +0800993 struct fence **fences;
Christian König91404fb2015-08-05 18:33:21 +0200994 struct amd_sched_entity entity;
Christian König21c16bf2015-07-07 17:24:49 +0200995};
996
Alex Deucher97b2e202015-04-20 16:51:00 -0400997struct amdgpu_ctx {
Alex Deucher0b492a42015-08-16 22:48:26 -0400998 struct kref refcount;
Chunming Zhou9cb7e5a2015-07-21 13:17:19 +0800999 struct amdgpu_device *adev;
Alex Deucher0b492a42015-08-16 22:48:26 -04001000 unsigned reset_counter;
Christian König21c16bf2015-07-07 17:24:49 +02001001 spinlock_t ring_lock;
Chunming Zhou37cd0ca2015-12-10 15:45:11 +08001002 struct fence **fences;
Christian König21c16bf2015-07-07 17:24:49 +02001003 struct amdgpu_ctx_ring rings[AMDGPU_MAX_RINGS];
Alex Deucher97b2e202015-04-20 16:51:00 -04001004};
1005
1006struct amdgpu_ctx_mgr {
Alex Deucher0b492a42015-08-16 22:48:26 -04001007 struct amdgpu_device *adev;
1008 struct mutex lock;
1009 /* protected by lock */
1010 struct idr ctx_handles;
Alex Deucher97b2e202015-04-20 16:51:00 -04001011};
1012
Alex Deucher0b492a42015-08-16 22:48:26 -04001013struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id);
1014int amdgpu_ctx_put(struct amdgpu_ctx *ctx);
1015
Christian König21c16bf2015-07-07 17:24:49 +02001016uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
Christian Königce882e62015-08-19 15:00:55 +02001017 struct fence *fence);
Christian König21c16bf2015-07-07 17:24:49 +02001018struct fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
1019 struct amdgpu_ring *ring, uint64_t seq);
1020
Alex Deucher0b492a42015-08-16 22:48:26 -04001021int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
1022 struct drm_file *filp);
1023
Christian Königefd4ccb2015-08-04 16:20:31 +02001024void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr);
1025void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr);
Alex Deucher0b492a42015-08-16 22:48:26 -04001026
Alex Deucher97b2e202015-04-20 16:51:00 -04001027/*
1028 * file private structure
1029 */
1030
1031struct amdgpu_fpriv {
1032 struct amdgpu_vm vm;
1033 struct mutex bo_list_lock;
1034 struct idr bo_list_handles;
Alex Deucher0b492a42015-08-16 22:48:26 -04001035 struct amdgpu_ctx_mgr ctx_mgr;
Alex Deucher97b2e202015-04-20 16:51:00 -04001036};
1037
1038/*
1039 * residency list
1040 */
1041
1042struct amdgpu_bo_list {
1043 struct mutex lock;
1044 struct amdgpu_bo *gds_obj;
1045 struct amdgpu_bo *gws_obj;
1046 struct amdgpu_bo *oa_obj;
Christian König211dff52016-02-22 15:40:59 +01001047 unsigned first_userptr;
Alex Deucher97b2e202015-04-20 16:51:00 -04001048 unsigned num_entries;
1049 struct amdgpu_bo_list_entry *array;
1050};
1051
1052struct amdgpu_bo_list *
1053amdgpu_bo_list_get(struct amdgpu_fpriv *fpriv, int id);
Christian König636ce252015-12-18 21:26:47 +01001054void amdgpu_bo_list_get_list(struct amdgpu_bo_list *list,
1055 struct list_head *validated);
Alex Deucher97b2e202015-04-20 16:51:00 -04001056void amdgpu_bo_list_put(struct amdgpu_bo_list *list);
1057void amdgpu_bo_list_free(struct amdgpu_bo_list *list);
1058
1059/*
1060 * GFX stuff
1061 */
1062#include "clearstate_defs.h"
1063
1064struct amdgpu_rlc {
1065 /* for power gating */
1066 struct amdgpu_bo *save_restore_obj;
1067 uint64_t save_restore_gpu_addr;
1068 volatile uint32_t *sr_ptr;
1069 const u32 *reg_list;
1070 u32 reg_list_size;
1071 /* for clear state */
1072 struct amdgpu_bo *clear_state_obj;
1073 uint64_t clear_state_gpu_addr;
1074 volatile uint32_t *cs_ptr;
1075 const struct cs_section_def *cs_data;
1076 u32 clear_state_size;
1077 /* for cp tables */
1078 struct amdgpu_bo *cp_table_obj;
1079 uint64_t cp_table_gpu_addr;
1080 volatile uint32_t *cp_table_ptr;
1081 u32 cp_table_size;
1082};
1083
1084struct amdgpu_mec {
1085 struct amdgpu_bo *hpd_eop_obj;
1086 u64 hpd_eop_gpu_addr;
1087 u32 num_pipe;
1088 u32 num_mec;
1089 u32 num_queue;
1090};
1091
1092/*
1093 * GPU scratch registers structures, functions & helpers
1094 */
1095struct amdgpu_scratch {
1096 unsigned num_reg;
1097 uint32_t reg_base;
1098 bool free[32];
1099 uint32_t reg[32];
1100};
1101
1102/*
1103 * GFX configurations
1104 */
1105struct amdgpu_gca_config {
1106 unsigned max_shader_engines;
1107 unsigned max_tile_pipes;
1108 unsigned max_cu_per_sh;
1109 unsigned max_sh_per_se;
1110 unsigned max_backends_per_se;
1111 unsigned max_texture_channel_caches;
1112 unsigned max_gprs;
1113 unsigned max_gs_threads;
1114 unsigned max_hw_contexts;
1115 unsigned sc_prim_fifo_size_frontend;
1116 unsigned sc_prim_fifo_size_backend;
1117 unsigned sc_hiz_tile_fifo_size;
1118 unsigned sc_earlyz_tile_fifo_size;
1119
1120 unsigned num_tile_pipes;
1121 unsigned backend_enable_mask;
1122 unsigned mem_max_burst_length_bytes;
1123 unsigned mem_row_size_in_kb;
1124 unsigned shader_engine_tile_size;
1125 unsigned num_gpus;
1126 unsigned multi_gpu_tile_size;
1127 unsigned mc_arb_ramcfg;
1128 unsigned gb_addr_config;
Alex Deucher8f8e00c2016-02-12 00:39:13 -05001129 unsigned num_rbs;
Alex Deucher97b2e202015-04-20 16:51:00 -04001130
1131 uint32_t tile_mode_array[32];
1132 uint32_t macrotile_mode_array[16];
1133};
1134
1135struct amdgpu_gfx {
1136 struct mutex gpu_clock_mutex;
1137 struct amdgpu_gca_config config;
1138 struct amdgpu_rlc rlc;
1139 struct amdgpu_mec mec;
1140 struct amdgpu_scratch scratch;
1141 const struct firmware *me_fw; /* ME firmware */
1142 uint32_t me_fw_version;
1143 const struct firmware *pfp_fw; /* PFP firmware */
1144 uint32_t pfp_fw_version;
1145 const struct firmware *ce_fw; /* CE firmware */
1146 uint32_t ce_fw_version;
1147 const struct firmware *rlc_fw; /* RLC firmware */
1148 uint32_t rlc_fw_version;
1149 const struct firmware *mec_fw; /* MEC firmware */
1150 uint32_t mec_fw_version;
1151 const struct firmware *mec2_fw; /* MEC2 firmware */
1152 uint32_t mec2_fw_version;
Ken Wang02558a02015-06-03 19:52:06 +08001153 uint32_t me_feature_version;
1154 uint32_t ce_feature_version;
1155 uint32_t pfp_feature_version;
Jammy Zhou351643d2015-08-04 10:43:50 +08001156 uint32_t rlc_feature_version;
1157 uint32_t mec_feature_version;
1158 uint32_t mec2_feature_version;
Alex Deucher97b2e202015-04-20 16:51:00 -04001159 struct amdgpu_ring gfx_ring[AMDGPU_MAX_GFX_RINGS];
1160 unsigned num_gfx_rings;
1161 struct amdgpu_ring compute_ring[AMDGPU_MAX_COMPUTE_RINGS];
1162 unsigned num_compute_rings;
1163 struct amdgpu_irq_src eop_irq;
1164 struct amdgpu_irq_src priv_reg_irq;
1165 struct amdgpu_irq_src priv_inst_irq;
1166 /* gfx status */
1167 uint32_t gfx_current_status;
Ken Wanga101a892015-06-03 17:47:54 +08001168 /* ce ram size*/
1169 unsigned ce_ram_size;
Alex Deucher97b2e202015-04-20 16:51:00 -04001170};
1171
Christian Königb07c60c2016-01-31 12:29:04 +01001172int amdgpu_ib_get(struct amdgpu_device *adev, struct amdgpu_vm *vm,
Alex Deucher97b2e202015-04-20 16:51:00 -04001173 unsigned size, struct amdgpu_ib *ib);
1174void amdgpu_ib_free(struct amdgpu_device *adev, struct amdgpu_ib *ib);
Christian Königb07c60c2016-01-31 12:29:04 +01001175int amdgpu_ib_schedule(struct amdgpu_ring *ring, unsigned num_ibs,
Christian König336d1f52016-02-16 10:57:10 +01001176 struct amdgpu_ib *ib, struct fence *last_vm_update,
Christian Königec72b802016-02-01 11:56:35 +01001177 struct fence **f);
Alex Deucher97b2e202015-04-20 16:51:00 -04001178int amdgpu_ib_pool_init(struct amdgpu_device *adev);
1179void amdgpu_ib_pool_fini(struct amdgpu_device *adev);
1180int amdgpu_ib_ring_tests(struct amdgpu_device *adev);
Alex Deucher97b2e202015-04-20 16:51:00 -04001181int amdgpu_ring_alloc(struct amdgpu_ring *ring, unsigned ndw);
Jammy Zhouedff0e22015-09-01 13:04:08 +08001182void amdgpu_ring_insert_nop(struct amdgpu_ring *ring, uint32_t count);
Christian König9e5d53092016-01-31 12:20:55 +01001183void amdgpu_ring_generic_pad_ib(struct amdgpu_ring *ring, struct amdgpu_ib *ib);
Alex Deucher97b2e202015-04-20 16:51:00 -04001184void amdgpu_ring_commit(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -04001185void amdgpu_ring_undo(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -04001186unsigned amdgpu_ring_backup(struct amdgpu_ring *ring,
1187 uint32_t **data);
1188int amdgpu_ring_restore(struct amdgpu_ring *ring,
1189 unsigned size, uint32_t *data);
1190int amdgpu_ring_init(struct amdgpu_device *adev, struct amdgpu_ring *ring,
1191 unsigned ring_size, u32 nop, u32 align_mask,
1192 struct amdgpu_irq_src *irq_src, unsigned irq_type,
1193 enum amdgpu_ring_type ring_type);
1194void amdgpu_ring_fini(struct amdgpu_ring *ring);
Christian König8120b612015-10-22 11:29:33 +02001195struct amdgpu_ring *amdgpu_ring_from_fence(struct fence *f);
Alex Deucher97b2e202015-04-20 16:51:00 -04001196
1197/*
1198 * CS.
1199 */
1200struct amdgpu_cs_chunk {
1201 uint32_t chunk_id;
1202 uint32_t length_dw;
1203 uint32_t *kdata;
Alex Deucher97b2e202015-04-20 16:51:00 -04001204};
1205
1206struct amdgpu_cs_parser {
1207 struct amdgpu_device *adev;
1208 struct drm_file *filp;
Christian König3cb485f2015-05-11 15:34:59 +02001209 struct amdgpu_ctx *ctx;
Christian Königc3cca412015-12-15 14:41:33 +01001210
Alex Deucher97b2e202015-04-20 16:51:00 -04001211 /* chunks */
1212 unsigned nchunks;
1213 struct amdgpu_cs_chunk *chunks;
Alex Deucher97b2e202015-04-20 16:51:00 -04001214
Christian König50838c82016-02-03 13:44:52 +01001215 /* scheduler job object */
1216 struct amdgpu_job *job;
Alex Deucher97b2e202015-04-20 16:51:00 -04001217
Christian Königc3cca412015-12-15 14:41:33 +01001218 /* buffer objects */
1219 struct ww_acquire_ctx ticket;
1220 struct amdgpu_bo_list *bo_list;
1221 struct amdgpu_bo_list_entry vm_pd;
1222 struct list_head validated;
1223 struct fence *fence;
1224 uint64_t bytes_moved_threshold;
1225 uint64_t bytes_moved;
Alex Deucher97b2e202015-04-20 16:51:00 -04001226
1227 /* user fence */
Christian König91acbeb2015-12-14 16:42:31 +01001228 struct amdgpu_bo_list_entry uf_entry;
Alex Deucher97b2e202015-04-20 16:51:00 -04001229};
1230
Chunming Zhoubb977d32015-08-18 15:16:40 +08001231struct amdgpu_job {
1232 struct amd_sched_job base;
1233 struct amdgpu_device *adev;
Christian Königb07c60c2016-01-31 12:29:04 +01001234 struct amdgpu_ring *ring;
Christian Könige86f9ce2016-02-08 12:13:05 +01001235 struct amdgpu_sync sync;
Chunming Zhoubb977d32015-08-18 15:16:40 +08001236 struct amdgpu_ib *ibs;
1237 uint32_t num_ibs;
Christian Könige2840222015-11-05 19:49:48 +01001238 void *owner;
Chunming Zhoubb977d32015-08-18 15:16:40 +08001239 struct amdgpu_user_fence uf;
Chunming Zhoubb977d32015-08-18 15:16:40 +08001240};
Junwei Zhanga6db8a32015-09-09 09:21:19 +08001241#define to_amdgpu_job(sched_job) \
1242 container_of((sched_job), struct amdgpu_job, base)
Chunming Zhoubb977d32015-08-18 15:16:40 +08001243
Christian König7270f832016-01-31 11:00:41 +01001244static inline u32 amdgpu_get_ib_value(struct amdgpu_cs_parser *p,
1245 uint32_t ib_idx, int idx)
Alex Deucher97b2e202015-04-20 16:51:00 -04001246{
Christian König50838c82016-02-03 13:44:52 +01001247 return p->job->ibs[ib_idx].ptr[idx];
Alex Deucher97b2e202015-04-20 16:51:00 -04001248}
1249
Christian König7270f832016-01-31 11:00:41 +01001250static inline void amdgpu_set_ib_value(struct amdgpu_cs_parser *p,
1251 uint32_t ib_idx, int idx,
1252 uint32_t value)
1253{
Christian König50838c82016-02-03 13:44:52 +01001254 p->job->ibs[ib_idx].ptr[idx] = value;
Christian König7270f832016-01-31 11:00:41 +01001255}
1256
Alex Deucher97b2e202015-04-20 16:51:00 -04001257/*
1258 * Writeback
1259 */
1260#define AMDGPU_MAX_WB 1024 /* Reserve at most 1024 WB slots for amdgpu-owned rings. */
1261
1262struct amdgpu_wb {
1263 struct amdgpu_bo *wb_obj;
1264 volatile uint32_t *wb;
1265 uint64_t gpu_addr;
1266 u32 num_wb; /* Number of wb slots actually reserved for amdgpu. */
1267 unsigned long used[DIV_ROUND_UP(AMDGPU_MAX_WB, BITS_PER_LONG)];
1268};
1269
1270int amdgpu_wb_get(struct amdgpu_device *adev, u32 *wb);
1271void amdgpu_wb_free(struct amdgpu_device *adev, u32 wb);
1272
Alex Deucher97b2e202015-04-20 16:51:00 -04001273
Alex Deucher97b2e202015-04-20 16:51:00 -04001274
1275enum amdgpu_int_thermal_type {
1276 THERMAL_TYPE_NONE,
1277 THERMAL_TYPE_EXTERNAL,
1278 THERMAL_TYPE_EXTERNAL_GPIO,
1279 THERMAL_TYPE_RV6XX,
1280 THERMAL_TYPE_RV770,
1281 THERMAL_TYPE_ADT7473_WITH_INTERNAL,
1282 THERMAL_TYPE_EVERGREEN,
1283 THERMAL_TYPE_SUMO,
1284 THERMAL_TYPE_NI,
1285 THERMAL_TYPE_SI,
1286 THERMAL_TYPE_EMC2103_WITH_INTERNAL,
1287 THERMAL_TYPE_CI,
1288 THERMAL_TYPE_KV,
1289};
1290
1291enum amdgpu_dpm_auto_throttle_src {
1292 AMDGPU_DPM_AUTO_THROTTLE_SRC_THERMAL,
1293 AMDGPU_DPM_AUTO_THROTTLE_SRC_EXTERNAL
1294};
1295
1296enum amdgpu_dpm_event_src {
1297 AMDGPU_DPM_EVENT_SRC_ANALOG = 0,
1298 AMDGPU_DPM_EVENT_SRC_EXTERNAL = 1,
1299 AMDGPU_DPM_EVENT_SRC_DIGITAL = 2,
1300 AMDGPU_DPM_EVENT_SRC_ANALOG_OR_EXTERNAL = 3,
1301 AMDGPU_DPM_EVENT_SRC_DIGIAL_OR_EXTERNAL = 4
1302};
1303
1304#define AMDGPU_MAX_VCE_LEVELS 6
1305
1306enum amdgpu_vce_level {
1307 AMDGPU_VCE_LEVEL_AC_ALL = 0, /* AC, All cases */
1308 AMDGPU_VCE_LEVEL_DC_EE = 1, /* DC, entropy encoding */
1309 AMDGPU_VCE_LEVEL_DC_LL_LOW = 2, /* DC, low latency queue, res <= 720 */
1310 AMDGPU_VCE_LEVEL_DC_LL_HIGH = 3, /* DC, low latency queue, 1080 >= res > 720 */
1311 AMDGPU_VCE_LEVEL_DC_GP_LOW = 4, /* DC, general purpose queue, res <= 720 */
1312 AMDGPU_VCE_LEVEL_DC_GP_HIGH = 5, /* DC, general purpose queue, 1080 >= res > 720 */
1313};
1314
1315struct amdgpu_ps {
1316 u32 caps; /* vbios flags */
1317 u32 class; /* vbios flags */
1318 u32 class2; /* vbios flags */
1319 /* UVD clocks */
1320 u32 vclk;
1321 u32 dclk;
1322 /* VCE clocks */
1323 u32 evclk;
1324 u32 ecclk;
1325 bool vce_active;
1326 enum amdgpu_vce_level vce_level;
1327 /* asic priv */
1328 void *ps_priv;
1329};
1330
1331struct amdgpu_dpm_thermal {
1332 /* thermal interrupt work */
1333 struct work_struct work;
1334 /* low temperature threshold */
1335 int min_temp;
1336 /* high temperature threshold */
1337 int max_temp;
1338 /* was last interrupt low to high or high to low */
1339 bool high_to_low;
1340 /* interrupt source */
1341 struct amdgpu_irq_src irq;
1342};
1343
1344enum amdgpu_clk_action
1345{
1346 AMDGPU_SCLK_UP = 1,
1347 AMDGPU_SCLK_DOWN
1348};
1349
1350struct amdgpu_blacklist_clocks
1351{
1352 u32 sclk;
1353 u32 mclk;
1354 enum amdgpu_clk_action action;
1355};
1356
1357struct amdgpu_clock_and_voltage_limits {
1358 u32 sclk;
1359 u32 mclk;
1360 u16 vddc;
1361 u16 vddci;
1362};
1363
1364struct amdgpu_clock_array {
1365 u32 count;
1366 u32 *values;
1367};
1368
1369struct amdgpu_clock_voltage_dependency_entry {
1370 u32 clk;
1371 u16 v;
1372};
1373
1374struct amdgpu_clock_voltage_dependency_table {
1375 u32 count;
1376 struct amdgpu_clock_voltage_dependency_entry *entries;
1377};
1378
1379union amdgpu_cac_leakage_entry {
1380 struct {
1381 u16 vddc;
1382 u32 leakage;
1383 };
1384 struct {
1385 u16 vddc1;
1386 u16 vddc2;
1387 u16 vddc3;
1388 };
1389};
1390
1391struct amdgpu_cac_leakage_table {
1392 u32 count;
1393 union amdgpu_cac_leakage_entry *entries;
1394};
1395
1396struct amdgpu_phase_shedding_limits_entry {
1397 u16 voltage;
1398 u32 sclk;
1399 u32 mclk;
1400};
1401
1402struct amdgpu_phase_shedding_limits_table {
1403 u32 count;
1404 struct amdgpu_phase_shedding_limits_entry *entries;
1405};
1406
1407struct amdgpu_uvd_clock_voltage_dependency_entry {
1408 u32 vclk;
1409 u32 dclk;
1410 u16 v;
1411};
1412
1413struct amdgpu_uvd_clock_voltage_dependency_table {
1414 u8 count;
1415 struct amdgpu_uvd_clock_voltage_dependency_entry *entries;
1416};
1417
1418struct amdgpu_vce_clock_voltage_dependency_entry {
1419 u32 ecclk;
1420 u32 evclk;
1421 u16 v;
1422};
1423
1424struct amdgpu_vce_clock_voltage_dependency_table {
1425 u8 count;
1426 struct amdgpu_vce_clock_voltage_dependency_entry *entries;
1427};
1428
1429struct amdgpu_ppm_table {
1430 u8 ppm_design;
1431 u16 cpu_core_number;
1432 u32 platform_tdp;
1433 u32 small_ac_platform_tdp;
1434 u32 platform_tdc;
1435 u32 small_ac_platform_tdc;
1436 u32 apu_tdp;
1437 u32 dgpu_tdp;
1438 u32 dgpu_ulv_power;
1439 u32 tj_max;
1440};
1441
1442struct amdgpu_cac_tdp_table {
1443 u16 tdp;
1444 u16 configurable_tdp;
1445 u16 tdc;
1446 u16 battery_power_limit;
1447 u16 small_power_limit;
1448 u16 low_cac_leakage;
1449 u16 high_cac_leakage;
1450 u16 maximum_power_delivery_limit;
1451};
1452
1453struct amdgpu_dpm_dynamic_state {
1454 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_sclk;
1455 struct amdgpu_clock_voltage_dependency_table vddci_dependency_on_mclk;
1456 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_mclk;
1457 struct amdgpu_clock_voltage_dependency_table mvdd_dependency_on_mclk;
1458 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_dispclk;
1459 struct amdgpu_uvd_clock_voltage_dependency_table uvd_clock_voltage_dependency_table;
1460 struct amdgpu_vce_clock_voltage_dependency_table vce_clock_voltage_dependency_table;
1461 struct amdgpu_clock_voltage_dependency_table samu_clock_voltage_dependency_table;
1462 struct amdgpu_clock_voltage_dependency_table acp_clock_voltage_dependency_table;
1463 struct amdgpu_clock_voltage_dependency_table vddgfx_dependency_on_sclk;
1464 struct amdgpu_clock_array valid_sclk_values;
1465 struct amdgpu_clock_array valid_mclk_values;
1466 struct amdgpu_clock_and_voltage_limits max_clock_voltage_on_dc;
1467 struct amdgpu_clock_and_voltage_limits max_clock_voltage_on_ac;
1468 u32 mclk_sclk_ratio;
1469 u32 sclk_mclk_delta;
1470 u16 vddc_vddci_delta;
1471 u16 min_vddc_for_pcie_gen2;
1472 struct amdgpu_cac_leakage_table cac_leakage_table;
1473 struct amdgpu_phase_shedding_limits_table phase_shedding_limits_table;
1474 struct amdgpu_ppm_table *ppm_table;
1475 struct amdgpu_cac_tdp_table *cac_tdp_table;
1476};
1477
1478struct amdgpu_dpm_fan {
1479 u16 t_min;
1480 u16 t_med;
1481 u16 t_high;
1482 u16 pwm_min;
1483 u16 pwm_med;
1484 u16 pwm_high;
1485 u8 t_hyst;
1486 u32 cycle_delay;
1487 u16 t_max;
1488 u8 control_mode;
1489 u16 default_max_fan_pwm;
1490 u16 default_fan_output_sensitivity;
1491 u16 fan_output_sensitivity;
1492 bool ucode_fan_control;
1493};
1494
1495enum amdgpu_pcie_gen {
1496 AMDGPU_PCIE_GEN1 = 0,
1497 AMDGPU_PCIE_GEN2 = 1,
1498 AMDGPU_PCIE_GEN3 = 2,
1499 AMDGPU_PCIE_GEN_INVALID = 0xffff
1500};
1501
1502enum amdgpu_dpm_forced_level {
1503 AMDGPU_DPM_FORCED_LEVEL_AUTO = 0,
1504 AMDGPU_DPM_FORCED_LEVEL_LOW = 1,
1505 AMDGPU_DPM_FORCED_LEVEL_HIGH = 2,
Eric Huangf3898ea2015-12-11 16:24:34 -05001506 AMDGPU_DPM_FORCED_LEVEL_MANUAL = 3,
Alex Deucher97b2e202015-04-20 16:51:00 -04001507};
1508
1509struct amdgpu_vce_state {
1510 /* vce clocks */
1511 u32 evclk;
1512 u32 ecclk;
1513 /* gpu clocks */
1514 u32 sclk;
1515 u32 mclk;
1516 u8 clk_idx;
1517 u8 pstate;
1518};
1519
1520struct amdgpu_dpm_funcs {
1521 int (*get_temperature)(struct amdgpu_device *adev);
1522 int (*pre_set_power_state)(struct amdgpu_device *adev);
1523 int (*set_power_state)(struct amdgpu_device *adev);
1524 void (*post_set_power_state)(struct amdgpu_device *adev);
1525 void (*display_configuration_changed)(struct amdgpu_device *adev);
1526 u32 (*get_sclk)(struct amdgpu_device *adev, bool low);
1527 u32 (*get_mclk)(struct amdgpu_device *adev, bool low);
1528 void (*print_power_state)(struct amdgpu_device *adev, struct amdgpu_ps *ps);
1529 void (*debugfs_print_current_performance_level)(struct amdgpu_device *adev, struct seq_file *m);
1530 int (*force_performance_level)(struct amdgpu_device *adev, enum amdgpu_dpm_forced_level level);
1531 bool (*vblank_too_short)(struct amdgpu_device *adev);
1532 void (*powergate_uvd)(struct amdgpu_device *adev, bool gate);
Sonny Jiangb7a07762015-05-28 15:47:53 -04001533 void (*powergate_vce)(struct amdgpu_device *adev, bool gate);
Alex Deucher97b2e202015-04-20 16:51:00 -04001534 void (*enable_bapm)(struct amdgpu_device *adev, bool enable);
1535 void (*set_fan_control_mode)(struct amdgpu_device *adev, u32 mode);
1536 u32 (*get_fan_control_mode)(struct amdgpu_device *adev);
1537 int (*set_fan_speed_percent)(struct amdgpu_device *adev, u32 speed);
1538 int (*get_fan_speed_percent)(struct amdgpu_device *adev, u32 *speed);
1539};
1540
1541struct amdgpu_dpm {
1542 struct amdgpu_ps *ps;
1543 /* number of valid power states */
1544 int num_ps;
1545 /* current power state that is active */
1546 struct amdgpu_ps *current_ps;
1547 /* requested power state */
1548 struct amdgpu_ps *requested_ps;
1549 /* boot up power state */
1550 struct amdgpu_ps *boot_ps;
1551 /* default uvd power state */
1552 struct amdgpu_ps *uvd_ps;
1553 /* vce requirements */
1554 struct amdgpu_vce_state vce_states[AMDGPU_MAX_VCE_LEVELS];
1555 enum amdgpu_vce_level vce_level;
Rex Zhu3a2c7882015-08-25 15:57:43 +08001556 enum amd_pm_state_type state;
1557 enum amd_pm_state_type user_state;
Alex Deucher97b2e202015-04-20 16:51:00 -04001558 u32 platform_caps;
1559 u32 voltage_response_time;
1560 u32 backbias_response_time;
1561 void *priv;
1562 u32 new_active_crtcs;
1563 int new_active_crtc_count;
1564 u32 current_active_crtcs;
1565 int current_active_crtc_count;
1566 struct amdgpu_dpm_dynamic_state dyn_state;
1567 struct amdgpu_dpm_fan fan;
1568 u32 tdp_limit;
1569 u32 near_tdp_limit;
1570 u32 near_tdp_limit_adjusted;
1571 u32 sq_ramping_threshold;
1572 u32 cac_leakage;
1573 u16 tdp_od_limit;
1574 u32 tdp_adjustment;
1575 u16 load_line_slope;
1576 bool power_control;
1577 bool ac_power;
1578 /* special states active */
1579 bool thermal_active;
1580 bool uvd_active;
1581 bool vce_active;
1582 /* thermal handling */
1583 struct amdgpu_dpm_thermal thermal;
1584 /* forced levels */
1585 enum amdgpu_dpm_forced_level forced_level;
1586};
1587
1588struct amdgpu_pm {
1589 struct mutex mutex;
Alex Deucher97b2e202015-04-20 16:51:00 -04001590 u32 current_sclk;
1591 u32 current_mclk;
1592 u32 default_sclk;
1593 u32 default_mclk;
1594 struct amdgpu_i2c_chan *i2c_bus;
1595 /* internal thermal controller on rv6xx+ */
1596 enum amdgpu_int_thermal_type int_thermal_type;
1597 struct device *int_hwmon_dev;
1598 /* fan control parameters */
1599 bool no_fan;
1600 u8 fan_pulses_per_revolution;
1601 u8 fan_min_rpm;
1602 u8 fan_max_rpm;
1603 /* dpm */
1604 bool dpm_enabled;
Alex Deucherc86f5ebf2015-10-23 10:45:14 -04001605 bool sysfs_initialized;
Alex Deucher97b2e202015-04-20 16:51:00 -04001606 struct amdgpu_dpm dpm;
1607 const struct firmware *fw; /* SMC firmware */
1608 uint32_t fw_version;
1609 const struct amdgpu_dpm_funcs *funcs;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05001610 uint32_t pcie_gen_mask;
1611 uint32_t pcie_mlw_mask;
Rex Zhu7fb72a12015-11-19 13:35:30 +08001612 struct amd_pp_display_configuration pm_display_cfg;/* set by DAL */
Alex Deucher97b2e202015-04-20 16:51:00 -04001613};
1614
Alex Deucherd0dd7f02015-11-11 19:45:06 -05001615void amdgpu_get_pcie_info(struct amdgpu_device *adev);
1616
Alex Deucher97b2e202015-04-20 16:51:00 -04001617/*
1618 * UVD
1619 */
1620#define AMDGPU_MAX_UVD_HANDLES 10
1621#define AMDGPU_UVD_STACK_SIZE (1024*1024)
1622#define AMDGPU_UVD_HEAP_SIZE (1024*1024)
1623#define AMDGPU_UVD_FIRMWARE_OFFSET 256
1624
1625struct amdgpu_uvd {
1626 struct amdgpu_bo *vcpu_bo;
1627 void *cpu_addr;
1628 uint64_t gpu_addr;
Alex Deucher97b2e202015-04-20 16:51:00 -04001629 atomic_t handles[AMDGPU_MAX_UVD_HANDLES];
1630 struct drm_file *filp[AMDGPU_MAX_UVD_HANDLES];
1631 struct delayed_work idle_work;
1632 const struct firmware *fw; /* UVD firmware */
1633 struct amdgpu_ring ring;
1634 struct amdgpu_irq_src irq;
1635 bool address_64_bit;
Christian Königead833e2016-02-10 14:35:19 +01001636 struct amd_sched_entity entity;
Alex Deucher97b2e202015-04-20 16:51:00 -04001637};
1638
1639/*
1640 * VCE
1641 */
1642#define AMDGPU_MAX_VCE_HANDLES 16
Alex Deucher97b2e202015-04-20 16:51:00 -04001643#define AMDGPU_VCE_FIRMWARE_OFFSET 256
1644
Alex Deucher6a585772015-07-10 14:16:24 -04001645#define AMDGPU_VCE_HARVEST_VCE0 (1 << 0)
1646#define AMDGPU_VCE_HARVEST_VCE1 (1 << 1)
1647
Alex Deucher97b2e202015-04-20 16:51:00 -04001648struct amdgpu_vce {
1649 struct amdgpu_bo *vcpu_bo;
1650 uint64_t gpu_addr;
1651 unsigned fw_version;
1652 unsigned fb_version;
1653 atomic_t handles[AMDGPU_MAX_VCE_HANDLES];
1654 struct drm_file *filp[AMDGPU_MAX_VCE_HANDLES];
Christian Königf1689ec2015-06-11 20:56:18 +02001655 uint32_t img_size[AMDGPU_MAX_VCE_HANDLES];
Alex Deucher97b2e202015-04-20 16:51:00 -04001656 struct delayed_work idle_work;
1657 const struct firmware *fw; /* VCE firmware */
1658 struct amdgpu_ring ring[AMDGPU_MAX_VCE_RINGS];
1659 struct amdgpu_irq_src irq;
Alex Deucher6a585772015-07-10 14:16:24 -04001660 unsigned harvest_config;
Christian Königc5949892016-02-10 17:43:00 +01001661 struct amd_sched_entity entity;
Alex Deucher97b2e202015-04-20 16:51:00 -04001662};
1663
1664/*
1665 * SDMA
1666 */
Alex Deucherc113ea12015-10-08 16:30:37 -04001667struct amdgpu_sdma_instance {
Alex Deucher97b2e202015-04-20 16:51:00 -04001668 /* SDMA firmware */
1669 const struct firmware *fw;
1670 uint32_t fw_version;
Jammy Zhoucfa21042015-08-04 10:50:47 +08001671 uint32_t feature_version;
Alex Deucher97b2e202015-04-20 16:51:00 -04001672
1673 struct amdgpu_ring ring;
Jammy Zhou18111de2015-08-31 14:06:39 +08001674 bool burst_nop;
Alex Deucher97b2e202015-04-20 16:51:00 -04001675};
1676
Alex Deucherc113ea12015-10-08 16:30:37 -04001677struct amdgpu_sdma {
1678 struct amdgpu_sdma_instance instance[AMDGPU_MAX_SDMA_INSTANCES];
1679 struct amdgpu_irq_src trap_irq;
1680 struct amdgpu_irq_src illegal_inst_irq;
1681 int num_instances;
1682};
1683
Alex Deucher97b2e202015-04-20 16:51:00 -04001684/*
1685 * Firmware
1686 */
1687struct amdgpu_firmware {
1688 struct amdgpu_firmware_info ucode[AMDGPU_UCODE_ID_MAXIMUM];
1689 bool smu_load;
1690 struct amdgpu_bo *fw_buf;
1691 unsigned int fw_size;
1692};
1693
1694/*
1695 * Benchmarking
1696 */
1697void amdgpu_benchmark(struct amdgpu_device *adev, int test_number);
1698
1699
1700/*
1701 * Testing
1702 */
1703void amdgpu_test_moves(struct amdgpu_device *adev);
1704void amdgpu_test_ring_sync(struct amdgpu_device *adev,
1705 struct amdgpu_ring *cpA,
1706 struct amdgpu_ring *cpB);
1707void amdgpu_test_syncing(struct amdgpu_device *adev);
1708
1709/*
1710 * MMU Notifier
1711 */
1712#if defined(CONFIG_MMU_NOTIFIER)
1713int amdgpu_mn_register(struct amdgpu_bo *bo, unsigned long addr);
1714void amdgpu_mn_unregister(struct amdgpu_bo *bo);
1715#else
Harry Wentland1d1106b2015-07-15 07:10:41 -04001716static inline int amdgpu_mn_register(struct amdgpu_bo *bo, unsigned long addr)
Alex Deucher97b2e202015-04-20 16:51:00 -04001717{
1718 return -ENODEV;
1719}
Harry Wentland1d1106b2015-07-15 07:10:41 -04001720static inline void amdgpu_mn_unregister(struct amdgpu_bo *bo) {}
Alex Deucher97b2e202015-04-20 16:51:00 -04001721#endif
1722
1723/*
1724 * Debugfs
1725 */
1726struct amdgpu_debugfs {
1727 struct drm_info_list *files;
1728 unsigned num_files;
1729};
1730
1731int amdgpu_debugfs_add_files(struct amdgpu_device *adev,
1732 struct drm_info_list *files,
1733 unsigned nfiles);
1734int amdgpu_debugfs_fence_init(struct amdgpu_device *adev);
1735
1736#if defined(CONFIG_DEBUG_FS)
1737int amdgpu_debugfs_init(struct drm_minor *minor);
1738void amdgpu_debugfs_cleanup(struct drm_minor *minor);
1739#endif
1740
1741/*
1742 * amdgpu smumgr functions
1743 */
1744struct amdgpu_smumgr_funcs {
1745 int (*check_fw_load_finish)(struct amdgpu_device *adev, uint32_t fwtype);
1746 int (*request_smu_load_fw)(struct amdgpu_device *adev);
1747 int (*request_smu_specific_fw)(struct amdgpu_device *adev, uint32_t fwtype);
1748};
1749
1750/*
1751 * amdgpu smumgr
1752 */
1753struct amdgpu_smumgr {
1754 struct amdgpu_bo *toc_buf;
1755 struct amdgpu_bo *smu_buf;
1756 /* asic priv smu data */
1757 void *priv;
1758 spinlock_t smu_lock;
1759 /* smumgr functions */
1760 const struct amdgpu_smumgr_funcs *smumgr_funcs;
1761 /* ucode loading complete flag */
1762 uint32_t fw_flags;
1763};
1764
1765/*
1766 * ASIC specific register table accessible by UMD
1767 */
1768struct amdgpu_allowed_register_entry {
1769 uint32_t reg_offset;
1770 bool untouched;
1771 bool grbm_indexed;
1772};
1773
1774struct amdgpu_cu_info {
1775 uint32_t number; /* total active CU number */
1776 uint32_t ao_cu_mask;
1777 uint32_t bitmap[4][4];
1778};
1779
1780
1781/*
1782 * ASIC specific functions.
1783 */
1784struct amdgpu_asic_funcs {
1785 bool (*read_disabled_bios)(struct amdgpu_device *adev);
Alex Deucher7946b872015-11-24 10:14:28 -05001786 bool (*read_bios_from_rom)(struct amdgpu_device *adev,
1787 u8 *bios, u32 length_bytes);
Alex Deucher97b2e202015-04-20 16:51:00 -04001788 int (*read_register)(struct amdgpu_device *adev, u32 se_num,
1789 u32 sh_num, u32 reg_offset, u32 *value);
1790 void (*set_vga_state)(struct amdgpu_device *adev, bool state);
1791 int (*reset)(struct amdgpu_device *adev);
1792 /* wait for mc_idle */
1793 int (*wait_for_mc_idle)(struct amdgpu_device *adev);
1794 /* get the reference clock */
1795 u32 (*get_xclk)(struct amdgpu_device *adev);
1796 /* get the gpu clock counter */
1797 uint64_t (*get_gpu_clock_counter)(struct amdgpu_device *adev);
1798 int (*get_cu_info)(struct amdgpu_device *adev, struct amdgpu_cu_info *info);
1799 /* MM block clocks */
1800 int (*set_uvd_clocks)(struct amdgpu_device *adev, u32 vclk, u32 dclk);
1801 int (*set_vce_clocks)(struct amdgpu_device *adev, u32 evclk, u32 ecclk);
1802};
1803
1804/*
1805 * IOCTL.
1806 */
1807int amdgpu_gem_create_ioctl(struct drm_device *dev, void *data,
1808 struct drm_file *filp);
1809int amdgpu_bo_list_ioctl(struct drm_device *dev, void *data,
1810 struct drm_file *filp);
1811
1812int amdgpu_gem_info_ioctl(struct drm_device *dev, void *data,
1813 struct drm_file *filp);
1814int amdgpu_gem_userptr_ioctl(struct drm_device *dev, void *data,
1815 struct drm_file *filp);
1816int amdgpu_gem_mmap_ioctl(struct drm_device *dev, void *data,
1817 struct drm_file *filp);
1818int amdgpu_gem_wait_idle_ioctl(struct drm_device *dev, void *data,
1819 struct drm_file *filp);
1820int amdgpu_gem_va_ioctl(struct drm_device *dev, void *data,
1821 struct drm_file *filp);
1822int amdgpu_gem_op_ioctl(struct drm_device *dev, void *data,
1823 struct drm_file *filp);
1824int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
1825int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
1826
1827int amdgpu_gem_metadata_ioctl(struct drm_device *dev, void *data,
1828 struct drm_file *filp);
1829
1830/* VRAM scratch page for HDP bug, default vram page */
1831struct amdgpu_vram_scratch {
1832 struct amdgpu_bo *robj;
1833 volatile uint32_t *ptr;
1834 u64 gpu_addr;
1835};
1836
1837/*
1838 * ACPI
1839 */
1840struct amdgpu_atif_notification_cfg {
1841 bool enabled;
1842 int command_code;
1843};
1844
1845struct amdgpu_atif_notifications {
1846 bool display_switch;
1847 bool expansion_mode_change;
1848 bool thermal_state;
1849 bool forced_power_state;
1850 bool system_power_state;
1851 bool display_conf_change;
1852 bool px_gfx_switch;
1853 bool brightness_change;
1854 bool dgpu_display_event;
1855};
1856
1857struct amdgpu_atif_functions {
1858 bool system_params;
1859 bool sbios_requests;
1860 bool select_active_disp;
1861 bool lid_state;
1862 bool get_tv_standard;
1863 bool set_tv_standard;
1864 bool get_panel_expansion_mode;
1865 bool set_panel_expansion_mode;
1866 bool temperature_change;
1867 bool graphics_device_types;
1868};
1869
1870struct amdgpu_atif {
1871 struct amdgpu_atif_notifications notifications;
1872 struct amdgpu_atif_functions functions;
1873 struct amdgpu_atif_notification_cfg notification_cfg;
1874 struct amdgpu_encoder *encoder_for_bl;
1875};
1876
1877struct amdgpu_atcs_functions {
1878 bool get_ext_state;
1879 bool pcie_perf_req;
1880 bool pcie_dev_rdy;
1881 bool pcie_bus_width;
1882};
1883
1884struct amdgpu_atcs {
1885 struct amdgpu_atcs_functions functions;
1886};
1887
Alex Deucher97b2e202015-04-20 16:51:00 -04001888/*
Chunming Zhoud03846a2015-07-28 14:20:03 -04001889 * CGS
1890 */
1891void *amdgpu_cgs_create_device(struct amdgpu_device *adev);
1892void amdgpu_cgs_destroy_device(void *cgs_device);
1893
1894
1895/*
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -04001896 * CGS
1897 */
1898void *amdgpu_cgs_create_device(struct amdgpu_device *adev);
1899void amdgpu_cgs_destroy_device(void *cgs_device);
1900
1901
Alex Deucher7e471e62016-02-01 11:13:04 -05001902/* GPU virtualization */
1903struct amdgpu_virtualization {
1904 bool supports_sr_iov;
1905};
1906
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -04001907/*
Alex Deucher97b2e202015-04-20 16:51:00 -04001908 * Core structure, functions and helpers.
1909 */
1910typedef uint32_t (*amdgpu_rreg_t)(struct amdgpu_device*, uint32_t);
1911typedef void (*amdgpu_wreg_t)(struct amdgpu_device*, uint32_t, uint32_t);
1912
1913typedef uint32_t (*amdgpu_block_rreg_t)(struct amdgpu_device*, uint32_t, uint32_t);
1914typedef void (*amdgpu_block_wreg_t)(struct amdgpu_device*, uint32_t, uint32_t, uint32_t);
1915
Alex Deucher8faf0e02015-07-28 11:50:31 -04001916struct amdgpu_ip_block_status {
1917 bool valid;
1918 bool sw;
1919 bool hw;
1920};
1921
Alex Deucher97b2e202015-04-20 16:51:00 -04001922struct amdgpu_device {
1923 struct device *dev;
1924 struct drm_device *ddev;
1925 struct pci_dev *pdev;
Alex Deucher97b2e202015-04-20 16:51:00 -04001926
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -04001927#ifdef CONFIG_DRM_AMD_ACP
1928 struct amdgpu_acp acp;
1929#endif
1930
Alex Deucher97b2e202015-04-20 16:51:00 -04001931 /* ASIC */
Jammy Zhou2f7d10b2015-07-22 11:29:01 +08001932 enum amd_asic_type asic_type;
Alex Deucher97b2e202015-04-20 16:51:00 -04001933 uint32_t family;
1934 uint32_t rev_id;
1935 uint32_t external_rev_id;
1936 unsigned long flags;
1937 int usec_timeout;
1938 const struct amdgpu_asic_funcs *asic_funcs;
1939 bool shutdown;
1940 bool suspend;
1941 bool need_dma32;
1942 bool accel_working;
Alex Deucher97b2e202015-04-20 16:51:00 -04001943 struct work_struct reset_work;
1944 struct notifier_block acpi_nb;
1945 struct amdgpu_i2c_chan *i2c_bus[AMDGPU_MAX_I2C_BUS];
1946 struct amdgpu_debugfs debugfs[AMDGPU_DEBUGFS_MAX_COMPONENTS];
1947 unsigned debugfs_count;
1948#if defined(CONFIG_DEBUG_FS)
1949 struct dentry *debugfs_regs;
1950#endif
1951 struct amdgpu_atif atif;
1952 struct amdgpu_atcs atcs;
1953 struct mutex srbm_mutex;
1954 /* GRBM index mutex. Protects concurrent access to GRBM index */
1955 struct mutex grbm_idx_mutex;
1956 struct dev_pm_domain vga_pm_domain;
1957 bool have_disp_power_ref;
1958
1959 /* BIOS */
1960 uint8_t *bios;
1961 bool is_atom_bios;
1962 uint16_t bios_header_start;
1963 struct amdgpu_bo *stollen_vga_memory;
1964 uint32_t bios_scratch[AMDGPU_BIOS_NUM_SCRATCH];
1965
1966 /* Register/doorbell mmio */
1967 resource_size_t rmmio_base;
1968 resource_size_t rmmio_size;
1969 void __iomem *rmmio;
1970 /* protects concurrent MM_INDEX/DATA based register access */
1971 spinlock_t mmio_idx_lock;
1972 /* protects concurrent SMC based register access */
1973 spinlock_t smc_idx_lock;
1974 amdgpu_rreg_t smc_rreg;
1975 amdgpu_wreg_t smc_wreg;
1976 /* protects concurrent PCIE register access */
1977 spinlock_t pcie_idx_lock;
1978 amdgpu_rreg_t pcie_rreg;
1979 amdgpu_wreg_t pcie_wreg;
1980 /* protects concurrent UVD register access */
1981 spinlock_t uvd_ctx_idx_lock;
1982 amdgpu_rreg_t uvd_ctx_rreg;
1983 amdgpu_wreg_t uvd_ctx_wreg;
1984 /* protects concurrent DIDT register access */
1985 spinlock_t didt_idx_lock;
1986 amdgpu_rreg_t didt_rreg;
1987 amdgpu_wreg_t didt_wreg;
1988 /* protects concurrent ENDPOINT (audio) register access */
1989 spinlock_t audio_endpt_idx_lock;
1990 amdgpu_block_rreg_t audio_endpt_rreg;
1991 amdgpu_block_wreg_t audio_endpt_wreg;
1992 void __iomem *rio_mem;
1993 resource_size_t rio_mem_size;
1994 struct amdgpu_doorbell doorbell;
1995
1996 /* clock/pll info */
1997 struct amdgpu_clock clock;
1998
1999 /* MC */
2000 struct amdgpu_mc mc;
2001 struct amdgpu_gart gart;
2002 struct amdgpu_dummy_page dummy_page;
2003 struct amdgpu_vm_manager vm_manager;
2004
2005 /* memory management */
2006 struct amdgpu_mman mman;
Alex Deucher97b2e202015-04-20 16:51:00 -04002007 struct amdgpu_vram_scratch vram_scratch;
2008 struct amdgpu_wb wb;
2009 atomic64_t vram_usage;
2010 atomic64_t vram_vis_usage;
2011 atomic64_t gtt_usage;
2012 atomic64_t num_bytes_moved;
Marek Olšákd94aed52015-05-05 21:13:49 +02002013 atomic_t gpu_reset_counter;
Alex Deucher97b2e202015-04-20 16:51:00 -04002014
2015 /* display */
2016 struct amdgpu_mode_info mode_info;
2017 struct work_struct hotplug_work;
2018 struct amdgpu_irq_src crtc_irq;
2019 struct amdgpu_irq_src pageflip_irq;
2020 struct amdgpu_irq_src hpd_irq;
2021
2022 /* rings */
Alex Deucher97b2e202015-04-20 16:51:00 -04002023 unsigned fence_context;
Alex Deucher97b2e202015-04-20 16:51:00 -04002024 unsigned num_rings;
2025 struct amdgpu_ring *rings[AMDGPU_MAX_RINGS];
2026 bool ib_pool_ready;
2027 struct amdgpu_sa_manager ring_tmp_bo;
2028
2029 /* interrupts */
2030 struct amdgpu_irq irq;
2031
Alex Deucher1f7371b2015-12-02 17:46:21 -05002032 /* powerplay */
2033 struct amd_powerplay powerplay;
Jammy Zhoue61710c2015-11-10 18:31:08 -05002034 bool pp_enabled;
Eric Huangf3898ea2015-12-11 16:24:34 -05002035 bool pp_force_state_enabled;
Alex Deucher1f7371b2015-12-02 17:46:21 -05002036
Alex Deucher97b2e202015-04-20 16:51:00 -04002037 /* dpm */
2038 struct amdgpu_pm pm;
2039 u32 cg_flags;
2040 u32 pg_flags;
2041
2042 /* amdgpu smumgr */
2043 struct amdgpu_smumgr smu;
2044
2045 /* gfx */
2046 struct amdgpu_gfx gfx;
2047
2048 /* sdma */
Alex Deucherc113ea12015-10-08 16:30:37 -04002049 struct amdgpu_sdma sdma;
Alex Deucher97b2e202015-04-20 16:51:00 -04002050
2051 /* uvd */
Alex Deucher97b2e202015-04-20 16:51:00 -04002052 struct amdgpu_uvd uvd;
2053
2054 /* vce */
2055 struct amdgpu_vce vce;
2056
2057 /* firmwares */
2058 struct amdgpu_firmware firmware;
2059
2060 /* GDS */
2061 struct amdgpu_gds gds;
2062
2063 const struct amdgpu_ip_block_version *ip_blocks;
2064 int num_ip_blocks;
Alex Deucher8faf0e02015-07-28 11:50:31 -04002065 struct amdgpu_ip_block_status *ip_block_status;
Alex Deucher97b2e202015-04-20 16:51:00 -04002066 struct mutex mn_lock;
2067 DECLARE_HASHTABLE(mn_hash, 7);
2068
2069 /* tracking pinned memory */
2070 u64 vram_pin_size;
2071 u64 gart_pin_size;
Oded Gabbay130e0372015-06-12 21:35:14 +03002072
2073 /* amdkfd interface */
2074 struct kfd_dev *kfd;
Chunming Zhou23ca0e42015-07-06 13:42:58 +08002075
Alex Deucher7e471e62016-02-01 11:13:04 -05002076 struct amdgpu_virtualization virtualization;
Alex Deucher97b2e202015-04-20 16:51:00 -04002077};
2078
2079bool amdgpu_device_is_px(struct drm_device *dev);
2080int amdgpu_device_init(struct amdgpu_device *adev,
2081 struct drm_device *ddev,
2082 struct pci_dev *pdev,
2083 uint32_t flags);
2084void amdgpu_device_fini(struct amdgpu_device *adev);
2085int amdgpu_gpu_wait_for_idle(struct amdgpu_device *adev);
2086
2087uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg,
2088 bool always_indirect);
2089void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
2090 bool always_indirect);
2091u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg);
2092void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v);
2093
2094u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index);
2095void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v);
2096
2097/*
2098 * Cast helper
2099 */
2100extern const struct fence_ops amdgpu_fence_ops;
2101static inline struct amdgpu_fence *to_amdgpu_fence(struct fence *f)
2102{
2103 struct amdgpu_fence *__f = container_of(f, struct amdgpu_fence, base);
2104
2105 if (__f->base.ops == &amdgpu_fence_ops)
2106 return __f;
2107
2108 return NULL;
2109}
2110
2111/*
2112 * Registers read & write functions.
2113 */
2114#define RREG32(reg) amdgpu_mm_rreg(adev, (reg), false)
2115#define RREG32_IDX(reg) amdgpu_mm_rreg(adev, (reg), true)
2116#define DREG32(reg) printk(KERN_INFO "REGISTER: " #reg " : 0x%08X\n", amdgpu_mm_rreg(adev, (reg), false))
2117#define WREG32(reg, v) amdgpu_mm_wreg(adev, (reg), (v), false)
2118#define WREG32_IDX(reg, v) amdgpu_mm_wreg(adev, (reg), (v), true)
2119#define REG_SET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
2120#define REG_GET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
2121#define RREG32_PCIE(reg) adev->pcie_rreg(adev, (reg))
2122#define WREG32_PCIE(reg, v) adev->pcie_wreg(adev, (reg), (v))
2123#define RREG32_SMC(reg) adev->smc_rreg(adev, (reg))
2124#define WREG32_SMC(reg, v) adev->smc_wreg(adev, (reg), (v))
2125#define RREG32_UVD_CTX(reg) adev->uvd_ctx_rreg(adev, (reg))
2126#define WREG32_UVD_CTX(reg, v) adev->uvd_ctx_wreg(adev, (reg), (v))
2127#define RREG32_DIDT(reg) adev->didt_rreg(adev, (reg))
2128#define WREG32_DIDT(reg, v) adev->didt_wreg(adev, (reg), (v))
2129#define RREG32_AUDIO_ENDPT(block, reg) adev->audio_endpt_rreg(adev, (block), (reg))
2130#define WREG32_AUDIO_ENDPT(block, reg, v) adev->audio_endpt_wreg(adev, (block), (reg), (v))
2131#define WREG32_P(reg, val, mask) \
2132 do { \
2133 uint32_t tmp_ = RREG32(reg); \
2134 tmp_ &= (mask); \
2135 tmp_ |= ((val) & ~(mask)); \
2136 WREG32(reg, tmp_); \
2137 } while (0)
2138#define WREG32_AND(reg, and) WREG32_P(reg, 0, and)
2139#define WREG32_OR(reg, or) WREG32_P(reg, or, ~(or))
2140#define WREG32_PLL_P(reg, val, mask) \
2141 do { \
2142 uint32_t tmp_ = RREG32_PLL(reg); \
2143 tmp_ &= (mask); \
2144 tmp_ |= ((val) & ~(mask)); \
2145 WREG32_PLL(reg, tmp_); \
2146 } while (0)
2147#define DREG32_SYS(sqf, adev, reg) seq_printf((sqf), #reg " : 0x%08X\n", amdgpu_mm_rreg((adev), (reg), false))
2148#define RREG32_IO(reg) amdgpu_io_rreg(adev, (reg))
2149#define WREG32_IO(reg, v) amdgpu_io_wreg(adev, (reg), (v))
2150
2151#define RDOORBELL32(index) amdgpu_mm_rdoorbell(adev, (index))
2152#define WDOORBELL32(index, v) amdgpu_mm_wdoorbell(adev, (index), (v))
2153
2154#define REG_FIELD_SHIFT(reg, field) reg##__##field##__SHIFT
2155#define REG_FIELD_MASK(reg, field) reg##__##field##_MASK
2156
2157#define REG_SET_FIELD(orig_val, reg, field, field_val) \
2158 (((orig_val) & ~REG_FIELD_MASK(reg, field)) | \
2159 (REG_FIELD_MASK(reg, field) & ((field_val) << REG_FIELD_SHIFT(reg, field))))
2160
2161#define REG_GET_FIELD(value, reg, field) \
2162 (((value) & REG_FIELD_MASK(reg, field)) >> REG_FIELD_SHIFT(reg, field))
2163
2164/*
2165 * BIOS helpers.
2166 */
2167#define RBIOS8(i) (adev->bios[i])
2168#define RBIOS16(i) (RBIOS8(i) | (RBIOS8((i)+1) << 8))
2169#define RBIOS32(i) ((RBIOS16(i)) | (RBIOS16((i)+2) << 16))
2170
2171/*
2172 * RING helpers.
2173 */
2174static inline void amdgpu_ring_write(struct amdgpu_ring *ring, uint32_t v)
2175{
2176 if (ring->count_dw <= 0)
Jammy Zhou86c2b792015-05-13 22:52:42 +08002177 DRM_ERROR("amdgpu: writing more dwords to the ring than expected!\n");
Alex Deucher97b2e202015-04-20 16:51:00 -04002178 ring->ring[ring->wptr++] = v;
2179 ring->wptr &= ring->ptr_mask;
2180 ring->count_dw--;
Alex Deucher97b2e202015-04-20 16:51:00 -04002181}
2182
Alex Deucherc113ea12015-10-08 16:30:37 -04002183static inline struct amdgpu_sdma_instance *
2184amdgpu_get_sdma_instance(struct amdgpu_ring *ring)
Jammy Zhou4b2f7e22015-09-01 12:56:17 +08002185{
2186 struct amdgpu_device *adev = ring->adev;
2187 int i;
2188
Alex Deucherc113ea12015-10-08 16:30:37 -04002189 for (i = 0; i < adev->sdma.num_instances; i++)
2190 if (&adev->sdma.instance[i].ring == ring)
Jammy Zhou4b2f7e22015-09-01 12:56:17 +08002191 break;
2192
2193 if (i < AMDGPU_MAX_SDMA_INSTANCES)
Alex Deucherc113ea12015-10-08 16:30:37 -04002194 return &adev->sdma.instance[i];
Jammy Zhou4b2f7e22015-09-01 12:56:17 +08002195 else
2196 return NULL;
2197}
2198
Alex Deucher97b2e202015-04-20 16:51:00 -04002199/*
2200 * ASICs macro.
2201 */
2202#define amdgpu_asic_set_vga_state(adev, state) (adev)->asic_funcs->set_vga_state((adev), (state))
2203#define amdgpu_asic_reset(adev) (adev)->asic_funcs->reset((adev))
2204#define amdgpu_asic_wait_for_mc_idle(adev) (adev)->asic_funcs->wait_for_mc_idle((adev))
2205#define amdgpu_asic_get_xclk(adev) (adev)->asic_funcs->get_xclk((adev))
2206#define amdgpu_asic_set_uvd_clocks(adev, v, d) (adev)->asic_funcs->set_uvd_clocks((adev), (v), (d))
2207#define amdgpu_asic_set_vce_clocks(adev, ev, ec) (adev)->asic_funcs->set_vce_clocks((adev), (ev), (ec))
2208#define amdgpu_asic_get_gpu_clock_counter(adev) (adev)->asic_funcs->get_gpu_clock_counter((adev))
2209#define amdgpu_asic_read_disabled_bios(adev) (adev)->asic_funcs->read_disabled_bios((adev))
Alex Deucher7946b872015-11-24 10:14:28 -05002210#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 -04002211#define amdgpu_asic_read_register(adev, se, sh, offset, v)((adev)->asic_funcs->read_register((adev), (se), (sh), (offset), (v)))
2212#define amdgpu_asic_get_cu_info(adev, info) (adev)->asic_funcs->get_cu_info((adev), (info))
2213#define amdgpu_gart_flush_gpu_tlb(adev, vmid) (adev)->gart.gart_funcs->flush_gpu_tlb((adev), (vmid))
2214#define amdgpu_gart_set_pte_pde(adev, pt, idx, addr, flags) (adev)->gart.gart_funcs->set_pte_pde((adev), (pt), (idx), (addr), (flags))
2215#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 +01002216#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 -04002217#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 -04002218#define amdgpu_ring_parse_cs(r, p, ib) ((r)->funcs->parse_cs((p), (ib)))
2219#define amdgpu_ring_test_ring(r) (r)->funcs->test_ring((r))
2220#define amdgpu_ring_test_ib(r) (r)->funcs->test_ib((r))
Alex Deucher97b2e202015-04-20 16:51:00 -04002221#define amdgpu_ring_get_rptr(r) (r)->funcs->get_rptr((r))
2222#define amdgpu_ring_get_wptr(r) (r)->funcs->get_wptr((r))
2223#define amdgpu_ring_set_wptr(r) (r)->funcs->set_wptr((r))
2224#define amdgpu_ring_emit_ib(r, ib) (r)->funcs->emit_ib((r), (ib))
2225#define amdgpu_ring_emit_vm_flush(r, vmid, addr) (r)->funcs->emit_vm_flush((r), (vmid), (addr))
Chunming Zhou890ee232015-06-01 14:35:03 +08002226#define amdgpu_ring_emit_fence(r, addr, seq, flags) (r)->funcs->emit_fence((r), (addr), (seq), (flags))
Alex Deucher97b2e202015-04-20 16:51:00 -04002227#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 +02002228#define amdgpu_ring_emit_hdp_flush(r) (r)->funcs->emit_hdp_flush((r))
Chunming Zhou11afbde2016-03-03 11:38:48 +08002229#define amdgpu_ring_emit_hdp_invalidate(r) (r)->funcs->emit_hdp_invalidate((r))
Christian König9e5d53092016-01-31 12:20:55 +01002230#define amdgpu_ring_pad_ib(r, ib) ((r)->funcs->pad_ib((r), (ib)))
Alex Deucher97b2e202015-04-20 16:51:00 -04002231#define amdgpu_ih_get_wptr(adev) (adev)->irq.ih_funcs->get_wptr((adev))
2232#define amdgpu_ih_decode_iv(adev, iv) (adev)->irq.ih_funcs->decode_iv((adev), (iv))
2233#define amdgpu_ih_set_rptr(adev) (adev)->irq.ih_funcs->set_rptr((adev))
2234#define amdgpu_display_set_vga_render_state(adev, r) (adev)->mode_info.funcs->set_vga_render_state((adev), (r))
2235#define amdgpu_display_vblank_get_counter(adev, crtc) (adev)->mode_info.funcs->vblank_get_counter((adev), (crtc))
2236#define amdgpu_display_vblank_wait(adev, crtc) (adev)->mode_info.funcs->vblank_wait((adev), (crtc))
2237#define amdgpu_display_is_display_hung(adev) (adev)->mode_info.funcs->is_display_hung((adev))
2238#define amdgpu_display_backlight_set_level(adev, e, l) (adev)->mode_info.funcs->backlight_set_level((e), (l))
2239#define amdgpu_display_backlight_get_level(adev, e) (adev)->mode_info.funcs->backlight_get_level((e))
2240#define amdgpu_display_hpd_sense(adev, h) (adev)->mode_info.funcs->hpd_sense((adev), (h))
2241#define amdgpu_display_hpd_set_polarity(adev, h) (adev)->mode_info.funcs->hpd_set_polarity((adev), (h))
2242#define amdgpu_display_hpd_get_gpio_reg(adev) (adev)->mode_info.funcs->hpd_get_gpio_reg((adev))
2243#define amdgpu_display_bandwidth_update(adev) (adev)->mode_info.funcs->bandwidth_update((adev))
2244#define amdgpu_display_page_flip(adev, crtc, base) (adev)->mode_info.funcs->page_flip((adev), (crtc), (base))
2245#define amdgpu_display_page_flip_get_scanoutpos(adev, crtc, vbl, pos) (adev)->mode_info.funcs->page_flip_get_scanoutpos((adev), (crtc), (vbl), (pos))
2246#define amdgpu_display_add_encoder(adev, e, s, c) (adev)->mode_info.funcs->add_encoder((adev), (e), (s), (c))
2247#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))
2248#define amdgpu_display_stop_mc_access(adev, s) (adev)->mode_info.funcs->stop_mc_access((adev), (s))
2249#define amdgpu_display_resume_mc_access(adev, s) (adev)->mode_info.funcs->resume_mc_access((adev), (s))
Chunming Zhouc7ae72c2015-08-25 17:23:45 +08002250#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 +08002251#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 -04002252#define amdgpu_dpm_pre_set_power_state(adev) (adev)->pm.funcs->pre_set_power_state((adev))
2253#define amdgpu_dpm_set_power_state(adev) (adev)->pm.funcs->set_power_state((adev))
2254#define amdgpu_dpm_post_set_power_state(adev) (adev)->pm.funcs->post_set_power_state((adev))
2255#define amdgpu_dpm_display_configuration_changed(adev) (adev)->pm.funcs->display_configuration_changed((adev))
Alex Deucher97b2e202015-04-20 16:51:00 -04002256#define amdgpu_dpm_print_power_state(adev, ps) (adev)->pm.funcs->print_power_state((adev), (ps))
Alex Deucher97b2e202015-04-20 16:51:00 -04002257#define amdgpu_dpm_vblank_too_short(adev) (adev)->pm.funcs->vblank_too_short((adev))
Alex Deucher97b2e202015-04-20 16:51:00 -04002258#define amdgpu_dpm_enable_bapm(adev, e) (adev)->pm.funcs->enable_bapm((adev), (e))
Rex Zhu3af76f22015-10-15 17:23:43 +08002259
2260#define amdgpu_dpm_get_temperature(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_temperature((adev)->powerplay.pp_handle) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002263 (adev)->pm.funcs->get_temperature((adev)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002264
2265#define amdgpu_dpm_set_fan_control_mode(adev, m) \
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_control_mode((adev)->powerplay.pp_handle, (m)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002268 (adev)->pm.funcs->set_fan_control_mode((adev), (m)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002269
2270#define amdgpu_dpm_get_fan_control_mode(adev) \
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_control_mode((adev)->powerplay.pp_handle) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002273 (adev)->pm.funcs->get_fan_control_mode((adev)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002274
2275#define amdgpu_dpm_set_fan_speed_percent(adev, s) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002276 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002277 (adev)->powerplay.pp_funcs->set_fan_speed_percent((adev)->powerplay.pp_handle, (s)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002278 (adev)->pm.funcs->set_fan_speed_percent((adev), (s)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002279
2280#define amdgpu_dpm_get_fan_speed_percent(adev, s) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002281 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002282 (adev)->powerplay.pp_funcs->get_fan_speed_percent((adev)->powerplay.pp_handle, (s)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002283 (adev)->pm.funcs->get_fan_speed_percent((adev), (s)))
Alex Deucher97b2e202015-04-20 16:51:00 -04002284
Rex Zhu1b5708f2015-11-10 18:25:24 -05002285#define amdgpu_dpm_get_sclk(adev, l) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002286 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002287 (adev)->powerplay.pp_funcs->get_sclk((adev)->powerplay.pp_handle, (l)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002288 (adev)->pm.funcs->get_sclk((adev), (l)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002289
2290#define amdgpu_dpm_get_mclk(adev, l) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002291 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002292 (adev)->powerplay.pp_funcs->get_mclk((adev)->powerplay.pp_handle, (l)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002293 (adev)->pm.funcs->get_mclk((adev), (l)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002294
2295
2296#define amdgpu_dpm_force_performance_level(adev, l) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002297 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002298 (adev)->powerplay.pp_funcs->force_performance_level((adev)->powerplay.pp_handle, (l)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002299 (adev)->pm.funcs->force_performance_level((adev), (l)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002300
2301#define amdgpu_dpm_powergate_uvd(adev, g) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002302 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002303 (adev)->powerplay.pp_funcs->powergate_uvd((adev)->powerplay.pp_handle, (g)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002304 (adev)->pm.funcs->powergate_uvd((adev), (g)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002305
2306#define amdgpu_dpm_powergate_vce(adev, g) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002307 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002308 (adev)->powerplay.pp_funcs->powergate_vce((adev)->powerplay.pp_handle, (g)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002309 (adev)->pm.funcs->powergate_vce((adev), (g)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002310
2311#define amdgpu_dpm_debugfs_print_current_performance_level(adev, m) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002312 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002313 (adev)->powerplay.pp_funcs->print_current_performance_level((adev)->powerplay.pp_handle, (m)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002314 (adev)->pm.funcs->debugfs_print_current_performance_level((adev), (m)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002315
2316#define amdgpu_dpm_get_current_power_state(adev) \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002317 (adev)->powerplay.pp_funcs->get_current_power_state((adev)->powerplay.pp_handle)
Rex Zhu1b5708f2015-11-10 18:25:24 -05002318
2319#define amdgpu_dpm_get_performance_level(adev) \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002320 (adev)->powerplay.pp_funcs->get_performance_level((adev)->powerplay.pp_handle)
Rex Zhu1b5708f2015-11-10 18:25:24 -05002321
Eric Huangf3898ea2015-12-11 16:24:34 -05002322#define amdgpu_dpm_get_pp_num_states(adev, data) \
2323 (adev)->powerplay.pp_funcs->get_pp_num_states((adev)->powerplay.pp_handle, data)
2324
2325#define amdgpu_dpm_get_pp_table(adev, table) \
2326 (adev)->powerplay.pp_funcs->get_pp_table((adev)->powerplay.pp_handle, table)
2327
2328#define amdgpu_dpm_set_pp_table(adev, buf, size) \
2329 (adev)->powerplay.pp_funcs->set_pp_table((adev)->powerplay.pp_handle, buf, size)
2330
2331#define amdgpu_dpm_print_clock_levels(adev, type, buf) \
2332 (adev)->powerplay.pp_funcs->print_clock_levels((adev)->powerplay.pp_handle, type, buf)
2333
2334#define amdgpu_dpm_force_clock_level(adev, type, level) \
2335 (adev)->powerplay.pp_funcs->force_clock_level((adev)->powerplay.pp_handle, type, level)
2336
Jammy Zhoue61710c2015-11-10 18:31:08 -05002337#define amdgpu_dpm_dispatch_task(adev, event_id, input, output) \
Rex Zhu1b5708f2015-11-10 18:25:24 -05002338 (adev)->powerplay.pp_funcs->dispatch_tasks((adev)->powerplay.pp_handle, (event_id), (input), (output))
Alex Deucher97b2e202015-04-20 16:51:00 -04002339
2340#define amdgpu_gds_switch(adev, r, v, d, w, a) (adev)->gds.funcs->patch_gds_switch((r), (v), (d), (w), (a))
2341
2342/* Common functions */
2343int amdgpu_gpu_reset(struct amdgpu_device *adev);
2344void amdgpu_pci_config_reset(struct amdgpu_device *adev);
2345bool amdgpu_card_posted(struct amdgpu_device *adev);
2346void amdgpu_update_display_priority(struct amdgpu_device *adev);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08002347
Alex Deucher97b2e202015-04-20 16:51:00 -04002348int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data);
2349int amdgpu_cs_get_ring(struct amdgpu_device *adev, u32 ip_type,
2350 u32 ip_instance, u32 ring,
2351 struct amdgpu_ring **out_ring);
2352void amdgpu_ttm_placement_from_domain(struct amdgpu_bo *rbo, u32 domain);
2353bool amdgpu_ttm_bo_is_amdgpu_bo(struct ttm_buffer_object *bo);
2354int amdgpu_ttm_tt_set_userptr(struct ttm_tt *ttm, uint64_t addr,
2355 uint32_t flags);
Christian Königcc325d12016-02-08 11:08:35 +01002356struct mm_struct *amdgpu_ttm_tt_get_usermm(struct ttm_tt *ttm);
Christian Königd7006962016-02-08 10:57:22 +01002357bool amdgpu_ttm_tt_affect_userptr(struct ttm_tt *ttm, unsigned long start,
2358 unsigned long end);
Alex Deucher97b2e202015-04-20 16:51:00 -04002359bool amdgpu_ttm_tt_is_readonly(struct ttm_tt *ttm);
2360uint32_t amdgpu_ttm_tt_pte_flags(struct amdgpu_device *adev, struct ttm_tt *ttm,
2361 struct ttm_mem_reg *mem);
2362void amdgpu_vram_location(struct amdgpu_device *adev, struct amdgpu_mc *mc, u64 base);
2363void amdgpu_gtt_location(struct amdgpu_device *adev, struct amdgpu_mc *mc);
2364void amdgpu_ttm_set_active_vram_size(struct amdgpu_device *adev, u64 size);
2365void amdgpu_program_register_sequence(struct amdgpu_device *adev,
2366 const u32 *registers,
2367 const u32 array_size);
2368
2369bool amdgpu_device_is_px(struct drm_device *dev);
2370/* atpx handler */
2371#if defined(CONFIG_VGA_SWITCHEROO)
2372void amdgpu_register_atpx_handler(void);
2373void amdgpu_unregister_atpx_handler(void);
2374#else
2375static inline void amdgpu_register_atpx_handler(void) {}
2376static inline void amdgpu_unregister_atpx_handler(void) {}
2377#endif
2378
2379/*
2380 * KMS
2381 */
2382extern const struct drm_ioctl_desc amdgpu_ioctls_kms[];
2383extern int amdgpu_max_kms_ioctl;
2384
2385int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags);
2386int amdgpu_driver_unload_kms(struct drm_device *dev);
2387void amdgpu_driver_lastclose_kms(struct drm_device *dev);
2388int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv);
2389void amdgpu_driver_postclose_kms(struct drm_device *dev,
2390 struct drm_file *file_priv);
2391void amdgpu_driver_preclose_kms(struct drm_device *dev,
2392 struct drm_file *file_priv);
2393int amdgpu_suspend_kms(struct drm_device *dev, bool suspend, bool fbcon);
2394int amdgpu_resume_kms(struct drm_device *dev, bool resume, bool fbcon);
Thierry Reding88e72712015-09-24 18:35:31 +02002395u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe);
2396int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe);
2397void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe);
2398int amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
Alex Deucher97b2e202015-04-20 16:51:00 -04002399 int *max_error,
2400 struct timeval *vblank_time,
2401 unsigned flags);
2402long amdgpu_kms_compat_ioctl(struct file *filp, unsigned int cmd,
2403 unsigned long arg);
2404
2405/*
Alex Deucher97b2e202015-04-20 16:51:00 -04002406 * functions used by amdgpu_encoder.c
2407 */
2408struct amdgpu_afmt_acr {
2409 u32 clock;
2410
2411 int n_32khz;
2412 int cts_32khz;
2413
2414 int n_44_1khz;
2415 int cts_44_1khz;
2416
2417 int n_48khz;
2418 int cts_48khz;
2419
2420};
2421
2422struct amdgpu_afmt_acr amdgpu_afmt_acr(uint32_t clock);
2423
2424/* amdgpu_acpi.c */
2425#if defined(CONFIG_ACPI)
2426int amdgpu_acpi_init(struct amdgpu_device *adev);
2427void amdgpu_acpi_fini(struct amdgpu_device *adev);
2428bool amdgpu_acpi_is_pcie_performance_request_supported(struct amdgpu_device *adev);
2429int amdgpu_acpi_pcie_performance_request(struct amdgpu_device *adev,
2430 u8 perf_req, bool advertise);
2431int amdgpu_acpi_pcie_notify_device_ready(struct amdgpu_device *adev);
2432#else
2433static inline int amdgpu_acpi_init(struct amdgpu_device *adev) { return 0; }
2434static inline void amdgpu_acpi_fini(struct amdgpu_device *adev) { }
2435#endif
2436
2437struct amdgpu_bo_va_mapping *
2438amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
2439 uint64_t addr, struct amdgpu_bo **bo);
2440
2441#include "amdgpu_object.h"
2442
2443#endif