blob: 0b039bdcf84e914f589b7976feccc6c4f474b161 [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/**
2 * \file amdgpu_drv.c
3 * AMD Amdgpu driver
4 *
5 * \author Gareth Hughes <gareth@valinux.com>
6 */
7
8/*
9 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
10 * All Rights Reserved.
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a
13 * copy of this software and associated documentation files (the "Software"),
14 * to deal in the Software without restriction, including without limitation
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
16 * and/or sell copies of the Software, and to permit persons to whom the
17 * Software is furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice (including the next
20 * paragraph) shall be included in all copies or substantial portions of the
21 * Software.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
27 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
28 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
29 * OTHER DEALINGS IN THE SOFTWARE.
30 */
31
32#include <drm/drmP.h>
33#include <drm/amdgpu_drm.h>
34#include <drm/drm_gem.h>
35#include "amdgpu_drv.h"
36
37#include <drm/drm_pciids.h>
38#include <linux/console.h>
39#include <linux/module.h>
40#include <linux/pm_runtime.h>
41#include <linux/vga_switcheroo.h>
Masahiro Yamada248a1d62017-04-24 13:50:21 +090042#include <drm/drm_crtc_helper.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040043
44#include "amdgpu.h"
45#include "amdgpu_irq.h"
46
Oded Gabbay130e0372015-06-12 21:35:14 +030047#include "amdgpu_amdkfd.h"
48
Alex Deucherd38ceaf2015-04-20 16:55:21 -040049/*
50 * KMS wrapper.
51 * - 3.0.0 - initial driver
Marek Olšák6055f372015-08-18 23:58:47 +020052 * - 3.1.0 - allow reading more status registers (GRBM, SRBM, SDMA, CP)
Marek Olšákf84e63f2016-04-28 14:32:44 +020053 * - 3.2.0 - GFX8: Uses EOP_TC_WB_ACTION_EN, so UMDs don't have to do the same
54 * at the end of IBs.
Christian Königd347ce62016-07-14 14:34:17 +020055 * - 3.3.0 - Add VM support for UVD on supported hardware.
Marek Olšák83a59b62016-08-17 23:58:58 +020056 * - 3.4.0 - Add AMDGPU_INFO_NUM_EVICTIONS.
Alex Deucher8dd31d72016-08-22 17:58:14 -040057 * - 3.5.0 - Add support for new UVD_NO_OP register.
Monk Liu753ad492016-08-26 13:28:28 +080058 * - 3.6.0 - kmd involves use CONTEXT_CONTROL in ring buffer.
Alex Deucher9cee3c1f2016-09-21 18:04:50 -040059 * - 3.7.0 - Add support for VCE clock list packet
Alex Deucherb62b5932016-09-26 16:44:54 -040060 * - 3.8.0 - Add support raster config init in the kernel
Junwei Zhangef704312016-09-28 13:27:15 +080061 * - 3.9.0 - Add support for memory query info about VRAM and GTT.
Alex Deuchera5b11da2017-03-08 17:23:21 -050062 * - 3.10.0 - Add support for new fences ioctl, new gem ioctl flags
Alex Deucher5ebbac42017-03-08 18:25:15 -050063 * - 3.11.0 - Add support for sensor query info (clocks, temp, etc).
Alex Deucherdfe38bd2017-03-08 18:27:07 -050064 * - 3.12.0 - Add query for double offchip LDS buffers
Alex Deucher8eafd502017-03-16 10:45:58 -040065 * - 3.13.0 - Add PRT support
Alex Deucher203eb0c2017-04-10 15:36:32 -040066 * - 3.14.0 - Fix race in amdgpu_ctx_get_fence() and note new functionality
Junwei Zhang44eb8c12017-04-27 16:27:43 +080067 * - 3.15.0 - Export more gpu info for gfx9
Chunming Zhoub98b8db2017-04-24 11:47:05 +080068 * - 3.16.0 - Add reserved vmid support
Marek Olšák68e2c5f2017-05-17 20:05:08 +020069 * - 3.17.0 - Add AMDGPU_NUM_VRAM_CPU_PAGE_FAULTS.
Flora Cuidbfe85e2017-06-20 11:08:35 +080070 * - 3.18.0 - Export gpu always on cu bitmap
Leo Liu33476312017-08-16 10:18:28 -040071 * - 3.19.0 - Add support for UVD MJPEG decode
Christian Königfd8bf082017-08-29 16:14:32 +020072 * - 3.20.0 - Add support for local BOs
Marek Olšák7ca24cf2017-09-12 22:42:14 +020073 * - 3.21.0 - Add DRM_AMDGPU_FENCE_TO_HANDLE ioctl
Alex Deucherb285f1d2017-10-09 16:28:16 -040074 * - 3.22.0 - Add DRM_AMDGPU_SCHED ioctl
Alex Deucherc057c112017-10-12 16:26:34 -040075 * - 3.23.0 - Add query for VRAM lost counter
Alex Deucherd38ceaf2015-04-20 16:55:21 -040076 */
77#define KMS_DRIVER_MAJOR 3
Alex Deucherc057c112017-10-12 16:26:34 -040078#define KMS_DRIVER_MINOR 23
Alex Deucherd38ceaf2015-04-20 16:55:21 -040079#define KMS_DRIVER_PATCHLEVEL 0
80
81int amdgpu_vram_limit = 0;
John Brooks218b5dc2017-06-27 22:33:17 -040082int amdgpu_vis_vram_limit = 0;
Alex Deucher83e74db2017-08-21 11:58:25 -040083int amdgpu_gart_size = -1; /* auto */
Christian König36d38372017-07-07 13:17:45 +020084int amdgpu_gtt_size = -1; /* auto */
Marek Olšák95844d22016-08-17 23:49:27 +020085int amdgpu_moverate = -1; /* auto */
Alex Deucherd38ceaf2015-04-20 16:55:21 -040086int amdgpu_benchmarking = 0;
87int amdgpu_testing = 0;
88int amdgpu_audio = -1;
89int amdgpu_disp_priority = 0;
90int amdgpu_hw_i2c = 0;
91int amdgpu_pcie_gen2 = -1;
92int amdgpu_msi = -1;
Alex Deuchera895c222015-08-13 13:20:20 -040093int amdgpu_lockup_timeout = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040094int amdgpu_dpm = -1;
Huang Ruie635ee02016-11-01 15:35:38 +080095int amdgpu_fw_load_type = -1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040096int amdgpu_aspm = -1;
97int amdgpu_runtime_pm = -1;
Rex Zhu0b693f02017-09-19 14:36:08 +080098uint amdgpu_ip_block_mask = 0xffffffff;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040099int amdgpu_bapm = -1;
100int amdgpu_deep_color = 0;
Junwei Zhangbab4fee2017-04-05 13:54:56 +0800101int amdgpu_vm_size = -1;
Roger Hed07f14b2017-08-15 16:05:59 +0800102int amdgpu_vm_fragment_size = -1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400103int amdgpu_vm_block_size = -1;
Christian Königd9c13152015-09-28 12:31:26 +0200104int amdgpu_vm_fault_stop = 0;
Christian Königb495bd32015-09-10 14:00:35 +0200105int amdgpu_vm_debug = 0;
Christian König60bfcd32017-05-10 14:26:09 +0200106int amdgpu_vram_page_split = 512;
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -0400107int amdgpu_vm_update_mode = -1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400108int amdgpu_exp_hw_support = 0;
Harry Wentland45622362017-09-12 15:58:20 -0400109int amdgpu_dc = -1;
Harry Wentland02e749d2017-09-12 20:02:11 -0400110int amdgpu_dc_log = 0;
Chunming Zhoub70f0142015-12-10 15:46:50 +0800111int amdgpu_sched_jobs = 32;
Jammy Zhou4afcb302015-07-30 16:44:05 +0800112int amdgpu_sched_hw_submission = 2;
Rex Zhu3ca67302016-11-02 13:38:37 +0800113int amdgpu_no_evict = 0;
114int amdgpu_direct_gma_size = 0;
Rex Zhu0b693f02017-09-19 14:36:08 +0800115uint amdgpu_pcie_gen_cap = 0;
116uint amdgpu_pcie_lane_cap = 0;
117uint amdgpu_cg_mask = 0xffffffff;
118uint amdgpu_pg_mask = 0xffffffff;
119uint amdgpu_sdma_phase_quantum = 32;
Nicolai Hähnle6f8941a2016-06-17 19:31:33 +0200120char *amdgpu_disable_cu = NULL;
Emily Deng9accf2f2016-08-10 16:01:25 +0800121char *amdgpu_virtual_display = NULL;
Rex Zhu0b693f02017-09-19 14:36:08 +0800122uint amdgpu_pp_feature_mask = 0xffffffff;
Alex Deucherbce23e02017-03-28 12:52:08 -0400123int amdgpu_ngg = 0;
124int amdgpu_prim_buf_per_se = 0;
125int amdgpu_pos_buf_per_se = 0;
126int amdgpu_cntl_sb_buf_per_se = 0;
127int amdgpu_param_buf_per_se = 0;
Monk Liu65781c72017-05-11 13:36:44 +0800128int amdgpu_job_hang_limit = 0;
Hawking Zhange8835e02017-05-26 14:40:36 +0800129int amdgpu_lbpw = -1;
Andres Rodriguez4a75aef2017-09-26 12:22:46 -0400130int amdgpu_compute_multipipe = -1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400131
132MODULE_PARM_DESC(vramlimit, "Restrict VRAM for testing, in megabytes");
133module_param_named(vramlimit, amdgpu_vram_limit, int, 0600);
134
John Brooks218b5dc2017-06-27 22:33:17 -0400135MODULE_PARM_DESC(vis_vramlimit, "Restrict visible VRAM for testing, in megabytes");
136module_param_named(vis_vramlimit, amdgpu_vis_vram_limit, int, 0444);
137
Alex Deuchera4da14c2017-08-22 12:21:07 -0400138MODULE_PARM_DESC(gartsize, "Size of GART to setup in megabytes (32, 64, etc., -1=auto)");
Christian Königf9321cc2017-07-07 13:44:05 +0200139module_param_named(gartsize, amdgpu_gart_size, uint, 0600);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400140
Christian König36d38372017-07-07 13:17:45 +0200141MODULE_PARM_DESC(gttsize, "Size of the GTT domain in megabytes (-1 = auto)");
142module_param_named(gttsize, amdgpu_gtt_size, int, 0600);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400143
Marek Olšák95844d22016-08-17 23:49:27 +0200144MODULE_PARM_DESC(moverate, "Maximum buffer migration rate in MB/s. (32, 64, etc., -1=auto, 0=1=disabled)");
145module_param_named(moverate, amdgpu_moverate, int, 0600);
146
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400147MODULE_PARM_DESC(benchmark, "Run benchmark");
148module_param_named(benchmark, amdgpu_benchmarking, int, 0444);
149
150MODULE_PARM_DESC(test, "Run tests");
151module_param_named(test, amdgpu_testing, int, 0444);
152
153MODULE_PARM_DESC(audio, "Audio enable (-1 = auto, 0 = disable, 1 = enable)");
154module_param_named(audio, amdgpu_audio, int, 0444);
155
156MODULE_PARM_DESC(disp_priority, "Display Priority (0 = auto, 1 = normal, 2 = high)");
157module_param_named(disp_priority, amdgpu_disp_priority, int, 0444);
158
159MODULE_PARM_DESC(hw_i2c, "hw i2c engine enable (0 = disable)");
160module_param_named(hw_i2c, amdgpu_hw_i2c, int, 0444);
161
162MODULE_PARM_DESC(pcie_gen2, "PCIE Gen2 mode (-1 = auto, 0 = disable, 1 = enable)");
163module_param_named(pcie_gen2, amdgpu_pcie_gen2, int, 0444);
164
165MODULE_PARM_DESC(msi, "MSI support (1 = enable, 0 = disable, -1 = auto)");
166module_param_named(msi, amdgpu_msi, int, 0444);
167
Alex Deuchera895c222015-08-13 13:20:20 -0400168MODULE_PARM_DESC(lockup_timeout, "GPU lockup timeout in ms (default 0 = disable)");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400169module_param_named(lockup_timeout, amdgpu_lockup_timeout, int, 0444);
170
171MODULE_PARM_DESC(dpm, "DPM support (1 = enable, 0 = disable, -1 = auto)");
172module_param_named(dpm, amdgpu_dpm, int, 0444);
173
Huang Ruie635ee02016-11-01 15:35:38 +0800174MODULE_PARM_DESC(fw_load_type, "firmware loading type (0 = direct, 1 = SMU, 2 = PSP, -1 = auto)");
175module_param_named(fw_load_type, amdgpu_fw_load_type, int, 0444);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400176
177MODULE_PARM_DESC(aspm, "ASPM support (1 = enable, 0 = disable, -1 = auto)");
178module_param_named(aspm, amdgpu_aspm, int, 0444);
179
180MODULE_PARM_DESC(runpm, "PX runtime pm (1 = force enable, 0 = disable, -1 = PX only default)");
181module_param_named(runpm, amdgpu_runtime_pm, int, 0444);
182
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400183MODULE_PARM_DESC(ip_block_mask, "IP Block Mask (all blocks enabled (default))");
184module_param_named(ip_block_mask, amdgpu_ip_block_mask, uint, 0444);
185
186MODULE_PARM_DESC(bapm, "BAPM support (1 = enable, 0 = disable, -1 = auto)");
187module_param_named(bapm, amdgpu_bapm, int, 0444);
188
189MODULE_PARM_DESC(deep_color, "Deep Color support (1 = enable, 0 = disable (default))");
190module_param_named(deep_color, amdgpu_deep_color, int, 0444);
191
Christian Königed885b22015-10-15 17:34:20 +0200192MODULE_PARM_DESC(vm_size, "VM address space size in gigabytes (default 64GB)");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400193module_param_named(vm_size, amdgpu_vm_size, int, 0444);
194
Roger Hed07f14b2017-08-15 16:05:59 +0800195MODULE_PARM_DESC(vm_fragment_size, "VM fragment size in bits (4, 5, etc. 4 = 64K (default), Max 9 = 2M)");
196module_param_named(vm_fragment_size, amdgpu_vm_fragment_size, int, 0444);
197
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400198MODULE_PARM_DESC(vm_block_size, "VM page table size in bits (default depending on vm_size)");
199module_param_named(vm_block_size, amdgpu_vm_block_size, int, 0444);
200
Christian Königd9c13152015-09-28 12:31:26 +0200201MODULE_PARM_DESC(vm_fault_stop, "Stop on VM fault (0 = never (default), 1 = print first, 2 = always)");
202module_param_named(vm_fault_stop, amdgpu_vm_fault_stop, int, 0444);
203
Christian Königb495bd32015-09-10 14:00:35 +0200204MODULE_PARM_DESC(vm_debug, "Debug VM handling (0 = disabled (default), 1 = enabled)");
205module_param_named(vm_debug, amdgpu_vm_debug, int, 0644);
206
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -0400207MODULE_PARM_DESC(vm_update_mode, "VM update using CPU (0 = never (default except for large BAR(LB)), 1 = Graphics only, 2 = Compute only (default for LB), 3 = Both");
208module_param_named(vm_update_mode, amdgpu_vm_update_mode, int, 0444);
209
Kent Russellccfee952017-06-28 15:16:41 -0400210MODULE_PARM_DESC(vram_page_split, "Number of pages after we split VRAM allocations (default 512, -1 = disable)");
Christian König6a7f76e2016-08-24 15:51:49 +0200211module_param_named(vram_page_split, amdgpu_vram_page_split, int, 0444);
212
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400213MODULE_PARM_DESC(exp_hw_support, "experimental hw support (1 = enable, 0 = disable (default))");
214module_param_named(exp_hw_support, amdgpu_exp_hw_support, int, 0444);
215
Harry Wentland45622362017-09-12 15:58:20 -0400216MODULE_PARM_DESC(dc, "Display Core driver (1 = enable, 0 = disable, -1 = auto (default))");
217module_param_named(dc, amdgpu_dc, int, 0444);
218
Michel Dänzer96b8af62017-11-22 15:55:22 +0100219MODULE_PARM_DESC(dc_log, "Display Core Log Level (0 = minimal (default), 1 = chatty");
Harry Wentland02e749d2017-09-12 20:02:11 -0400220module_param_named(dc_log, amdgpu_dc_log, int, 0444);
221
Chunming Zhoub70f0142015-12-10 15:46:50 +0800222MODULE_PARM_DESC(sched_jobs, "the max number of jobs supported in the sw queue (default 32)");
Jammy Zhou1333f722015-07-30 16:36:58 +0800223module_param_named(sched_jobs, amdgpu_sched_jobs, int, 0444);
224
Jammy Zhou4afcb302015-07-30 16:44:05 +0800225MODULE_PARM_DESC(sched_hw_submission, "the max number of HW submissions (default 2)");
226module_param_named(sched_hw_submission, amdgpu_sched_hw_submission, int, 0444);
227
Rex Zhu5141e9d2016-09-06 16:34:37 +0800228MODULE_PARM_DESC(ppfeaturemask, "all power features enabled (default))");
Evan Quan88826352017-07-06 09:36:27 +0800229module_param_named(ppfeaturemask, amdgpu_pp_feature_mask, uint, 0444);
Jammy Zhou3a74f6f2015-07-21 14:01:50 +0800230
Rex Zhu3ca67302016-11-02 13:38:37 +0800231MODULE_PARM_DESC(no_evict, "Support pinning request from user space (1 = enable, 0 = disable (default))");
232module_param_named(no_evict, amdgpu_no_evict, int, 0444);
233
234MODULE_PARM_DESC(direct_gma_size, "Direct GMA size in megabytes (max 96MB)");
235module_param_named(direct_gma_size, amdgpu_direct_gma_size, int, 0444);
Rex Zhuaf223df2016-07-28 16:51:47 +0800236
Alex Deuchercd474ba2016-02-04 10:21:23 -0500237MODULE_PARM_DESC(pcie_gen_cap, "PCIE Gen Caps (0: autodetect (default))");
238module_param_named(pcie_gen_cap, amdgpu_pcie_gen_cap, uint, 0444);
239
240MODULE_PARM_DESC(pcie_lane_cap, "PCIE Lane Caps (0: autodetect (default))");
241module_param_named(pcie_lane_cap, amdgpu_pcie_lane_cap, uint, 0444);
242
Nicolai Hähnle395d1fb2016-06-02 12:32:07 +0200243MODULE_PARM_DESC(cg_mask, "Clockgating flags mask (0 = disable clock gating)");
244module_param_named(cg_mask, amdgpu_cg_mask, uint, 0444);
245
246MODULE_PARM_DESC(pg_mask, "Powergating flags mask (0 = disable power gating)");
247module_param_named(pg_mask, amdgpu_pg_mask, uint, 0444);
248
Felix Kuehlinga6673862016-07-15 18:37:05 -0400249MODULE_PARM_DESC(sdma_phase_quantum, "SDMA context switch phase quantum (x 1K GPU clock cycles, 0 = no change (default 32))");
250module_param_named(sdma_phase_quantum, amdgpu_sdma_phase_quantum, uint, 0444);
251
Nicolai Hähnle6f8941a2016-06-17 19:31:33 +0200252MODULE_PARM_DESC(disable_cu, "Disable CUs (se.sh.cu,...)");
253module_param_named(disable_cu, amdgpu_disable_cu, charp, 0444);
254
Emily Deng0f663562016-09-30 13:02:18 -0400255MODULE_PARM_DESC(virtual_display,
256 "Enable virtual display feature (the virtual_display will be set like xxxx:xx:xx.x,x;xxxx:xx:xx.x,x)");
Emily Deng9accf2f2016-08-10 16:01:25 +0800257module_param_named(virtual_display, amdgpu_virtual_display, charp, 0444);
Emily Denge4430592016-08-08 11:37:29 +0800258
Alex Deucherbce23e02017-03-28 12:52:08 -0400259MODULE_PARM_DESC(ngg, "Next Generation Graphics (1 = enable, 0 = disable(default depending on gfx))");
260module_param_named(ngg, amdgpu_ngg, int, 0444);
261
262MODULE_PARM_DESC(prim_buf_per_se, "the size of Primitive Buffer per Shader Engine (default depending on gfx)");
263module_param_named(prim_buf_per_se, amdgpu_prim_buf_per_se, int, 0444);
264
265MODULE_PARM_DESC(pos_buf_per_se, "the size of Position Buffer per Shader Engine (default depending on gfx)");
266module_param_named(pos_buf_per_se, amdgpu_pos_buf_per_se, int, 0444);
267
268MODULE_PARM_DESC(cntl_sb_buf_per_se, "the size of Control Sideband per Shader Engine (default depending on gfx)");
269module_param_named(cntl_sb_buf_per_se, amdgpu_cntl_sb_buf_per_se, int, 0444);
270
271MODULE_PARM_DESC(param_buf_per_se, "the size of Off-Chip Pramater Cache per Shader Engine (default depending on gfx)");
272module_param_named(param_buf_per_se, amdgpu_param_buf_per_se, int, 0444);
273
Monk Liu65781c72017-05-11 13:36:44 +0800274MODULE_PARM_DESC(job_hang_limit, "how much time allow a job hang and not drop it (default 0)");
275module_param_named(job_hang_limit, amdgpu_job_hang_limit, int ,0444);
276
Hawking Zhange8835e02017-05-26 14:40:36 +0800277MODULE_PARM_DESC(lbpw, "Load Balancing Per Watt (LBPW) support (1 = enable, 0 = disable, -1 = auto)");
278module_param_named(lbpw, amdgpu_lbpw, int, 0444);
Alex Deucherbce23e02017-03-28 12:52:08 -0400279
Andres Rodriguez4a75aef2017-09-26 12:22:46 -0400280MODULE_PARM_DESC(compute_multipipe, "Force compute queues to be spread across pipes (1 = enable, 0 = disable, -1 = auto)");
281module_param_named(compute_multipipe, amdgpu_compute_multipipe, int, 0444);
282
Felix Kuehling6dd13092017-06-05 18:53:55 +0900283#ifdef CONFIG_DRM_AMDGPU_SI
Michel Dänzer53efaf52017-06-30 17:36:07 +0900284
285#if defined(CONFIG_DRM_RADEON) || defined(CONFIG_DRM_RADEON_MODULE)
Felix Kuehling6dd13092017-06-05 18:53:55 +0900286int amdgpu_si_support = 0;
287MODULE_PARM_DESC(si_support, "SI support (1 = enabled, 0 = disabled (default))");
Michel Dänzer53efaf52017-06-30 17:36:07 +0900288#else
289int amdgpu_si_support = 1;
290MODULE_PARM_DESC(si_support, "SI support (1 = enabled (default), 0 = disabled)");
291#endif
292
Felix Kuehling6dd13092017-06-05 18:53:55 +0900293module_param_named(si_support, amdgpu_si_support, int, 0444);
294#endif
295
Felix Kuehling7df28982017-06-05 18:43:27 +0900296#ifdef CONFIG_DRM_AMDGPU_CIK
Michel Dänzer53efaf52017-06-30 17:36:07 +0900297
298#if defined(CONFIG_DRM_RADEON) || defined(CONFIG_DRM_RADEON_MODULE)
Michel Dänzer2b059652017-05-29 18:05:20 +0900299int amdgpu_cik_support = 0;
300MODULE_PARM_DESC(cik_support, "CIK support (1 = enabled, 0 = disabled (default))");
Michel Dänzer53efaf52017-06-30 17:36:07 +0900301#else
302int amdgpu_cik_support = 1;
303MODULE_PARM_DESC(cik_support, "CIK support (1 = enabled (default), 0 = disabled)");
304#endif
305
Felix Kuehling7df28982017-06-05 18:43:27 +0900306module_param_named(cik_support, amdgpu_cik_support, int, 0444);
307#endif
308
Nils Wallméniusf498d9e2016-04-10 16:29:59 +0200309static const struct pci_device_id pciidlist[] = {
Ken Wang78fbb682016-01-21 17:33:00 +0800310#ifdef CONFIG_DRM_AMDGPU_SI
311 {0x1002, 0x6780, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI},
312 {0x1002, 0x6784, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI},
313 {0x1002, 0x6788, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI},
314 {0x1002, 0x678A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI},
315 {0x1002, 0x6790, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI},
316 {0x1002, 0x6791, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI},
317 {0x1002, 0x6792, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI},
318 {0x1002, 0x6798, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI},
319 {0x1002, 0x6799, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI},
320 {0x1002, 0x679A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI},
321 {0x1002, 0x679B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI},
322 {0x1002, 0x679E, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI},
323 {0x1002, 0x679F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI},
324 {0x1002, 0x6800, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_PITCAIRN|AMD_IS_MOBILITY},
325 {0x1002, 0x6801, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_PITCAIRN|AMD_IS_MOBILITY},
326 {0x1002, 0x6802, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_PITCAIRN|AMD_IS_MOBILITY},
327 {0x1002, 0x6806, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_PITCAIRN},
328 {0x1002, 0x6808, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_PITCAIRN},
329 {0x1002, 0x6809, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_PITCAIRN},
330 {0x1002, 0x6810, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_PITCAIRN},
331 {0x1002, 0x6811, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_PITCAIRN},
332 {0x1002, 0x6816, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_PITCAIRN},
333 {0x1002, 0x6817, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_PITCAIRN},
334 {0x1002, 0x6818, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_PITCAIRN},
335 {0x1002, 0x6819, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_PITCAIRN},
336 {0x1002, 0x6600, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|AMD_IS_MOBILITY},
337 {0x1002, 0x6601, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|AMD_IS_MOBILITY},
338 {0x1002, 0x6602, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|AMD_IS_MOBILITY},
339 {0x1002, 0x6603, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|AMD_IS_MOBILITY},
340 {0x1002, 0x6604, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|AMD_IS_MOBILITY},
341 {0x1002, 0x6605, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|AMD_IS_MOBILITY},
342 {0x1002, 0x6606, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|AMD_IS_MOBILITY},
343 {0x1002, 0x6607, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|AMD_IS_MOBILITY},
344 {0x1002, 0x6608, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND},
345 {0x1002, 0x6610, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND},
346 {0x1002, 0x6611, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND},
347 {0x1002, 0x6613, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND},
348 {0x1002, 0x6617, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|AMD_IS_MOBILITY},
349 {0x1002, 0x6620, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|AMD_IS_MOBILITY},
350 {0x1002, 0x6621, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|AMD_IS_MOBILITY},
351 {0x1002, 0x6623, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|AMD_IS_MOBILITY},
352 {0x1002, 0x6631, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND},
353 {0x1002, 0x6820, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE|AMD_IS_MOBILITY},
354 {0x1002, 0x6821, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE|AMD_IS_MOBILITY},
355 {0x1002, 0x6822, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE|AMD_IS_MOBILITY},
356 {0x1002, 0x6823, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE|AMD_IS_MOBILITY},
357 {0x1002, 0x6824, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE|AMD_IS_MOBILITY},
358 {0x1002, 0x6825, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE|AMD_IS_MOBILITY},
359 {0x1002, 0x6826, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE|AMD_IS_MOBILITY},
360 {0x1002, 0x6827, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE|AMD_IS_MOBILITY},
361 {0x1002, 0x6828, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE},
362 {0x1002, 0x6829, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE},
363 {0x1002, 0x682A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE|AMD_IS_MOBILITY},
364 {0x1002, 0x682B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE|AMD_IS_MOBILITY},
365 {0x1002, 0x682C, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE},
366 {0x1002, 0x682D, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE|AMD_IS_MOBILITY},
367 {0x1002, 0x682F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE|AMD_IS_MOBILITY},
368 {0x1002, 0x6830, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE|AMD_IS_MOBILITY},
369 {0x1002, 0x6831, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE|AMD_IS_MOBILITY},
370 {0x1002, 0x6835, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE},
371 {0x1002, 0x6837, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE},
372 {0x1002, 0x6838, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE},
373 {0x1002, 0x6839, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE},
374 {0x1002, 0x683B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE},
375 {0x1002, 0x683D, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE},
376 {0x1002, 0x683F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VERDE},
377 {0x1002, 0x6660, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAINAN|AMD_IS_MOBILITY},
378 {0x1002, 0x6663, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAINAN|AMD_IS_MOBILITY},
379 {0x1002, 0x6664, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAINAN|AMD_IS_MOBILITY},
380 {0x1002, 0x6665, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAINAN|AMD_IS_MOBILITY},
381 {0x1002, 0x6667, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAINAN|AMD_IS_MOBILITY},
382 {0x1002, 0x666F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAINAN|AMD_IS_MOBILITY},
383#endif
Alex Deucher89330c32015-04-20 17:36:52 -0400384#ifdef CONFIG_DRM_AMDGPU_CIK
385 /* Kaveri */
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800386 {0x1002, 0x1304, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_MOBILITY|AMD_IS_APU},
387 {0x1002, 0x1305, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_APU},
388 {0x1002, 0x1306, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_MOBILITY|AMD_IS_APU},
389 {0x1002, 0x1307, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_APU},
390 {0x1002, 0x1309, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_MOBILITY|AMD_IS_APU},
391 {0x1002, 0x130A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_MOBILITY|AMD_IS_APU},
392 {0x1002, 0x130B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_MOBILITY|AMD_IS_APU},
393 {0x1002, 0x130C, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_MOBILITY|AMD_IS_APU},
394 {0x1002, 0x130D, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_MOBILITY|AMD_IS_APU},
395 {0x1002, 0x130E, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_MOBILITY|AMD_IS_APU},
396 {0x1002, 0x130F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_APU},
397 {0x1002, 0x1310, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_APU},
398 {0x1002, 0x1311, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_APU},
399 {0x1002, 0x1312, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_APU},
400 {0x1002, 0x1313, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_APU},
401 {0x1002, 0x1315, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_APU},
402 {0x1002, 0x1316, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_APU},
403 {0x1002, 0x1317, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_MOBILITY|AMD_IS_APU},
404 {0x1002, 0x1318, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_MOBILITY|AMD_IS_APU},
405 {0x1002, 0x131B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_APU},
406 {0x1002, 0x131C, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_APU},
407 {0x1002, 0x131D, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KAVERI|AMD_IS_APU},
Alex Deucher89330c32015-04-20 17:36:52 -0400408 /* Bonaire */
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800409 {0x1002, 0x6640, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_BONAIRE|AMD_IS_MOBILITY},
410 {0x1002, 0x6641, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_BONAIRE|AMD_IS_MOBILITY},
411 {0x1002, 0x6646, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_BONAIRE|AMD_IS_MOBILITY},
412 {0x1002, 0x6647, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_BONAIRE|AMD_IS_MOBILITY},
Alex Deucher89330c32015-04-20 17:36:52 -0400413 {0x1002, 0x6649, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_BONAIRE},
414 {0x1002, 0x6650, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_BONAIRE},
415 {0x1002, 0x6651, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_BONAIRE},
416 {0x1002, 0x6658, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_BONAIRE},
417 {0x1002, 0x665c, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_BONAIRE},
418 {0x1002, 0x665d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_BONAIRE},
Alex Deucherfb4f1732015-05-12 13:06:45 -0400419 {0x1002, 0x665f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_BONAIRE},
Alex Deucher89330c32015-04-20 17:36:52 -0400420 /* Hawaii */
421 {0x1002, 0x67A0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAWAII},
422 {0x1002, 0x67A1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAWAII},
423 {0x1002, 0x67A2, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAWAII},
424 {0x1002, 0x67A8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAWAII},
425 {0x1002, 0x67A9, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAWAII},
426 {0x1002, 0x67AA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAWAII},
427 {0x1002, 0x67B0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAWAII},
428 {0x1002, 0x67B1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAWAII},
429 {0x1002, 0x67B8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAWAII},
430 {0x1002, 0x67B9, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAWAII},
431 {0x1002, 0x67BA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAWAII},
432 {0x1002, 0x67BE, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAWAII},
433 /* Kabini */
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800434 {0x1002, 0x9830, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KABINI|AMD_IS_MOBILITY|AMD_IS_APU},
435 {0x1002, 0x9831, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KABINI|AMD_IS_APU},
436 {0x1002, 0x9832, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KABINI|AMD_IS_MOBILITY|AMD_IS_APU},
437 {0x1002, 0x9833, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KABINI|AMD_IS_APU},
438 {0x1002, 0x9834, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KABINI|AMD_IS_MOBILITY|AMD_IS_APU},
439 {0x1002, 0x9835, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KABINI|AMD_IS_APU},
440 {0x1002, 0x9836, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KABINI|AMD_IS_MOBILITY|AMD_IS_APU},
441 {0x1002, 0x9837, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KABINI|AMD_IS_APU},
442 {0x1002, 0x9838, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KABINI|AMD_IS_MOBILITY|AMD_IS_APU},
443 {0x1002, 0x9839, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KABINI|AMD_IS_MOBILITY|AMD_IS_APU},
444 {0x1002, 0x983a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KABINI|AMD_IS_APU},
445 {0x1002, 0x983b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KABINI|AMD_IS_MOBILITY|AMD_IS_APU},
446 {0x1002, 0x983c, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KABINI|AMD_IS_APU},
447 {0x1002, 0x983d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KABINI|AMD_IS_APU},
448 {0x1002, 0x983e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KABINI|AMD_IS_APU},
449 {0x1002, 0x983f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_KABINI|AMD_IS_APU},
Alex Deucher89330c32015-04-20 17:36:52 -0400450 /* mullins */
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800451 {0x1002, 0x9850, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
452 {0x1002, 0x9851, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
453 {0x1002, 0x9852, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
454 {0x1002, 0x9853, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
455 {0x1002, 0x9854, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
456 {0x1002, 0x9855, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
457 {0x1002, 0x9856, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
458 {0x1002, 0x9857, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
459 {0x1002, 0x9858, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
460 {0x1002, 0x9859, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
461 {0x1002, 0x985A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
462 {0x1002, 0x985B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
463 {0x1002, 0x985C, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
464 {0x1002, 0x985D, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
465 {0x1002, 0x985E, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
466 {0x1002, 0x985F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_MULLINS|AMD_IS_MOBILITY|AMD_IS_APU},
Alex Deucher89330c32015-04-20 17:36:52 -0400467#endif
Alex Deucher1256a8b2015-04-20 17:37:54 -0400468 /* topaz */
Alex Deucherdba280b2016-02-02 16:24:20 -0500469 {0x1002, 0x6900, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TOPAZ},
470 {0x1002, 0x6901, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TOPAZ},
471 {0x1002, 0x6902, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TOPAZ},
472 {0x1002, 0x6903, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TOPAZ},
473 {0x1002, 0x6907, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TOPAZ},
Alex Deucher1256a8b2015-04-20 17:37:54 -0400474 /* tonga */
475 {0x1002, 0x6920, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TONGA},
476 {0x1002, 0x6921, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TONGA},
477 {0x1002, 0x6928, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TONGA},
Alex Deucher1f8d9622015-05-12 13:10:05 -0400478 {0x1002, 0x6929, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TONGA},
Alex Deucher1256a8b2015-04-20 17:37:54 -0400479 {0x1002, 0x692B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TONGA},
480 {0x1002, 0x692F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TONGA},
Alex Deucher1f8d9622015-05-12 13:10:05 -0400481 {0x1002, 0x6930, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TONGA},
Alex Deucher1256a8b2015-04-20 17:37:54 -0400482 {0x1002, 0x6938, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TONGA},
483 {0x1002, 0x6939, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TONGA},
David Zhang2da78e22015-07-11 23:13:40 +0800484 /* fiji */
485 {0x1002, 0x7300, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_FIJI},
Frank Mine1d99212016-04-27 19:07:18 +0800486 {0x1002, 0x730F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_FIJI},
Alex Deucher1256a8b2015-04-20 17:37:54 -0400487 /* carrizo */
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800488 {0x1002, 0x9870, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_CARRIZO|AMD_IS_APU},
489 {0x1002, 0x9874, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_CARRIZO|AMD_IS_APU},
490 {0x1002, 0x9875, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_CARRIZO|AMD_IS_APU},
491 {0x1002, 0x9876, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_CARRIZO|AMD_IS_APU},
492 {0x1002, 0x9877, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_CARRIZO|AMD_IS_APU},
Samuel Li81b15092015-10-08 16:32:03 -0400493 /* stoney */
494 {0x1002, 0x98E4, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_STONEY|AMD_IS_APU},
Flora Cui2cc0c0b2016-03-14 18:33:29 -0400495 /* Polaris11 */
496 {0x1002, 0x67E0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS11},
Flora Cui35621b82016-05-17 09:52:02 +0800497 {0x1002, 0x67E3, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS11},
Flora Cui2cc0c0b2016-03-14 18:33:29 -0400498 {0x1002, 0x67E8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS11},
Flora Cui2cc0c0b2016-03-14 18:33:29 -0400499 {0x1002, 0x67EB, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS11},
Flora Cui35621b82016-05-17 09:52:02 +0800500 {0x1002, 0x67EF, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS11},
Flora Cui2cc0c0b2016-03-14 18:33:29 -0400501 {0x1002, 0x67FF, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS11},
Flora Cui35621b82016-05-17 09:52:02 +0800502 {0x1002, 0x67E1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS11},
503 {0x1002, 0x67E7, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS11},
504 {0x1002, 0x67E9, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS11},
Flora Cui2cc0c0b2016-03-14 18:33:29 -0400505 /* Polaris10 */
506 {0x1002, 0x67C0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS10},
Flora Cui1dcf4802016-05-16 17:17:41 +0800507 {0x1002, 0x67C1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS10},
508 {0x1002, 0x67C2, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS10},
509 {0x1002, 0x67C4, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS10},
510 {0x1002, 0x67C7, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS10},
Junshan Fang7dae6182017-01-19 10:36:18 +0800511 {0x1002, 0x67D0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS10},
Flora Cui2cc0c0b2016-03-14 18:33:29 -0400512 {0x1002, 0x67DF, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS10},
Flora Cui1dcf4802016-05-16 17:17:41 +0800513 {0x1002, 0x67C8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS10},
514 {0x1002, 0x67C9, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS10},
515 {0x1002, 0x67CA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS10},
516 {0x1002, 0x67CC, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS10},
517 {0x1002, 0x67CF, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS10},
Junwei Zhangfc8e9c52016-08-04 12:54:22 +0800518 /* Polaris12 */
519 {0x1002, 0x6980, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS12},
520 {0x1002, 0x6981, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS12},
521 {0x1002, 0x6985, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS12},
522 {0x1002, 0x6986, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS12},
523 {0x1002, 0x6987, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS12},
Evan Quancf8c73a2017-03-17 10:22:51 +0800524 {0x1002, 0x6995, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS12},
Junshan Fang6e884912017-06-15 14:02:20 +0800525 {0x1002, 0x6997, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS12},
Junwei Zhangfc8e9c52016-08-04 12:54:22 +0800526 {0x1002, 0x699F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_POLARIS12},
Junwei Zhangca2f1cc2017-03-03 16:54:00 -0500527 /* Vega 10 */
Alex Deucherdfbf0c12017-06-02 14:38:03 -0400528 {0x1002, 0x6860, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VEGA10},
529 {0x1002, 0x6861, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VEGA10},
530 {0x1002, 0x6862, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VEGA10},
531 {0x1002, 0x6863, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VEGA10},
532 {0x1002, 0x6864, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VEGA10},
533 {0x1002, 0x6867, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VEGA10},
534 {0x1002, 0x6868, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VEGA10},
535 {0x1002, 0x686c, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VEGA10},
536 {0x1002, 0x687f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_VEGA10},
Chunming Zhoudf515052017-05-11 16:31:52 -0400537 /* Raven */
Alex Deucheracc34502017-06-02 14:50:01 -0400538 {0x1002, 0x15dd, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RAVEN|AMD_IS_APU},
Chunming Zhoudf515052017-05-11 16:31:52 -0400539
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400540 {0, 0, 0}
541};
542
543MODULE_DEVICE_TABLE(pci, pciidlist);
544
545static struct drm_driver kms_driver;
546
547static int amdgpu_kick_out_firmware_fb(struct pci_dev *pdev)
548{
549 struct apertures_struct *ap;
550 bool primary = false;
551
552 ap = alloc_apertures(1);
553 if (!ap)
554 return -ENOMEM;
555
556 ap->ranges[0].base = pci_resource_start(pdev, 0);
557 ap->ranges[0].size = pci_resource_len(pdev, 0);
558
559#ifdef CONFIG_X86
560 primary = pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW;
561#endif
Daniel Vetter44adece2016-08-10 18:52:34 +0200562 drm_fb_helper_remove_conflicting_framebuffers(ap, "amdgpudrmfb", primary);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400563 kfree(ap);
564
565 return 0;
566}
567
Pixel Ding1daee8b2017-11-08 11:03:14 +0800568
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400569static int amdgpu_pci_probe(struct pci_dev *pdev,
570 const struct pci_device_id *ent)
571{
Alex Deucherb58c1132017-06-02 17:16:31 -0400572 struct drm_device *dev;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400573 unsigned long flags = ent->driver_data;
Pixel Ding1daee8b2017-11-08 11:03:14 +0800574 int ret, retry = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400575
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800576 if ((flags & AMD_EXP_HW_SUPPORT) && !amdgpu_exp_hw_support) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400577 DRM_INFO("This hardware requires experimental hardware support.\n"
578 "See modparam exp_hw_support\n");
579 return -ENODEV;
580 }
581
Oded Gabbayefb1c652016-02-09 13:30:12 +0200582 /*
583 * Initialize amdkfd before starting radeon. If it was not loaded yet,
584 * defer radeon probing
585 */
586 ret = amdgpu_amdkfd_init();
587 if (ret == -EPROBE_DEFER)
588 return ret;
589
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400590 /* Get rid of things like offb */
591 ret = amdgpu_kick_out_firmware_fb(pdev);
592 if (ret)
593 return ret;
594
Alex Deucherb58c1132017-06-02 17:16:31 -0400595 dev = drm_dev_alloc(&kms_driver, &pdev->dev);
596 if (IS_ERR(dev))
597 return PTR_ERR(dev);
598
599 ret = pci_enable_device(pdev);
600 if (ret)
601 goto err_free;
602
603 dev->pdev = pdev;
604
605 pci_set_drvdata(pdev, dev);
606
Pixel Ding1daee8b2017-11-08 11:03:14 +0800607retry_init:
Alex Deucherb58c1132017-06-02 17:16:31 -0400608 ret = drm_dev_register(dev, ent->driver_data);
Pixel Ding1daee8b2017-11-08 11:03:14 +0800609 if (ret == -EAGAIN && ++retry <= 3) {
610 DRM_INFO("retry init %d\n", retry);
611 /* Don't request EX mode too frequently which is attacking */
612 msleep(5000);
613 goto retry_init;
614 } else if (ret)
Alex Deucherb58c1132017-06-02 17:16:31 -0400615 goto err_pci;
616
617 return 0;
618
619err_pci:
620 pci_disable_device(pdev);
621err_free:
622 drm_dev_unref(dev);
623 return ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400624}
625
626static void
627amdgpu_pci_remove(struct pci_dev *pdev)
628{
629 struct drm_device *dev = pci_get_drvdata(pdev);
630
Alex Deucherb58c1132017-06-02 17:16:31 -0400631 drm_dev_unregister(dev);
632 drm_dev_unref(dev);
Xiangliang.Yufd4495e2017-09-21 10:19:49 +0800633 pci_disable_device(pdev);
634 pci_set_drvdata(pdev, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400635}
636
Alex Deucher61e11302016-08-22 13:50:22 -0400637static void
638amdgpu_pci_shutdown(struct pci_dev *pdev)
639{
Alex Deucherfaefba92016-12-06 10:38:29 -0500640 struct drm_device *dev = pci_get_drvdata(pdev);
641 struct amdgpu_device *adev = dev->dev_private;
642
Alex Deucher61e11302016-08-22 13:50:22 -0400643 /* if we are running in a VM, make sure the device
Alex Deucher00ea8cb2016-09-22 14:40:29 -0400644 * torn down properly on reboot/shutdown.
645 * unfortunately we can't detect certain
646 * hypervisors so just do this all the time.
Alex Deucher61e11302016-08-22 13:50:22 -0400647 */
Alex Deucherfaefba92016-12-06 10:38:29 -0500648 amdgpu_suspend(adev);
Alex Deucher61e11302016-08-22 13:50:22 -0400649}
650
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400651static int amdgpu_pmops_suspend(struct device *dev)
652{
653 struct pci_dev *pdev = to_pci_dev(dev);
jimqu74b0b152016-09-07 17:09:12 +0800654
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400655 struct drm_device *drm_dev = pci_get_drvdata(pdev);
Alex Deucher810ddc32016-08-23 13:25:49 -0400656 return amdgpu_device_suspend(drm_dev, true, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400657}
658
659static int amdgpu_pmops_resume(struct device *dev)
660{
661 struct pci_dev *pdev = to_pci_dev(dev);
662 struct drm_device *drm_dev = pci_get_drvdata(pdev);
Alex Deucher85e154c2016-08-27 14:53:08 -0400663
664 /* GPU comes up enabled by the bios on resume */
665 if (amdgpu_device_is_px(drm_dev)) {
666 pm_runtime_disable(dev);
667 pm_runtime_set_active(dev);
668 pm_runtime_enable(dev);
669 }
670
Alex Deucher810ddc32016-08-23 13:25:49 -0400671 return amdgpu_device_resume(drm_dev, true, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400672}
673
674static int amdgpu_pmops_freeze(struct device *dev)
675{
676 struct pci_dev *pdev = to_pci_dev(dev);
jimqu74b0b152016-09-07 17:09:12 +0800677
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400678 struct drm_device *drm_dev = pci_get_drvdata(pdev);
Alex Deucher810ddc32016-08-23 13:25:49 -0400679 return amdgpu_device_suspend(drm_dev, false, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400680}
681
682static int amdgpu_pmops_thaw(struct device *dev)
683{
684 struct pci_dev *pdev = to_pci_dev(dev);
jimqu74b0b152016-09-07 17:09:12 +0800685
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400686 struct drm_device *drm_dev = pci_get_drvdata(pdev);
jimqu74b0b152016-09-07 17:09:12 +0800687 return amdgpu_device_resume(drm_dev, false, true);
688}
689
690static int amdgpu_pmops_poweroff(struct device *dev)
691{
692 struct pci_dev *pdev = to_pci_dev(dev);
693
694 struct drm_device *drm_dev = pci_get_drvdata(pdev);
695 return amdgpu_device_suspend(drm_dev, true, true);
696}
697
698static int amdgpu_pmops_restore(struct device *dev)
699{
700 struct pci_dev *pdev = to_pci_dev(dev);
701
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400702 struct drm_device *drm_dev = pci_get_drvdata(pdev);
Alex Deucher810ddc32016-08-23 13:25:49 -0400703 return amdgpu_device_resume(drm_dev, false, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400704}
705
706static int amdgpu_pmops_runtime_suspend(struct device *dev)
707{
708 struct pci_dev *pdev = to_pci_dev(dev);
709 struct drm_device *drm_dev = pci_get_drvdata(pdev);
710 int ret;
711
712 if (!amdgpu_device_is_px(drm_dev)) {
713 pm_runtime_forbid(dev);
714 return -EBUSY;
715 }
716
717 drm_dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
718 drm_kms_helper_poll_disable(drm_dev);
719 vga_switcheroo_set_dynamic_switch(pdev, VGA_SWITCHEROO_OFF);
720
Alex Deucher810ddc32016-08-23 13:25:49 -0400721 ret = amdgpu_device_suspend(drm_dev, false, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400722 pci_save_state(pdev);
723 pci_disable_device(pdev);
724 pci_ignore_hotplug(pdev);
Alex Deucher11670972016-06-02 09:08:32 -0400725 if (amdgpu_is_atpx_hybrid())
726 pci_set_power_state(pdev, PCI_D3cold);
Alex Deucher522761c2016-06-02 09:18:34 -0400727 else if (!amdgpu_has_atpx_dgpu_power_cntl())
Alex Deucher7e32aa62016-06-01 13:12:25 -0400728 pci_set_power_state(pdev, PCI_D3hot);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400729 drm_dev->switch_power_state = DRM_SWITCH_POWER_DYNAMIC_OFF;
730
731 return 0;
732}
733
734static int amdgpu_pmops_runtime_resume(struct device *dev)
735{
736 struct pci_dev *pdev = to_pci_dev(dev);
737 struct drm_device *drm_dev = pci_get_drvdata(pdev);
738 int ret;
739
740 if (!amdgpu_device_is_px(drm_dev))
741 return -EINVAL;
742
743 drm_dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
744
Alex Deucher522761c2016-06-02 09:18:34 -0400745 if (amdgpu_is_atpx_hybrid() ||
746 !amdgpu_has_atpx_dgpu_power_cntl())
747 pci_set_power_state(pdev, PCI_D0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400748 pci_restore_state(pdev);
749 ret = pci_enable_device(pdev);
750 if (ret)
751 return ret;
752 pci_set_master(pdev);
753
Alex Deucher810ddc32016-08-23 13:25:49 -0400754 ret = amdgpu_device_resume(drm_dev, false, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400755 drm_kms_helper_poll_enable(drm_dev);
756 vga_switcheroo_set_dynamic_switch(pdev, VGA_SWITCHEROO_ON);
757 drm_dev->switch_power_state = DRM_SWITCH_POWER_ON;
758 return 0;
759}
760
761static int amdgpu_pmops_runtime_idle(struct device *dev)
762{
763 struct pci_dev *pdev = to_pci_dev(dev);
764 struct drm_device *drm_dev = pci_get_drvdata(pdev);
765 struct drm_crtc *crtc;
766
767 if (!amdgpu_device_is_px(drm_dev)) {
768 pm_runtime_forbid(dev);
769 return -EBUSY;
770 }
771
772 list_for_each_entry(crtc, &drm_dev->mode_config.crtc_list, head) {
773 if (crtc->enabled) {
774 DRM_DEBUG_DRIVER("failing to power off - crtc active\n");
775 return -EBUSY;
776 }
777 }
778
779 pm_runtime_mark_last_busy(dev);
780 pm_runtime_autosuspend(dev);
781 /* we don't want the main rpm_idle to call suspend - we want to autosuspend */
782 return 1;
783}
784
785long amdgpu_drm_ioctl(struct file *filp,
786 unsigned int cmd, unsigned long arg)
787{
788 struct drm_file *file_priv = filp->private_data;
789 struct drm_device *dev;
790 long ret;
791 dev = file_priv->minor->dev;
792 ret = pm_runtime_get_sync(dev->dev);
793 if (ret < 0)
794 return ret;
795
796 ret = drm_ioctl(filp, cmd, arg);
797
798 pm_runtime_mark_last_busy(dev->dev);
799 pm_runtime_put_autosuspend(dev->dev);
800 return ret;
801}
802
803static const struct dev_pm_ops amdgpu_pm_ops = {
804 .suspend = amdgpu_pmops_suspend,
805 .resume = amdgpu_pmops_resume,
806 .freeze = amdgpu_pmops_freeze,
807 .thaw = amdgpu_pmops_thaw,
jimqu74b0b152016-09-07 17:09:12 +0800808 .poweroff = amdgpu_pmops_poweroff,
809 .restore = amdgpu_pmops_restore,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400810 .runtime_suspend = amdgpu_pmops_runtime_suspend,
811 .runtime_resume = amdgpu_pmops_runtime_resume,
812 .runtime_idle = amdgpu_pmops_runtime_idle,
813};
814
815static const struct file_operations amdgpu_driver_kms_fops = {
816 .owner = THIS_MODULE,
817 .open = drm_open,
818 .release = drm_release,
819 .unlocked_ioctl = amdgpu_drm_ioctl,
820 .mmap = amdgpu_mmap,
821 .poll = drm_poll,
822 .read = drm_read,
823#ifdef CONFIG_COMPAT
824 .compat_ioctl = amdgpu_kms_compat_ioctl,
825#endif
826};
827
Daniel Vetter1bf6ad62017-05-09 16:03:28 +0200828static bool
829amdgpu_get_crtc_scanout_position(struct drm_device *dev, unsigned int pipe,
830 bool in_vblank_irq, int *vpos, int *hpos,
831 ktime_t *stime, ktime_t *etime,
832 const struct drm_display_mode *mode)
833{
834 return amdgpu_get_crtc_scanoutpos(dev, pipe, 0, vpos, hpos,
835 stime, etime, mode);
836}
837
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400838static struct drm_driver kms_driver = {
839 .driver_features =
840 DRIVER_USE_AGP |
841 DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM |
Dave Airlie660e8552017-03-13 22:18:15 +0000842 DRIVER_PRIME | DRIVER_RENDER | DRIVER_MODESET | DRIVER_SYNCOBJ,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400843 .load = amdgpu_driver_load_kms,
844 .open = amdgpu_driver_open_kms,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400845 .postclose = amdgpu_driver_postclose_kms,
846 .lastclose = amdgpu_driver_lastclose_kms,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400847 .unload = amdgpu_driver_unload_kms,
848 .get_vblank_counter = amdgpu_get_vblank_counter_kms,
849 .enable_vblank = amdgpu_enable_vblank_kms,
850 .disable_vblank = amdgpu_disable_vblank_kms,
Daniel Vetter1bf6ad62017-05-09 16:03:28 +0200851 .get_vblank_timestamp = drm_calc_vbltimestamp_from_scanoutpos,
852 .get_scanout_position = amdgpu_get_crtc_scanout_position,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400853 .irq_preinstall = amdgpu_irq_preinstall,
854 .irq_postinstall = amdgpu_irq_postinstall,
855 .irq_uninstall = amdgpu_irq_uninstall,
856 .irq_handler = amdgpu_irq_handler,
857 .ioctls = amdgpu_ioctls_kms,
Daniel Vettere7294de2016-04-26 19:29:43 +0200858 .gem_free_object_unlocked = amdgpu_gem_object_free,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400859 .gem_open_object = amdgpu_gem_object_open,
860 .gem_close_object = amdgpu_gem_object_close,
861 .dumb_create = amdgpu_mode_dumb_create,
862 .dumb_map_offset = amdgpu_mode_dumb_mmap,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400863 .fops = &amdgpu_driver_kms_fops,
864
865 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
866 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
867 .gem_prime_export = amdgpu_gem_prime_export,
868 .gem_prime_import = drm_gem_prime_import,
869 .gem_prime_pin = amdgpu_gem_prime_pin,
870 .gem_prime_unpin = amdgpu_gem_prime_unpin,
871 .gem_prime_res_obj = amdgpu_gem_prime_res_obj,
872 .gem_prime_get_sg_table = amdgpu_gem_prime_get_sg_table,
873 .gem_prime_import_sg_table = amdgpu_gem_prime_import_sg_table,
874 .gem_prime_vmap = amdgpu_gem_prime_vmap,
875 .gem_prime_vunmap = amdgpu_gem_prime_vunmap,
Samuel Lidfced2e2017-08-22 15:25:33 -0400876 .gem_prime_mmap = amdgpu_gem_prime_mmap,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400877
878 .name = DRIVER_NAME,
879 .desc = DRIVER_DESC,
880 .date = DRIVER_DATE,
881 .major = KMS_DRIVER_MAJOR,
882 .minor = KMS_DRIVER_MINOR,
883 .patchlevel = KMS_DRIVER_PATCHLEVEL,
884};
885
886static struct drm_driver *driver;
887static struct pci_driver *pdriver;
888
889static struct pci_driver amdgpu_kms_pci_driver = {
890 .name = DRIVER_NAME,
891 .id_table = pciidlist,
892 .probe = amdgpu_pci_probe,
893 .remove = amdgpu_pci_remove,
Alex Deucher61e11302016-08-22 13:50:22 -0400894 .shutdown = amdgpu_pci_shutdown,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400895 .driver.pm = &amdgpu_pm_ops,
896};
897
Rex Zhud573de22016-05-12 13:27:28 +0800898
899
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400900static int __init amdgpu_init(void)
901{
Christian König245ae5e2016-10-28 17:39:08 +0200902 int r;
903
904 r = amdgpu_sync_init();
905 if (r)
906 goto error_sync;
907
908 r = amdgpu_fence_slab_init();
909 if (r)
910 goto error_fence;
911
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400912 if (vgacon_text_force()) {
913 DRM_ERROR("VGACON disables amdgpu kernel modesetting.\n");
914 return -EINVAL;
915 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400916 DRM_INFO("amdgpu kernel modesetting enabled.\n");
917 driver = &kms_driver;
918 pdriver = &amdgpu_kms_pci_driver;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400919 driver->num_ioctls = amdgpu_max_kms_ioctl;
920 amdgpu_register_atpx_handler();
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400921 /* let modprobe override vga console setting */
Daniel Vetter10631d72017-05-24 16:51:40 +0200922 return pci_register_driver(pdriver);
Christian König245ae5e2016-10-28 17:39:08 +0200923
Christian König245ae5e2016-10-28 17:39:08 +0200924error_fence:
925 amdgpu_sync_fini();
926
927error_sync:
928 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400929}
930
931static void __exit amdgpu_exit(void)
932{
Oded Gabbay130e0372015-06-12 21:35:14 +0300933 amdgpu_amdkfd_fini();
Daniel Vetter10631d72017-05-24 16:51:40 +0200934 pci_unregister_driver(pdriver);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400935 amdgpu_unregister_atpx_handler();
Christian König257bf152016-02-16 11:24:58 +0100936 amdgpu_sync_fini();
Rex Zhud573de22016-05-12 13:27:28 +0800937 amdgpu_fence_slab_fini();
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400938}
939
940module_init(amdgpu_init);
941module_exit(amdgpu_exit);
942
943MODULE_AUTHOR(DRIVER_AUTHOR);
944MODULE_DESCRIPTION(DRIVER_DESC);
945MODULE_LICENSE("GPL and additional rights");