2020-11-07 05:49:41 +08:00
|
|
|
/*
|
2005-04-17 06:20:36 +08:00
|
|
|
* \file radeon_drv.c
|
|
|
|
* ATI Radeon driver
|
|
|
|
*
|
|
|
|
* \author Gareth Hughes <gareth@valinux.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2019-06-08 16:02:40 +08:00
|
|
|
#include <linux/compat.h>
|
2009-06-05 20:42:42 +08:00
|
|
|
#include <linux/console.h>
|
2011-08-30 23:04:30 +08:00
|
|
|
#include <linux/module.h>
|
2012-09-17 12:40:31 +08:00
|
|
|
#include <linux/pm_runtime.h>
|
|
|
|
#include <linux/vga_switcheroo.h>
|
2019-08-07 07:15:45 +08:00
|
|
|
#include <linux/mmu_notifier.h>
|
2020-04-03 19:06:10 +08:00
|
|
|
#include <linux/pci.h>
|
2014-09-23 21:46:53 +08:00
|
|
|
|
2021-04-12 21:10:42 +08:00
|
|
|
#include <drm/drm_aperture.h>
|
2017-04-24 12:50:31 +08:00
|
|
|
#include <drm/drm_crtc_helper.h>
|
2019-06-08 16:02:40 +08:00
|
|
|
#include <drm/drm_drv.h>
|
|
|
|
#include <drm/drm_fb_helper.h>
|
|
|
|
#include <drm/drm_file.h>
|
|
|
|
#include <drm/drm_gem.h>
|
|
|
|
#include <drm/drm_ioctl.h>
|
|
|
|
#include <drm/drm_pciids.h>
|
2019-01-18 05:03:34 +08:00
|
|
|
#include <drm/drm_probe_helper.h>
|
2019-06-08 16:02:40 +08:00
|
|
|
#include <drm/drm_vblank.h>
|
|
|
|
#include <drm/radeon_drm.h>
|
|
|
|
|
|
|
|
#include "radeon_drv.h"
|
2020-11-04 18:04:20 +08:00
|
|
|
#include "radeon.h"
|
2020-11-17 01:36:31 +08:00
|
|
|
#include "radeon_kms.h"
|
2020-11-17 01:36:30 +08:00
|
|
|
#include "radeon_ttm.h"
|
2020-11-17 01:29:24 +08:00
|
|
|
#include "radeon_device.h"
|
2020-11-17 01:37:00 +08:00
|
|
|
#include "radeon_prime.h"
|
2014-07-15 18:53:32 +08:00
|
|
|
|
2009-06-05 20:42:42 +08:00
|
|
|
/*
|
|
|
|
* KMS wrapper.
|
2010-03-01 14:32:15 +08:00
|
|
|
* - 2.0.0 - initial interface
|
|
|
|
* - 2.1.0 - add square tiling interface
|
2010-03-27 03:24:14 +08:00
|
|
|
* - 2.2.0 - add r6xx/r7xx const buffer support
|
2010-02-22 04:24:15 +08:00
|
|
|
* - 2.3.0 - add MSPOS + 3D texture + r500 VAP regs
|
2010-05-13 00:01:13 +08:00
|
|
|
* - 2.4.0 - add crtc id query
|
2010-06-04 07:00:03 +08:00
|
|
|
* - 2.5.0 - add get accel 2 to work around ddx breakage for evergreen
|
2010-07-13 09:11:11 +08:00
|
|
|
* - 2.6.0 - add tiling config query (r6xx+), add initial HiZ support (r300->r500)
|
2010-10-22 01:45:30 +08:00
|
|
|
* 2.7.0 - fixups for r600 2D tiling support. (no external ABI change), add eg dyn gpr regs
|
2011-01-25 06:14:26 +08:00
|
|
|
* 2.8.0 - pageflip support, r500 US_FORMAT regs. r500 ARGB2101010 colorbuf, r300->r500 CMASK, clock crystal query
|
2011-03-01 12:32:27 +08:00
|
|
|
* 2.9.0 - r600 tiling (s3tc,rgtc) working, SET_PREDICATION packet 3 on r600 + eg, backend query
|
2011-07-27 12:17:25 +08:00
|
|
|
* 2.10.0 - fusion 2D tiling
|
|
|
|
* 2.11.0 - backend map, initial compute support for the CS checker
|
2011-10-25 07:38:45 +08:00
|
|
|
* 2.12.0 - RADEON_CS_KEEP_TILING_FLAGS
|
2012-01-28 01:17:59 +08:00
|
|
|
* 2.13.0 - virtual memory support, streamout
|
2011-12-17 06:03:42 +08:00
|
|
|
* 2.14.0 - add evergreen tiling informations
|
2012-03-21 05:17:55 +08:00
|
|
|
* 2.15.0 - add max_pipes query
|
2012-06-09 22:57:41 +08:00
|
|
|
* 2.16.0 - fix evergreen 2D tiled surface calculation
|
2012-06-15 04:06:37 +08:00
|
|
|
* 2.17.0 - add STRMOUT_BASE_UPDATE for r7xx
|
2012-07-29 22:24:57 +08:00
|
|
|
* 2.18.0 - r600-eg: allow "invalid" DB formats
|
2012-08-09 22:34:16 +08:00
|
|
|
* 2.19.0 - r600-eg: MSAA textures
|
2012-08-09 22:34:17 +08:00
|
|
|
* 2.20.0 - r600-si: RADEON_INFO_TIMESTAMP query
|
2012-08-19 08:22:09 +08:00
|
|
|
* 2.21.0 - r600-r700: FMASK and CMASK
|
2012-08-24 20:27:36 +08:00
|
|
|
* 2.22.0 - r600 only: RESOLVE_BOX allowed
|
2012-09-25 07:45:33 +08:00
|
|
|
* 2.23.0 - allow STRMOUT_BASE_UPDATE on RS780 and RS880
|
2012-09-25 09:34:01 +08:00
|
|
|
* 2.24.0 - eg only: allow MIP_ADDRESS=0 for MSAA textures
|
2012-12-08 09:00:30 +08:00
|
|
|
* 2.25.0 - eg+: new info request for num SE and num SH
|
2012-12-14 01:08:11 +08:00
|
|
|
* 2.26.0 - r600-eg: fix htile size computation
|
2012-12-14 07:57:07 +08:00
|
|
|
* 2.27.0 - r600-SI: Add CS ioctl support for async DMA
|
2012-12-20 01:26:45 +08:00
|
|
|
* 2.28.0 - r600-eg: Add MEM_WRITE packet support
|
2013-01-12 11:19:37 +08:00
|
|
|
* 2.29.0 - R500 FP16 color clear registers
|
2013-03-01 20:40:31 +08:00
|
|
|
* 2.30.0 - fix for FMASK texturing
|
2013-04-09 05:25:47 +08:00
|
|
|
* 2.31.0 - Add fastfb support for rs690
|
2013-04-09 22:35:42 +08:00
|
|
|
* 2.32.0 - new info request for rings working
|
2013-04-09 23:17:08 +08:00
|
|
|
* 2.33.0 - Add SI tiling mode array query
|
2013-04-11 01:41:25 +08:00
|
|
|
* 2.34.0 - Add CIK tiling mode array query
|
2013-11-18 17:26:00 +08:00
|
|
|
* 2.35.0 - Add CIK macrotile mode array query
|
2013-12-24 00:31:44 +08:00
|
|
|
* 2.36.0 - Fix CIK DCE tiling setup
|
2014-01-30 12:11:12 +08:00
|
|
|
* 2.37.0 - allow GS ring setup on r6xx/r7xx
|
2014-03-22 23:20:43 +08:00
|
|
|
* 2.38.0 - RADEON_GEM_OP (GET_INITIAL_DOMAIN, SET_INITIAL_DOMAIN),
|
|
|
|
* CIK: 1D and linear tiling modes contain valid PIPE_CONFIG
|
2014-06-03 04:13:21 +08:00
|
|
|
* 2.39.0 - Add INFO query for number of active CUs
|
2014-07-31 17:43:49 +08:00
|
|
|
* 2.40.0 - Add RADEON_GEM_GTT_WC/UC, flush HDP cache before submitting
|
2014-09-17 15:25:55 +08:00
|
|
|
* CS to GPU on >= r600
|
2014-12-13 10:32:37 +08:00
|
|
|
* 2.41.0 - evergreen/cayman: Add SET_BASE/DRAW_INDIRECT command parsing support
|
2015-03-31 23:19:50 +08:00
|
|
|
* 2.42.0 - Add VCE/VUI (Video Usability Information) support
|
2015-04-30 01:40:33 +08:00
|
|
|
* 2.43.0 - RADEON_INFO_GPU_RESET_COUNTER
|
2016-04-07 04:50:25 +08:00
|
|
|
* 2.44.0 - SET_APPEND_CNT packet3 support
|
2016-04-15 08:47:49 +08:00
|
|
|
* 2.45.0 - Allow setting shader registers using DMA/COPY packet3 on SI
|
2016-05-31 07:11:14 +08:00
|
|
|
* 2.46.0 - Add PFP_SYNC_ME support on evergreen
|
2016-08-23 06:03:22 +08:00
|
|
|
* 2.47.0 - Add UVD_NO_OP register support
|
2016-10-10 19:23:25 +08:00
|
|
|
* 2.48.0 - TA_CS_BC_BASE_ADDR allowed on SI
|
2017-01-30 11:06:35 +08:00
|
|
|
* 2.49.0 - DRM_RADEON_GEM_INFO ioctl returns correct vram_size/visible values
|
2017-02-14 00:37:05 +08:00
|
|
|
* 2.50.0 - Allows unaligned shader loads on CIK. (needed by OpenGL)
|
2009-06-05 20:42:42 +08:00
|
|
|
*/
|
|
|
|
#define KMS_DRIVER_MAJOR 2
|
2017-02-14 00:37:05 +08:00
|
|
|
#define KMS_DRIVER_MINOR 50
|
2009-06-05 20:42:42 +08:00
|
|
|
#define KMS_DRIVER_PATCHLEVEL 0
|
2016-03-18 23:58:39 +08:00
|
|
|
int radeon_suspend_kms(struct drm_device *dev, bool suspend,
|
|
|
|
bool fbcon, bool freeze);
|
2012-09-17 12:40:31 +08:00
|
|
|
int radeon_resume_kms(struct drm_device *dev, bool resume, bool fbcon);
|
2015-09-25 00:35:31 +08:00
|
|
|
extern int radeon_get_crtc_scanoutpos(struct drm_device *dev, unsigned int crtc,
|
|
|
|
unsigned int flags, int *vpos, int *hpos,
|
2015-09-15 03:43:44 +08:00
|
|
|
ktime_t *stime, ktime_t *etime,
|
|
|
|
const struct drm_display_mode *mode);
|
2014-04-11 10:29:01 +08:00
|
|
|
extern bool radeon_is_px(struct drm_device *dev);
|
2011-02-07 10:16:14 +08:00
|
|
|
int radeon_mode_dumb_mmap(struct drm_file *filp,
|
|
|
|
struct drm_device *dev,
|
|
|
|
uint32_t handle, uint64_t *offset_p);
|
|
|
|
int radeon_mode_dumb_create(struct drm_file *file_priv,
|
|
|
|
struct drm_device *dev,
|
|
|
|
struct drm_mode_create_dumb *args);
|
|
|
|
|
2013-01-21 20:58:46 +08:00
|
|
|
/* atpx handler */
|
|
|
|
#if defined(CONFIG_VGA_SWITCHEROO)
|
|
|
|
void radeon_register_atpx_handler(void);
|
|
|
|
void radeon_unregister_atpx_handler(void);
|
2016-06-02 03:05:05 +08:00
|
|
|
bool radeon_has_atpx_dgpu_power_cntl(void);
|
2016-06-02 21:24:53 +08:00
|
|
|
bool radeon_is_atpx_hybrid(void);
|
2013-01-21 20:58:46 +08:00
|
|
|
#else
|
|
|
|
static inline void radeon_register_atpx_handler(void) {}
|
|
|
|
static inline void radeon_unregister_atpx_handler(void) {}
|
2016-06-02 03:05:05 +08:00
|
|
|
static inline bool radeon_has_atpx_dgpu_power_cntl(void) { return false; }
|
2016-06-02 21:24:53 +08:00
|
|
|
static inline bool radeon_is_atpx_hybrid(void) { return false; }
|
2013-01-21 20:58:46 +08:00
|
|
|
#endif
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-09-30 15:09:07 +08:00
|
|
|
int radeon_no_wb;
|
2013-05-15 09:23:36 +08:00
|
|
|
int radeon_modeset = -1;
|
2009-06-05 20:42:42 +08:00
|
|
|
int radeon_dynclks = -1;
|
|
|
|
int radeon_r4xx_atom = 0;
|
2018-04-25 03:55:11 +08:00
|
|
|
int radeon_agpmode = -1;
|
2009-06-05 20:42:42 +08:00
|
|
|
int radeon_vram_limit = 0;
|
2013-07-06 05:16:51 +08:00
|
|
|
int radeon_gart_size = -1; /* auto */
|
2009-06-05 20:42:42 +08:00
|
|
|
int radeon_benchmarking = 0;
|
2009-07-21 17:23:57 +08:00
|
|
|
int radeon_testing = 0;
|
2009-06-05 20:42:42 +08:00
|
|
|
int radeon_connector_table = 0;
|
2009-08-13 14:32:14 +08:00
|
|
|
int radeon_tv = 1;
|
2013-10-15 01:17:50 +08:00
|
|
|
int radeon_audio = -1;
|
2010-03-31 12:33:27 +08:00
|
|
|
int radeon_disp_priority = 0;
|
2010-03-17 14:07:37 +08:00
|
|
|
int radeon_hw_i2c = 0;
|
2012-06-27 15:35:54 +08:00
|
|
|
int radeon_pcie_gen2 = -1;
|
2011-11-02 02:20:30 +08:00
|
|
|
int radeon_msi = -1;
|
2012-05-02 21:11:21 +08:00
|
|
|
int radeon_lockup_timeout = 10000;
|
2013-04-09 05:25:47 +08:00
|
|
|
int radeon_fastfb = 0;
|
2013-04-13 01:55:22 +08:00
|
|
|
int radeon_dpm = -1;
|
2013-07-17 03:58:50 +08:00
|
|
|
int radeon_aspm = -1;
|
2012-09-17 12:40:31 +08:00
|
|
|
int radeon_runtime_pm = -1;
|
2014-01-09 06:55:08 +08:00
|
|
|
int radeon_hard_reset = 0;
|
2014-07-19 19:55:58 +08:00
|
|
|
int radeon_vm_size = 8;
|
|
|
|
int radeon_vm_block_size = -1;
|
2014-07-01 23:23:03 +08:00
|
|
|
int radeon_deep_color = 0;
|
2014-07-29 12:21:44 +08:00
|
|
|
int radeon_use_pflipirq = 2;
|
2014-08-07 21:28:31 +08:00
|
|
|
int radeon_bapm = -1;
|
2014-09-17 08:57:26 +08:00
|
|
|
int radeon_backlight = -1;
|
2015-02-20 07:21:36 +08:00
|
|
|
int radeon_auxch = -1;
|
2015-02-24 07:24:04 +08:00
|
|
|
int radeon_mst = 0;
|
2016-03-18 23:58:36 +08:00
|
|
|
int radeon_uvd = 1;
|
2016-03-18 23:58:37 +08:00
|
|
|
int radeon_vce = 1;
|
2005-09-30 15:09:07 +08:00
|
|
|
|
2008-07-31 15:07:23 +08:00
|
|
|
MODULE_PARM_DESC(no_wb, "Disable AGP writeback for scratch registers");
|
2005-09-30 15:09:07 +08:00
|
|
|
module_param_named(no_wb, radeon_no_wb, int, 0444);
|
|
|
|
|
2009-06-05 20:42:42 +08:00
|
|
|
MODULE_PARM_DESC(modeset, "Disable/Enable modesetting");
|
|
|
|
module_param_named(modeset, radeon_modeset, int, 0400);
|
|
|
|
|
|
|
|
MODULE_PARM_DESC(dynclks, "Disable/Enable dynamic clocks");
|
|
|
|
module_param_named(dynclks, radeon_dynclks, int, 0444);
|
|
|
|
|
|
|
|
MODULE_PARM_DESC(r4xx_atom, "Enable ATOMBIOS modesetting for R4xx");
|
|
|
|
module_param_named(r4xx_atom, radeon_r4xx_atom, int, 0444);
|
|
|
|
|
2014-04-08 18:39:36 +08:00
|
|
|
MODULE_PARM_DESC(vramlimit, "Restrict VRAM for testing, in megabytes");
|
2009-06-05 20:42:42 +08:00
|
|
|
module_param_named(vramlimit, radeon_vram_limit, int, 0600);
|
|
|
|
|
|
|
|
MODULE_PARM_DESC(agpmode, "AGP Mode (-1 == PCI)");
|
|
|
|
module_param_named(agpmode, radeon_agpmode, int, 0444);
|
|
|
|
|
2013-07-06 05:16:51 +08:00
|
|
|
MODULE_PARM_DESC(gartsize, "Size of PCIE/IGP gart to setup in megabytes (32, 64, etc., -1 = auto)");
|
2009-06-05 20:42:42 +08:00
|
|
|
module_param_named(gartsize, radeon_gart_size, int, 0600);
|
|
|
|
|
|
|
|
MODULE_PARM_DESC(benchmark, "Run benchmark");
|
|
|
|
module_param_named(benchmark, radeon_benchmarking, int, 0444);
|
|
|
|
|
2009-07-21 17:23:57 +08:00
|
|
|
MODULE_PARM_DESC(test, "Run tests");
|
|
|
|
module_param_named(test, radeon_testing, int, 0444);
|
|
|
|
|
2009-06-05 20:42:42 +08:00
|
|
|
MODULE_PARM_DESC(connector_table, "Force connector table");
|
|
|
|
module_param_named(connector_table, radeon_connector_table, int, 0444);
|
2009-08-13 14:32:14 +08:00
|
|
|
|
|
|
|
MODULE_PARM_DESC(tv, "TV enable (0 = disable)");
|
|
|
|
module_param_named(tv, radeon_tv, int, 0444);
|
2009-06-05 20:42:42 +08:00
|
|
|
|
2013-10-15 01:17:50 +08:00
|
|
|
MODULE_PARM_DESC(audio, "Audio enable (-1 = auto, 0 = disable, 1 = enable)");
|
2009-10-12 05:49:13 +08:00
|
|
|
module_param_named(audio, radeon_audio, int, 0444);
|
|
|
|
|
2010-03-31 12:33:27 +08:00
|
|
|
MODULE_PARM_DESC(disp_priority, "Display Priority (0 = auto, 1 = normal, 2 = high)");
|
|
|
|
module_param_named(disp_priority, radeon_disp_priority, int, 0444);
|
|
|
|
|
2010-03-17 14:07:37 +08:00
|
|
|
MODULE_PARM_DESC(hw_i2c, "hw i2c engine enable (0 = disable)");
|
|
|
|
module_param_named(hw_i2c, radeon_hw_i2c, int, 0444);
|
|
|
|
|
2012-06-27 15:35:54 +08:00
|
|
|
MODULE_PARM_DESC(pcie_gen2, "PCIE Gen2 mode (-1 = auto, 0 = disable, 1 = enable)");
|
2011-01-13 09:05:11 +08:00
|
|
|
module_param_named(pcie_gen2, radeon_pcie_gen2, int, 0444);
|
|
|
|
|
2011-11-02 02:20:30 +08:00
|
|
|
MODULE_PARM_DESC(msi, "MSI support (1 = enable, 0 = disable, -1 = auto)");
|
|
|
|
module_param_named(msi, radeon_msi, int, 0444);
|
|
|
|
|
2015-03-07 05:07:05 +08:00
|
|
|
MODULE_PARM_DESC(lockup_timeout, "GPU lockup timeout in ms (default 10000 = 10 seconds, 0 = disable)");
|
2012-05-02 21:11:21 +08:00
|
|
|
module_param_named(lockup_timeout, radeon_lockup_timeout, int, 0444);
|
|
|
|
|
2013-04-09 05:25:47 +08:00
|
|
|
MODULE_PARM_DESC(fastfb, "Direct FB access for IGP chips (0 = disable, 1 = enable)");
|
|
|
|
module_param_named(fastfb, radeon_fastfb, int, 0444);
|
|
|
|
|
2013-04-13 01:55:22 +08:00
|
|
|
MODULE_PARM_DESC(dpm, "DPM support (1 = enable, 0 = disable, -1 = auto)");
|
|
|
|
module_param_named(dpm, radeon_dpm, int, 0444);
|
|
|
|
|
2013-07-17 03:58:50 +08:00
|
|
|
MODULE_PARM_DESC(aspm, "ASPM support (1 = enable, 0 = disable, -1 = auto)");
|
|
|
|
module_param_named(aspm, radeon_aspm, int, 0444);
|
|
|
|
|
2012-09-17 12:40:31 +08:00
|
|
|
MODULE_PARM_DESC(runpm, "PX runtime pm (1 = force enable, 0 = disable, -1 = PX only default)");
|
|
|
|
module_param_named(runpm, radeon_runtime_pm, int, 0444);
|
|
|
|
|
2014-01-09 06:55:08 +08:00
|
|
|
MODULE_PARM_DESC(hard_reset, "PCI config reset (1 = force enable, 0 = disable (default))");
|
|
|
|
module_param_named(hard_reset, radeon_hard_reset, int, 0444);
|
|
|
|
|
2014-07-18 19:56:56 +08:00
|
|
|
MODULE_PARM_DESC(vm_size, "VM address space size in gigabytes (default 4GB)");
|
2014-06-06 11:47:32 +08:00
|
|
|
module_param_named(vm_size, radeon_vm_size, int, 0444);
|
|
|
|
|
2014-07-19 19:55:58 +08:00
|
|
|
MODULE_PARM_DESC(vm_block_size, "VM page table size in bits (default depending on vm_size)");
|
2014-06-06 11:56:50 +08:00
|
|
|
module_param_named(vm_block_size, radeon_vm_block_size, int, 0444);
|
|
|
|
|
2014-07-01 23:23:03 +08:00
|
|
|
MODULE_PARM_DESC(deep_color, "Deep Color support (1 = enable, 0 = disable (default))");
|
|
|
|
module_param_named(deep_color, radeon_deep_color, int, 0444);
|
|
|
|
|
2014-07-29 12:21:44 +08:00
|
|
|
MODULE_PARM_DESC(use_pflipirq, "Pflip irqs for pageflip completion (0 = disable, 1 = as fallback, 2 = exclusive (default))");
|
|
|
|
module_param_named(use_pflipirq, radeon_use_pflipirq, int, 0444);
|
|
|
|
|
2014-08-07 21:28:31 +08:00
|
|
|
MODULE_PARM_DESC(bapm, "BAPM support (1 = enable, 0 = disable, -1 = auto)");
|
|
|
|
module_param_named(bapm, radeon_bapm, int, 0444);
|
|
|
|
|
2014-09-17 08:57:26 +08:00
|
|
|
MODULE_PARM_DESC(backlight, "backlight support (1 = enable, 0 = disable, -1 = auto)");
|
|
|
|
module_param_named(backlight, radeon_backlight, int, 0444);
|
|
|
|
|
2015-02-20 07:21:36 +08:00
|
|
|
MODULE_PARM_DESC(auxch, "Use native auxch experimental support (1 = enable, 0 = disable, -1 = auto)");
|
|
|
|
module_param_named(auxch, radeon_auxch, int, 0444);
|
|
|
|
|
2015-02-24 07:24:04 +08:00
|
|
|
MODULE_PARM_DESC(mst, "DisplayPort MST experimental support (1 = enable, 0 = disable)");
|
|
|
|
module_param_named(mst, radeon_mst, int, 0444);
|
|
|
|
|
2016-03-18 23:58:36 +08:00
|
|
|
MODULE_PARM_DESC(uvd, "uvd enable/disable uvd support (1 = enable, 0 = disable)");
|
|
|
|
module_param_named(uvd, radeon_uvd, int, 0444);
|
|
|
|
|
2016-03-18 23:58:37 +08:00
|
|
|
MODULE_PARM_DESC(vce, "vce enable/disable vce support (1 = enable, 0 = disable)");
|
|
|
|
module_param_named(vce, radeon_vce, int, 0444);
|
|
|
|
|
2017-06-05 17:52:51 +08:00
|
|
|
int radeon_si_support = 1;
|
|
|
|
MODULE_PARM_DESC(si_support, "SI support (1 = enabled (default), 0 = disabled)");
|
|
|
|
module_param_named(si_support, radeon_si_support, int, 0444);
|
|
|
|
|
2017-05-29 17:05:20 +08:00
|
|
|
int radeon_cik_support = 1;
|
|
|
|
MODULE_PARM_DESC(cik_support, "CIK support (1 = enabled (default), 0 = disabled)");
|
2017-04-21 02:41:34 +08:00
|
|
|
module_param_named(cik_support, radeon_cik_support, int, 0444);
|
|
|
|
|
2013-01-21 20:58:46 +08:00
|
|
|
static struct pci_device_id pciidlist[] = {
|
|
|
|
radeon_PCI_IDS
|
|
|
|
};
|
|
|
|
|
|
|
|
MODULE_DEVICE_TABLE(pci, pciidlist);
|
|
|
|
|
2020-11-04 18:04:24 +08:00
|
|
|
static const struct drm_driver kms_driver;
|
2009-06-05 20:42:42 +08:00
|
|
|
|
2012-12-22 07:09:25 +08:00
|
|
|
static int radeon_pci_probe(struct pci_dev *pdev,
|
|
|
|
const struct pci_device_id *ent)
|
2009-06-05 20:42:42 +08:00
|
|
|
{
|
2019-09-08 04:32:38 +08:00
|
|
|
unsigned long flags = 0;
|
2020-02-23 01:54:32 +08:00
|
|
|
struct drm_device *dev;
|
2012-11-09 17:19:39 +08:00
|
|
|
int ret;
|
|
|
|
|
2019-09-08 04:32:38 +08:00
|
|
|
if (!ent)
|
|
|
|
return -ENODEV; /* Avoid NULL-ptr deref in drm_get_pci_dev */
|
|
|
|
|
|
|
|
flags = ent->driver_data;
|
|
|
|
|
|
|
|
if (!radeon_si_support) {
|
|
|
|
switch (flags & RADEON_FAMILY_MASK) {
|
|
|
|
case CHIP_TAHITI:
|
|
|
|
case CHIP_PITCAIRN:
|
|
|
|
case CHIP_VERDE:
|
|
|
|
case CHIP_OLAND:
|
|
|
|
case CHIP_HAINAN:
|
|
|
|
dev_info(&pdev->dev,
|
|
|
|
"SI support disabled by module param\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!radeon_cik_support) {
|
|
|
|
switch (flags & RADEON_FAMILY_MASK) {
|
|
|
|
case CHIP_KAVERI:
|
|
|
|
case CHIP_BONAIRE:
|
|
|
|
case CHIP_HAWAII:
|
|
|
|
case CHIP_KABINI:
|
|
|
|
case CHIP_MULLINS:
|
|
|
|
dev_info(&pdev->dev,
|
|
|
|
"CIK support disabled by module param\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-31 17:13:27 +08:00
|
|
|
if (vga_switcheroo_client_probe_defer(pdev))
|
2016-01-12 03:09:20 +08:00
|
|
|
return -EPROBE_DEFER;
|
|
|
|
|
2010-10-07 00:39:07 +08:00
|
|
|
/* Get rid of things like offb */
|
2021-06-29 21:58:33 +08:00
|
|
|
ret = drm_aperture_remove_conflicting_pci_framebuffers(pdev, &kms_driver);
|
2012-11-09 17:19:39 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2010-10-07 00:39:07 +08:00
|
|
|
|
2020-02-23 01:54:32 +08:00
|
|
|
dev = drm_dev_alloc(&kms_driver, &pdev->dev);
|
|
|
|
if (IS_ERR(dev))
|
|
|
|
return PTR_ERR(dev);
|
|
|
|
|
|
|
|
ret = pci_enable_device(pdev);
|
|
|
|
if (ret)
|
|
|
|
goto err_free;
|
|
|
|
|
|
|
|
pci_set_drvdata(pdev, dev);
|
|
|
|
|
|
|
|
ret = drm_dev_register(dev, ent->driver_data);
|
|
|
|
if (ret)
|
|
|
|
goto err_agp;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_agp:
|
|
|
|
pci_disable_device(pdev);
|
|
|
|
err_free:
|
|
|
|
drm_dev_put(dev);
|
|
|
|
return ret;
|
2009-06-05 20:42:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
radeon_pci_remove(struct pci_dev *pdev)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = pci_get_drvdata(pdev);
|
|
|
|
|
|
|
|
drm_put_dev(dev);
|
|
|
|
}
|
|
|
|
|
2016-08-23 02:29:44 +08:00
|
|
|
static void
|
|
|
|
radeon_pci_shutdown(struct pci_dev *pdev)
|
|
|
|
{
|
|
|
|
/* if we are running in a VM, make sure the device
|
2017-01-26 01:00:29 +08:00
|
|
|
* torn down properly on reboot/shutdown
|
2016-08-23 02:29:44 +08:00
|
|
|
*/
|
2017-01-26 01:00:29 +08:00
|
|
|
if (radeon_device_is_virtual())
|
|
|
|
radeon_pci_remove(pdev);
|
2019-10-26 04:40:50 +08:00
|
|
|
|
2021-06-28 22:53:06 +08:00
|
|
|
#if defined(CONFIG_PPC64) || defined(CONFIG_MACH_LOONGSON64)
|
2019-11-12 04:27:58 +08:00
|
|
|
/*
|
|
|
|
* Some adapters need to be suspended before a
|
2019-10-26 04:40:50 +08:00
|
|
|
* shutdown occurs in order to prevent an error
|
2021-06-28 22:53:06 +08:00
|
|
|
* during kexec, shutdown or reboot.
|
|
|
|
* Make this power and Loongson specific because
|
|
|
|
* it breaks some other boards.
|
2019-10-26 04:40:50 +08:00
|
|
|
*/
|
2019-11-12 04:27:58 +08:00
|
|
|
radeon_suspend_kms(pci_get_drvdata(pdev), true, true, false);
|
2019-10-26 04:40:50 +08:00
|
|
|
#endif
|
2016-08-23 02:29:44 +08:00
|
|
|
}
|
|
|
|
|
2012-09-13 10:02:30 +08:00
|
|
|
static int radeon_pmops_suspend(struct device *dev)
|
2009-06-05 20:42:42 +08:00
|
|
|
{
|
2019-07-23 19:10:08 +08:00
|
|
|
struct drm_device *drm_dev = dev_get_drvdata(dev);
|
2016-03-18 23:58:39 +08:00
|
|
|
return radeon_suspend_kms(drm_dev, true, true, false);
|
2009-06-05 20:42:42 +08:00
|
|
|
}
|
|
|
|
|
2012-09-13 10:02:30 +08:00
|
|
|
static int radeon_pmops_resume(struct device *dev)
|
2009-06-05 20:42:42 +08:00
|
|
|
{
|
2019-07-23 19:10:08 +08:00
|
|
|
struct drm_device *drm_dev = dev_get_drvdata(dev);
|
2016-09-01 05:34:23 +08:00
|
|
|
|
|
|
|
/* GPU comes up enabled by the bios on resume */
|
|
|
|
if (radeon_is_px(drm_dev)) {
|
|
|
|
pm_runtime_disable(dev);
|
|
|
|
pm_runtime_set_active(dev);
|
|
|
|
pm_runtime_enable(dev);
|
|
|
|
}
|
|
|
|
|
2012-09-17 12:40:31 +08:00
|
|
|
return radeon_resume_kms(drm_dev, true, true);
|
2012-09-13 10:02:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int radeon_pmops_freeze(struct device *dev)
|
|
|
|
{
|
2019-07-23 19:10:08 +08:00
|
|
|
struct drm_device *drm_dev = dev_get_drvdata(dev);
|
2016-03-18 23:58:39 +08:00
|
|
|
return radeon_suspend_kms(drm_dev, false, true, true);
|
2009-06-05 20:42:42 +08:00
|
|
|
}
|
|
|
|
|
2012-09-13 10:02:30 +08:00
|
|
|
static int radeon_pmops_thaw(struct device *dev)
|
|
|
|
{
|
2019-07-23 19:10:08 +08:00
|
|
|
struct drm_device *drm_dev = dev_get_drvdata(dev);
|
2012-09-17 12:40:31 +08:00
|
|
|
return radeon_resume_kms(drm_dev, false, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int radeon_pmops_runtime_suspend(struct device *dev)
|
|
|
|
{
|
|
|
|
struct pci_dev *pdev = to_pci_dev(dev);
|
|
|
|
struct drm_device *drm_dev = pci_get_drvdata(pdev);
|
|
|
|
|
2014-04-11 10:29:01 +08:00
|
|
|
if (!radeon_is_px(drm_dev)) {
|
2014-03-27 12:09:18 +08:00
|
|
|
pm_runtime_forbid(dev);
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
2014-01-25 03:59:42 +08:00
|
|
|
|
2012-09-17 12:40:31 +08:00
|
|
|
drm_dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
|
|
|
|
drm_kms_helper_poll_disable(drm_dev);
|
|
|
|
|
2020-11-05 22:45:13 +08:00
|
|
|
radeon_suspend_kms(drm_dev, false, false, false);
|
2012-09-17 12:40:31 +08:00
|
|
|
pci_save_state(pdev);
|
|
|
|
pci_disable_device(pdev);
|
PCI: Add pci_ignore_hotplug() to ignore hotplug events for a device
Powering off a hot-pluggable device, e.g., with pci_set_power_state(D3cold),
normally generates a hot-remove event that unbinds the driver.
Some drivers expect to remain bound to a device even while they power it
off and back on again. This can be dangerous, because if the device is
removed or replaced while it is powered off, the driver doesn't know that
anything changed. But some drivers accept that risk.
Add pci_ignore_hotplug() for use by drivers that know their device cannot
be removed. Using pci_ignore_hotplug() tells the PCI core that hot-plug
events for the device should be ignored.
The radeon and nouveau drivers use this to switch between a low-power,
integrated GPU and a higher-power, higher-performance discrete GPU. They
power off the unused GPU, but they want to remain bound to it.
This is a reimplementation of f244d8b623da ("ACPIPHP / radeon / nouveau:
Fix VGA switcheroo problem related to hotplug") but extends it to work with
both acpiphp and pciehp.
This fixes a problem where systems with dual GPUs using the radeon drivers
become unusable, freezing every few seconds (see bugzillas below). The
resume of the radeon device may also fail, e.g.,
This fixes problems on dual GPU systems where the radeon driver becomes
unusable because of problems while suspending the device, as in bug 79701:
[drm] radeon: finishing device.
radeon 0000:01:00.0: Userspace still has active objects !
radeon 0000:01:00.0: ffff8800cb4ec288 ffff8800cb4ec000 16384 4294967297 force free
...
WARNING: CPU: 0 PID: 67 at /home/apw/COD/linux/drivers/gpu/drm/radeon/radeon_gart.c:234 radeon_gart_unbind+0xd2/0xe0 [radeon]()
trying to unbind memory from uninitialized GART !
or while resuming it, as in bug 77261:
radeon 0000:01:00.0: ring 0 stalled for more than 10158msec
radeon 0000:01:00.0: GPU lockup ...
radeon 0000:01:00.0: GPU pci config reset
pciehp 0000:00:01.0:pcie04: Card not present on Slot(1-1)
radeon 0000:01:00.0: GPU reset succeeded, trying to resume
*ERROR* radeon: dpm resume failed
radeon 0000:01:00.0: Wait for MC idle timedout !
Link: https://bugzilla.kernel.org/show_bug.cgi?id=77261
Link: https://bugzilla.kernel.org/show_bug.cgi?id=79701
Reported-by: Shawn Starr <shawn.starr@rogers.com>
Reported-by: Jose P. <lbdkmjdf@sharklasers.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Acked-by: Rajat Jain <rajatxjain@gmail.com>
Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Acked-by: Dave Airlie <airlied@redhat.com>
CC: stable@vger.kernel.org # v3.15+
2014-09-11 03:45:01 +08:00
|
|
|
pci_ignore_hotplug(pdev);
|
2016-06-02 21:27:03 +08:00
|
|
|
if (radeon_is_atpx_hybrid())
|
|
|
|
pci_set_power_state(pdev, PCI_D3cold);
|
2016-06-02 21:31:59 +08:00
|
|
|
else if (!radeon_has_atpx_dgpu_power_cntl())
|
2016-06-02 03:07:44 +08:00
|
|
|
pci_set_power_state(pdev, PCI_D3hot);
|
2012-09-17 12:40:31 +08:00
|
|
|
drm_dev->switch_power_state = DRM_SWITCH_POWER_DYNAMIC_OFF;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int radeon_pmops_runtime_resume(struct device *dev)
|
|
|
|
{
|
|
|
|
struct pci_dev *pdev = to_pci_dev(dev);
|
|
|
|
struct drm_device *drm_dev = pci_get_drvdata(pdev);
|
|
|
|
int ret;
|
|
|
|
|
2014-04-11 10:29:01 +08:00
|
|
|
if (!radeon_is_px(drm_dev))
|
2014-01-25 03:59:42 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
2012-09-17 12:40:31 +08:00
|
|
|
drm_dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
|
|
|
|
|
2016-06-02 21:31:59 +08:00
|
|
|
if (radeon_is_atpx_hybrid() ||
|
|
|
|
!radeon_has_atpx_dgpu_power_cntl())
|
|
|
|
pci_set_power_state(pdev, PCI_D0);
|
2012-09-17 12:40:31 +08:00
|
|
|
pci_restore_state(pdev);
|
|
|
|
ret = pci_enable_device(pdev);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
pci_set_master(pdev);
|
|
|
|
|
|
|
|
ret = radeon_resume_kms(drm_dev, false, false);
|
|
|
|
drm_kms_helper_poll_enable(drm_dev);
|
|
|
|
drm_dev->switch_power_state = DRM_SWITCH_POWER_ON;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int radeon_pmops_runtime_idle(struct device *dev)
|
|
|
|
{
|
2019-07-23 19:10:08 +08:00
|
|
|
struct drm_device *drm_dev = dev_get_drvdata(dev);
|
2012-09-17 12:40:31 +08:00
|
|
|
struct drm_crtc *crtc;
|
|
|
|
|
2014-04-11 10:29:01 +08:00
|
|
|
if (!radeon_is_px(drm_dev)) {
|
2014-03-27 12:09:18 +08:00
|
|
|
pm_runtime_forbid(dev);
|
2012-09-17 12:40:31 +08:00
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
|
|
|
|
list_for_each_entry(crtc, &drm_dev->mode_config.crtc_list, head) {
|
|
|
|
if (crtc->enabled) {
|
|
|
|
DRM_DEBUG_DRIVER("failing to power off - crtc active\n");
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pm_runtime_mark_last_busy(dev);
|
|
|
|
pm_runtime_autosuspend(dev);
|
|
|
|
/* we don't want the main rpm_idle to call suspend - we want to autosuspend */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
long radeon_drm_ioctl(struct file *filp,
|
|
|
|
unsigned int cmd, unsigned long arg)
|
|
|
|
{
|
|
|
|
struct drm_file *file_priv = filp->private_data;
|
|
|
|
struct drm_device *dev;
|
|
|
|
long ret;
|
|
|
|
dev = file_priv->minor->dev;
|
|
|
|
ret = pm_runtime_get_sync(dev->dev);
|
2020-06-14 10:21:22 +08:00
|
|
|
if (ret < 0) {
|
|
|
|
pm_runtime_put_autosuspend(dev->dev);
|
2012-09-17 12:40:31 +08:00
|
|
|
return ret;
|
2020-06-14 10:21:22 +08:00
|
|
|
}
|
2012-09-17 12:40:31 +08:00
|
|
|
|
|
|
|
ret = drm_ioctl(filp, cmd, arg);
|
2020-09-23 18:21:50 +08:00
|
|
|
|
2012-09-17 12:40:31 +08:00
|
|
|
pm_runtime_mark_last_busy(dev->dev);
|
|
|
|
pm_runtime_put_autosuspend(dev->dev);
|
|
|
|
return ret;
|
2012-09-13 10:02:30 +08:00
|
|
|
}
|
|
|
|
|
2017-06-04 04:19:18 +08:00
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
static long radeon_kms_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
|
|
|
|
{
|
|
|
|
unsigned int nr = DRM_IOCTL_NR(cmd);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (nr < DRM_COMMAND_BASE)
|
|
|
|
return drm_compat_ioctl(filp, cmd, arg);
|
|
|
|
|
|
|
|
ret = radeon_drm_ioctl(filp, cmd, arg);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-09-13 10:02:30 +08:00
|
|
|
static const struct dev_pm_ops radeon_pm_ops = {
|
|
|
|
.suspend = radeon_pmops_suspend,
|
|
|
|
.resume = radeon_pmops_resume,
|
|
|
|
.freeze = radeon_pmops_freeze,
|
|
|
|
.thaw = radeon_pmops_thaw,
|
|
|
|
.poweroff = radeon_pmops_freeze,
|
|
|
|
.restore = radeon_pmops_resume,
|
2012-09-17 12:40:31 +08:00
|
|
|
.runtime_suspend = radeon_pmops_runtime_suspend,
|
|
|
|
.runtime_resume = radeon_pmops_runtime_resume,
|
|
|
|
.runtime_idle = radeon_pmops_runtime_idle,
|
2012-09-13 10:02:30 +08:00
|
|
|
};
|
|
|
|
|
2011-10-31 22:28:57 +08:00
|
|
|
static const struct file_operations radeon_driver_kms_fops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.open = drm_open,
|
|
|
|
.release = drm_release,
|
2012-09-17 12:40:31 +08:00
|
|
|
.unlocked_ioctl = radeon_drm_ioctl,
|
2021-05-25 23:10:51 +08:00
|
|
|
.mmap = drm_gem_mmap,
|
2011-10-31 22:28:57 +08:00
|
|
|
.poll = drm_poll,
|
|
|
|
.read = drm_read,
|
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
.compat_ioctl = radeon_kms_compat_ioctl,
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2020-11-04 18:04:20 +08:00
|
|
|
static const struct drm_ioctl_desc radeon_ioctls_kms[] = {
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CP_INIT, drm_invalid_op, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CP_START, drm_invalid_op, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CP_STOP, drm_invalid_op, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CP_RESET, drm_invalid_op, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CP_IDLE, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CP_RESUME, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_RESET, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_FULLSCREEN, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_SWAP, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CLEAR, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_VERTEX, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_INDICES, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_TEXTURE, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_STIPPLE, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_INDIRECT, drm_invalid_op, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_VERTEX2, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CMDBUF, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GETPARAM, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_FLIP, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_ALLOC, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_FREE, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_INIT_HEAP, drm_invalid_op, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_IRQ_EMIT, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_IRQ_WAIT, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_SETPARAM, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_SURF_ALLOC, drm_invalid_op, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_SURF_FREE, drm_invalid_op, DRM_AUTH),
|
|
|
|
/* KMS */
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_INFO, radeon_gem_info_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_CREATE, radeon_gem_create_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_MMAP, radeon_gem_mmap_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_SET_DOMAIN, radeon_gem_set_domain_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_PREAD, radeon_gem_pread_ioctl, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_PWRITE, radeon_gem_pwrite_ioctl, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_WAIT_IDLE, radeon_gem_wait_idle_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CS, radeon_cs_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_INFO, radeon_info_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_SET_TILING, radeon_gem_set_tiling_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_GET_TILING, radeon_gem_get_tiling_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_BUSY, radeon_gem_busy_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_VA, radeon_gem_va_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_OP, radeon_gem_op_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_USERPTR, radeon_gem_userptr_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
|
|
|
|
};
|
|
|
|
|
2020-11-04 18:04:24 +08:00
|
|
|
static const struct drm_driver kms_driver = {
|
2009-06-05 20:42:42 +08:00
|
|
|
.driver_features =
|
2020-11-04 18:04:20 +08:00
|
|
|
DRIVER_GEM | DRIVER_RENDER | DRIVER_MODESET,
|
2009-06-05 20:42:42 +08:00
|
|
|
.load = radeon_driver_load_kms,
|
|
|
|
.open = radeon_driver_open_kms,
|
|
|
|
.postclose = radeon_driver_postclose_kms,
|
|
|
|
.lastclose = radeon_driver_lastclose_kms,
|
|
|
|
.unload = radeon_driver_unload_kms,
|
|
|
|
.ioctls = radeon_ioctls_kms,
|
2020-11-04 18:04:20 +08:00
|
|
|
.num_ioctls = ARRAY_SIZE(radeon_ioctls_kms),
|
2011-02-07 10:16:14 +08:00
|
|
|
.dumb_create = radeon_mode_dumb_create,
|
|
|
|
.dumb_map_offset = radeon_mode_dumb_mmap,
|
2011-10-31 22:28:57 +08:00
|
|
|
.fops = &radeon_driver_kms_fops,
|
2012-05-11 06:33:13 +08:00
|
|
|
|
|
|
|
.prime_handle_to_fd = drm_gem_prime_handle_to_fd,
|
|
|
|
.prime_fd_to_handle = drm_gem_prime_fd_to_handle,
|
2013-01-16 04:47:44 +08:00
|
|
|
.gem_prime_import_sg_table = radeon_gem_prime_import_sg_table,
|
2021-05-25 23:10:51 +08:00
|
|
|
.gem_prime_mmap = drm_gem_prime_mmap,
|
2012-05-11 06:33:13 +08:00
|
|
|
|
2009-06-05 20:42:42 +08:00
|
|
|
.name = DRIVER_NAME,
|
|
|
|
.desc = DRIVER_DESC,
|
|
|
|
.date = DRIVER_DATE,
|
|
|
|
.major = KMS_DRIVER_MAJOR,
|
|
|
|
.minor = KMS_DRIVER_MINOR,
|
|
|
|
.patchlevel = KMS_DRIVER_PATCHLEVEL,
|
|
|
|
};
|
|
|
|
|
2010-12-15 01:16:38 +08:00
|
|
|
static struct pci_driver radeon_kms_pci_driver = {
|
|
|
|
.name = DRIVER_NAME,
|
|
|
|
.id_table = pciidlist,
|
|
|
|
.probe = radeon_pci_probe,
|
|
|
|
.remove = radeon_pci_remove,
|
2016-08-23 02:29:44 +08:00
|
|
|
.shutdown = radeon_pci_shutdown,
|
2012-09-13 10:02:30 +08:00
|
|
|
.driver.pm = &radeon_pm_ops,
|
2010-12-15 01:16:38 +08:00
|
|
|
};
|
2009-06-05 20:42:42 +08:00
|
|
|
|
2020-11-04 18:04:20 +08:00
|
|
|
static int __init radeon_module_init(void)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2013-05-15 09:23:36 +08:00
|
|
|
if (vgacon_text_force() && radeon_modeset == -1) {
|
|
|
|
DRM_INFO("VGACON disable radeon kernel modesetting.\n");
|
|
|
|
radeon_modeset = 0;
|
|
|
|
}
|
2020-11-04 18:04:20 +08:00
|
|
|
|
|
|
|
if (radeon_modeset == 0) {
|
2013-01-21 20:58:46 +08:00
|
|
|
DRM_ERROR("No UMS support in radeon module!\n");
|
|
|
|
return -EINVAL;
|
2009-06-05 20:42:42 +08:00
|
|
|
}
|
2013-01-21 20:58:46 +08:00
|
|
|
|
2020-11-04 18:04:20 +08:00
|
|
|
DRM_INFO("radeon kernel modesetting enabled.\n");
|
|
|
|
radeon_register_atpx_handler();
|
|
|
|
|
|
|
|
return pci_register_driver(&radeon_kms_pci_driver);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2020-11-04 18:04:20 +08:00
|
|
|
static void __exit radeon_module_exit(void)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2020-11-04 18:04:20 +08:00
|
|
|
pci_unregister_driver(&radeon_kms_pci_driver);
|
2010-02-01 13:38:10 +08:00
|
|
|
radeon_unregister_atpx_handler();
|
2019-08-07 07:15:45 +08:00
|
|
|
mmu_notifier_synchronize();
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2020-11-04 18:04:20 +08:00
|
|
|
module_init(radeon_module_init);
|
|
|
|
module_exit(radeon_module_exit);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-09-25 12:28:13 +08:00
|
|
|
MODULE_AUTHOR(DRIVER_AUTHOR);
|
|
|
|
MODULE_DESCRIPTION(DRIVER_DESC);
|
2005-04-17 06:20:36 +08:00
|
|
|
MODULE_LICENSE("GPL and additional rights");
|