blob: e32ab13227d488285e2ffdda6fa546cabc595782 [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);
Christian Königb8c7b392016-03-01 15:42:52 +0100329 void (*emit_pipeline_sync)(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -0400330 void (*emit_vm_flush)(struct amdgpu_ring *ring, unsigned vm_id,
331 uint64_t pd_addr);
Christian Königd2edb072015-05-11 14:10:34 +0200332 void (*emit_hdp_flush)(struct amdgpu_ring *ring);
Chunming Zhou11afbde2016-03-03 11:38:48 +0800333 void (*emit_hdp_invalidate)(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -0400334 void (*emit_gds_switch)(struct amdgpu_ring *ring, uint32_t vmid,
335 uint32_t gds_base, uint32_t gds_size,
336 uint32_t gws_base, uint32_t gws_size,
337 uint32_t oa_base, uint32_t oa_size);
338 /* testing functions */
339 int (*test_ring)(struct amdgpu_ring *ring);
340 int (*test_ib)(struct amdgpu_ring *ring);
Jammy Zhouedff0e22015-09-01 13:04:08 +0800341 /* insert NOP packets */
342 void (*insert_nop)(struct amdgpu_ring *ring, uint32_t count);
Christian König9e5d53092016-01-31 12:20:55 +0100343 /* pad the indirect buffer to the necessary number of dw */
344 void (*pad_ib)(struct amdgpu_ring *ring, struct amdgpu_ib *ib);
Alex Deucher97b2e202015-04-20 16:51:00 -0400345};
346
347/*
348 * BIOS.
349 */
350bool amdgpu_get_bios(struct amdgpu_device *adev);
351bool amdgpu_read_bios(struct amdgpu_device *adev);
352
353/*
354 * Dummy page
355 */
356struct amdgpu_dummy_page {
357 struct page *page;
358 dma_addr_t addr;
359};
360int amdgpu_dummy_page_init(struct amdgpu_device *adev);
361void amdgpu_dummy_page_fini(struct amdgpu_device *adev);
362
363
364/*
365 * Clocks
366 */
367
368#define AMDGPU_MAX_PPLL 3
369
370struct amdgpu_clock {
371 struct amdgpu_pll ppll[AMDGPU_MAX_PPLL];
372 struct amdgpu_pll spll;
373 struct amdgpu_pll mpll;
374 /* 10 Khz units */
375 uint32_t default_mclk;
376 uint32_t default_sclk;
377 uint32_t default_dispclk;
378 uint32_t current_dispclk;
379 uint32_t dp_extclk;
380 uint32_t max_pixel_clock;
381};
382
383/*
384 * Fences.
385 */
386struct amdgpu_fence_driver {
Alex Deucher97b2e202015-04-20 16:51:00 -0400387 uint64_t gpu_addr;
388 volatile uint32_t *cpu_addr;
389 /* sync_seq is protected by ring emission lock */
Christian König5907a0d2016-01-18 15:16:53 +0100390 uint64_t sync_seq;
Alex Deucher97b2e202015-04-20 16:51:00 -0400391 atomic64_t last_seq;
392 bool initialized;
Alex Deucher97b2e202015-04-20 16:51:00 -0400393 struct amdgpu_irq_src *irq_src;
394 unsigned irq_type;
Christian Königc2776af2015-11-03 13:27:39 +0100395 struct timer_list fallback_timer;
monk.liu7f06c232015-07-30 18:28:12 +0800396 wait_queue_head_t fence_queue;
Alex Deucher97b2e202015-04-20 16:51:00 -0400397};
398
399/* some special values for the owner field */
400#define AMDGPU_FENCE_OWNER_UNDEFINED ((void*)0ul)
401#define AMDGPU_FENCE_OWNER_VM ((void*)1ul)
Alex Deucher97b2e202015-04-20 16:51:00 -0400402
Chunming Zhou890ee232015-06-01 14:35:03 +0800403#define AMDGPU_FENCE_FLAG_64BIT (1 << 0)
404#define AMDGPU_FENCE_FLAG_INT (1 << 1)
405
Alex Deucher97b2e202015-04-20 16:51:00 -0400406struct amdgpu_fence {
407 struct fence base;
Chunming Zhou4cef9262015-08-05 19:52:14 +0800408
Alex Deucher97b2e202015-04-20 16:51:00 -0400409 /* RB, DMA, etc. */
410 struct amdgpu_ring *ring;
411 uint64_t seq;
412
Alex Deucher97b2e202015-04-20 16:51:00 -0400413 wait_queue_t fence_wake;
414};
415
416struct amdgpu_user_fence {
417 /* write-back bo */
418 struct amdgpu_bo *bo;
419 /* write-back address offset to bo start */
420 uint32_t offset;
421};
422
423int amdgpu_fence_driver_init(struct amdgpu_device *adev);
424void amdgpu_fence_driver_fini(struct amdgpu_device *adev);
425void amdgpu_fence_driver_force_completion(struct amdgpu_device *adev);
426
Christian König4f839a22015-09-08 20:22:31 +0200427int amdgpu_fence_driver_init_ring(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -0400428int amdgpu_fence_driver_start_ring(struct amdgpu_ring *ring,
429 struct amdgpu_irq_src *irq_src,
430 unsigned irq_type);
Alex Deucher5ceb54c2015-08-05 12:41:48 -0400431void amdgpu_fence_driver_suspend(struct amdgpu_device *adev);
432void amdgpu_fence_driver_resume(struct amdgpu_device *adev);
Christian König364beb22016-02-16 17:39:39 +0100433int amdgpu_fence_emit(struct amdgpu_ring *ring, struct fence **fence);
Alex Deucher97b2e202015-04-20 16:51:00 -0400434void amdgpu_fence_process(struct amdgpu_ring *ring);
435int amdgpu_fence_wait_next(struct amdgpu_ring *ring);
436int amdgpu_fence_wait_empty(struct amdgpu_ring *ring);
437unsigned amdgpu_fence_count_emitted(struct amdgpu_ring *ring);
438
Alex Deucher97b2e202015-04-20 16:51:00 -0400439/*
440 * TTM.
441 */
442struct amdgpu_mman {
443 struct ttm_bo_global_ref bo_global_ref;
444 struct drm_global_reference mem_global_ref;
445 struct ttm_bo_device bdev;
446 bool mem_global_referenced;
447 bool initialized;
448
449#if defined(CONFIG_DEBUG_FS)
450 struct dentry *vram;
451 struct dentry *gtt;
452#endif
453
454 /* buffer handling */
455 const struct amdgpu_buffer_funcs *buffer_funcs;
456 struct amdgpu_ring *buffer_funcs_ring;
Christian König703297c2016-02-10 14:20:50 +0100457 /* Scheduler entity for buffer moves */
458 struct amd_sched_entity entity;
Alex Deucher97b2e202015-04-20 16:51:00 -0400459};
460
461int amdgpu_copy_buffer(struct amdgpu_ring *ring,
462 uint64_t src_offset,
463 uint64_t dst_offset,
464 uint32_t byte_count,
465 struct reservation_object *resv,
Chunming Zhouc7ae72c2015-08-25 17:23:45 +0800466 struct fence **fence);
Alex Deucher97b2e202015-04-20 16:51:00 -0400467int amdgpu_mmap(struct file *filp, struct vm_area_struct *vma);
468
469struct amdgpu_bo_list_entry {
470 struct amdgpu_bo *robj;
471 struct ttm_validate_buffer tv;
472 struct amdgpu_bo_va *bo_va;
Alex Deucher97b2e202015-04-20 16:51:00 -0400473 uint32_t priority;
Christian König2f568db2016-02-23 12:36:59 +0100474 struct page **user_pages;
475 int user_invalidated;
Alex Deucher97b2e202015-04-20 16:51:00 -0400476};
477
478struct amdgpu_bo_va_mapping {
479 struct list_head list;
480 struct interval_tree_node it;
481 uint64_t offset;
482 uint32_t flags;
483};
484
485/* bo virtual addresses in a specific vm */
486struct amdgpu_bo_va {
Chunming Zhou69b576a2015-11-18 11:17:39 +0800487 struct mutex mutex;
Alex Deucher97b2e202015-04-20 16:51:00 -0400488 /* protected by bo being reserved */
489 struct list_head bo_list;
Chunming Zhoubb1e38a42015-08-03 18:19:38 +0800490 struct fence *last_pt_update;
Alex Deucher97b2e202015-04-20 16:51:00 -0400491 unsigned ref_count;
492
Christian König7fc11952015-07-30 11:53:42 +0200493 /* protected by vm mutex and spinlock */
Alex Deucher97b2e202015-04-20 16:51:00 -0400494 struct list_head vm_status;
495
Christian König7fc11952015-07-30 11:53:42 +0200496 /* mappings for this bo_va */
497 struct list_head invalids;
498 struct list_head valids;
499
Alex Deucher97b2e202015-04-20 16:51:00 -0400500 /* constant after initialization */
501 struct amdgpu_vm *vm;
502 struct amdgpu_bo *bo;
503};
504
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800505#define AMDGPU_GEM_DOMAIN_MAX 0x3
506
Alex Deucher97b2e202015-04-20 16:51:00 -0400507struct amdgpu_bo {
508 /* Protected by gem.mutex */
509 struct list_head list;
510 /* Protected by tbo.reserved */
Christian König1ea863f2015-12-18 22:13:12 +0100511 u32 prefered_domains;
512 u32 allowed_domains;
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800513 struct ttm_place placements[AMDGPU_GEM_DOMAIN_MAX + 1];
Alex Deucher97b2e202015-04-20 16:51:00 -0400514 struct ttm_placement placement;
515 struct ttm_buffer_object tbo;
516 struct ttm_bo_kmap_obj kmap;
517 u64 flags;
518 unsigned pin_count;
519 void *kptr;
520 u64 tiling_flags;
521 u64 metadata_flags;
522 void *metadata;
523 u32 metadata_size;
524 /* list of all virtual address to which this bo
525 * is associated to
526 */
527 struct list_head va;
528 /* Constant after initialization */
529 struct amdgpu_device *adev;
530 struct drm_gem_object gem_base;
Christian König82b9c552015-11-27 16:49:00 +0100531 struct amdgpu_bo *parent;
Alex Deucher97b2e202015-04-20 16:51:00 -0400532
533 struct ttm_bo_kmap_obj dma_buf_vmap;
Alex Deucher97b2e202015-04-20 16:51:00 -0400534 struct amdgpu_mn *mn;
535 struct list_head mn_list;
536};
537#define gem_to_amdgpu_bo(gobj) container_of((gobj), struct amdgpu_bo, gem_base)
538
539void amdgpu_gem_object_free(struct drm_gem_object *obj);
540int amdgpu_gem_object_open(struct drm_gem_object *obj,
541 struct drm_file *file_priv);
542void amdgpu_gem_object_close(struct drm_gem_object *obj,
543 struct drm_file *file_priv);
544unsigned long amdgpu_gem_timeout(uint64_t timeout_ns);
545struct sg_table *amdgpu_gem_prime_get_sg_table(struct drm_gem_object *obj);
546struct drm_gem_object *amdgpu_gem_prime_import_sg_table(struct drm_device *dev,
547 struct dma_buf_attachment *attach,
548 struct sg_table *sg);
549struct dma_buf *amdgpu_gem_prime_export(struct drm_device *dev,
550 struct drm_gem_object *gobj,
551 int flags);
552int amdgpu_gem_prime_pin(struct drm_gem_object *obj);
553void amdgpu_gem_prime_unpin(struct drm_gem_object *obj);
554struct reservation_object *amdgpu_gem_prime_res_obj(struct drm_gem_object *);
555void *amdgpu_gem_prime_vmap(struct drm_gem_object *obj);
556void amdgpu_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
557int amdgpu_gem_debugfs_init(struct amdgpu_device *adev);
558
559/* sub-allocation manager, it has to be protected by another lock.
560 * By conception this is an helper for other part of the driver
561 * like the indirect buffer or semaphore, which both have their
562 * locking.
563 *
564 * Principe is simple, we keep a list of sub allocation in offset
565 * order (first entry has offset == 0, last entry has the highest
566 * offset).
567 *
568 * When allocating new object we first check if there is room at
569 * the end total_size - (last_object_offset + last_object_size) >=
570 * alloc_size. If so we allocate new object there.
571 *
572 * When there is not enough room at the end, we start waiting for
573 * each sub object until we reach object_offset+object_size >=
574 * alloc_size, this object then become the sub object we return.
575 *
576 * Alignment can't be bigger than page size.
577 *
578 * Hole are not considered for allocation to keep things simple.
579 * Assumption is that there won't be hole (all object on same
580 * alignment).
581 */
582struct amdgpu_sa_manager {
583 wait_queue_head_t wq;
584 struct amdgpu_bo *bo;
585 struct list_head *hole;
586 struct list_head flist[AMDGPU_MAX_RINGS];
587 struct list_head olist;
588 unsigned size;
589 uint64_t gpu_addr;
590 void *cpu_ptr;
591 uint32_t domain;
592 uint32_t align;
593};
594
595struct amdgpu_sa_bo;
596
597/* sub-allocation buffer */
598struct amdgpu_sa_bo {
599 struct list_head olist;
600 struct list_head flist;
601 struct amdgpu_sa_manager *manager;
602 unsigned soffset;
603 unsigned eoffset;
Chunming Zhou4ce98912015-08-19 16:41:19 +0800604 struct fence *fence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400605};
606
607/*
608 * GEM objects.
609 */
Christian König418aa0c2016-02-15 16:59:57 +0100610void amdgpu_gem_force_release(struct amdgpu_device *adev);
Alex Deucher97b2e202015-04-20 16:51:00 -0400611int amdgpu_gem_object_create(struct amdgpu_device *adev, unsigned long size,
612 int alignment, u32 initial_domain,
613 u64 flags, bool kernel,
614 struct drm_gem_object **obj);
615
616int amdgpu_mode_dumb_create(struct drm_file *file_priv,
617 struct drm_device *dev,
618 struct drm_mode_create_dumb *args);
619int amdgpu_mode_dumb_mmap(struct drm_file *filp,
620 struct drm_device *dev,
621 uint32_t handle, uint64_t *offset_p);
Alex Deucher97b2e202015-04-20 16:51:00 -0400622/*
623 * Synchronization
624 */
625struct amdgpu_sync {
Christian Königf91b3a62015-08-20 14:47:40 +0800626 DECLARE_HASHTABLE(fences, 4);
Chunming Zhou3c623382015-08-20 18:33:59 +0800627 struct fence *last_vm_update;
Alex Deucher97b2e202015-04-20 16:51:00 -0400628};
629
630void amdgpu_sync_create(struct amdgpu_sync *sync);
Christian König91e1a522015-07-06 22:06:40 +0200631int amdgpu_sync_fence(struct amdgpu_device *adev, struct amdgpu_sync *sync,
632 struct fence *f);
Alex Deucher97b2e202015-04-20 16:51:00 -0400633int amdgpu_sync_resv(struct amdgpu_device *adev,
634 struct amdgpu_sync *sync,
635 struct reservation_object *resv,
636 void *owner);
Christian Könige61235d2015-08-25 11:05:36 +0200637struct fence *amdgpu_sync_get_fence(struct amdgpu_sync *sync);
Christian Königf91b3a62015-08-20 14:47:40 +0800638int amdgpu_sync_wait(struct amdgpu_sync *sync);
Christian König8a8f0b42016-02-03 15:11:39 +0100639void amdgpu_sync_free(struct amdgpu_sync *sync);
Christian König257bf152016-02-16 11:24:58 +0100640int amdgpu_sync_init(void);
641void amdgpu_sync_fini(void);
Alex Deucher97b2e202015-04-20 16:51:00 -0400642
643/*
644 * GART structures, functions & helpers
645 */
646struct amdgpu_mc;
647
648#define AMDGPU_GPU_PAGE_SIZE 4096
649#define AMDGPU_GPU_PAGE_MASK (AMDGPU_GPU_PAGE_SIZE - 1)
650#define AMDGPU_GPU_PAGE_SHIFT 12
651#define AMDGPU_GPU_PAGE_ALIGN(a) (((a) + AMDGPU_GPU_PAGE_MASK) & ~AMDGPU_GPU_PAGE_MASK)
652
653struct amdgpu_gart {
654 dma_addr_t table_addr;
655 struct amdgpu_bo *robj;
656 void *ptr;
657 unsigned num_gpu_pages;
658 unsigned num_cpu_pages;
659 unsigned table_size;
660 struct page **pages;
661 dma_addr_t *pages_addr;
662 bool ready;
663 const struct amdgpu_gart_funcs *gart_funcs;
664};
665
666int amdgpu_gart_table_ram_alloc(struct amdgpu_device *adev);
667void amdgpu_gart_table_ram_free(struct amdgpu_device *adev);
668int amdgpu_gart_table_vram_alloc(struct amdgpu_device *adev);
669void amdgpu_gart_table_vram_free(struct amdgpu_device *adev);
670int amdgpu_gart_table_vram_pin(struct amdgpu_device *adev);
671void amdgpu_gart_table_vram_unpin(struct amdgpu_device *adev);
672int amdgpu_gart_init(struct amdgpu_device *adev);
673void amdgpu_gart_fini(struct amdgpu_device *adev);
674void amdgpu_gart_unbind(struct amdgpu_device *adev, unsigned offset,
675 int pages);
676int amdgpu_gart_bind(struct amdgpu_device *adev, unsigned offset,
677 int pages, struct page **pagelist,
678 dma_addr_t *dma_addr, uint32_t flags);
679
680/*
681 * GPU MC structures, functions & helpers
682 */
683struct amdgpu_mc {
684 resource_size_t aper_size;
685 resource_size_t aper_base;
686 resource_size_t agp_base;
687 /* for some chips with <= 32MB we need to lie
688 * about vram size near mc fb location */
689 u64 mc_vram_size;
690 u64 visible_vram_size;
691 u64 gtt_size;
692 u64 gtt_start;
693 u64 gtt_end;
694 u64 vram_start;
695 u64 vram_end;
696 unsigned vram_width;
697 u64 real_vram_size;
698 int vram_mtrr;
699 u64 gtt_base_align;
700 u64 mc_mask;
701 const struct firmware *fw; /* MC firmware */
702 uint32_t fw_version;
703 struct amdgpu_irq_src vm_fault;
Ken Wang81c59f52015-06-03 21:02:01 +0800704 uint32_t vram_type;
Alex Deucher97b2e202015-04-20 16:51:00 -0400705};
706
707/*
708 * GPU doorbell structures, functions & helpers
709 */
710typedef enum _AMDGPU_DOORBELL_ASSIGNMENT
711{
712 AMDGPU_DOORBELL_KIQ = 0x000,
713 AMDGPU_DOORBELL_HIQ = 0x001,
714 AMDGPU_DOORBELL_DIQ = 0x002,
715 AMDGPU_DOORBELL_MEC_RING0 = 0x010,
716 AMDGPU_DOORBELL_MEC_RING1 = 0x011,
717 AMDGPU_DOORBELL_MEC_RING2 = 0x012,
718 AMDGPU_DOORBELL_MEC_RING3 = 0x013,
719 AMDGPU_DOORBELL_MEC_RING4 = 0x014,
720 AMDGPU_DOORBELL_MEC_RING5 = 0x015,
721 AMDGPU_DOORBELL_MEC_RING6 = 0x016,
722 AMDGPU_DOORBELL_MEC_RING7 = 0x017,
723 AMDGPU_DOORBELL_GFX_RING0 = 0x020,
724 AMDGPU_DOORBELL_sDMA_ENGINE0 = 0x1E0,
725 AMDGPU_DOORBELL_sDMA_ENGINE1 = 0x1E1,
726 AMDGPU_DOORBELL_IH = 0x1E8,
727 AMDGPU_DOORBELL_MAX_ASSIGNMENT = 0x3FF,
728 AMDGPU_DOORBELL_INVALID = 0xFFFF
729} AMDGPU_DOORBELL_ASSIGNMENT;
730
731struct amdgpu_doorbell {
732 /* doorbell mmio */
733 resource_size_t base;
734 resource_size_t size;
735 u32 __iomem *ptr;
736 u32 num_doorbells; /* Number of doorbells actually reserved for amdgpu. */
737};
738
739void amdgpu_doorbell_get_kfd_info(struct amdgpu_device *adev,
740 phys_addr_t *aperture_base,
741 size_t *aperture_size,
742 size_t *start_offset);
743
744/*
745 * IRQS.
746 */
747
748struct amdgpu_flip_work {
749 struct work_struct flip_work;
750 struct work_struct unpin_work;
751 struct amdgpu_device *adev;
752 int crtc_id;
753 uint64_t base;
754 struct drm_pending_vblank_event *event;
755 struct amdgpu_bo *old_rbo;
Christian König1ffd2652015-08-11 17:29:52 +0200756 struct fence *excl;
757 unsigned shared_count;
758 struct fence **shared;
Christian Königc3874b72016-02-11 15:48:30 +0100759 struct fence_cb cb;
Alex Deucher97b2e202015-04-20 16:51:00 -0400760};
761
762
763/*
764 * CP & rings.
765 */
766
767struct amdgpu_ib {
768 struct amdgpu_sa_bo *sa_bo;
769 uint32_t length_dw;
770 uint64_t gpu_addr;
771 uint32_t *ptr;
Christian König364beb22016-02-16 17:39:39 +0100772 struct fence *fence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400773 struct amdgpu_user_fence *user;
774 struct amdgpu_vm *vm;
Christian König4ff37a82016-02-26 16:18:26 +0100775 unsigned vm_id;
776 uint64_t vm_pd_addr;
Christian König3cb485f2015-05-11 15:34:59 +0200777 struct amdgpu_ctx *ctx;
Alex Deucher97b2e202015-04-20 16:51:00 -0400778 uint32_t gds_base, gds_size;
779 uint32_t gws_base, gws_size;
780 uint32_t oa_base, oa_size;
Jammy Zhoude807f82015-05-11 23:41:41 +0800781 uint32_t flags;
Christian König5430a3f2015-07-21 18:02:21 +0200782 /* resulting sequence number */
783 uint64_t sequence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400784};
785
786enum amdgpu_ring_type {
787 AMDGPU_RING_TYPE_GFX,
788 AMDGPU_RING_TYPE_COMPUTE,
789 AMDGPU_RING_TYPE_SDMA,
790 AMDGPU_RING_TYPE_UVD,
791 AMDGPU_RING_TYPE_VCE
792};
793
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800794extern struct amd_sched_backend_ops amdgpu_sched_ops;
795
Christian König50838c82016-02-03 13:44:52 +0100796int amdgpu_job_alloc(struct amdgpu_device *adev, unsigned num_ibs,
797 struct amdgpu_job **job);
Christian Königd71518b2016-02-01 12:20:25 +0100798int amdgpu_job_alloc_with_ib(struct amdgpu_device *adev, unsigned size,
799 struct amdgpu_job **job);
Christian König50838c82016-02-03 13:44:52 +0100800void amdgpu_job_free(struct amdgpu_job *job);
Christian Königd71518b2016-02-01 12:20:25 +0100801int amdgpu_job_submit(struct amdgpu_job *job, struct amdgpu_ring *ring,
Christian König2bd9ccf2016-02-01 12:53:58 +0100802 struct amd_sched_entity *entity, void *owner,
803 struct fence **f);
Chunming Zhou3c704e92015-07-29 10:33:14 +0800804
Alex Deucher97b2e202015-04-20 16:51:00 -0400805struct amdgpu_ring {
806 struct amdgpu_device *adev;
807 const struct amdgpu_ring_funcs *funcs;
808 struct amdgpu_fence_driver fence_drv;
Christian König4f839a22015-09-08 20:22:31 +0200809 struct amd_gpu_scheduler sched;
Alex Deucher97b2e202015-04-20 16:51:00 -0400810
Chunming Zhou176e1ab2015-07-24 10:49:47 +0800811 spinlock_t fence_lock;
Alex Deucher97b2e202015-04-20 16:51:00 -0400812 struct amdgpu_bo *ring_obj;
813 volatile uint32_t *ring;
814 unsigned rptr_offs;
815 u64 next_rptr_gpu_addr;
816 volatile u32 *next_rptr_cpu_addr;
817 unsigned wptr;
818 unsigned wptr_old;
819 unsigned ring_size;
Christian Königc7e6be22016-01-21 13:06:05 +0100820 unsigned max_dw;
Alex Deucher97b2e202015-04-20 16:51:00 -0400821 int count_dw;
Alex Deucher97b2e202015-04-20 16:51:00 -0400822 uint64_t gpu_addr;
823 uint32_t align_mask;
824 uint32_t ptr_mask;
825 bool ready;
826 u32 nop;
827 u32 idx;
Alex Deucher97b2e202015-04-20 16:51:00 -0400828 u32 me;
829 u32 pipe;
830 u32 queue;
831 struct amdgpu_bo *mqd_obj;
832 u32 doorbell_index;
833 bool use_doorbell;
834 unsigned wptr_offs;
835 unsigned next_rptr_offs;
836 unsigned fence_offs;
Christian König3cb485f2015-05-11 15:34:59 +0200837 struct amdgpu_ctx *current_ctx;
Alex Deucher97b2e202015-04-20 16:51:00 -0400838 enum amdgpu_ring_type type;
839 char name[16];
840};
841
842/*
843 * VM
844 */
845
846/* maximum number of VMIDs */
847#define AMDGPU_NUM_VM 16
848
849/* number of entries in page table */
850#define AMDGPU_VM_PTE_COUNT (1 << amdgpu_vm_block_size)
851
852/* PTBs (Page Table Blocks) need to be aligned to 32K */
853#define AMDGPU_VM_PTB_ALIGN_SIZE 32768
854#define AMDGPU_VM_PTB_ALIGN_MASK (AMDGPU_VM_PTB_ALIGN_SIZE - 1)
855#define AMDGPU_VM_PTB_ALIGN(a) (((a) + AMDGPU_VM_PTB_ALIGN_MASK) & ~AMDGPU_VM_PTB_ALIGN_MASK)
856
857#define AMDGPU_PTE_VALID (1 << 0)
858#define AMDGPU_PTE_SYSTEM (1 << 1)
859#define AMDGPU_PTE_SNOOPED (1 << 2)
860
861/* VI only */
862#define AMDGPU_PTE_EXECUTABLE (1 << 4)
863
864#define AMDGPU_PTE_READABLE (1 << 5)
865#define AMDGPU_PTE_WRITEABLE (1 << 6)
866
867/* PTE (Page Table Entry) fragment field for different page sizes */
868#define AMDGPU_PTE_FRAG_4KB (0 << 7)
869#define AMDGPU_PTE_FRAG_64KB (4 << 7)
870#define AMDGPU_LOG2_PAGES_PER_FRAG 4
871
Christian Königd9c13152015-09-28 12:31:26 +0200872/* How to programm VM fault handling */
873#define AMDGPU_VM_FAULT_STOP_NEVER 0
874#define AMDGPU_VM_FAULT_STOP_FIRST 1
875#define AMDGPU_VM_FAULT_STOP_ALWAYS 2
876
Alex Deucher97b2e202015-04-20 16:51:00 -0400877struct amdgpu_vm_pt {
Christian Königee1782c2015-12-11 21:01:23 +0100878 struct amdgpu_bo_list_entry entry;
879 uint64_t addr;
Alex Deucher97b2e202015-04-20 16:51:00 -0400880};
881
882struct amdgpu_vm_id {
Christian König4ff37a82016-02-26 16:18:26 +0100883 struct amdgpu_vm_manager_id *mgr_id;
884 uint64_t pd_gpu_addr;
Alex Deucher97b2e202015-04-20 16:51:00 -0400885 /* last flushed PD/PT update */
Christian König4ff37a82016-02-26 16:18:26 +0100886 struct fence *flushed_updates;
Alex Deucher97b2e202015-04-20 16:51:00 -0400887};
888
889struct amdgpu_vm {
Christian König25cfc3c2015-12-19 19:42:05 +0100890 /* tree of virtual addresses mapped */
891 spinlock_t it_lock;
Alex Deucher97b2e202015-04-20 16:51:00 -0400892 struct rb_root va;
893
Christian König7fc11952015-07-30 11:53:42 +0200894 /* protecting invalidated */
Alex Deucher97b2e202015-04-20 16:51:00 -0400895 spinlock_t status_lock;
896
897 /* BOs moved, but not yet updated in the PT */
898 struct list_head invalidated;
899
Christian König7fc11952015-07-30 11:53:42 +0200900 /* BOs cleared in the PT because of a move */
901 struct list_head cleared;
902
903 /* BO mappings freed, but not yet updated in the PT */
Alex Deucher97b2e202015-04-20 16:51:00 -0400904 struct list_head freed;
905
906 /* contains the page directory */
907 struct amdgpu_bo *page_directory;
908 unsigned max_pde_used;
Bas Nieuwenhuizen05906de2015-08-14 20:08:40 +0200909 struct fence *page_directory_fence;
Alex Deucher97b2e202015-04-20 16:51:00 -0400910
911 /* array of page tables, one for each page directory entry */
912 struct amdgpu_vm_pt *page_tables;
913
914 /* for id and flush management per ring */
915 struct amdgpu_vm_id ids[AMDGPU_MAX_RINGS];
Christian König25cfc3c2015-12-19 19:42:05 +0100916
jimqu81d75a32015-12-04 17:17:00 +0800917 /* protecting freed */
918 spinlock_t freed_lock;
Christian König2bd9ccf2016-02-01 12:53:58 +0100919
920 /* Scheduler entity for page table updates */
921 struct amd_sched_entity entity;
Alex Deucher97b2e202015-04-20 16:51:00 -0400922};
923
Christian Königa9a78b32016-01-21 10:19:11 +0100924struct amdgpu_vm_manager_id {
925 struct list_head list;
926 struct fence *active;
927 atomic_long_t owner;
Christian König971fe9a92016-03-01 15:09:25 +0100928
929 uint32_t gds_base;
930 uint32_t gds_size;
931 uint32_t gws_base;
932 uint32_t gws_size;
933 uint32_t oa_base;
934 uint32_t oa_size;
Christian Königa9a78b32016-01-21 10:19:11 +0100935};
Christian König8d0a7ce2015-11-03 20:58:50 +0100936
Christian Königa9a78b32016-01-21 10:19:11 +0100937struct amdgpu_vm_manager {
938 /* Handling of VMIDs */
939 struct mutex lock;
940 unsigned num_ids;
941 struct list_head ids_lru;
942 struct amdgpu_vm_manager_id ids[AMDGPU_NUM_VM];
Christian König1c16c0a2015-11-14 21:31:40 +0100943
Christian König8b4fb002015-11-15 16:04:16 +0100944 uint32_t max_pfn;
Alex Deucher97b2e202015-04-20 16:51:00 -0400945 /* vram base address for page table entry */
Christian König8b4fb002015-11-15 16:04:16 +0100946 u64 vram_base_offset;
Alex Deucher97b2e202015-04-20 16:51:00 -0400947 /* is vm enabled? */
Christian König8b4fb002015-11-15 16:04:16 +0100948 bool enabled;
Alex Deucher97b2e202015-04-20 16:51:00 -0400949 /* vm pte handling */
950 const struct amdgpu_vm_pte_funcs *vm_pte_funcs;
Christian König2d55e452016-02-08 17:37:38 +0100951 struct amdgpu_ring *vm_pte_rings[AMDGPU_MAX_RINGS];
952 unsigned vm_pte_num_rings;
953 atomic_t vm_pte_next_ring;
Alex Deucher97b2e202015-04-20 16:51:00 -0400954};
955
Christian Königa9a78b32016-01-21 10:19:11 +0100956void amdgpu_vm_manager_init(struct amdgpu_device *adev);
Christian Königea89f8c2015-11-15 20:52:06 +0100957void amdgpu_vm_manager_fini(struct amdgpu_device *adev);
Christian König8b4fb002015-11-15 16:04:16 +0100958int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm);
959void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm);
Christian König56467eb2015-12-11 15:16:32 +0100960void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
961 struct list_head *validated,
962 struct amdgpu_bo_list_entry *entry);
Christian Königee1782c2015-12-11 21:01:23 +0100963void amdgpu_vm_get_pt_bos(struct amdgpu_vm *vm, struct list_head *duplicates);
Christian Königeceb8a12016-01-11 15:35:21 +0100964void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev,
965 struct amdgpu_vm *vm);
Christian König8b4fb002015-11-15 16:04:16 +0100966int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Christian König4ff37a82016-02-26 16:18:26 +0100967 struct amdgpu_sync *sync, struct fence *fence,
968 unsigned *vm_id, uint64_t *vm_pd_addr);
Christian König8b4fb002015-11-15 16:04:16 +0100969void amdgpu_vm_flush(struct amdgpu_ring *ring,
Christian Königcffadc82016-03-01 13:34:49 +0100970 unsigned vm_id, uint64_t pd_addr,
971 uint32_t gds_base, uint32_t gds_size,
972 uint32_t gws_base, uint32_t gws_size,
973 uint32_t oa_base, uint32_t oa_size);
Christian König971fe9a92016-03-01 15:09:25 +0100974void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vm_id);
Christian Königb07c9d22015-11-30 13:26:07 +0100975uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr);
Christian König8b4fb002015-11-15 16:04:16 +0100976int amdgpu_vm_update_page_directory(struct amdgpu_device *adev,
977 struct amdgpu_vm *vm);
978int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
979 struct amdgpu_vm *vm);
980int amdgpu_vm_clear_invalids(struct amdgpu_device *adev, struct amdgpu_vm *vm,
981 struct amdgpu_sync *sync);
982int amdgpu_vm_bo_update(struct amdgpu_device *adev,
983 struct amdgpu_bo_va *bo_va,
984 struct ttm_mem_reg *mem);
985void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
986 struct amdgpu_bo *bo);
987struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
988 struct amdgpu_bo *bo);
989struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
990 struct amdgpu_vm *vm,
991 struct amdgpu_bo *bo);
992int amdgpu_vm_bo_map(struct amdgpu_device *adev,
993 struct amdgpu_bo_va *bo_va,
994 uint64_t addr, uint64_t offset,
995 uint64_t size, uint32_t flags);
996int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
997 struct amdgpu_bo_va *bo_va,
998 uint64_t addr);
999void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
1000 struct amdgpu_bo_va *bo_va);
Christian König8b4fb002015-11-15 16:04:16 +01001001
Alex Deucher97b2e202015-04-20 16:51:00 -04001002/*
1003 * context related structures
1004 */
1005
Christian König21c16bf2015-07-07 17:24:49 +02001006struct amdgpu_ctx_ring {
Christian König91404fb2015-08-05 18:33:21 +02001007 uint64_t sequence;
Chunming Zhou37cd0ca2015-12-10 15:45:11 +08001008 struct fence **fences;
Christian König91404fb2015-08-05 18:33:21 +02001009 struct amd_sched_entity entity;
Christian König21c16bf2015-07-07 17:24:49 +02001010};
1011
Alex Deucher97b2e202015-04-20 16:51:00 -04001012struct amdgpu_ctx {
Alex Deucher0b492a42015-08-16 22:48:26 -04001013 struct kref refcount;
Chunming Zhou9cb7e5a2015-07-21 13:17:19 +08001014 struct amdgpu_device *adev;
Alex Deucher0b492a42015-08-16 22:48:26 -04001015 unsigned reset_counter;
Christian König21c16bf2015-07-07 17:24:49 +02001016 spinlock_t ring_lock;
Chunming Zhou37cd0ca2015-12-10 15:45:11 +08001017 struct fence **fences;
Christian König21c16bf2015-07-07 17:24:49 +02001018 struct amdgpu_ctx_ring rings[AMDGPU_MAX_RINGS];
Alex Deucher97b2e202015-04-20 16:51:00 -04001019};
1020
1021struct amdgpu_ctx_mgr {
Alex Deucher0b492a42015-08-16 22:48:26 -04001022 struct amdgpu_device *adev;
1023 struct mutex lock;
1024 /* protected by lock */
1025 struct idr ctx_handles;
Alex Deucher97b2e202015-04-20 16:51:00 -04001026};
1027
Alex Deucher0b492a42015-08-16 22:48:26 -04001028struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id);
1029int amdgpu_ctx_put(struct amdgpu_ctx *ctx);
1030
Christian König21c16bf2015-07-07 17:24:49 +02001031uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
Christian Königce882e62015-08-19 15:00:55 +02001032 struct fence *fence);
Christian König21c16bf2015-07-07 17:24:49 +02001033struct fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
1034 struct amdgpu_ring *ring, uint64_t seq);
1035
Alex Deucher0b492a42015-08-16 22:48:26 -04001036int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
1037 struct drm_file *filp);
1038
Christian Königefd4ccb2015-08-04 16:20:31 +02001039void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr);
1040void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr);
Alex Deucher0b492a42015-08-16 22:48:26 -04001041
Alex Deucher97b2e202015-04-20 16:51:00 -04001042/*
1043 * file private structure
1044 */
1045
1046struct amdgpu_fpriv {
1047 struct amdgpu_vm vm;
1048 struct mutex bo_list_lock;
1049 struct idr bo_list_handles;
Alex Deucher0b492a42015-08-16 22:48:26 -04001050 struct amdgpu_ctx_mgr ctx_mgr;
Alex Deucher97b2e202015-04-20 16:51:00 -04001051};
1052
1053/*
1054 * residency list
1055 */
1056
1057struct amdgpu_bo_list {
1058 struct mutex lock;
1059 struct amdgpu_bo *gds_obj;
1060 struct amdgpu_bo *gws_obj;
1061 struct amdgpu_bo *oa_obj;
Christian König211dff52016-02-22 15:40:59 +01001062 unsigned first_userptr;
Alex Deucher97b2e202015-04-20 16:51:00 -04001063 unsigned num_entries;
1064 struct amdgpu_bo_list_entry *array;
1065};
1066
1067struct amdgpu_bo_list *
1068amdgpu_bo_list_get(struct amdgpu_fpriv *fpriv, int id);
Christian König636ce252015-12-18 21:26:47 +01001069void amdgpu_bo_list_get_list(struct amdgpu_bo_list *list,
1070 struct list_head *validated);
Alex Deucher97b2e202015-04-20 16:51:00 -04001071void amdgpu_bo_list_put(struct amdgpu_bo_list *list);
1072void amdgpu_bo_list_free(struct amdgpu_bo_list *list);
1073
1074/*
1075 * GFX stuff
1076 */
1077#include "clearstate_defs.h"
1078
1079struct amdgpu_rlc {
1080 /* for power gating */
1081 struct amdgpu_bo *save_restore_obj;
1082 uint64_t save_restore_gpu_addr;
1083 volatile uint32_t *sr_ptr;
1084 const u32 *reg_list;
1085 u32 reg_list_size;
1086 /* for clear state */
1087 struct amdgpu_bo *clear_state_obj;
1088 uint64_t clear_state_gpu_addr;
1089 volatile uint32_t *cs_ptr;
1090 const struct cs_section_def *cs_data;
1091 u32 clear_state_size;
1092 /* for cp tables */
1093 struct amdgpu_bo *cp_table_obj;
1094 uint64_t cp_table_gpu_addr;
1095 volatile uint32_t *cp_table_ptr;
1096 u32 cp_table_size;
1097};
1098
1099struct amdgpu_mec {
1100 struct amdgpu_bo *hpd_eop_obj;
1101 u64 hpd_eop_gpu_addr;
1102 u32 num_pipe;
1103 u32 num_mec;
1104 u32 num_queue;
1105};
1106
1107/*
1108 * GPU scratch registers structures, functions & helpers
1109 */
1110struct amdgpu_scratch {
1111 unsigned num_reg;
1112 uint32_t reg_base;
1113 bool free[32];
1114 uint32_t reg[32];
1115};
1116
1117/*
1118 * GFX configurations
1119 */
1120struct amdgpu_gca_config {
1121 unsigned max_shader_engines;
1122 unsigned max_tile_pipes;
1123 unsigned max_cu_per_sh;
1124 unsigned max_sh_per_se;
1125 unsigned max_backends_per_se;
1126 unsigned max_texture_channel_caches;
1127 unsigned max_gprs;
1128 unsigned max_gs_threads;
1129 unsigned max_hw_contexts;
1130 unsigned sc_prim_fifo_size_frontend;
1131 unsigned sc_prim_fifo_size_backend;
1132 unsigned sc_hiz_tile_fifo_size;
1133 unsigned sc_earlyz_tile_fifo_size;
1134
1135 unsigned num_tile_pipes;
1136 unsigned backend_enable_mask;
1137 unsigned mem_max_burst_length_bytes;
1138 unsigned mem_row_size_in_kb;
1139 unsigned shader_engine_tile_size;
1140 unsigned num_gpus;
1141 unsigned multi_gpu_tile_size;
1142 unsigned mc_arb_ramcfg;
1143 unsigned gb_addr_config;
Alex Deucher8f8e00c2016-02-12 00:39:13 -05001144 unsigned num_rbs;
Alex Deucher97b2e202015-04-20 16:51:00 -04001145
1146 uint32_t tile_mode_array[32];
1147 uint32_t macrotile_mode_array[16];
1148};
1149
1150struct amdgpu_gfx {
1151 struct mutex gpu_clock_mutex;
1152 struct amdgpu_gca_config config;
1153 struct amdgpu_rlc rlc;
1154 struct amdgpu_mec mec;
1155 struct amdgpu_scratch scratch;
1156 const struct firmware *me_fw; /* ME firmware */
1157 uint32_t me_fw_version;
1158 const struct firmware *pfp_fw; /* PFP firmware */
1159 uint32_t pfp_fw_version;
1160 const struct firmware *ce_fw; /* CE firmware */
1161 uint32_t ce_fw_version;
1162 const struct firmware *rlc_fw; /* RLC firmware */
1163 uint32_t rlc_fw_version;
1164 const struct firmware *mec_fw; /* MEC firmware */
1165 uint32_t mec_fw_version;
1166 const struct firmware *mec2_fw; /* MEC2 firmware */
1167 uint32_t mec2_fw_version;
Ken Wang02558a02015-06-03 19:52:06 +08001168 uint32_t me_feature_version;
1169 uint32_t ce_feature_version;
1170 uint32_t pfp_feature_version;
Jammy Zhou351643d2015-08-04 10:43:50 +08001171 uint32_t rlc_feature_version;
1172 uint32_t mec_feature_version;
1173 uint32_t mec2_feature_version;
Alex Deucher97b2e202015-04-20 16:51:00 -04001174 struct amdgpu_ring gfx_ring[AMDGPU_MAX_GFX_RINGS];
1175 unsigned num_gfx_rings;
1176 struct amdgpu_ring compute_ring[AMDGPU_MAX_COMPUTE_RINGS];
1177 unsigned num_compute_rings;
1178 struct amdgpu_irq_src eop_irq;
1179 struct amdgpu_irq_src priv_reg_irq;
1180 struct amdgpu_irq_src priv_inst_irq;
1181 /* gfx status */
1182 uint32_t gfx_current_status;
Ken Wanga101a892015-06-03 17:47:54 +08001183 /* ce ram size*/
1184 unsigned ce_ram_size;
Alex Deucher97b2e202015-04-20 16:51:00 -04001185};
1186
Christian Königb07c60c2016-01-31 12:29:04 +01001187int amdgpu_ib_get(struct amdgpu_device *adev, struct amdgpu_vm *vm,
Alex Deucher97b2e202015-04-20 16:51:00 -04001188 unsigned size, struct amdgpu_ib *ib);
1189void amdgpu_ib_free(struct amdgpu_device *adev, struct amdgpu_ib *ib);
Christian Königb07c60c2016-01-31 12:29:04 +01001190int amdgpu_ib_schedule(struct amdgpu_ring *ring, unsigned num_ibs,
Christian König336d1f52016-02-16 10:57:10 +01001191 struct amdgpu_ib *ib, struct fence *last_vm_update,
Christian Königec72b802016-02-01 11:56:35 +01001192 struct fence **f);
Alex Deucher97b2e202015-04-20 16:51:00 -04001193int amdgpu_ib_pool_init(struct amdgpu_device *adev);
1194void amdgpu_ib_pool_fini(struct amdgpu_device *adev);
1195int amdgpu_ib_ring_tests(struct amdgpu_device *adev);
Alex Deucher97b2e202015-04-20 16:51:00 -04001196int amdgpu_ring_alloc(struct amdgpu_ring *ring, unsigned ndw);
Jammy Zhouedff0e22015-09-01 13:04:08 +08001197void amdgpu_ring_insert_nop(struct amdgpu_ring *ring, uint32_t count);
Christian König9e5d53092016-01-31 12:20:55 +01001198void amdgpu_ring_generic_pad_ib(struct amdgpu_ring *ring, struct amdgpu_ib *ib);
Alex Deucher97b2e202015-04-20 16:51:00 -04001199void amdgpu_ring_commit(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -04001200void amdgpu_ring_undo(struct amdgpu_ring *ring);
Alex Deucher97b2e202015-04-20 16:51:00 -04001201unsigned amdgpu_ring_backup(struct amdgpu_ring *ring,
1202 uint32_t **data);
1203int amdgpu_ring_restore(struct amdgpu_ring *ring,
1204 unsigned size, uint32_t *data);
1205int amdgpu_ring_init(struct amdgpu_device *adev, struct amdgpu_ring *ring,
1206 unsigned ring_size, u32 nop, u32 align_mask,
1207 struct amdgpu_irq_src *irq_src, unsigned irq_type,
1208 enum amdgpu_ring_type ring_type);
1209void amdgpu_ring_fini(struct amdgpu_ring *ring);
Christian König8120b612015-10-22 11:29:33 +02001210struct amdgpu_ring *amdgpu_ring_from_fence(struct fence *f);
Alex Deucher97b2e202015-04-20 16:51:00 -04001211
1212/*
1213 * CS.
1214 */
1215struct amdgpu_cs_chunk {
1216 uint32_t chunk_id;
1217 uint32_t length_dw;
1218 uint32_t *kdata;
Alex Deucher97b2e202015-04-20 16:51:00 -04001219};
1220
1221struct amdgpu_cs_parser {
1222 struct amdgpu_device *adev;
1223 struct drm_file *filp;
Christian König3cb485f2015-05-11 15:34:59 +02001224 struct amdgpu_ctx *ctx;
Christian Königc3cca412015-12-15 14:41:33 +01001225
Alex Deucher97b2e202015-04-20 16:51:00 -04001226 /* chunks */
1227 unsigned nchunks;
1228 struct amdgpu_cs_chunk *chunks;
Alex Deucher97b2e202015-04-20 16:51:00 -04001229
Christian König50838c82016-02-03 13:44:52 +01001230 /* scheduler job object */
1231 struct amdgpu_job *job;
Alex Deucher97b2e202015-04-20 16:51:00 -04001232
Christian Königc3cca412015-12-15 14:41:33 +01001233 /* buffer objects */
1234 struct ww_acquire_ctx ticket;
1235 struct amdgpu_bo_list *bo_list;
1236 struct amdgpu_bo_list_entry vm_pd;
1237 struct list_head validated;
1238 struct fence *fence;
1239 uint64_t bytes_moved_threshold;
1240 uint64_t bytes_moved;
Alex Deucher97b2e202015-04-20 16:51:00 -04001241
1242 /* user fence */
Christian König91acbeb2015-12-14 16:42:31 +01001243 struct amdgpu_bo_list_entry uf_entry;
Alex Deucher97b2e202015-04-20 16:51:00 -04001244};
1245
Chunming Zhoubb977d32015-08-18 15:16:40 +08001246struct amdgpu_job {
1247 struct amd_sched_job base;
1248 struct amdgpu_device *adev;
Christian Königb07c60c2016-01-31 12:29:04 +01001249 struct amdgpu_ring *ring;
Christian Könige86f9ce2016-02-08 12:13:05 +01001250 struct amdgpu_sync sync;
Chunming Zhoubb977d32015-08-18 15:16:40 +08001251 struct amdgpu_ib *ibs;
1252 uint32_t num_ibs;
Christian Könige2840222015-11-05 19:49:48 +01001253 void *owner;
Chunming Zhoubb977d32015-08-18 15:16:40 +08001254 struct amdgpu_user_fence uf;
Chunming Zhoubb977d32015-08-18 15:16:40 +08001255};
Junwei Zhanga6db8a32015-09-09 09:21:19 +08001256#define to_amdgpu_job(sched_job) \
1257 container_of((sched_job), struct amdgpu_job, base)
Chunming Zhoubb977d32015-08-18 15:16:40 +08001258
Christian König7270f832016-01-31 11:00:41 +01001259static inline u32 amdgpu_get_ib_value(struct amdgpu_cs_parser *p,
1260 uint32_t ib_idx, int idx)
Alex Deucher97b2e202015-04-20 16:51:00 -04001261{
Christian König50838c82016-02-03 13:44:52 +01001262 return p->job->ibs[ib_idx].ptr[idx];
Alex Deucher97b2e202015-04-20 16:51:00 -04001263}
1264
Christian König7270f832016-01-31 11:00:41 +01001265static inline void amdgpu_set_ib_value(struct amdgpu_cs_parser *p,
1266 uint32_t ib_idx, int idx,
1267 uint32_t value)
1268{
Christian König50838c82016-02-03 13:44:52 +01001269 p->job->ibs[ib_idx].ptr[idx] = value;
Christian König7270f832016-01-31 11:00:41 +01001270}
1271
Alex Deucher97b2e202015-04-20 16:51:00 -04001272/*
1273 * Writeback
1274 */
1275#define AMDGPU_MAX_WB 1024 /* Reserve at most 1024 WB slots for amdgpu-owned rings. */
1276
1277struct amdgpu_wb {
1278 struct amdgpu_bo *wb_obj;
1279 volatile uint32_t *wb;
1280 uint64_t gpu_addr;
1281 u32 num_wb; /* Number of wb slots actually reserved for amdgpu. */
1282 unsigned long used[DIV_ROUND_UP(AMDGPU_MAX_WB, BITS_PER_LONG)];
1283};
1284
1285int amdgpu_wb_get(struct amdgpu_device *adev, u32 *wb);
1286void amdgpu_wb_free(struct amdgpu_device *adev, u32 wb);
1287
Alex Deucher97b2e202015-04-20 16:51:00 -04001288
Alex Deucher97b2e202015-04-20 16:51:00 -04001289
1290enum amdgpu_int_thermal_type {
1291 THERMAL_TYPE_NONE,
1292 THERMAL_TYPE_EXTERNAL,
1293 THERMAL_TYPE_EXTERNAL_GPIO,
1294 THERMAL_TYPE_RV6XX,
1295 THERMAL_TYPE_RV770,
1296 THERMAL_TYPE_ADT7473_WITH_INTERNAL,
1297 THERMAL_TYPE_EVERGREEN,
1298 THERMAL_TYPE_SUMO,
1299 THERMAL_TYPE_NI,
1300 THERMAL_TYPE_SI,
1301 THERMAL_TYPE_EMC2103_WITH_INTERNAL,
1302 THERMAL_TYPE_CI,
1303 THERMAL_TYPE_KV,
1304};
1305
1306enum amdgpu_dpm_auto_throttle_src {
1307 AMDGPU_DPM_AUTO_THROTTLE_SRC_THERMAL,
1308 AMDGPU_DPM_AUTO_THROTTLE_SRC_EXTERNAL
1309};
1310
1311enum amdgpu_dpm_event_src {
1312 AMDGPU_DPM_EVENT_SRC_ANALOG = 0,
1313 AMDGPU_DPM_EVENT_SRC_EXTERNAL = 1,
1314 AMDGPU_DPM_EVENT_SRC_DIGITAL = 2,
1315 AMDGPU_DPM_EVENT_SRC_ANALOG_OR_EXTERNAL = 3,
1316 AMDGPU_DPM_EVENT_SRC_DIGIAL_OR_EXTERNAL = 4
1317};
1318
1319#define AMDGPU_MAX_VCE_LEVELS 6
1320
1321enum amdgpu_vce_level {
1322 AMDGPU_VCE_LEVEL_AC_ALL = 0, /* AC, All cases */
1323 AMDGPU_VCE_LEVEL_DC_EE = 1, /* DC, entropy encoding */
1324 AMDGPU_VCE_LEVEL_DC_LL_LOW = 2, /* DC, low latency queue, res <= 720 */
1325 AMDGPU_VCE_LEVEL_DC_LL_HIGH = 3, /* DC, low latency queue, 1080 >= res > 720 */
1326 AMDGPU_VCE_LEVEL_DC_GP_LOW = 4, /* DC, general purpose queue, res <= 720 */
1327 AMDGPU_VCE_LEVEL_DC_GP_HIGH = 5, /* DC, general purpose queue, 1080 >= res > 720 */
1328};
1329
1330struct amdgpu_ps {
1331 u32 caps; /* vbios flags */
1332 u32 class; /* vbios flags */
1333 u32 class2; /* vbios flags */
1334 /* UVD clocks */
1335 u32 vclk;
1336 u32 dclk;
1337 /* VCE clocks */
1338 u32 evclk;
1339 u32 ecclk;
1340 bool vce_active;
1341 enum amdgpu_vce_level vce_level;
1342 /* asic priv */
1343 void *ps_priv;
1344};
1345
1346struct amdgpu_dpm_thermal {
1347 /* thermal interrupt work */
1348 struct work_struct work;
1349 /* low temperature threshold */
1350 int min_temp;
1351 /* high temperature threshold */
1352 int max_temp;
1353 /* was last interrupt low to high or high to low */
1354 bool high_to_low;
1355 /* interrupt source */
1356 struct amdgpu_irq_src irq;
1357};
1358
1359enum amdgpu_clk_action
1360{
1361 AMDGPU_SCLK_UP = 1,
1362 AMDGPU_SCLK_DOWN
1363};
1364
1365struct amdgpu_blacklist_clocks
1366{
1367 u32 sclk;
1368 u32 mclk;
1369 enum amdgpu_clk_action action;
1370};
1371
1372struct amdgpu_clock_and_voltage_limits {
1373 u32 sclk;
1374 u32 mclk;
1375 u16 vddc;
1376 u16 vddci;
1377};
1378
1379struct amdgpu_clock_array {
1380 u32 count;
1381 u32 *values;
1382};
1383
1384struct amdgpu_clock_voltage_dependency_entry {
1385 u32 clk;
1386 u16 v;
1387};
1388
1389struct amdgpu_clock_voltage_dependency_table {
1390 u32 count;
1391 struct amdgpu_clock_voltage_dependency_entry *entries;
1392};
1393
1394union amdgpu_cac_leakage_entry {
1395 struct {
1396 u16 vddc;
1397 u32 leakage;
1398 };
1399 struct {
1400 u16 vddc1;
1401 u16 vddc2;
1402 u16 vddc3;
1403 };
1404};
1405
1406struct amdgpu_cac_leakage_table {
1407 u32 count;
1408 union amdgpu_cac_leakage_entry *entries;
1409};
1410
1411struct amdgpu_phase_shedding_limits_entry {
1412 u16 voltage;
1413 u32 sclk;
1414 u32 mclk;
1415};
1416
1417struct amdgpu_phase_shedding_limits_table {
1418 u32 count;
1419 struct amdgpu_phase_shedding_limits_entry *entries;
1420};
1421
1422struct amdgpu_uvd_clock_voltage_dependency_entry {
1423 u32 vclk;
1424 u32 dclk;
1425 u16 v;
1426};
1427
1428struct amdgpu_uvd_clock_voltage_dependency_table {
1429 u8 count;
1430 struct amdgpu_uvd_clock_voltage_dependency_entry *entries;
1431};
1432
1433struct amdgpu_vce_clock_voltage_dependency_entry {
1434 u32 ecclk;
1435 u32 evclk;
1436 u16 v;
1437};
1438
1439struct amdgpu_vce_clock_voltage_dependency_table {
1440 u8 count;
1441 struct amdgpu_vce_clock_voltage_dependency_entry *entries;
1442};
1443
1444struct amdgpu_ppm_table {
1445 u8 ppm_design;
1446 u16 cpu_core_number;
1447 u32 platform_tdp;
1448 u32 small_ac_platform_tdp;
1449 u32 platform_tdc;
1450 u32 small_ac_platform_tdc;
1451 u32 apu_tdp;
1452 u32 dgpu_tdp;
1453 u32 dgpu_ulv_power;
1454 u32 tj_max;
1455};
1456
1457struct amdgpu_cac_tdp_table {
1458 u16 tdp;
1459 u16 configurable_tdp;
1460 u16 tdc;
1461 u16 battery_power_limit;
1462 u16 small_power_limit;
1463 u16 low_cac_leakage;
1464 u16 high_cac_leakage;
1465 u16 maximum_power_delivery_limit;
1466};
1467
1468struct amdgpu_dpm_dynamic_state {
1469 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_sclk;
1470 struct amdgpu_clock_voltage_dependency_table vddci_dependency_on_mclk;
1471 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_mclk;
1472 struct amdgpu_clock_voltage_dependency_table mvdd_dependency_on_mclk;
1473 struct amdgpu_clock_voltage_dependency_table vddc_dependency_on_dispclk;
1474 struct amdgpu_uvd_clock_voltage_dependency_table uvd_clock_voltage_dependency_table;
1475 struct amdgpu_vce_clock_voltage_dependency_table vce_clock_voltage_dependency_table;
1476 struct amdgpu_clock_voltage_dependency_table samu_clock_voltage_dependency_table;
1477 struct amdgpu_clock_voltage_dependency_table acp_clock_voltage_dependency_table;
1478 struct amdgpu_clock_voltage_dependency_table vddgfx_dependency_on_sclk;
1479 struct amdgpu_clock_array valid_sclk_values;
1480 struct amdgpu_clock_array valid_mclk_values;
1481 struct amdgpu_clock_and_voltage_limits max_clock_voltage_on_dc;
1482 struct amdgpu_clock_and_voltage_limits max_clock_voltage_on_ac;
1483 u32 mclk_sclk_ratio;
1484 u32 sclk_mclk_delta;
1485 u16 vddc_vddci_delta;
1486 u16 min_vddc_for_pcie_gen2;
1487 struct amdgpu_cac_leakage_table cac_leakage_table;
1488 struct amdgpu_phase_shedding_limits_table phase_shedding_limits_table;
1489 struct amdgpu_ppm_table *ppm_table;
1490 struct amdgpu_cac_tdp_table *cac_tdp_table;
1491};
1492
1493struct amdgpu_dpm_fan {
1494 u16 t_min;
1495 u16 t_med;
1496 u16 t_high;
1497 u16 pwm_min;
1498 u16 pwm_med;
1499 u16 pwm_high;
1500 u8 t_hyst;
1501 u32 cycle_delay;
1502 u16 t_max;
1503 u8 control_mode;
1504 u16 default_max_fan_pwm;
1505 u16 default_fan_output_sensitivity;
1506 u16 fan_output_sensitivity;
1507 bool ucode_fan_control;
1508};
1509
1510enum amdgpu_pcie_gen {
1511 AMDGPU_PCIE_GEN1 = 0,
1512 AMDGPU_PCIE_GEN2 = 1,
1513 AMDGPU_PCIE_GEN3 = 2,
1514 AMDGPU_PCIE_GEN_INVALID = 0xffff
1515};
1516
1517enum amdgpu_dpm_forced_level {
1518 AMDGPU_DPM_FORCED_LEVEL_AUTO = 0,
1519 AMDGPU_DPM_FORCED_LEVEL_LOW = 1,
1520 AMDGPU_DPM_FORCED_LEVEL_HIGH = 2,
Eric Huangf3898ea2015-12-11 16:24:34 -05001521 AMDGPU_DPM_FORCED_LEVEL_MANUAL = 3,
Alex Deucher97b2e202015-04-20 16:51:00 -04001522};
1523
1524struct amdgpu_vce_state {
1525 /* vce clocks */
1526 u32 evclk;
1527 u32 ecclk;
1528 /* gpu clocks */
1529 u32 sclk;
1530 u32 mclk;
1531 u8 clk_idx;
1532 u8 pstate;
1533};
1534
1535struct amdgpu_dpm_funcs {
1536 int (*get_temperature)(struct amdgpu_device *adev);
1537 int (*pre_set_power_state)(struct amdgpu_device *adev);
1538 int (*set_power_state)(struct amdgpu_device *adev);
1539 void (*post_set_power_state)(struct amdgpu_device *adev);
1540 void (*display_configuration_changed)(struct amdgpu_device *adev);
1541 u32 (*get_sclk)(struct amdgpu_device *adev, bool low);
1542 u32 (*get_mclk)(struct amdgpu_device *adev, bool low);
1543 void (*print_power_state)(struct amdgpu_device *adev, struct amdgpu_ps *ps);
1544 void (*debugfs_print_current_performance_level)(struct amdgpu_device *adev, struct seq_file *m);
1545 int (*force_performance_level)(struct amdgpu_device *adev, enum amdgpu_dpm_forced_level level);
1546 bool (*vblank_too_short)(struct amdgpu_device *adev);
1547 void (*powergate_uvd)(struct amdgpu_device *adev, bool gate);
Sonny Jiangb7a07762015-05-28 15:47:53 -04001548 void (*powergate_vce)(struct amdgpu_device *adev, bool gate);
Alex Deucher97b2e202015-04-20 16:51:00 -04001549 void (*enable_bapm)(struct amdgpu_device *adev, bool enable);
1550 void (*set_fan_control_mode)(struct amdgpu_device *adev, u32 mode);
1551 u32 (*get_fan_control_mode)(struct amdgpu_device *adev);
1552 int (*set_fan_speed_percent)(struct amdgpu_device *adev, u32 speed);
1553 int (*get_fan_speed_percent)(struct amdgpu_device *adev, u32 *speed);
1554};
1555
1556struct amdgpu_dpm {
1557 struct amdgpu_ps *ps;
1558 /* number of valid power states */
1559 int num_ps;
1560 /* current power state that is active */
1561 struct amdgpu_ps *current_ps;
1562 /* requested power state */
1563 struct amdgpu_ps *requested_ps;
1564 /* boot up power state */
1565 struct amdgpu_ps *boot_ps;
1566 /* default uvd power state */
1567 struct amdgpu_ps *uvd_ps;
1568 /* vce requirements */
1569 struct amdgpu_vce_state vce_states[AMDGPU_MAX_VCE_LEVELS];
1570 enum amdgpu_vce_level vce_level;
Rex Zhu3a2c7882015-08-25 15:57:43 +08001571 enum amd_pm_state_type state;
1572 enum amd_pm_state_type user_state;
Alex Deucher97b2e202015-04-20 16:51:00 -04001573 u32 platform_caps;
1574 u32 voltage_response_time;
1575 u32 backbias_response_time;
1576 void *priv;
1577 u32 new_active_crtcs;
1578 int new_active_crtc_count;
1579 u32 current_active_crtcs;
1580 int current_active_crtc_count;
1581 struct amdgpu_dpm_dynamic_state dyn_state;
1582 struct amdgpu_dpm_fan fan;
1583 u32 tdp_limit;
1584 u32 near_tdp_limit;
1585 u32 near_tdp_limit_adjusted;
1586 u32 sq_ramping_threshold;
1587 u32 cac_leakage;
1588 u16 tdp_od_limit;
1589 u32 tdp_adjustment;
1590 u16 load_line_slope;
1591 bool power_control;
1592 bool ac_power;
1593 /* special states active */
1594 bool thermal_active;
1595 bool uvd_active;
1596 bool vce_active;
1597 /* thermal handling */
1598 struct amdgpu_dpm_thermal thermal;
1599 /* forced levels */
1600 enum amdgpu_dpm_forced_level forced_level;
1601};
1602
1603struct amdgpu_pm {
1604 struct mutex mutex;
Alex Deucher97b2e202015-04-20 16:51:00 -04001605 u32 current_sclk;
1606 u32 current_mclk;
1607 u32 default_sclk;
1608 u32 default_mclk;
1609 struct amdgpu_i2c_chan *i2c_bus;
1610 /* internal thermal controller on rv6xx+ */
1611 enum amdgpu_int_thermal_type int_thermal_type;
1612 struct device *int_hwmon_dev;
1613 /* fan control parameters */
1614 bool no_fan;
1615 u8 fan_pulses_per_revolution;
1616 u8 fan_min_rpm;
1617 u8 fan_max_rpm;
1618 /* dpm */
1619 bool dpm_enabled;
Alex Deucherc86f5ebf2015-10-23 10:45:14 -04001620 bool sysfs_initialized;
Alex Deucher97b2e202015-04-20 16:51:00 -04001621 struct amdgpu_dpm dpm;
1622 const struct firmware *fw; /* SMC firmware */
1623 uint32_t fw_version;
1624 const struct amdgpu_dpm_funcs *funcs;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05001625 uint32_t pcie_gen_mask;
1626 uint32_t pcie_mlw_mask;
Rex Zhu7fb72a12015-11-19 13:35:30 +08001627 struct amd_pp_display_configuration pm_display_cfg;/* set by DAL */
Alex Deucher97b2e202015-04-20 16:51:00 -04001628};
1629
Alex Deucherd0dd7f02015-11-11 19:45:06 -05001630void amdgpu_get_pcie_info(struct amdgpu_device *adev);
1631
Alex Deucher97b2e202015-04-20 16:51:00 -04001632/*
1633 * UVD
1634 */
1635#define AMDGPU_MAX_UVD_HANDLES 10
1636#define AMDGPU_UVD_STACK_SIZE (1024*1024)
1637#define AMDGPU_UVD_HEAP_SIZE (1024*1024)
1638#define AMDGPU_UVD_FIRMWARE_OFFSET 256
1639
1640struct amdgpu_uvd {
1641 struct amdgpu_bo *vcpu_bo;
1642 void *cpu_addr;
1643 uint64_t gpu_addr;
Alex Deucher97b2e202015-04-20 16:51:00 -04001644 atomic_t handles[AMDGPU_MAX_UVD_HANDLES];
1645 struct drm_file *filp[AMDGPU_MAX_UVD_HANDLES];
1646 struct delayed_work idle_work;
1647 const struct firmware *fw; /* UVD firmware */
1648 struct amdgpu_ring ring;
1649 struct amdgpu_irq_src irq;
1650 bool address_64_bit;
Christian Königead833e2016-02-10 14:35:19 +01001651 struct amd_sched_entity entity;
Alex Deucher97b2e202015-04-20 16:51:00 -04001652};
1653
1654/*
1655 * VCE
1656 */
1657#define AMDGPU_MAX_VCE_HANDLES 16
Alex Deucher97b2e202015-04-20 16:51:00 -04001658#define AMDGPU_VCE_FIRMWARE_OFFSET 256
1659
Alex Deucher6a585772015-07-10 14:16:24 -04001660#define AMDGPU_VCE_HARVEST_VCE0 (1 << 0)
1661#define AMDGPU_VCE_HARVEST_VCE1 (1 << 1)
1662
Alex Deucher97b2e202015-04-20 16:51:00 -04001663struct amdgpu_vce {
1664 struct amdgpu_bo *vcpu_bo;
1665 uint64_t gpu_addr;
1666 unsigned fw_version;
1667 unsigned fb_version;
1668 atomic_t handles[AMDGPU_MAX_VCE_HANDLES];
1669 struct drm_file *filp[AMDGPU_MAX_VCE_HANDLES];
Christian Königf1689ec2015-06-11 20:56:18 +02001670 uint32_t img_size[AMDGPU_MAX_VCE_HANDLES];
Alex Deucher97b2e202015-04-20 16:51:00 -04001671 struct delayed_work idle_work;
1672 const struct firmware *fw; /* VCE firmware */
1673 struct amdgpu_ring ring[AMDGPU_MAX_VCE_RINGS];
1674 struct amdgpu_irq_src irq;
Alex Deucher6a585772015-07-10 14:16:24 -04001675 unsigned harvest_config;
Christian Königc5949892016-02-10 17:43:00 +01001676 struct amd_sched_entity entity;
Alex Deucher97b2e202015-04-20 16:51:00 -04001677};
1678
1679/*
1680 * SDMA
1681 */
Alex Deucherc113ea12015-10-08 16:30:37 -04001682struct amdgpu_sdma_instance {
Alex Deucher97b2e202015-04-20 16:51:00 -04001683 /* SDMA firmware */
1684 const struct firmware *fw;
1685 uint32_t fw_version;
Jammy Zhoucfa21042015-08-04 10:50:47 +08001686 uint32_t feature_version;
Alex Deucher97b2e202015-04-20 16:51:00 -04001687
1688 struct amdgpu_ring ring;
Jammy Zhou18111de2015-08-31 14:06:39 +08001689 bool burst_nop;
Alex Deucher97b2e202015-04-20 16:51:00 -04001690};
1691
Alex Deucherc113ea12015-10-08 16:30:37 -04001692struct amdgpu_sdma {
1693 struct amdgpu_sdma_instance instance[AMDGPU_MAX_SDMA_INSTANCES];
1694 struct amdgpu_irq_src trap_irq;
1695 struct amdgpu_irq_src illegal_inst_irq;
1696 int num_instances;
1697};
1698
Alex Deucher97b2e202015-04-20 16:51:00 -04001699/*
1700 * Firmware
1701 */
1702struct amdgpu_firmware {
1703 struct amdgpu_firmware_info ucode[AMDGPU_UCODE_ID_MAXIMUM];
1704 bool smu_load;
1705 struct amdgpu_bo *fw_buf;
1706 unsigned int fw_size;
1707};
1708
1709/*
1710 * Benchmarking
1711 */
1712void amdgpu_benchmark(struct amdgpu_device *adev, int test_number);
1713
1714
1715/*
1716 * Testing
1717 */
1718void amdgpu_test_moves(struct amdgpu_device *adev);
1719void amdgpu_test_ring_sync(struct amdgpu_device *adev,
1720 struct amdgpu_ring *cpA,
1721 struct amdgpu_ring *cpB);
1722void amdgpu_test_syncing(struct amdgpu_device *adev);
1723
1724/*
1725 * MMU Notifier
1726 */
1727#if defined(CONFIG_MMU_NOTIFIER)
1728int amdgpu_mn_register(struct amdgpu_bo *bo, unsigned long addr);
1729void amdgpu_mn_unregister(struct amdgpu_bo *bo);
1730#else
Harry Wentland1d1106b2015-07-15 07:10:41 -04001731static inline int amdgpu_mn_register(struct amdgpu_bo *bo, unsigned long addr)
Alex Deucher97b2e202015-04-20 16:51:00 -04001732{
1733 return -ENODEV;
1734}
Harry Wentland1d1106b2015-07-15 07:10:41 -04001735static inline void amdgpu_mn_unregister(struct amdgpu_bo *bo) {}
Alex Deucher97b2e202015-04-20 16:51:00 -04001736#endif
1737
1738/*
1739 * Debugfs
1740 */
1741struct amdgpu_debugfs {
1742 struct drm_info_list *files;
1743 unsigned num_files;
1744};
1745
1746int amdgpu_debugfs_add_files(struct amdgpu_device *adev,
1747 struct drm_info_list *files,
1748 unsigned nfiles);
1749int amdgpu_debugfs_fence_init(struct amdgpu_device *adev);
1750
1751#if defined(CONFIG_DEBUG_FS)
1752int amdgpu_debugfs_init(struct drm_minor *minor);
1753void amdgpu_debugfs_cleanup(struct drm_minor *minor);
1754#endif
1755
1756/*
1757 * amdgpu smumgr functions
1758 */
1759struct amdgpu_smumgr_funcs {
1760 int (*check_fw_load_finish)(struct amdgpu_device *adev, uint32_t fwtype);
1761 int (*request_smu_load_fw)(struct amdgpu_device *adev);
1762 int (*request_smu_specific_fw)(struct amdgpu_device *adev, uint32_t fwtype);
1763};
1764
1765/*
1766 * amdgpu smumgr
1767 */
1768struct amdgpu_smumgr {
1769 struct amdgpu_bo *toc_buf;
1770 struct amdgpu_bo *smu_buf;
1771 /* asic priv smu data */
1772 void *priv;
1773 spinlock_t smu_lock;
1774 /* smumgr functions */
1775 const struct amdgpu_smumgr_funcs *smumgr_funcs;
1776 /* ucode loading complete flag */
1777 uint32_t fw_flags;
1778};
1779
1780/*
1781 * ASIC specific register table accessible by UMD
1782 */
1783struct amdgpu_allowed_register_entry {
1784 uint32_t reg_offset;
1785 bool untouched;
1786 bool grbm_indexed;
1787};
1788
1789struct amdgpu_cu_info {
1790 uint32_t number; /* total active CU number */
1791 uint32_t ao_cu_mask;
1792 uint32_t bitmap[4][4];
1793};
1794
1795
1796/*
1797 * ASIC specific functions.
1798 */
1799struct amdgpu_asic_funcs {
1800 bool (*read_disabled_bios)(struct amdgpu_device *adev);
Alex Deucher7946b872015-11-24 10:14:28 -05001801 bool (*read_bios_from_rom)(struct amdgpu_device *adev,
1802 u8 *bios, u32 length_bytes);
Alex Deucher97b2e202015-04-20 16:51:00 -04001803 int (*read_register)(struct amdgpu_device *adev, u32 se_num,
1804 u32 sh_num, u32 reg_offset, u32 *value);
1805 void (*set_vga_state)(struct amdgpu_device *adev, bool state);
1806 int (*reset)(struct amdgpu_device *adev);
1807 /* wait for mc_idle */
1808 int (*wait_for_mc_idle)(struct amdgpu_device *adev);
1809 /* get the reference clock */
1810 u32 (*get_xclk)(struct amdgpu_device *adev);
1811 /* get the gpu clock counter */
1812 uint64_t (*get_gpu_clock_counter)(struct amdgpu_device *adev);
1813 int (*get_cu_info)(struct amdgpu_device *adev, struct amdgpu_cu_info *info);
1814 /* MM block clocks */
1815 int (*set_uvd_clocks)(struct amdgpu_device *adev, u32 vclk, u32 dclk);
1816 int (*set_vce_clocks)(struct amdgpu_device *adev, u32 evclk, u32 ecclk);
1817};
1818
1819/*
1820 * IOCTL.
1821 */
1822int amdgpu_gem_create_ioctl(struct drm_device *dev, void *data,
1823 struct drm_file *filp);
1824int amdgpu_bo_list_ioctl(struct drm_device *dev, void *data,
1825 struct drm_file *filp);
1826
1827int amdgpu_gem_info_ioctl(struct drm_device *dev, void *data,
1828 struct drm_file *filp);
1829int amdgpu_gem_userptr_ioctl(struct drm_device *dev, void *data,
1830 struct drm_file *filp);
1831int amdgpu_gem_mmap_ioctl(struct drm_device *dev, void *data,
1832 struct drm_file *filp);
1833int amdgpu_gem_wait_idle_ioctl(struct drm_device *dev, void *data,
1834 struct drm_file *filp);
1835int amdgpu_gem_va_ioctl(struct drm_device *dev, void *data,
1836 struct drm_file *filp);
1837int amdgpu_gem_op_ioctl(struct drm_device *dev, void *data,
1838 struct drm_file *filp);
1839int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
1840int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
1841
1842int amdgpu_gem_metadata_ioctl(struct drm_device *dev, void *data,
1843 struct drm_file *filp);
1844
1845/* VRAM scratch page for HDP bug, default vram page */
1846struct amdgpu_vram_scratch {
1847 struct amdgpu_bo *robj;
1848 volatile uint32_t *ptr;
1849 u64 gpu_addr;
1850};
1851
1852/*
1853 * ACPI
1854 */
1855struct amdgpu_atif_notification_cfg {
1856 bool enabled;
1857 int command_code;
1858};
1859
1860struct amdgpu_atif_notifications {
1861 bool display_switch;
1862 bool expansion_mode_change;
1863 bool thermal_state;
1864 bool forced_power_state;
1865 bool system_power_state;
1866 bool display_conf_change;
1867 bool px_gfx_switch;
1868 bool brightness_change;
1869 bool dgpu_display_event;
1870};
1871
1872struct amdgpu_atif_functions {
1873 bool system_params;
1874 bool sbios_requests;
1875 bool select_active_disp;
1876 bool lid_state;
1877 bool get_tv_standard;
1878 bool set_tv_standard;
1879 bool get_panel_expansion_mode;
1880 bool set_panel_expansion_mode;
1881 bool temperature_change;
1882 bool graphics_device_types;
1883};
1884
1885struct amdgpu_atif {
1886 struct amdgpu_atif_notifications notifications;
1887 struct amdgpu_atif_functions functions;
1888 struct amdgpu_atif_notification_cfg notification_cfg;
1889 struct amdgpu_encoder *encoder_for_bl;
1890};
1891
1892struct amdgpu_atcs_functions {
1893 bool get_ext_state;
1894 bool pcie_perf_req;
1895 bool pcie_dev_rdy;
1896 bool pcie_bus_width;
1897};
1898
1899struct amdgpu_atcs {
1900 struct amdgpu_atcs_functions functions;
1901};
1902
Alex Deucher97b2e202015-04-20 16:51:00 -04001903/*
Chunming Zhoud03846a2015-07-28 14:20:03 -04001904 * CGS
1905 */
1906void *amdgpu_cgs_create_device(struct amdgpu_device *adev);
1907void amdgpu_cgs_destroy_device(void *cgs_device);
1908
1909
1910/*
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -04001911 * CGS
1912 */
1913void *amdgpu_cgs_create_device(struct amdgpu_device *adev);
1914void amdgpu_cgs_destroy_device(void *cgs_device);
1915
1916
Alex Deucher7e471e62016-02-01 11:13:04 -05001917/* GPU virtualization */
1918struct amdgpu_virtualization {
1919 bool supports_sr_iov;
1920};
1921
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -04001922/*
Alex Deucher97b2e202015-04-20 16:51:00 -04001923 * Core structure, functions and helpers.
1924 */
1925typedef uint32_t (*amdgpu_rreg_t)(struct amdgpu_device*, uint32_t);
1926typedef void (*amdgpu_wreg_t)(struct amdgpu_device*, uint32_t, uint32_t);
1927
1928typedef uint32_t (*amdgpu_block_rreg_t)(struct amdgpu_device*, uint32_t, uint32_t);
1929typedef void (*amdgpu_block_wreg_t)(struct amdgpu_device*, uint32_t, uint32_t, uint32_t);
1930
Alex Deucher8faf0e02015-07-28 11:50:31 -04001931struct amdgpu_ip_block_status {
1932 bool valid;
1933 bool sw;
1934 bool hw;
1935};
1936
Alex Deucher97b2e202015-04-20 16:51:00 -04001937struct amdgpu_device {
1938 struct device *dev;
1939 struct drm_device *ddev;
1940 struct pci_dev *pdev;
Alex Deucher97b2e202015-04-20 16:51:00 -04001941
Maruthi Bayyavarapua8fe58c2015-09-22 17:05:20 -04001942#ifdef CONFIG_DRM_AMD_ACP
1943 struct amdgpu_acp acp;
1944#endif
1945
Alex Deucher97b2e202015-04-20 16:51:00 -04001946 /* ASIC */
Jammy Zhou2f7d10b2015-07-22 11:29:01 +08001947 enum amd_asic_type asic_type;
Alex Deucher97b2e202015-04-20 16:51:00 -04001948 uint32_t family;
1949 uint32_t rev_id;
1950 uint32_t external_rev_id;
1951 unsigned long flags;
1952 int usec_timeout;
1953 const struct amdgpu_asic_funcs *asic_funcs;
1954 bool shutdown;
1955 bool suspend;
1956 bool need_dma32;
1957 bool accel_working;
Alex Deucher97b2e202015-04-20 16:51:00 -04001958 struct work_struct reset_work;
1959 struct notifier_block acpi_nb;
1960 struct amdgpu_i2c_chan *i2c_bus[AMDGPU_MAX_I2C_BUS];
1961 struct amdgpu_debugfs debugfs[AMDGPU_DEBUGFS_MAX_COMPONENTS];
1962 unsigned debugfs_count;
1963#if defined(CONFIG_DEBUG_FS)
1964 struct dentry *debugfs_regs;
1965#endif
1966 struct amdgpu_atif atif;
1967 struct amdgpu_atcs atcs;
1968 struct mutex srbm_mutex;
1969 /* GRBM index mutex. Protects concurrent access to GRBM index */
1970 struct mutex grbm_idx_mutex;
1971 struct dev_pm_domain vga_pm_domain;
1972 bool have_disp_power_ref;
1973
1974 /* BIOS */
1975 uint8_t *bios;
1976 bool is_atom_bios;
1977 uint16_t bios_header_start;
1978 struct amdgpu_bo *stollen_vga_memory;
1979 uint32_t bios_scratch[AMDGPU_BIOS_NUM_SCRATCH];
1980
1981 /* Register/doorbell mmio */
1982 resource_size_t rmmio_base;
1983 resource_size_t rmmio_size;
1984 void __iomem *rmmio;
1985 /* protects concurrent MM_INDEX/DATA based register access */
1986 spinlock_t mmio_idx_lock;
1987 /* protects concurrent SMC based register access */
1988 spinlock_t smc_idx_lock;
1989 amdgpu_rreg_t smc_rreg;
1990 amdgpu_wreg_t smc_wreg;
1991 /* protects concurrent PCIE register access */
1992 spinlock_t pcie_idx_lock;
1993 amdgpu_rreg_t pcie_rreg;
1994 amdgpu_wreg_t pcie_wreg;
1995 /* protects concurrent UVD register access */
1996 spinlock_t uvd_ctx_idx_lock;
1997 amdgpu_rreg_t uvd_ctx_rreg;
1998 amdgpu_wreg_t uvd_ctx_wreg;
1999 /* protects concurrent DIDT register access */
2000 spinlock_t didt_idx_lock;
2001 amdgpu_rreg_t didt_rreg;
2002 amdgpu_wreg_t didt_wreg;
2003 /* protects concurrent ENDPOINT (audio) register access */
2004 spinlock_t audio_endpt_idx_lock;
2005 amdgpu_block_rreg_t audio_endpt_rreg;
2006 amdgpu_block_wreg_t audio_endpt_wreg;
2007 void __iomem *rio_mem;
2008 resource_size_t rio_mem_size;
2009 struct amdgpu_doorbell doorbell;
2010
2011 /* clock/pll info */
2012 struct amdgpu_clock clock;
2013
2014 /* MC */
2015 struct amdgpu_mc mc;
2016 struct amdgpu_gart gart;
2017 struct amdgpu_dummy_page dummy_page;
2018 struct amdgpu_vm_manager vm_manager;
2019
2020 /* memory management */
2021 struct amdgpu_mman mman;
Alex Deucher97b2e202015-04-20 16:51:00 -04002022 struct amdgpu_vram_scratch vram_scratch;
2023 struct amdgpu_wb wb;
2024 atomic64_t vram_usage;
2025 atomic64_t vram_vis_usage;
2026 atomic64_t gtt_usage;
2027 atomic64_t num_bytes_moved;
Marek Olšákd94aed52015-05-05 21:13:49 +02002028 atomic_t gpu_reset_counter;
Alex Deucher97b2e202015-04-20 16:51:00 -04002029
2030 /* display */
2031 struct amdgpu_mode_info mode_info;
2032 struct work_struct hotplug_work;
2033 struct amdgpu_irq_src crtc_irq;
2034 struct amdgpu_irq_src pageflip_irq;
2035 struct amdgpu_irq_src hpd_irq;
2036
2037 /* rings */
Alex Deucher97b2e202015-04-20 16:51:00 -04002038 unsigned fence_context;
Alex Deucher97b2e202015-04-20 16:51:00 -04002039 unsigned num_rings;
2040 struct amdgpu_ring *rings[AMDGPU_MAX_RINGS];
2041 bool ib_pool_ready;
2042 struct amdgpu_sa_manager ring_tmp_bo;
2043
2044 /* interrupts */
2045 struct amdgpu_irq irq;
2046
Alex Deucher1f7371b2015-12-02 17:46:21 -05002047 /* powerplay */
2048 struct amd_powerplay powerplay;
Jammy Zhoue61710c2015-11-10 18:31:08 -05002049 bool pp_enabled;
Eric Huangf3898ea2015-12-11 16:24:34 -05002050 bool pp_force_state_enabled;
Alex Deucher1f7371b2015-12-02 17:46:21 -05002051
Alex Deucher97b2e202015-04-20 16:51:00 -04002052 /* dpm */
2053 struct amdgpu_pm pm;
2054 u32 cg_flags;
2055 u32 pg_flags;
2056
2057 /* amdgpu smumgr */
2058 struct amdgpu_smumgr smu;
2059
2060 /* gfx */
2061 struct amdgpu_gfx gfx;
2062
2063 /* sdma */
Alex Deucherc113ea12015-10-08 16:30:37 -04002064 struct amdgpu_sdma sdma;
Alex Deucher97b2e202015-04-20 16:51:00 -04002065
2066 /* uvd */
Alex Deucher97b2e202015-04-20 16:51:00 -04002067 struct amdgpu_uvd uvd;
2068
2069 /* vce */
2070 struct amdgpu_vce vce;
2071
2072 /* firmwares */
2073 struct amdgpu_firmware firmware;
2074
2075 /* GDS */
2076 struct amdgpu_gds gds;
2077
2078 const struct amdgpu_ip_block_version *ip_blocks;
2079 int num_ip_blocks;
Alex Deucher8faf0e02015-07-28 11:50:31 -04002080 struct amdgpu_ip_block_status *ip_block_status;
Alex Deucher97b2e202015-04-20 16:51:00 -04002081 struct mutex mn_lock;
2082 DECLARE_HASHTABLE(mn_hash, 7);
2083
2084 /* tracking pinned memory */
2085 u64 vram_pin_size;
2086 u64 gart_pin_size;
Oded Gabbay130e0372015-06-12 21:35:14 +03002087
2088 /* amdkfd interface */
2089 struct kfd_dev *kfd;
Chunming Zhou23ca0e42015-07-06 13:42:58 +08002090
Alex Deucher7e471e62016-02-01 11:13:04 -05002091 struct amdgpu_virtualization virtualization;
Alex Deucher97b2e202015-04-20 16:51:00 -04002092};
2093
2094bool amdgpu_device_is_px(struct drm_device *dev);
2095int amdgpu_device_init(struct amdgpu_device *adev,
2096 struct drm_device *ddev,
2097 struct pci_dev *pdev,
2098 uint32_t flags);
2099void amdgpu_device_fini(struct amdgpu_device *adev);
2100int amdgpu_gpu_wait_for_idle(struct amdgpu_device *adev);
2101
2102uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg,
2103 bool always_indirect);
2104void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
2105 bool always_indirect);
2106u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg);
2107void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v);
2108
2109u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index);
2110void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v);
2111
2112/*
2113 * Cast helper
2114 */
2115extern const struct fence_ops amdgpu_fence_ops;
2116static inline struct amdgpu_fence *to_amdgpu_fence(struct fence *f)
2117{
2118 struct amdgpu_fence *__f = container_of(f, struct amdgpu_fence, base);
2119
2120 if (__f->base.ops == &amdgpu_fence_ops)
2121 return __f;
2122
2123 return NULL;
2124}
2125
2126/*
2127 * Registers read & write functions.
2128 */
2129#define RREG32(reg) amdgpu_mm_rreg(adev, (reg), false)
2130#define RREG32_IDX(reg) amdgpu_mm_rreg(adev, (reg), true)
2131#define DREG32(reg) printk(KERN_INFO "REGISTER: " #reg " : 0x%08X\n", amdgpu_mm_rreg(adev, (reg), false))
2132#define WREG32(reg, v) amdgpu_mm_wreg(adev, (reg), (v), false)
2133#define WREG32_IDX(reg, v) amdgpu_mm_wreg(adev, (reg), (v), true)
2134#define REG_SET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
2135#define REG_GET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
2136#define RREG32_PCIE(reg) adev->pcie_rreg(adev, (reg))
2137#define WREG32_PCIE(reg, v) adev->pcie_wreg(adev, (reg), (v))
2138#define RREG32_SMC(reg) adev->smc_rreg(adev, (reg))
2139#define WREG32_SMC(reg, v) adev->smc_wreg(adev, (reg), (v))
2140#define RREG32_UVD_CTX(reg) adev->uvd_ctx_rreg(adev, (reg))
2141#define WREG32_UVD_CTX(reg, v) adev->uvd_ctx_wreg(adev, (reg), (v))
2142#define RREG32_DIDT(reg) adev->didt_rreg(adev, (reg))
2143#define WREG32_DIDT(reg, v) adev->didt_wreg(adev, (reg), (v))
2144#define RREG32_AUDIO_ENDPT(block, reg) adev->audio_endpt_rreg(adev, (block), (reg))
2145#define WREG32_AUDIO_ENDPT(block, reg, v) adev->audio_endpt_wreg(adev, (block), (reg), (v))
2146#define WREG32_P(reg, val, mask) \
2147 do { \
2148 uint32_t tmp_ = RREG32(reg); \
2149 tmp_ &= (mask); \
2150 tmp_ |= ((val) & ~(mask)); \
2151 WREG32(reg, tmp_); \
2152 } while (0)
2153#define WREG32_AND(reg, and) WREG32_P(reg, 0, and)
2154#define WREG32_OR(reg, or) WREG32_P(reg, or, ~(or))
2155#define WREG32_PLL_P(reg, val, mask) \
2156 do { \
2157 uint32_t tmp_ = RREG32_PLL(reg); \
2158 tmp_ &= (mask); \
2159 tmp_ |= ((val) & ~(mask)); \
2160 WREG32_PLL(reg, tmp_); \
2161 } while (0)
2162#define DREG32_SYS(sqf, adev, reg) seq_printf((sqf), #reg " : 0x%08X\n", amdgpu_mm_rreg((adev), (reg), false))
2163#define RREG32_IO(reg) amdgpu_io_rreg(adev, (reg))
2164#define WREG32_IO(reg, v) amdgpu_io_wreg(adev, (reg), (v))
2165
2166#define RDOORBELL32(index) amdgpu_mm_rdoorbell(adev, (index))
2167#define WDOORBELL32(index, v) amdgpu_mm_wdoorbell(adev, (index), (v))
2168
2169#define REG_FIELD_SHIFT(reg, field) reg##__##field##__SHIFT
2170#define REG_FIELD_MASK(reg, field) reg##__##field##_MASK
2171
2172#define REG_SET_FIELD(orig_val, reg, field, field_val) \
2173 (((orig_val) & ~REG_FIELD_MASK(reg, field)) | \
2174 (REG_FIELD_MASK(reg, field) & ((field_val) << REG_FIELD_SHIFT(reg, field))))
2175
2176#define REG_GET_FIELD(value, reg, field) \
2177 (((value) & REG_FIELD_MASK(reg, field)) >> REG_FIELD_SHIFT(reg, field))
2178
2179/*
2180 * BIOS helpers.
2181 */
2182#define RBIOS8(i) (adev->bios[i])
2183#define RBIOS16(i) (RBIOS8(i) | (RBIOS8((i)+1) << 8))
2184#define RBIOS32(i) ((RBIOS16(i)) | (RBIOS16((i)+2) << 16))
2185
2186/*
2187 * RING helpers.
2188 */
2189static inline void amdgpu_ring_write(struct amdgpu_ring *ring, uint32_t v)
2190{
2191 if (ring->count_dw <= 0)
Jammy Zhou86c2b792015-05-13 22:52:42 +08002192 DRM_ERROR("amdgpu: writing more dwords to the ring than expected!\n");
Alex Deucher97b2e202015-04-20 16:51:00 -04002193 ring->ring[ring->wptr++] = v;
2194 ring->wptr &= ring->ptr_mask;
2195 ring->count_dw--;
Alex Deucher97b2e202015-04-20 16:51:00 -04002196}
2197
Alex Deucherc113ea12015-10-08 16:30:37 -04002198static inline struct amdgpu_sdma_instance *
2199amdgpu_get_sdma_instance(struct amdgpu_ring *ring)
Jammy Zhou4b2f7e22015-09-01 12:56:17 +08002200{
2201 struct amdgpu_device *adev = ring->adev;
2202 int i;
2203
Alex Deucherc113ea12015-10-08 16:30:37 -04002204 for (i = 0; i < adev->sdma.num_instances; i++)
2205 if (&adev->sdma.instance[i].ring == ring)
Jammy Zhou4b2f7e22015-09-01 12:56:17 +08002206 break;
2207
2208 if (i < AMDGPU_MAX_SDMA_INSTANCES)
Alex Deucherc113ea12015-10-08 16:30:37 -04002209 return &adev->sdma.instance[i];
Jammy Zhou4b2f7e22015-09-01 12:56:17 +08002210 else
2211 return NULL;
2212}
2213
Alex Deucher97b2e202015-04-20 16:51:00 -04002214/*
2215 * ASICs macro.
2216 */
2217#define amdgpu_asic_set_vga_state(adev, state) (adev)->asic_funcs->set_vga_state((adev), (state))
2218#define amdgpu_asic_reset(adev) (adev)->asic_funcs->reset((adev))
2219#define amdgpu_asic_wait_for_mc_idle(adev) (adev)->asic_funcs->wait_for_mc_idle((adev))
2220#define amdgpu_asic_get_xclk(adev) (adev)->asic_funcs->get_xclk((adev))
2221#define amdgpu_asic_set_uvd_clocks(adev, v, d) (adev)->asic_funcs->set_uvd_clocks((adev), (v), (d))
2222#define amdgpu_asic_set_vce_clocks(adev, ev, ec) (adev)->asic_funcs->set_vce_clocks((adev), (ev), (ec))
2223#define amdgpu_asic_get_gpu_clock_counter(adev) (adev)->asic_funcs->get_gpu_clock_counter((adev))
2224#define amdgpu_asic_read_disabled_bios(adev) (adev)->asic_funcs->read_disabled_bios((adev))
Alex Deucher7946b872015-11-24 10:14:28 -05002225#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 -04002226#define amdgpu_asic_read_register(adev, se, sh, offset, v)((adev)->asic_funcs->read_register((adev), (se), (sh), (offset), (v)))
2227#define amdgpu_asic_get_cu_info(adev, info) (adev)->asic_funcs->get_cu_info((adev), (info))
2228#define amdgpu_gart_flush_gpu_tlb(adev, vmid) (adev)->gart.gart_funcs->flush_gpu_tlb((adev), (vmid))
2229#define amdgpu_gart_set_pte_pde(adev, pt, idx, addr, flags) (adev)->gart.gart_funcs->set_pte_pde((adev), (pt), (idx), (addr), (flags))
2230#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 +01002231#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 -04002232#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 -04002233#define amdgpu_ring_parse_cs(r, p, ib) ((r)->funcs->parse_cs((p), (ib)))
2234#define amdgpu_ring_test_ring(r) (r)->funcs->test_ring((r))
2235#define amdgpu_ring_test_ib(r) (r)->funcs->test_ib((r))
Alex Deucher97b2e202015-04-20 16:51:00 -04002236#define amdgpu_ring_get_rptr(r) (r)->funcs->get_rptr((r))
2237#define amdgpu_ring_get_wptr(r) (r)->funcs->get_wptr((r))
2238#define amdgpu_ring_set_wptr(r) (r)->funcs->set_wptr((r))
2239#define amdgpu_ring_emit_ib(r, ib) (r)->funcs->emit_ib((r), (ib))
Christian Königb8c7b392016-03-01 15:42:52 +01002240#define amdgpu_ring_emit_pipeline_sync(r) (r)->funcs->emit_pipeline_sync((r))
Alex Deucher97b2e202015-04-20 16:51:00 -04002241#define amdgpu_ring_emit_vm_flush(r, vmid, addr) (r)->funcs->emit_vm_flush((r), (vmid), (addr))
Chunming Zhou890ee232015-06-01 14:35:03 +08002242#define amdgpu_ring_emit_fence(r, addr, seq, flags) (r)->funcs->emit_fence((r), (addr), (seq), (flags))
Alex Deucher97b2e202015-04-20 16:51:00 -04002243#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 +02002244#define amdgpu_ring_emit_hdp_flush(r) (r)->funcs->emit_hdp_flush((r))
Chunming Zhou11afbde2016-03-03 11:38:48 +08002245#define amdgpu_ring_emit_hdp_invalidate(r) (r)->funcs->emit_hdp_invalidate((r))
Christian König9e5d53092016-01-31 12:20:55 +01002246#define amdgpu_ring_pad_ib(r, ib) ((r)->funcs->pad_ib((r), (ib)))
Alex Deucher97b2e202015-04-20 16:51:00 -04002247#define amdgpu_ih_get_wptr(adev) (adev)->irq.ih_funcs->get_wptr((adev))
2248#define amdgpu_ih_decode_iv(adev, iv) (adev)->irq.ih_funcs->decode_iv((adev), (iv))
2249#define amdgpu_ih_set_rptr(adev) (adev)->irq.ih_funcs->set_rptr((adev))
2250#define amdgpu_display_set_vga_render_state(adev, r) (adev)->mode_info.funcs->set_vga_render_state((adev), (r))
2251#define amdgpu_display_vblank_get_counter(adev, crtc) (adev)->mode_info.funcs->vblank_get_counter((adev), (crtc))
2252#define amdgpu_display_vblank_wait(adev, crtc) (adev)->mode_info.funcs->vblank_wait((adev), (crtc))
2253#define amdgpu_display_is_display_hung(adev) (adev)->mode_info.funcs->is_display_hung((adev))
2254#define amdgpu_display_backlight_set_level(adev, e, l) (adev)->mode_info.funcs->backlight_set_level((e), (l))
2255#define amdgpu_display_backlight_get_level(adev, e) (adev)->mode_info.funcs->backlight_get_level((e))
2256#define amdgpu_display_hpd_sense(adev, h) (adev)->mode_info.funcs->hpd_sense((adev), (h))
2257#define amdgpu_display_hpd_set_polarity(adev, h) (adev)->mode_info.funcs->hpd_set_polarity((adev), (h))
2258#define amdgpu_display_hpd_get_gpio_reg(adev) (adev)->mode_info.funcs->hpd_get_gpio_reg((adev))
2259#define amdgpu_display_bandwidth_update(adev) (adev)->mode_info.funcs->bandwidth_update((adev))
2260#define amdgpu_display_page_flip(adev, crtc, base) (adev)->mode_info.funcs->page_flip((adev), (crtc), (base))
2261#define amdgpu_display_page_flip_get_scanoutpos(adev, crtc, vbl, pos) (adev)->mode_info.funcs->page_flip_get_scanoutpos((adev), (crtc), (vbl), (pos))
2262#define amdgpu_display_add_encoder(adev, e, s, c) (adev)->mode_info.funcs->add_encoder((adev), (e), (s), (c))
2263#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))
2264#define amdgpu_display_stop_mc_access(adev, s) (adev)->mode_info.funcs->stop_mc_access((adev), (s))
2265#define amdgpu_display_resume_mc_access(adev, s) (adev)->mode_info.funcs->resume_mc_access((adev), (s))
Chunming Zhouc7ae72c2015-08-25 17:23:45 +08002266#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 +08002267#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 -04002268#define amdgpu_dpm_pre_set_power_state(adev) (adev)->pm.funcs->pre_set_power_state((adev))
2269#define amdgpu_dpm_set_power_state(adev) (adev)->pm.funcs->set_power_state((adev))
2270#define amdgpu_dpm_post_set_power_state(adev) (adev)->pm.funcs->post_set_power_state((adev))
2271#define amdgpu_dpm_display_configuration_changed(adev) (adev)->pm.funcs->display_configuration_changed((adev))
Alex Deucher97b2e202015-04-20 16:51:00 -04002272#define amdgpu_dpm_print_power_state(adev, ps) (adev)->pm.funcs->print_power_state((adev), (ps))
Alex Deucher97b2e202015-04-20 16:51:00 -04002273#define amdgpu_dpm_vblank_too_short(adev) (adev)->pm.funcs->vblank_too_short((adev))
Alex Deucher97b2e202015-04-20 16:51:00 -04002274#define amdgpu_dpm_enable_bapm(adev, e) (adev)->pm.funcs->enable_bapm((adev), (e))
Rex Zhu3af76f22015-10-15 17:23:43 +08002275
2276#define amdgpu_dpm_get_temperature(adev) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002277 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002278 (adev)->powerplay.pp_funcs->get_temperature((adev)->powerplay.pp_handle) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002279 (adev)->pm.funcs->get_temperature((adev)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002280
2281#define amdgpu_dpm_set_fan_control_mode(adev, m) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002282 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002283 (adev)->powerplay.pp_funcs->set_fan_control_mode((adev)->powerplay.pp_handle, (m)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002284 (adev)->pm.funcs->set_fan_control_mode((adev), (m)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002285
2286#define amdgpu_dpm_get_fan_control_mode(adev) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002287 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002288 (adev)->powerplay.pp_funcs->get_fan_control_mode((adev)->powerplay.pp_handle) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002289 (adev)->pm.funcs->get_fan_control_mode((adev)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002290
2291#define amdgpu_dpm_set_fan_speed_percent(adev, s) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002292 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002293 (adev)->powerplay.pp_funcs->set_fan_speed_percent((adev)->powerplay.pp_handle, (s)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002294 (adev)->pm.funcs->set_fan_speed_percent((adev), (s)))
Rex Zhu3af76f22015-10-15 17:23:43 +08002295
2296#define amdgpu_dpm_get_fan_speed_percent(adev, s) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002297 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002298 (adev)->powerplay.pp_funcs->get_fan_speed_percent((adev)->powerplay.pp_handle, (s)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002299 (adev)->pm.funcs->get_fan_speed_percent((adev), (s)))
Alex Deucher97b2e202015-04-20 16:51:00 -04002300
Rex Zhu1b5708f2015-11-10 18:25:24 -05002301#define amdgpu_dpm_get_sclk(adev, l) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002302 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002303 (adev)->powerplay.pp_funcs->get_sclk((adev)->powerplay.pp_handle, (l)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002304 (adev)->pm.funcs->get_sclk((adev), (l)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002305
2306#define amdgpu_dpm_get_mclk(adev, l) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002307 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002308 (adev)->powerplay.pp_funcs->get_mclk((adev)->powerplay.pp_handle, (l)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002309 (adev)->pm.funcs->get_mclk((adev), (l)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002310
2311
2312#define amdgpu_dpm_force_performance_level(adev, l) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002313 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002314 (adev)->powerplay.pp_funcs->force_performance_level((adev)->powerplay.pp_handle, (l)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002315 (adev)->pm.funcs->force_performance_level((adev), (l)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002316
2317#define amdgpu_dpm_powergate_uvd(adev, g) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002318 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002319 (adev)->powerplay.pp_funcs->powergate_uvd((adev)->powerplay.pp_handle, (g)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002320 (adev)->pm.funcs->powergate_uvd((adev), (g)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002321
2322#define amdgpu_dpm_powergate_vce(adev, g) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002323 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002324 (adev)->powerplay.pp_funcs->powergate_vce((adev)->powerplay.pp_handle, (g)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002325 (adev)->pm.funcs->powergate_vce((adev), (g)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002326
2327#define amdgpu_dpm_debugfs_print_current_performance_level(adev, m) \
Eric Huang4b5ece22016-01-19 14:28:56 -05002328 ((adev)->pp_enabled ? \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002329 (adev)->powerplay.pp_funcs->print_current_performance_level((adev)->powerplay.pp_handle, (m)) : \
Eric Huang4b5ece22016-01-19 14:28:56 -05002330 (adev)->pm.funcs->debugfs_print_current_performance_level((adev), (m)))
Rex Zhu1b5708f2015-11-10 18:25:24 -05002331
2332#define amdgpu_dpm_get_current_power_state(adev) \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002333 (adev)->powerplay.pp_funcs->get_current_power_state((adev)->powerplay.pp_handle)
Rex Zhu1b5708f2015-11-10 18:25:24 -05002334
2335#define amdgpu_dpm_get_performance_level(adev) \
Jammy Zhoue61710c2015-11-10 18:31:08 -05002336 (adev)->powerplay.pp_funcs->get_performance_level((adev)->powerplay.pp_handle)
Rex Zhu1b5708f2015-11-10 18:25:24 -05002337
Eric Huangf3898ea2015-12-11 16:24:34 -05002338#define amdgpu_dpm_get_pp_num_states(adev, data) \
2339 (adev)->powerplay.pp_funcs->get_pp_num_states((adev)->powerplay.pp_handle, data)
2340
2341#define amdgpu_dpm_get_pp_table(adev, table) \
2342 (adev)->powerplay.pp_funcs->get_pp_table((adev)->powerplay.pp_handle, table)
2343
2344#define amdgpu_dpm_set_pp_table(adev, buf, size) \
2345 (adev)->powerplay.pp_funcs->set_pp_table((adev)->powerplay.pp_handle, buf, size)
2346
2347#define amdgpu_dpm_print_clock_levels(adev, type, buf) \
2348 (adev)->powerplay.pp_funcs->print_clock_levels((adev)->powerplay.pp_handle, type, buf)
2349
2350#define amdgpu_dpm_force_clock_level(adev, type, level) \
2351 (adev)->powerplay.pp_funcs->force_clock_level((adev)->powerplay.pp_handle, type, level)
2352
Jammy Zhoue61710c2015-11-10 18:31:08 -05002353#define amdgpu_dpm_dispatch_task(adev, event_id, input, output) \
Rex Zhu1b5708f2015-11-10 18:25:24 -05002354 (adev)->powerplay.pp_funcs->dispatch_tasks((adev)->powerplay.pp_handle, (event_id), (input), (output))
Alex Deucher97b2e202015-04-20 16:51:00 -04002355
2356#define amdgpu_gds_switch(adev, r, v, d, w, a) (adev)->gds.funcs->patch_gds_switch((r), (v), (d), (w), (a))
2357
2358/* Common functions */
2359int amdgpu_gpu_reset(struct amdgpu_device *adev);
2360void amdgpu_pci_config_reset(struct amdgpu_device *adev);
2361bool amdgpu_card_posted(struct amdgpu_device *adev);
2362void amdgpu_update_display_priority(struct amdgpu_device *adev);
Chunming Zhoud5fc5e82015-07-21 16:52:10 +08002363
Alex Deucher97b2e202015-04-20 16:51:00 -04002364int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data);
2365int amdgpu_cs_get_ring(struct amdgpu_device *adev, u32 ip_type,
2366 u32 ip_instance, u32 ring,
2367 struct amdgpu_ring **out_ring);
2368void amdgpu_ttm_placement_from_domain(struct amdgpu_bo *rbo, u32 domain);
2369bool amdgpu_ttm_bo_is_amdgpu_bo(struct ttm_buffer_object *bo);
Christian König2f568db2016-02-23 12:36:59 +01002370int amdgpu_ttm_tt_get_user_pages(struct ttm_tt *ttm, struct page **pages);
Alex Deucher97b2e202015-04-20 16:51:00 -04002371int amdgpu_ttm_tt_set_userptr(struct ttm_tt *ttm, uint64_t addr,
2372 uint32_t flags);
Christian Königcc325d12016-02-08 11:08:35 +01002373struct mm_struct *amdgpu_ttm_tt_get_usermm(struct ttm_tt *ttm);
Christian Königd7006962016-02-08 10:57:22 +01002374bool amdgpu_ttm_tt_affect_userptr(struct ttm_tt *ttm, unsigned long start,
2375 unsigned long end);
Christian König2f568db2016-02-23 12:36:59 +01002376bool amdgpu_ttm_tt_userptr_invalidated(struct ttm_tt *ttm,
2377 int *last_invalidated);
Alex Deucher97b2e202015-04-20 16:51:00 -04002378bool amdgpu_ttm_tt_is_readonly(struct ttm_tt *ttm);
2379uint32_t amdgpu_ttm_tt_pte_flags(struct amdgpu_device *adev, struct ttm_tt *ttm,
2380 struct ttm_mem_reg *mem);
2381void amdgpu_vram_location(struct amdgpu_device *adev, struct amdgpu_mc *mc, u64 base);
2382void amdgpu_gtt_location(struct amdgpu_device *adev, struct amdgpu_mc *mc);
2383void amdgpu_ttm_set_active_vram_size(struct amdgpu_device *adev, u64 size);
2384void amdgpu_program_register_sequence(struct amdgpu_device *adev,
2385 const u32 *registers,
2386 const u32 array_size);
2387
2388bool amdgpu_device_is_px(struct drm_device *dev);
2389/* atpx handler */
2390#if defined(CONFIG_VGA_SWITCHEROO)
2391void amdgpu_register_atpx_handler(void);
2392void amdgpu_unregister_atpx_handler(void);
2393#else
2394static inline void amdgpu_register_atpx_handler(void) {}
2395static inline void amdgpu_unregister_atpx_handler(void) {}
2396#endif
2397
2398/*
2399 * KMS
2400 */
2401extern const struct drm_ioctl_desc amdgpu_ioctls_kms[];
2402extern int amdgpu_max_kms_ioctl;
2403
2404int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags);
2405int amdgpu_driver_unload_kms(struct drm_device *dev);
2406void amdgpu_driver_lastclose_kms(struct drm_device *dev);
2407int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv);
2408void amdgpu_driver_postclose_kms(struct drm_device *dev,
2409 struct drm_file *file_priv);
2410void amdgpu_driver_preclose_kms(struct drm_device *dev,
2411 struct drm_file *file_priv);
2412int amdgpu_suspend_kms(struct drm_device *dev, bool suspend, bool fbcon);
2413int amdgpu_resume_kms(struct drm_device *dev, bool resume, bool fbcon);
Thierry Reding88e72712015-09-24 18:35:31 +02002414u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe);
2415int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe);
2416void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe);
2417int amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
Alex Deucher97b2e202015-04-20 16:51:00 -04002418 int *max_error,
2419 struct timeval *vblank_time,
2420 unsigned flags);
2421long amdgpu_kms_compat_ioctl(struct file *filp, unsigned int cmd,
2422 unsigned long arg);
2423
2424/*
Alex Deucher97b2e202015-04-20 16:51:00 -04002425 * functions used by amdgpu_encoder.c
2426 */
2427struct amdgpu_afmt_acr {
2428 u32 clock;
2429
2430 int n_32khz;
2431 int cts_32khz;
2432
2433 int n_44_1khz;
2434 int cts_44_1khz;
2435
2436 int n_48khz;
2437 int cts_48khz;
2438
2439};
2440
2441struct amdgpu_afmt_acr amdgpu_afmt_acr(uint32_t clock);
2442
2443/* amdgpu_acpi.c */
2444#if defined(CONFIG_ACPI)
2445int amdgpu_acpi_init(struct amdgpu_device *adev);
2446void amdgpu_acpi_fini(struct amdgpu_device *adev);
2447bool amdgpu_acpi_is_pcie_performance_request_supported(struct amdgpu_device *adev);
2448int amdgpu_acpi_pcie_performance_request(struct amdgpu_device *adev,
2449 u8 perf_req, bool advertise);
2450int amdgpu_acpi_pcie_notify_device_ready(struct amdgpu_device *adev);
2451#else
2452static inline int amdgpu_acpi_init(struct amdgpu_device *adev) { return 0; }
2453static inline void amdgpu_acpi_fini(struct amdgpu_device *adev) { }
2454#endif
2455
2456struct amdgpu_bo_va_mapping *
2457amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
2458 uint64_t addr, struct amdgpu_bo **bo);
2459
2460#include "amdgpu_object.h"
2461
2462#endif