2009-06-05 20:42:42 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Advanced Micro Devices, Inc.
|
|
|
|
* Copyright 2008 Red Hat Inc.
|
|
|
|
* Copyright 2009 Jerome Glisse.
|
|
|
|
*
|
|
|
|
* 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 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
|
|
|
|
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) 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.
|
|
|
|
*
|
|
|
|
* Authors: Dave Airlie
|
|
|
|
* Alex Deucher
|
|
|
|
* Jerome Glisse
|
|
|
|
*/
|
2012-10-03 01:01:07 +08:00
|
|
|
#include <drm/drmP.h>
|
2009-06-05 20:42:42 +08:00
|
|
|
#include "radeon.h"
|
2012-10-03 01:01:07 +08:00
|
|
|
#include <drm/radeon_drm.h>
|
2012-08-09 22:34:17 +08:00
|
|
|
#include "radeon_asic.h"
|
2009-06-05 20:42:42 +08:00
|
|
|
|
2010-02-01 13:38:10 +08:00
|
|
|
#include <linux/vga_switcheroo.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2010-02-01 13:38:10 +08:00
|
|
|
|
2012-07-18 02:02:34 +08:00
|
|
|
/**
|
|
|
|
* radeon_driver_unload_kms - Main unload function for KMS.
|
|
|
|
*
|
|
|
|
* @dev: drm dev pointer
|
|
|
|
*
|
|
|
|
* This is the main unload function for KMS (all asics).
|
|
|
|
* It calls radeon_modeset_fini() to tear down the
|
|
|
|
* displays, and radeon_device_fini() to tear down
|
|
|
|
* the rest of the device (CP, writeback, etc.).
|
|
|
|
* Returns 0 on success.
|
|
|
|
*/
|
2009-12-10 01:21:55 +08:00
|
|
|
int radeon_driver_unload_kms(struct drm_device *dev)
|
|
|
|
{
|
|
|
|
struct radeon_device *rdev = dev->dev_private;
|
|
|
|
|
|
|
|
if (rdev == NULL)
|
|
|
|
return 0;
|
2012-08-01 05:14:35 +08:00
|
|
|
radeon_acpi_fini(rdev);
|
2009-12-10 01:21:55 +08:00
|
|
|
radeon_modeset_fini(rdev);
|
|
|
|
radeon_device_fini(rdev);
|
|
|
|
kfree(rdev);
|
|
|
|
dev->dev_private = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
2009-06-05 20:42:42 +08:00
|
|
|
|
2012-07-18 02:02:34 +08:00
|
|
|
/**
|
|
|
|
* radeon_driver_load_kms - Main load function for KMS.
|
|
|
|
*
|
|
|
|
* @dev: drm dev pointer
|
|
|
|
* @flags: device flags
|
|
|
|
*
|
|
|
|
* This is the main load function for KMS (all asics).
|
|
|
|
* It calls radeon_device_init() to set up the non-display
|
|
|
|
* parts of the chip (asic init, CP, writeback, etc.), and
|
|
|
|
* radeon_modeset_init() to set up the display parts
|
|
|
|
* (crtcs, encoders, hotplug detect, etc.).
|
|
|
|
* Returns 0 on success, error on failure.
|
|
|
|
*/
|
2009-06-05 20:42:42 +08:00
|
|
|
int radeon_driver_load_kms(struct drm_device *dev, unsigned long flags)
|
|
|
|
{
|
|
|
|
struct radeon_device *rdev;
|
2010-07-06 23:40:24 +08:00
|
|
|
int r, acpi_status;
|
2009-06-05 20:42:42 +08:00
|
|
|
|
|
|
|
rdev = kzalloc(sizeof(struct radeon_device), GFP_KERNEL);
|
|
|
|
if (rdev == NULL) {
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
dev->dev_private = (void *)rdev;
|
|
|
|
|
|
|
|
/* update BUS flag */
|
2010-12-15 01:16:38 +08:00
|
|
|
if (drm_pci_device_is_agp(dev)) {
|
2009-06-05 20:42:42 +08:00
|
|
|
flags |= RADEON_IS_AGP;
|
2011-06-28 00:07:50 +08:00
|
|
|
} else if (pci_is_pcie(dev->pdev)) {
|
2009-06-05 20:42:42 +08:00
|
|
|
flags |= RADEON_IS_PCIE;
|
|
|
|
} else {
|
|
|
|
flags |= RADEON_IS_PCI;
|
|
|
|
}
|
|
|
|
|
2009-09-11 03:46:48 +08:00
|
|
|
/* radeon_device_init should report only fatal error
|
|
|
|
* like memory allocation failure or iomapping failure,
|
|
|
|
* or memory manager initialization failure, it must
|
|
|
|
* properly initialize the GPU MC controller and permit
|
|
|
|
* VRAM allocation
|
|
|
|
*/
|
2009-06-05 20:42:42 +08:00
|
|
|
r = radeon_device_init(rdev, dev, dev->pdev, flags);
|
|
|
|
if (r) {
|
2009-12-10 01:21:55 +08:00
|
|
|
dev_err(&dev->pdev->dev, "Fatal error during GPU init\n");
|
|
|
|
goto out;
|
2009-09-11 03:46:48 +08:00
|
|
|
}
|
2010-07-06 23:40:24 +08:00
|
|
|
|
2009-09-11 03:46:48 +08:00
|
|
|
/* Again modeset_init should fail only on fatal error
|
|
|
|
* otherwise it should provide enough functionalities
|
|
|
|
* for shadowfb to run
|
|
|
|
*/
|
|
|
|
r = radeon_modeset_init(rdev);
|
2009-12-10 01:21:55 +08:00
|
|
|
if (r)
|
|
|
|
dev_err(&dev->pdev->dev, "Fatal error during modeset init\n");
|
2012-07-31 03:20:35 +08:00
|
|
|
|
|
|
|
/* Call ACPI methods: require modeset init
|
|
|
|
* but failure is not fatal
|
|
|
|
*/
|
|
|
|
if (!r) {
|
|
|
|
acpi_status = radeon_acpi_init(rdev);
|
|
|
|
if (acpi_status)
|
|
|
|
dev_dbg(&dev->pdev->dev,
|
|
|
|
"Error during ACPI methods call\n");
|
|
|
|
}
|
|
|
|
|
2009-12-10 01:21:55 +08:00
|
|
|
out:
|
|
|
|
if (r)
|
|
|
|
radeon_driver_unload_kms(dev);
|
|
|
|
return r;
|
2009-06-05 20:42:42 +08:00
|
|
|
}
|
|
|
|
|
2012-07-18 02:02:34 +08:00
|
|
|
/**
|
|
|
|
* radeon_set_filp_rights - Set filp right.
|
|
|
|
*
|
|
|
|
* @dev: drm dev pointer
|
|
|
|
* @owner: drm file
|
|
|
|
* @applier: drm file
|
|
|
|
* @value: value
|
|
|
|
*
|
|
|
|
* Sets the filp rights for the device (all asics).
|
|
|
|
*/
|
2011-01-05 12:46:48 +08:00
|
|
|
static void radeon_set_filp_rights(struct drm_device *dev,
|
|
|
|
struct drm_file **owner,
|
|
|
|
struct drm_file *applier,
|
|
|
|
uint32_t *value)
|
|
|
|
{
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
if (*value == 1) {
|
|
|
|
/* wants rights */
|
|
|
|
if (!*owner)
|
|
|
|
*owner = applier;
|
|
|
|
} else if (*value == 0) {
|
|
|
|
/* revokes rights */
|
|
|
|
if (*owner == applier)
|
|
|
|
*owner = NULL;
|
|
|
|
}
|
|
|
|
*value = *owner == applier ? 1 : 0;
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
}
|
2009-06-05 20:42:42 +08:00
|
|
|
|
|
|
|
/*
|
2011-01-05 12:46:48 +08:00
|
|
|
* Userspace get information ioctl
|
2009-06-05 20:42:42 +08:00
|
|
|
*/
|
2012-07-18 02:02:34 +08:00
|
|
|
/**
|
|
|
|
* radeon_info_ioctl - answer a device specific request.
|
|
|
|
*
|
|
|
|
* @rdev: radeon device pointer
|
|
|
|
* @data: request object
|
|
|
|
* @filp: drm filp
|
|
|
|
*
|
|
|
|
* This function is used to pass device specific parameters to the userspace
|
|
|
|
* drivers. Examples include: pci device id, pipeline parms, tiling params,
|
|
|
|
* etc. (all asics).
|
|
|
|
* Returns 0 on success, -EINVAL on failure.
|
|
|
|
*/
|
2009-06-05 20:42:42 +08:00
|
|
|
int radeon_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
|
|
|
|
{
|
|
|
|
struct radeon_device *rdev = dev->dev_private;
|
2012-08-09 22:34:17 +08:00
|
|
|
struct drm_radeon_info *info = data;
|
2010-05-13 00:01:13 +08:00
|
|
|
struct radeon_mode_info *minfo = &rdev->mode_info;
|
2012-08-09 22:34:17 +08:00
|
|
|
uint32_t value, *value_ptr;
|
|
|
|
uint64_t value64, *value_ptr64;
|
2010-05-13 00:01:13 +08:00
|
|
|
struct drm_crtc *crtc;
|
|
|
|
int i, found;
|
2009-06-05 20:42:42 +08:00
|
|
|
|
2012-08-09 22:34:17 +08:00
|
|
|
/* TIMESTAMP is a 64-bit value, needs special handling. */
|
|
|
|
if (info->request == RADEON_INFO_TIMESTAMP) {
|
|
|
|
if (rdev->family >= CHIP_R600) {
|
|
|
|
value_ptr64 = (uint64_t*)((unsigned long)info->value);
|
2013-01-24 23:35:23 +08:00
|
|
|
value64 = radeon_get_gpu_clock_counter(rdev);
|
2012-08-09 22:34:17 +08:00
|
|
|
|
|
|
|
if (DRM_COPY_TO_USER(value_ptr64, &value64, sizeof(value64))) {
|
|
|
|
DRM_ERROR("copy_to_user %s:%u\n", __func__, __LINE__);
|
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
DRM_DEBUG_KMS("timestamp is r6xx+ only!\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-05 20:42:42 +08:00
|
|
|
value_ptr = (uint32_t *)((unsigned long)info->value);
|
2012-08-09 22:34:17 +08:00
|
|
|
if (DRM_COPY_FROM_USER(&value, value_ptr, sizeof(value))) {
|
|
|
|
DRM_ERROR("copy_from_user %s:%u\n", __func__, __LINE__);
|
2010-08-02 07:43:52 +08:00
|
|
|
return -EFAULT;
|
2012-08-09 22:34:17 +08:00
|
|
|
}
|
2010-08-02 07:43:52 +08:00
|
|
|
|
2009-06-05 20:42:42 +08:00
|
|
|
switch (info->request) {
|
|
|
|
case RADEON_INFO_DEVICE_ID:
|
|
|
|
value = dev->pci_device;
|
|
|
|
break;
|
|
|
|
case RADEON_INFO_NUM_GB_PIPES:
|
|
|
|
value = rdev->num_gb_pipes;
|
|
|
|
break;
|
2009-08-20 07:11:39 +08:00
|
|
|
case RADEON_INFO_NUM_Z_PIPES:
|
|
|
|
value = rdev->num_z_pipes;
|
|
|
|
break;
|
2009-09-16 21:24:21 +08:00
|
|
|
case RADEON_INFO_ACCEL_WORKING:
|
2010-06-04 07:00:03 +08:00
|
|
|
/* xf86-video-ati 6.13.0 relies on this being false for evergreen */
|
|
|
|
if ((rdev->family >= CHIP_CEDAR) && (rdev->family <= CHIP_HEMLOCK))
|
|
|
|
value = false;
|
|
|
|
else
|
|
|
|
value = rdev->accel_working;
|
2009-09-16 21:24:21 +08:00
|
|
|
break;
|
2010-05-13 00:01:13 +08:00
|
|
|
case RADEON_INFO_CRTC_FROM_ID:
|
|
|
|
for (i = 0, found = 0; i < rdev->num_crtc; i++) {
|
|
|
|
crtc = (struct drm_crtc *)minfo->crtcs[i];
|
|
|
|
if (crtc && crtc->base.id == value) {
|
2010-07-22 02:05:35 +08:00
|
|
|
struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
|
|
|
|
value = radeon_crtc->crtc_id;
|
2010-05-13 00:01:13 +08:00
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found) {
|
2010-08-02 08:42:55 +08:00
|
|
|
DRM_DEBUG_KMS("unknown crtc id %d\n", value);
|
2010-05-13 00:01:13 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
break;
|
2010-06-04 07:00:03 +08:00
|
|
|
case RADEON_INFO_ACCEL_WORKING2:
|
|
|
|
value = rdev->accel_working;
|
|
|
|
break;
|
2010-06-05 01:10:12 +08:00
|
|
|
case RADEON_INFO_TILING_CONFIG:
|
2012-03-21 05:18:26 +08:00
|
|
|
if (rdev->family >= CHIP_TAHITI)
|
|
|
|
value = rdev->config.si.tile_config;
|
|
|
|
else if (rdev->family >= CHIP_CAYMAN)
|
2011-03-03 09:07:29 +08:00
|
|
|
value = rdev->config.cayman.tile_config;
|
|
|
|
else if (rdev->family >= CHIP_CEDAR)
|
2010-06-05 01:10:12 +08:00
|
|
|
value = rdev->config.evergreen.tile_config;
|
|
|
|
else if (rdev->family >= CHIP_RV770)
|
|
|
|
value = rdev->config.rv770.tile_config;
|
|
|
|
else if (rdev->family >= CHIP_R600)
|
|
|
|
value = rdev->config.r600.tile_config;
|
|
|
|
else {
|
2010-08-02 08:42:55 +08:00
|
|
|
DRM_DEBUG_KMS("tiling config is r6xx+ only!\n");
|
2010-06-05 01:10:12 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
2010-08-12 20:25:47 +08:00
|
|
|
break;
|
2010-07-13 09:11:11 +08:00
|
|
|
case RADEON_INFO_WANT_HYPERZ:
|
2010-08-07 09:36:34 +08:00
|
|
|
/* The "value" here is both an input and output parameter.
|
|
|
|
* If the input value is 1, filp requests hyper-z access.
|
|
|
|
* If the input value is 0, filp revokes its hyper-z access.
|
|
|
|
*
|
|
|
|
* When returning, the value is 1 if filp owns hyper-z access,
|
|
|
|
* 0 otherwise. */
|
|
|
|
if (value >= 2) {
|
|
|
|
DRM_DEBUG_KMS("WANT_HYPERZ: invalid value %d\n", value);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2011-01-05 12:46:48 +08:00
|
|
|
radeon_set_filp_rights(dev, &rdev->hyperz_filp, filp, &value);
|
|
|
|
break;
|
|
|
|
case RADEON_INFO_WANT_CMASK:
|
|
|
|
/* The same logic as Hyper-Z. */
|
|
|
|
if (value >= 2) {
|
|
|
|
DRM_DEBUG_KMS("WANT_CMASK: invalid value %d\n", value);
|
|
|
|
return -EINVAL;
|
2010-07-13 09:11:11 +08:00
|
|
|
}
|
2011-01-05 12:46:48 +08:00
|
|
|
radeon_set_filp_rights(dev, &rdev->cmask_filp, filp, &value);
|
2010-06-05 01:10:12 +08:00
|
|
|
break;
|
2011-01-25 06:14:26 +08:00
|
|
|
case RADEON_INFO_CLOCK_CRYSTAL_FREQ:
|
|
|
|
/* return clock value in KHz */
|
2013-02-14 23:04:02 +08:00
|
|
|
if (rdev->asic->get_xclk)
|
|
|
|
value = radeon_get_xclk(rdev) * 10;
|
|
|
|
else
|
|
|
|
value = rdev->clock.spll.reference_freq * 10;
|
2011-01-25 06:14:26 +08:00
|
|
|
break;
|
2011-03-01 12:32:27 +08:00
|
|
|
case RADEON_INFO_NUM_BACKENDS:
|
2012-03-21 05:18:26 +08:00
|
|
|
if (rdev->family >= CHIP_TAHITI)
|
|
|
|
value = rdev->config.si.max_backends_per_se *
|
|
|
|
rdev->config.si.max_shader_engines;
|
|
|
|
else if (rdev->family >= CHIP_CAYMAN)
|
2011-03-03 09:07:29 +08:00
|
|
|
value = rdev->config.cayman.max_backends_per_se *
|
|
|
|
rdev->config.cayman.max_shader_engines;
|
|
|
|
else if (rdev->family >= CHIP_CEDAR)
|
2011-03-01 12:32:27 +08:00
|
|
|
value = rdev->config.evergreen.max_backends;
|
|
|
|
else if (rdev->family >= CHIP_RV770)
|
|
|
|
value = rdev->config.rv770.max_backends;
|
|
|
|
else if (rdev->family >= CHIP_R600)
|
|
|
|
value = rdev->config.r600.max_backends;
|
|
|
|
else {
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
break;
|
2011-04-27 01:27:43 +08:00
|
|
|
case RADEON_INFO_NUM_TILE_PIPES:
|
2012-03-21 05:18:26 +08:00
|
|
|
if (rdev->family >= CHIP_TAHITI)
|
|
|
|
value = rdev->config.si.max_tile_pipes;
|
|
|
|
else if (rdev->family >= CHIP_CAYMAN)
|
2011-04-27 01:27:43 +08:00
|
|
|
value = rdev->config.cayman.max_tile_pipes;
|
|
|
|
else if (rdev->family >= CHIP_CEDAR)
|
|
|
|
value = rdev->config.evergreen.max_tile_pipes;
|
|
|
|
else if (rdev->family >= CHIP_RV770)
|
|
|
|
value = rdev->config.rv770.max_tile_pipes;
|
|
|
|
else if (rdev->family >= CHIP_R600)
|
|
|
|
value = rdev->config.r600.max_tile_pipes;
|
|
|
|
else {
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
break;
|
2011-05-04 07:28:02 +08:00
|
|
|
case RADEON_INFO_FUSION_GART_WORKING:
|
|
|
|
value = 1;
|
|
|
|
break;
|
2011-07-16 03:53:52 +08:00
|
|
|
case RADEON_INFO_BACKEND_MAP:
|
2012-03-21 05:18:26 +08:00
|
|
|
if (rdev->family >= CHIP_TAHITI)
|
|
|
|
value = rdev->config.si.backend_map;
|
|
|
|
else if (rdev->family >= CHIP_CAYMAN)
|
2011-07-16 03:53:52 +08:00
|
|
|
value = rdev->config.cayman.backend_map;
|
|
|
|
else if (rdev->family >= CHIP_CEDAR)
|
|
|
|
value = rdev->config.evergreen.backend_map;
|
|
|
|
else if (rdev->family >= CHIP_RV770)
|
|
|
|
value = rdev->config.rv770.backend_map;
|
|
|
|
else if (rdev->family >= CHIP_R600)
|
|
|
|
value = rdev->config.r600.backend_map;
|
|
|
|
else {
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
break;
|
drm/radeon: GPU virtual memory support v22
Virtual address space are per drm client (opener of /dev/drm).
Client are in charge of virtual address space, they need to
map bo into it by calling DRM_RADEON_GEM_VA ioctl.
First 16M of virtual address space is reserved by the kernel.
Once using 2 level page table we should be able to have a small
vram memory footprint for each pt (there would be one pt for all
gart, one for all vram and then one first level for each virtual
address space).
Plan include using the sub allocator for a common vm page table
area and using memcpy to copy vm page table in & out. Or use
a gart object and copy things in & out using dma.
v2: agd5f fixes:
- Add vram base offset for vram pages. The GPU physical address of a
vram page is FB_OFFSET + page offset. FB_OFFSET is 0 on discrete
cards and the physical bus address of the stolen memory on
integrated chips.
- VM_CONTEXT1_PROTECTION_FAULT_DEFAULT_ADDR covers all vmid's >= 1
v3: agd5f:
- integrate with the semaphore/multi-ring stuff
v4:
- rebase on top ttm dma & multi-ring stuff
- userspace is now in charge of the address space
- no more specific cs vm ioctl, instead cs ioctl has a new
chunk
v5:
- properly handle mem == NULL case from move_notify callback
- fix the vm cleanup path
v6:
- fix update of page table to only happen on valid mem placement
v7:
- add tlb flush for each vm context
- add flags to define mapping property (readable, writeable, snooped)
- make ring id implicit from ib->fence->ring, up to each asic callback
to then do ring specific scheduling if vm ib scheduling function
v8:
- add query for ib limit and kernel reserved virtual space
- rename vm->size to max_pfn (maximum number of page)
- update gem_va ioctl to also allow unmap operation
- bump kernel version to allow userspace to query for vm support
v9:
- rebuild page table only when bind and incrementaly depending
on bo referenced by cs and that have been moved
- allow virtual address space to grow
- use sa allocator for vram page table
- return invalid when querying vm limit on non cayman GPU
- dump vm fault register on lockup
v10: agd5f:
- Move the vm schedule_ib callback to a standalone function, remove
the callback and use the existing ib_execute callback for VM IBs.
v11:
- rebase on top of lastest Linus
v12: agd5f:
- remove spurious backslash
- set IB vm_id to 0 in radeon_ib_get()
v13: agd5f:
- fix handling of RADEON_CHUNK_ID_FLAGS
v14:
- fix va destruction
- fix suspend resume
- forbid bo to have several different va in same vm
v15:
- rebase
v16:
- cleanup left over of vm init/fini
v17: agd5f:
- cs checker
v18: agd5f:
- reworks the CS ioctl to better support multiple rings and
VM. Rather than adding a new chunk id for VM, just re-use the
IB chunk id and add a new flags for VM mode. Also define additional
dwords for the flags chunk id to define the what ring we want to use
(gfx, compute, uvd, etc.) and the priority.
v19:
- fix cs fini in weird case of no ib
- semi working flush fix for ni
- rebase on top of sa allocator changes
v20: agd5f:
- further CS ioctl cleanups from Christian's comments
v21: agd5f:
- integrate CS checker improvements
v22: agd5f:
- final cleanups for release, only allow VM CS on cayman
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-06 11:11:05 +08:00
|
|
|
case RADEON_INFO_VA_START:
|
|
|
|
/* this is where we report if vm is supported or not */
|
|
|
|
if (rdev->family < CHIP_CAYMAN)
|
|
|
|
return -EINVAL;
|
|
|
|
value = RADEON_VA_RESERVED_SIZE;
|
|
|
|
break;
|
|
|
|
case RADEON_INFO_IB_VM_MAX_SIZE:
|
|
|
|
/* this is where we report if vm is supported or not */
|
|
|
|
if (rdev->family < CHIP_CAYMAN)
|
|
|
|
return -EINVAL;
|
|
|
|
value = RADEON_IB_VM_MAX_SIZE;
|
|
|
|
break;
|
2012-03-21 05:17:55 +08:00
|
|
|
case RADEON_INFO_MAX_PIPES:
|
2012-03-21 05:18:26 +08:00
|
|
|
if (rdev->family >= CHIP_TAHITI)
|
2012-06-02 06:58:22 +08:00
|
|
|
value = rdev->config.si.max_cu_per_sh;
|
2012-03-21 05:18:26 +08:00
|
|
|
else if (rdev->family >= CHIP_CAYMAN)
|
2012-03-21 05:17:55 +08:00
|
|
|
value = rdev->config.cayman.max_pipes_per_simd;
|
|
|
|
else if (rdev->family >= CHIP_CEDAR)
|
|
|
|
value = rdev->config.evergreen.max_pipes;
|
|
|
|
else if (rdev->family >= CHIP_RV770)
|
|
|
|
value = rdev->config.rv770.max_pipes;
|
|
|
|
else if (rdev->family >= CHIP_R600)
|
|
|
|
value = rdev->config.r600.max_pipes;
|
|
|
|
else {
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
break;
|
2012-12-05 01:55:37 +08:00
|
|
|
case RADEON_INFO_MAX_SE:
|
|
|
|
if (rdev->family >= CHIP_TAHITI)
|
|
|
|
value = rdev->config.si.max_shader_engines;
|
|
|
|
else if (rdev->family >= CHIP_CAYMAN)
|
|
|
|
value = rdev->config.cayman.max_shader_engines;
|
|
|
|
else if (rdev->family >= CHIP_CEDAR)
|
|
|
|
value = rdev->config.evergreen.num_ses;
|
|
|
|
else
|
|
|
|
value = 1;
|
|
|
|
break;
|
|
|
|
case RADEON_INFO_MAX_SH_PER_SE:
|
|
|
|
if (rdev->family >= CHIP_TAHITI)
|
|
|
|
value = rdev->config.si.max_sh_per_se;
|
|
|
|
else
|
|
|
|
return -EINVAL;
|
|
|
|
break;
|
2013-04-09 05:25:47 +08:00
|
|
|
case RADEON_INFO_FASTFB_WORKING:
|
|
|
|
value = rdev->fastfb_working;
|
|
|
|
break;
|
2013-04-09 22:35:42 +08:00
|
|
|
case RADEON_INFO_RING_WORKING:
|
|
|
|
switch (value) {
|
|
|
|
case RADEON_CS_RING_GFX:
|
|
|
|
case RADEON_CS_RING_COMPUTE:
|
|
|
|
value = rdev->ring[RADEON_RING_TYPE_GFX_INDEX].ready;
|
|
|
|
break;
|
|
|
|
case RADEON_CS_RING_DMA:
|
|
|
|
value = rdev->ring[R600_RING_TYPE_DMA_INDEX].ready;
|
|
|
|
value |= rdev->ring[CAYMAN_RING_TYPE_DMA1_INDEX].ready;
|
|
|
|
break;
|
|
|
|
case RADEON_CS_RING_UVD:
|
|
|
|
value = rdev->ring[R600_RING_TYPE_UVD_INDEX].ready;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
break;
|
2009-06-05 20:42:42 +08:00
|
|
|
default:
|
2010-08-02 08:42:55 +08:00
|
|
|
DRM_DEBUG_KMS("Invalid request %d\n", info->request);
|
2009-06-05 20:42:42 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
if (DRM_COPY_TO_USER(value_ptr, &value, sizeof(uint32_t))) {
|
2012-08-09 22:34:17 +08:00
|
|
|
DRM_ERROR("copy_to_user %s:%u\n", __func__, __LINE__);
|
2009-06-05 20:42:42 +08:00
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Outdated mess for old drm with Xorg being in charge (void function now).
|
|
|
|
*/
|
2012-07-18 02:02:34 +08:00
|
|
|
/**
|
|
|
|
* radeon_driver_firstopen_kms - drm callback for first open
|
|
|
|
*
|
|
|
|
* @dev: drm dev pointer
|
|
|
|
*
|
|
|
|
* Nothing to be done for KMS (all asics).
|
|
|
|
* Returns 0 on success.
|
|
|
|
*/
|
2009-06-05 20:42:42 +08:00
|
|
|
int radeon_driver_firstopen_kms(struct drm_device *dev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-18 02:02:34 +08:00
|
|
|
/**
|
|
|
|
* radeon_driver_firstopen_kms - drm callback for last close
|
|
|
|
*
|
|
|
|
* @dev: drm dev pointer
|
|
|
|
*
|
|
|
|
* Switch vga switcheroo state after last close (all asics).
|
|
|
|
*/
|
2009-06-05 20:42:42 +08:00
|
|
|
void radeon_driver_lastclose_kms(struct drm_device *dev)
|
|
|
|
{
|
2010-02-01 13:38:10 +08:00
|
|
|
vga_switcheroo_process_delayed_switch();
|
2009-06-05 20:42:42 +08:00
|
|
|
}
|
|
|
|
|
2012-07-18 02:02:34 +08:00
|
|
|
/**
|
|
|
|
* radeon_driver_open_kms - drm callback for open
|
|
|
|
*
|
|
|
|
* @dev: drm dev pointer
|
|
|
|
* @file_priv: drm file
|
|
|
|
*
|
|
|
|
* On device open, init vm on cayman+ (all asics).
|
|
|
|
* Returns 0 on success, error on failure.
|
|
|
|
*/
|
2009-06-05 20:42:42 +08:00
|
|
|
int radeon_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv)
|
|
|
|
{
|
drm/radeon: GPU virtual memory support v22
Virtual address space are per drm client (opener of /dev/drm).
Client are in charge of virtual address space, they need to
map bo into it by calling DRM_RADEON_GEM_VA ioctl.
First 16M of virtual address space is reserved by the kernel.
Once using 2 level page table we should be able to have a small
vram memory footprint for each pt (there would be one pt for all
gart, one for all vram and then one first level for each virtual
address space).
Plan include using the sub allocator for a common vm page table
area and using memcpy to copy vm page table in & out. Or use
a gart object and copy things in & out using dma.
v2: agd5f fixes:
- Add vram base offset for vram pages. The GPU physical address of a
vram page is FB_OFFSET + page offset. FB_OFFSET is 0 on discrete
cards and the physical bus address of the stolen memory on
integrated chips.
- VM_CONTEXT1_PROTECTION_FAULT_DEFAULT_ADDR covers all vmid's >= 1
v3: agd5f:
- integrate with the semaphore/multi-ring stuff
v4:
- rebase on top ttm dma & multi-ring stuff
- userspace is now in charge of the address space
- no more specific cs vm ioctl, instead cs ioctl has a new
chunk
v5:
- properly handle mem == NULL case from move_notify callback
- fix the vm cleanup path
v6:
- fix update of page table to only happen on valid mem placement
v7:
- add tlb flush for each vm context
- add flags to define mapping property (readable, writeable, snooped)
- make ring id implicit from ib->fence->ring, up to each asic callback
to then do ring specific scheduling if vm ib scheduling function
v8:
- add query for ib limit and kernel reserved virtual space
- rename vm->size to max_pfn (maximum number of page)
- update gem_va ioctl to also allow unmap operation
- bump kernel version to allow userspace to query for vm support
v9:
- rebuild page table only when bind and incrementaly depending
on bo referenced by cs and that have been moved
- allow virtual address space to grow
- use sa allocator for vram page table
- return invalid when querying vm limit on non cayman GPU
- dump vm fault register on lockup
v10: agd5f:
- Move the vm schedule_ib callback to a standalone function, remove
the callback and use the existing ib_execute callback for VM IBs.
v11:
- rebase on top of lastest Linus
v12: agd5f:
- remove spurious backslash
- set IB vm_id to 0 in radeon_ib_get()
v13: agd5f:
- fix handling of RADEON_CHUNK_ID_FLAGS
v14:
- fix va destruction
- fix suspend resume
- forbid bo to have several different va in same vm
v15:
- rebase
v16:
- cleanup left over of vm init/fini
v17: agd5f:
- cs checker
v18: agd5f:
- reworks the CS ioctl to better support multiple rings and
VM. Rather than adding a new chunk id for VM, just re-use the
IB chunk id and add a new flags for VM mode. Also define additional
dwords for the flags chunk id to define the what ring we want to use
(gfx, compute, uvd, etc.) and the priority.
v19:
- fix cs fini in weird case of no ib
- semi working flush fix for ni
- rebase on top of sa allocator changes
v20: agd5f:
- further CS ioctl cleanups from Christian's comments
v21: agd5f:
- integrate CS checker improvements
v22: agd5f:
- final cleanups for release, only allow VM CS on cayman
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-06 11:11:05 +08:00
|
|
|
struct radeon_device *rdev = dev->dev_private;
|
|
|
|
|
|
|
|
file_priv->driver_priv = NULL;
|
|
|
|
|
|
|
|
/* new gpu have virtual address space support */
|
|
|
|
if (rdev->family >= CHIP_CAYMAN) {
|
|
|
|
struct radeon_fpriv *fpriv;
|
2012-10-09 19:31:18 +08:00
|
|
|
struct radeon_bo_va *bo_va;
|
drm/radeon: GPU virtual memory support v22
Virtual address space are per drm client (opener of /dev/drm).
Client are in charge of virtual address space, they need to
map bo into it by calling DRM_RADEON_GEM_VA ioctl.
First 16M of virtual address space is reserved by the kernel.
Once using 2 level page table we should be able to have a small
vram memory footprint for each pt (there would be one pt for all
gart, one for all vram and then one first level for each virtual
address space).
Plan include using the sub allocator for a common vm page table
area and using memcpy to copy vm page table in & out. Or use
a gart object and copy things in & out using dma.
v2: agd5f fixes:
- Add vram base offset for vram pages. The GPU physical address of a
vram page is FB_OFFSET + page offset. FB_OFFSET is 0 on discrete
cards and the physical bus address of the stolen memory on
integrated chips.
- VM_CONTEXT1_PROTECTION_FAULT_DEFAULT_ADDR covers all vmid's >= 1
v3: agd5f:
- integrate with the semaphore/multi-ring stuff
v4:
- rebase on top ttm dma & multi-ring stuff
- userspace is now in charge of the address space
- no more specific cs vm ioctl, instead cs ioctl has a new
chunk
v5:
- properly handle mem == NULL case from move_notify callback
- fix the vm cleanup path
v6:
- fix update of page table to only happen on valid mem placement
v7:
- add tlb flush for each vm context
- add flags to define mapping property (readable, writeable, snooped)
- make ring id implicit from ib->fence->ring, up to each asic callback
to then do ring specific scheduling if vm ib scheduling function
v8:
- add query for ib limit and kernel reserved virtual space
- rename vm->size to max_pfn (maximum number of page)
- update gem_va ioctl to also allow unmap operation
- bump kernel version to allow userspace to query for vm support
v9:
- rebuild page table only when bind and incrementaly depending
on bo referenced by cs and that have been moved
- allow virtual address space to grow
- use sa allocator for vram page table
- return invalid when querying vm limit on non cayman GPU
- dump vm fault register on lockup
v10: agd5f:
- Move the vm schedule_ib callback to a standalone function, remove
the callback and use the existing ib_execute callback for VM IBs.
v11:
- rebase on top of lastest Linus
v12: agd5f:
- remove spurious backslash
- set IB vm_id to 0 in radeon_ib_get()
v13: agd5f:
- fix handling of RADEON_CHUNK_ID_FLAGS
v14:
- fix va destruction
- fix suspend resume
- forbid bo to have several different va in same vm
v15:
- rebase
v16:
- cleanup left over of vm init/fini
v17: agd5f:
- cs checker
v18: agd5f:
- reworks the CS ioctl to better support multiple rings and
VM. Rather than adding a new chunk id for VM, just re-use the
IB chunk id and add a new flags for VM mode. Also define additional
dwords for the flags chunk id to define the what ring we want to use
(gfx, compute, uvd, etc.) and the priority.
v19:
- fix cs fini in weird case of no ib
- semi working flush fix for ni
- rebase on top of sa allocator changes
v20: agd5f:
- further CS ioctl cleanups from Christian's comments
v21: agd5f:
- integrate CS checker improvements
v22: agd5f:
- final cleanups for release, only allow VM CS on cayman
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-06 11:11:05 +08:00
|
|
|
int r;
|
|
|
|
|
|
|
|
fpriv = kzalloc(sizeof(*fpriv), GFP_KERNEL);
|
|
|
|
if (unlikely(!fpriv)) {
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2012-10-09 19:31:18 +08:00
|
|
|
radeon_vm_init(rdev, &fpriv->vm);
|
|
|
|
|
|
|
|
/* map the ib pool buffer read only into
|
|
|
|
* virtual address space */
|
|
|
|
bo_va = radeon_vm_bo_add(rdev, &fpriv->vm,
|
|
|
|
rdev->ring_tmp_bo.bo);
|
|
|
|
r = radeon_vm_bo_set_addr(rdev, bo_va, RADEON_VA_IB_OFFSET,
|
|
|
|
RADEON_VM_PAGE_READABLE |
|
|
|
|
RADEON_VM_PAGE_SNOOPED);
|
drm/radeon: GPU virtual memory support v22
Virtual address space are per drm client (opener of /dev/drm).
Client are in charge of virtual address space, they need to
map bo into it by calling DRM_RADEON_GEM_VA ioctl.
First 16M of virtual address space is reserved by the kernel.
Once using 2 level page table we should be able to have a small
vram memory footprint for each pt (there would be one pt for all
gart, one for all vram and then one first level for each virtual
address space).
Plan include using the sub allocator for a common vm page table
area and using memcpy to copy vm page table in & out. Or use
a gart object and copy things in & out using dma.
v2: agd5f fixes:
- Add vram base offset for vram pages. The GPU physical address of a
vram page is FB_OFFSET + page offset. FB_OFFSET is 0 on discrete
cards and the physical bus address of the stolen memory on
integrated chips.
- VM_CONTEXT1_PROTECTION_FAULT_DEFAULT_ADDR covers all vmid's >= 1
v3: agd5f:
- integrate with the semaphore/multi-ring stuff
v4:
- rebase on top ttm dma & multi-ring stuff
- userspace is now in charge of the address space
- no more specific cs vm ioctl, instead cs ioctl has a new
chunk
v5:
- properly handle mem == NULL case from move_notify callback
- fix the vm cleanup path
v6:
- fix update of page table to only happen on valid mem placement
v7:
- add tlb flush for each vm context
- add flags to define mapping property (readable, writeable, snooped)
- make ring id implicit from ib->fence->ring, up to each asic callback
to then do ring specific scheduling if vm ib scheduling function
v8:
- add query for ib limit and kernel reserved virtual space
- rename vm->size to max_pfn (maximum number of page)
- update gem_va ioctl to also allow unmap operation
- bump kernel version to allow userspace to query for vm support
v9:
- rebuild page table only when bind and incrementaly depending
on bo referenced by cs and that have been moved
- allow virtual address space to grow
- use sa allocator for vram page table
- return invalid when querying vm limit on non cayman GPU
- dump vm fault register on lockup
v10: agd5f:
- Move the vm schedule_ib callback to a standalone function, remove
the callback and use the existing ib_execute callback for VM IBs.
v11:
- rebase on top of lastest Linus
v12: agd5f:
- remove spurious backslash
- set IB vm_id to 0 in radeon_ib_get()
v13: agd5f:
- fix handling of RADEON_CHUNK_ID_FLAGS
v14:
- fix va destruction
- fix suspend resume
- forbid bo to have several different va in same vm
v15:
- rebase
v16:
- cleanup left over of vm init/fini
v17: agd5f:
- cs checker
v18: agd5f:
- reworks the CS ioctl to better support multiple rings and
VM. Rather than adding a new chunk id for VM, just re-use the
IB chunk id and add a new flags for VM mode. Also define additional
dwords for the flags chunk id to define the what ring we want to use
(gfx, compute, uvd, etc.) and the priority.
v19:
- fix cs fini in weird case of no ib
- semi working flush fix for ni
- rebase on top of sa allocator changes
v20: agd5f:
- further CS ioctl cleanups from Christian's comments
v21: agd5f:
- integrate CS checker improvements
v22: agd5f:
- final cleanups for release, only allow VM CS on cayman
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-06 11:11:05 +08:00
|
|
|
if (r) {
|
|
|
|
radeon_vm_fini(rdev, &fpriv->vm);
|
|
|
|
kfree(fpriv);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
file_priv->driver_priv = fpriv;
|
|
|
|
}
|
2009-06-05 20:42:42 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-18 02:02:34 +08:00
|
|
|
/**
|
|
|
|
* radeon_driver_postclose_kms - drm callback for post close
|
|
|
|
*
|
|
|
|
* @dev: drm dev pointer
|
|
|
|
* @file_priv: drm file
|
|
|
|
*
|
|
|
|
* On device post close, tear down vm on cayman+ (all asics).
|
|
|
|
*/
|
2009-06-05 20:42:42 +08:00
|
|
|
void radeon_driver_postclose_kms(struct drm_device *dev,
|
|
|
|
struct drm_file *file_priv)
|
|
|
|
{
|
drm/radeon: GPU virtual memory support v22
Virtual address space are per drm client (opener of /dev/drm).
Client are in charge of virtual address space, they need to
map bo into it by calling DRM_RADEON_GEM_VA ioctl.
First 16M of virtual address space is reserved by the kernel.
Once using 2 level page table we should be able to have a small
vram memory footprint for each pt (there would be one pt for all
gart, one for all vram and then one first level for each virtual
address space).
Plan include using the sub allocator for a common vm page table
area and using memcpy to copy vm page table in & out. Or use
a gart object and copy things in & out using dma.
v2: agd5f fixes:
- Add vram base offset for vram pages. The GPU physical address of a
vram page is FB_OFFSET + page offset. FB_OFFSET is 0 on discrete
cards and the physical bus address of the stolen memory on
integrated chips.
- VM_CONTEXT1_PROTECTION_FAULT_DEFAULT_ADDR covers all vmid's >= 1
v3: agd5f:
- integrate with the semaphore/multi-ring stuff
v4:
- rebase on top ttm dma & multi-ring stuff
- userspace is now in charge of the address space
- no more specific cs vm ioctl, instead cs ioctl has a new
chunk
v5:
- properly handle mem == NULL case from move_notify callback
- fix the vm cleanup path
v6:
- fix update of page table to only happen on valid mem placement
v7:
- add tlb flush for each vm context
- add flags to define mapping property (readable, writeable, snooped)
- make ring id implicit from ib->fence->ring, up to each asic callback
to then do ring specific scheduling if vm ib scheduling function
v8:
- add query for ib limit and kernel reserved virtual space
- rename vm->size to max_pfn (maximum number of page)
- update gem_va ioctl to also allow unmap operation
- bump kernel version to allow userspace to query for vm support
v9:
- rebuild page table only when bind and incrementaly depending
on bo referenced by cs and that have been moved
- allow virtual address space to grow
- use sa allocator for vram page table
- return invalid when querying vm limit on non cayman GPU
- dump vm fault register on lockup
v10: agd5f:
- Move the vm schedule_ib callback to a standalone function, remove
the callback and use the existing ib_execute callback for VM IBs.
v11:
- rebase on top of lastest Linus
v12: agd5f:
- remove spurious backslash
- set IB vm_id to 0 in radeon_ib_get()
v13: agd5f:
- fix handling of RADEON_CHUNK_ID_FLAGS
v14:
- fix va destruction
- fix suspend resume
- forbid bo to have several different va in same vm
v15:
- rebase
v16:
- cleanup left over of vm init/fini
v17: agd5f:
- cs checker
v18: agd5f:
- reworks the CS ioctl to better support multiple rings and
VM. Rather than adding a new chunk id for VM, just re-use the
IB chunk id and add a new flags for VM mode. Also define additional
dwords for the flags chunk id to define the what ring we want to use
(gfx, compute, uvd, etc.) and the priority.
v19:
- fix cs fini in weird case of no ib
- semi working flush fix for ni
- rebase on top of sa allocator changes
v20: agd5f:
- further CS ioctl cleanups from Christian's comments
v21: agd5f:
- integrate CS checker improvements
v22: agd5f:
- final cleanups for release, only allow VM CS on cayman
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-06 11:11:05 +08:00
|
|
|
struct radeon_device *rdev = dev->dev_private;
|
|
|
|
|
|
|
|
/* new gpu have virtual address space support */
|
|
|
|
if (rdev->family >= CHIP_CAYMAN && file_priv->driver_priv) {
|
|
|
|
struct radeon_fpriv *fpriv = file_priv->driver_priv;
|
2012-10-09 19:31:18 +08:00
|
|
|
struct radeon_bo_va *bo_va;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r = radeon_bo_reserve(rdev->ring_tmp_bo.bo, false);
|
|
|
|
if (!r) {
|
|
|
|
bo_va = radeon_vm_bo_find(&fpriv->vm,
|
|
|
|
rdev->ring_tmp_bo.bo);
|
|
|
|
if (bo_va)
|
|
|
|
radeon_vm_bo_rmv(rdev, bo_va);
|
|
|
|
radeon_bo_unreserve(rdev->ring_tmp_bo.bo);
|
|
|
|
}
|
drm/radeon: GPU virtual memory support v22
Virtual address space are per drm client (opener of /dev/drm).
Client are in charge of virtual address space, they need to
map bo into it by calling DRM_RADEON_GEM_VA ioctl.
First 16M of virtual address space is reserved by the kernel.
Once using 2 level page table we should be able to have a small
vram memory footprint for each pt (there would be one pt for all
gart, one for all vram and then one first level for each virtual
address space).
Plan include using the sub allocator for a common vm page table
area and using memcpy to copy vm page table in & out. Or use
a gart object and copy things in & out using dma.
v2: agd5f fixes:
- Add vram base offset for vram pages. The GPU physical address of a
vram page is FB_OFFSET + page offset. FB_OFFSET is 0 on discrete
cards and the physical bus address of the stolen memory on
integrated chips.
- VM_CONTEXT1_PROTECTION_FAULT_DEFAULT_ADDR covers all vmid's >= 1
v3: agd5f:
- integrate with the semaphore/multi-ring stuff
v4:
- rebase on top ttm dma & multi-ring stuff
- userspace is now in charge of the address space
- no more specific cs vm ioctl, instead cs ioctl has a new
chunk
v5:
- properly handle mem == NULL case from move_notify callback
- fix the vm cleanup path
v6:
- fix update of page table to only happen on valid mem placement
v7:
- add tlb flush for each vm context
- add flags to define mapping property (readable, writeable, snooped)
- make ring id implicit from ib->fence->ring, up to each asic callback
to then do ring specific scheduling if vm ib scheduling function
v8:
- add query for ib limit and kernel reserved virtual space
- rename vm->size to max_pfn (maximum number of page)
- update gem_va ioctl to also allow unmap operation
- bump kernel version to allow userspace to query for vm support
v9:
- rebuild page table only when bind and incrementaly depending
on bo referenced by cs and that have been moved
- allow virtual address space to grow
- use sa allocator for vram page table
- return invalid when querying vm limit on non cayman GPU
- dump vm fault register on lockup
v10: agd5f:
- Move the vm schedule_ib callback to a standalone function, remove
the callback and use the existing ib_execute callback for VM IBs.
v11:
- rebase on top of lastest Linus
v12: agd5f:
- remove spurious backslash
- set IB vm_id to 0 in radeon_ib_get()
v13: agd5f:
- fix handling of RADEON_CHUNK_ID_FLAGS
v14:
- fix va destruction
- fix suspend resume
- forbid bo to have several different va in same vm
v15:
- rebase
v16:
- cleanup left over of vm init/fini
v17: agd5f:
- cs checker
v18: agd5f:
- reworks the CS ioctl to better support multiple rings and
VM. Rather than adding a new chunk id for VM, just re-use the
IB chunk id and add a new flags for VM mode. Also define additional
dwords for the flags chunk id to define the what ring we want to use
(gfx, compute, uvd, etc.) and the priority.
v19:
- fix cs fini in weird case of no ib
- semi working flush fix for ni
- rebase on top of sa allocator changes
v20: agd5f:
- further CS ioctl cleanups from Christian's comments
v21: agd5f:
- integrate CS checker improvements
v22: agd5f:
- final cleanups for release, only allow VM CS on cayman
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-06 11:11:05 +08:00
|
|
|
|
|
|
|
radeon_vm_fini(rdev, &fpriv->vm);
|
|
|
|
kfree(fpriv);
|
|
|
|
file_priv->driver_priv = NULL;
|
|
|
|
}
|
2009-06-05 20:42:42 +08:00
|
|
|
}
|
|
|
|
|
2012-07-18 02:02:34 +08:00
|
|
|
/**
|
|
|
|
* radeon_driver_preclose_kms - drm callback for pre close
|
|
|
|
*
|
|
|
|
* @dev: drm dev pointer
|
|
|
|
* @file_priv: drm file
|
|
|
|
*
|
|
|
|
* On device pre close, tear down hyperz and cmask filps on r1xx-r5xx
|
|
|
|
* (all asics).
|
|
|
|
*/
|
2009-06-05 20:42:42 +08:00
|
|
|
void radeon_driver_preclose_kms(struct drm_device *dev,
|
|
|
|
struct drm_file *file_priv)
|
|
|
|
{
|
2010-07-13 09:11:11 +08:00
|
|
|
struct radeon_device *rdev = dev->dev_private;
|
|
|
|
if (rdev->hyperz_filp == file_priv)
|
|
|
|
rdev->hyperz_filp = NULL;
|
2011-01-28 05:46:15 +08:00
|
|
|
if (rdev->cmask_filp == file_priv)
|
|
|
|
rdev->cmask_filp = NULL;
|
2013-04-08 18:41:29 +08:00
|
|
|
radeon_uvd_free_handles(rdev, file_priv);
|
2009-06-05 20:42:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* VBlank related functions.
|
|
|
|
*/
|
2012-07-18 02:02:34 +08:00
|
|
|
/**
|
|
|
|
* radeon_get_vblank_counter_kms - get frame count
|
|
|
|
*
|
|
|
|
* @dev: drm dev pointer
|
|
|
|
* @crtc: crtc to get the frame count from
|
|
|
|
*
|
|
|
|
* Gets the frame count on the requested crtc (all asics).
|
|
|
|
* Returns frame count on success, -EINVAL on failure.
|
|
|
|
*/
|
2009-06-05 20:42:42 +08:00
|
|
|
u32 radeon_get_vblank_counter_kms(struct drm_device *dev, int crtc)
|
|
|
|
{
|
2009-08-13 17:10:51 +08:00
|
|
|
struct radeon_device *rdev = dev->dev_private;
|
|
|
|
|
2010-04-23 11:21:58 +08:00
|
|
|
if (crtc < 0 || crtc >= rdev->num_crtc) {
|
2009-08-13 17:10:51 +08:00
|
|
|
DRM_ERROR("Invalid crtc %d\n", crtc);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return radeon_get_vblank_counter(rdev, crtc);
|
2009-06-05 20:42:42 +08:00
|
|
|
}
|
|
|
|
|
2012-07-18 02:02:34 +08:00
|
|
|
/**
|
|
|
|
* radeon_enable_vblank_kms - enable vblank interrupt
|
|
|
|
*
|
|
|
|
* @dev: drm dev pointer
|
|
|
|
* @crtc: crtc to enable vblank interrupt for
|
|
|
|
*
|
|
|
|
* Enable the interrupt on the requested crtc (all asics).
|
|
|
|
* Returns 0 on success, -EINVAL on failure.
|
|
|
|
*/
|
2009-06-05 20:42:42 +08:00
|
|
|
int radeon_enable_vblank_kms(struct drm_device *dev, int crtc)
|
|
|
|
{
|
2009-08-13 17:10:51 +08:00
|
|
|
struct radeon_device *rdev = dev->dev_private;
|
2012-05-17 07:33:30 +08:00
|
|
|
unsigned long irqflags;
|
|
|
|
int r;
|
2009-08-13 17:10:51 +08:00
|
|
|
|
2010-04-23 11:21:58 +08:00
|
|
|
if (crtc < 0 || crtc >= rdev->num_crtc) {
|
2009-08-13 17:10:51 +08:00
|
|
|
DRM_ERROR("Invalid crtc %d\n", crtc);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2012-05-17 07:33:30 +08:00
|
|
|
spin_lock_irqsave(&rdev->irq.lock, irqflags);
|
2009-08-13 17:10:51 +08:00
|
|
|
rdev->irq.crtc_vblank_int[crtc] = true;
|
2012-05-17 07:33:30 +08:00
|
|
|
r = radeon_irq_set(rdev);
|
|
|
|
spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
|
|
|
|
return r;
|
2009-06-05 20:42:42 +08:00
|
|
|
}
|
|
|
|
|
2012-07-18 02:02:34 +08:00
|
|
|
/**
|
|
|
|
* radeon_disable_vblank_kms - disable vblank interrupt
|
|
|
|
*
|
|
|
|
* @dev: drm dev pointer
|
|
|
|
* @crtc: crtc to disable vblank interrupt for
|
|
|
|
*
|
|
|
|
* Disable the interrupt on the requested crtc (all asics).
|
|
|
|
*/
|
2009-06-05 20:42:42 +08:00
|
|
|
void radeon_disable_vblank_kms(struct drm_device *dev, int crtc)
|
|
|
|
{
|
2009-08-13 17:10:51 +08:00
|
|
|
struct radeon_device *rdev = dev->dev_private;
|
2012-05-17 07:33:30 +08:00
|
|
|
unsigned long irqflags;
|
2009-08-13 17:10:51 +08:00
|
|
|
|
2010-04-23 11:21:58 +08:00
|
|
|
if (crtc < 0 || crtc >= rdev->num_crtc) {
|
2009-08-13 17:10:51 +08:00
|
|
|
DRM_ERROR("Invalid crtc %d\n", crtc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-05-17 07:33:30 +08:00
|
|
|
spin_lock_irqsave(&rdev->irq.lock, irqflags);
|
2009-08-13 17:10:51 +08:00
|
|
|
rdev->irq.crtc_vblank_int[crtc] = false;
|
|
|
|
radeon_irq_set(rdev);
|
2012-05-17 07:33:30 +08:00
|
|
|
spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
|
2009-06-05 20:42:42 +08:00
|
|
|
}
|
|
|
|
|
2012-07-18 02:02:34 +08:00
|
|
|
/**
|
|
|
|
* radeon_get_vblank_timestamp_kms - get vblank timestamp
|
|
|
|
*
|
|
|
|
* @dev: drm dev pointer
|
|
|
|
* @crtc: crtc to get the timestamp for
|
|
|
|
* @max_error: max error
|
|
|
|
* @vblank_time: time value
|
|
|
|
* @flags: flags passed to the driver
|
|
|
|
*
|
|
|
|
* Gets the timestamp on the requested crtc based on the
|
|
|
|
* scanout position. (all asics).
|
|
|
|
* Returns postive status flags on success, negative error on failure.
|
|
|
|
*/
|
2010-10-23 10:42:17 +08:00
|
|
|
int radeon_get_vblank_timestamp_kms(struct drm_device *dev, int crtc,
|
|
|
|
int *max_error,
|
|
|
|
struct timeval *vblank_time,
|
|
|
|
unsigned flags)
|
|
|
|
{
|
|
|
|
struct drm_crtc *drmcrtc;
|
|
|
|
struct radeon_device *rdev = dev->dev_private;
|
|
|
|
|
|
|
|
if (crtc < 0 || crtc >= dev->num_crtcs) {
|
|
|
|
DRM_ERROR("Invalid crtc %d\n", crtc);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get associated drm_crtc: */
|
|
|
|
drmcrtc = &rdev->mode_info.crtcs[crtc]->base;
|
|
|
|
|
|
|
|
/* Helper routine in DRM core does all the work: */
|
|
|
|
return drm_calc_vbltimestamp_from_scanoutpos(dev, crtc, max_error,
|
|
|
|
vblank_time, flags,
|
|
|
|
drmcrtc);
|
|
|
|
}
|
2009-06-05 20:42:42 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* IOCTL.
|
|
|
|
*/
|
|
|
|
int radeon_dma_ioctl_kms(struct drm_device *dev, void *data,
|
|
|
|
struct drm_file *file_priv)
|
|
|
|
{
|
|
|
|
/* Not valid in KMS. */
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define KMS_INVALID_IOCTL(name) \
|
|
|
|
int name(struct drm_device *dev, void *data, struct drm_file *file_priv)\
|
|
|
|
{ \
|
|
|
|
DRM_ERROR("invalid ioctl with kms %s\n", __func__); \
|
|
|
|
return -EINVAL; \
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* All these ioctls are invalid in kms world.
|
|
|
|
*/
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_init_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_start_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_stop_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_reset_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_idle_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_resume_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_engine_reset_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_fullscreen_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_swap_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_clear_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_vertex_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_indices_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_texture_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_stipple_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_indirect_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_vertex2_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_cmdbuf_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_getparam_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_flip_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_mem_alloc_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_mem_free_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_mem_init_heap_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_irq_emit_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_irq_wait_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_cp_setparam_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_surface_alloc_kms)
|
|
|
|
KMS_INVALID_IOCTL(radeon_surface_free_kms)
|
|
|
|
|
|
|
|
|
|
|
|
struct drm_ioctl_desc radeon_ioctls_kms[] = {
|
2010-08-14 18:20:34 +08:00
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CP_INIT, radeon_cp_init_kms, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CP_START, radeon_cp_start_kms, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CP_STOP, radeon_cp_stop_kms, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CP_RESET, radeon_cp_reset_kms, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CP_IDLE, radeon_cp_idle_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CP_RESUME, radeon_cp_resume_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_RESET, radeon_engine_reset_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_FULLSCREEN, radeon_fullscreen_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_SWAP, radeon_cp_swap_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CLEAR, radeon_cp_clear_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_VERTEX, radeon_cp_vertex_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_INDICES, radeon_cp_indices_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_TEXTURE, radeon_cp_texture_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_STIPPLE, radeon_cp_stipple_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_INDIRECT, radeon_cp_indirect_kms, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_VERTEX2, radeon_cp_vertex2_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CMDBUF, radeon_cp_cmdbuf_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GETPARAM, radeon_cp_getparam_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_FLIP, radeon_cp_flip_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_ALLOC, radeon_mem_alloc_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_FREE, radeon_mem_free_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_INIT_HEAP, radeon_mem_init_heap_kms, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_IRQ_EMIT, radeon_irq_emit_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_IRQ_WAIT, radeon_irq_wait_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_SETPARAM, radeon_cp_setparam_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_SURF_ALLOC, radeon_surface_alloc_kms, DRM_AUTH),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_SURF_FREE, radeon_surface_free_kms, DRM_AUTH),
|
2009-06-05 20:42:42 +08:00
|
|
|
/* KMS */
|
2010-08-14 18:20:34 +08:00
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_INFO, radeon_gem_info_ioctl, DRM_AUTH|DRM_UNLOCKED),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_CREATE, radeon_gem_create_ioctl, DRM_AUTH|DRM_UNLOCKED),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_MMAP, radeon_gem_mmap_ioctl, DRM_AUTH|DRM_UNLOCKED),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_SET_DOMAIN, radeon_gem_set_domain_ioctl, DRM_AUTH|DRM_UNLOCKED),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_PREAD, radeon_gem_pread_ioctl, DRM_AUTH|DRM_UNLOCKED),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_PWRITE, radeon_gem_pwrite_ioctl, DRM_AUTH|DRM_UNLOCKED),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_WAIT_IDLE, radeon_gem_wait_idle_ioctl, DRM_AUTH|DRM_UNLOCKED),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_CS, radeon_cs_ioctl, DRM_AUTH|DRM_UNLOCKED),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_INFO, radeon_info_ioctl, DRM_AUTH|DRM_UNLOCKED),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_SET_TILING, radeon_gem_set_tiling_ioctl, DRM_AUTH|DRM_UNLOCKED),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_GET_TILING, radeon_gem_get_tiling_ioctl, DRM_AUTH|DRM_UNLOCKED),
|
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_BUSY, radeon_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED),
|
drm/radeon: GPU virtual memory support v22
Virtual address space are per drm client (opener of /dev/drm).
Client are in charge of virtual address space, they need to
map bo into it by calling DRM_RADEON_GEM_VA ioctl.
First 16M of virtual address space is reserved by the kernel.
Once using 2 level page table we should be able to have a small
vram memory footprint for each pt (there would be one pt for all
gart, one for all vram and then one first level for each virtual
address space).
Plan include using the sub allocator for a common vm page table
area and using memcpy to copy vm page table in & out. Or use
a gart object and copy things in & out using dma.
v2: agd5f fixes:
- Add vram base offset for vram pages. The GPU physical address of a
vram page is FB_OFFSET + page offset. FB_OFFSET is 0 on discrete
cards and the physical bus address of the stolen memory on
integrated chips.
- VM_CONTEXT1_PROTECTION_FAULT_DEFAULT_ADDR covers all vmid's >= 1
v3: agd5f:
- integrate with the semaphore/multi-ring stuff
v4:
- rebase on top ttm dma & multi-ring stuff
- userspace is now in charge of the address space
- no more specific cs vm ioctl, instead cs ioctl has a new
chunk
v5:
- properly handle mem == NULL case from move_notify callback
- fix the vm cleanup path
v6:
- fix update of page table to only happen on valid mem placement
v7:
- add tlb flush for each vm context
- add flags to define mapping property (readable, writeable, snooped)
- make ring id implicit from ib->fence->ring, up to each asic callback
to then do ring specific scheduling if vm ib scheduling function
v8:
- add query for ib limit and kernel reserved virtual space
- rename vm->size to max_pfn (maximum number of page)
- update gem_va ioctl to also allow unmap operation
- bump kernel version to allow userspace to query for vm support
v9:
- rebuild page table only when bind and incrementaly depending
on bo referenced by cs and that have been moved
- allow virtual address space to grow
- use sa allocator for vram page table
- return invalid when querying vm limit on non cayman GPU
- dump vm fault register on lockup
v10: agd5f:
- Move the vm schedule_ib callback to a standalone function, remove
the callback and use the existing ib_execute callback for VM IBs.
v11:
- rebase on top of lastest Linus
v12: agd5f:
- remove spurious backslash
- set IB vm_id to 0 in radeon_ib_get()
v13: agd5f:
- fix handling of RADEON_CHUNK_ID_FLAGS
v14:
- fix va destruction
- fix suspend resume
- forbid bo to have several different va in same vm
v15:
- rebase
v16:
- cleanup left over of vm init/fini
v17: agd5f:
- cs checker
v18: agd5f:
- reworks the CS ioctl to better support multiple rings and
VM. Rather than adding a new chunk id for VM, just re-use the
IB chunk id and add a new flags for VM mode. Also define additional
dwords for the flags chunk id to define the what ring we want to use
(gfx, compute, uvd, etc.) and the priority.
v19:
- fix cs fini in weird case of no ib
- semi working flush fix for ni
- rebase on top of sa allocator changes
v20: agd5f:
- further CS ioctl cleanups from Christian's comments
v21: agd5f:
- integrate CS checker improvements
v22: agd5f:
- final cleanups for release, only allow VM CS on cayman
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-01-06 11:11:05 +08:00
|
|
|
DRM_IOCTL_DEF_DRV(RADEON_GEM_VA, radeon_gem_va_ioctl, DRM_AUTH|DRM_UNLOCKED),
|
2009-06-05 20:42:42 +08:00
|
|
|
};
|
|
|
|
int radeon_max_kms_ioctl = DRM_ARRAY_SIZE(radeon_ioctls_kms);
|