2009-06-05 12:42:42 +00: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
|
|
|
|
*/
|
|
|
|
#include <linux/console.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 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2009-06-05 12:42:42 +00:00
|
|
|
#include <drm/drmP.h>
|
|
|
|
#include <drm/drm_crtc_helper.h>
|
|
|
|
#include <drm/radeon_drm.h>
|
2009-09-21 04:33:58 +00:00
|
|
|
#include <linux/vgaarb.h>
|
2010-02-01 05:38:10 +00:00
|
|
|
#include <linux/vga_switcheroo.h>
|
2011-08-08 16:21:16 +00:00
|
|
|
#include <linux/efi.h>
|
2009-06-05 12:42:42 +00:00
|
|
|
#include "radeon_reg.h"
|
|
|
|
#include "radeon.h"
|
|
|
|
#include "atom.h"
|
|
|
|
|
2010-04-12 20:21:53 +00:00
|
|
|
static const char radeon_family_name[][16] = {
|
|
|
|
"R100",
|
|
|
|
"RV100",
|
|
|
|
"RS100",
|
|
|
|
"RV200",
|
|
|
|
"RS200",
|
|
|
|
"R200",
|
|
|
|
"RV250",
|
|
|
|
"RS300",
|
|
|
|
"RV280",
|
|
|
|
"R300",
|
|
|
|
"R350",
|
|
|
|
"RV350",
|
|
|
|
"RV380",
|
|
|
|
"R420",
|
|
|
|
"R423",
|
|
|
|
"RV410",
|
|
|
|
"RS400",
|
|
|
|
"RS480",
|
|
|
|
"RS600",
|
|
|
|
"RS690",
|
|
|
|
"RS740",
|
|
|
|
"RV515",
|
|
|
|
"R520",
|
|
|
|
"RV530",
|
|
|
|
"RV560",
|
|
|
|
"RV570",
|
|
|
|
"R580",
|
|
|
|
"R600",
|
|
|
|
"RV610",
|
|
|
|
"RV630",
|
|
|
|
"RV670",
|
|
|
|
"RV620",
|
|
|
|
"RV635",
|
|
|
|
"RS780",
|
|
|
|
"RS880",
|
|
|
|
"RV770",
|
|
|
|
"RV730",
|
|
|
|
"RV710",
|
|
|
|
"RV740",
|
|
|
|
"CEDAR",
|
|
|
|
"REDWOOD",
|
|
|
|
"JUNIPER",
|
|
|
|
"CYPRESS",
|
|
|
|
"HEMLOCK",
|
2010-12-03 20:34:16 +00:00
|
|
|
"PALM",
|
2011-05-31 19:42:46 +00:00
|
|
|
"SUMO",
|
|
|
|
"SUMO2",
|
2011-01-07 02:19:12 +00:00
|
|
|
"BARTS",
|
|
|
|
"TURKS",
|
|
|
|
"CAICOS",
|
2011-03-03 01:07:27 +00:00
|
|
|
"CAYMAN",
|
2012-03-20 21:18:28 +00:00
|
|
|
"ARUBA",
|
2012-03-20 21:17:59 +00:00
|
|
|
"TAHITI",
|
|
|
|
"PITCAIRN",
|
|
|
|
"VERDE",
|
2012-12-18 22:01:35 +00:00
|
|
|
"OLAND",
|
2012-07-26 22:53:55 +00:00
|
|
|
"HAINAN",
|
2013-06-07 15:36:11 +00:00
|
|
|
"BONAIRE",
|
|
|
|
"KAVERI",
|
|
|
|
"KABINI",
|
2010-04-12 20:21:53 +00:00
|
|
|
"LAST",
|
|
|
|
};
|
|
|
|
|
2013-02-26 16:26:51 +00:00
|
|
|
/**
|
|
|
|
* radeon_program_register_sequence - program an array of registers.
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
* @registers: pointer to the register array
|
|
|
|
* @array_size: size of the register array
|
|
|
|
*
|
|
|
|
* Programs an array or registers with and and or masks.
|
|
|
|
* This is a helper for setting golden registers.
|
|
|
|
*/
|
|
|
|
void radeon_program_register_sequence(struct radeon_device *rdev,
|
|
|
|
const u32 *registers,
|
|
|
|
const u32 array_size)
|
|
|
|
{
|
|
|
|
u32 tmp, reg, and_mask, or_mask;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (array_size % 3)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < array_size; i +=3) {
|
|
|
|
reg = registers[i + 0];
|
|
|
|
and_mask = registers[i + 1];
|
|
|
|
or_mask = registers[i + 2];
|
|
|
|
|
|
|
|
if (and_mask == 0xffffffff) {
|
|
|
|
tmp = or_mask;
|
|
|
|
} else {
|
|
|
|
tmp = RREG32(reg);
|
|
|
|
tmp &= ~and_mask;
|
|
|
|
tmp |= or_mask;
|
|
|
|
}
|
|
|
|
WREG32(reg, tmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_surface_init - Clear GPU surface registers.
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Clear GPU surface registers (r1xx-r5xx).
|
2009-06-23 14:12:54 +00:00
|
|
|
*/
|
2009-09-08 00:10:24 +00:00
|
|
|
void radeon_surface_init(struct radeon_device *rdev)
|
2009-06-23 14:12:54 +00:00
|
|
|
{
|
|
|
|
/* FIXME: check this out */
|
|
|
|
if (rdev->family < CHIP_R600) {
|
|
|
|
int i;
|
|
|
|
|
2009-12-09 04:15:38 +00:00
|
|
|
for (i = 0; i < RADEON_GEM_MAX_SURFACES; i++) {
|
|
|
|
if (rdev->surface_regs[i].bo)
|
|
|
|
radeon_bo_get_surface_reg(rdev->surface_regs[i].bo);
|
|
|
|
else
|
|
|
|
radeon_clear_surface_reg(rdev, i);
|
2009-06-23 14:12:54 +00:00
|
|
|
}
|
2009-06-23 23:48:08 +00:00
|
|
|
/* enable surfaces */
|
|
|
|
WREG32(RADEON_SURFACE_CNTL, 0);
|
2009-06-23 14:12:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-05 12:42:42 +00:00
|
|
|
/*
|
|
|
|
* GPU scratch registers helpers function.
|
|
|
|
*/
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_scratch_init - Init scratch register driver information.
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Init CP scratch register driver information (r1xx-r5xx)
|
|
|
|
*/
|
2009-09-08 00:10:24 +00:00
|
|
|
void radeon_scratch_init(struct radeon_device *rdev)
|
2009-06-05 12:42:42 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* FIXME: check this out */
|
|
|
|
if (rdev->family < CHIP_R300) {
|
|
|
|
rdev->scratch.num_reg = 5;
|
|
|
|
} else {
|
|
|
|
rdev->scratch.num_reg = 7;
|
|
|
|
}
|
2010-08-27 22:25:25 +00:00
|
|
|
rdev->scratch.reg_base = RADEON_SCRATCH_REG0;
|
2009-06-05 12:42:42 +00:00
|
|
|
for (i = 0; i < rdev->scratch.num_reg; i++) {
|
|
|
|
rdev->scratch.free[i] = true;
|
2010-08-27 22:25:25 +00:00
|
|
|
rdev->scratch.reg[i] = rdev->scratch.reg_base + (i * 4);
|
2009-06-05 12:42:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_scratch_get - Allocate a scratch register
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
* @reg: scratch register mmio offset
|
|
|
|
*
|
|
|
|
* Allocate a CP scratch register for use by the driver (all asics).
|
|
|
|
* Returns 0 on success or -EINVAL on failure.
|
|
|
|
*/
|
2009-06-05 12:42:42 +00:00
|
|
|
int radeon_scratch_get(struct radeon_device *rdev, uint32_t *reg)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < rdev->scratch.num_reg; i++) {
|
|
|
|
if (rdev->scratch.free[i]) {
|
|
|
|
rdev->scratch.free[i] = false;
|
|
|
|
*reg = rdev->scratch.reg[i];
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_scratch_free - Free a scratch register
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
* @reg: scratch register mmio offset
|
|
|
|
*
|
|
|
|
* Free a CP scratch register allocated for use by the driver (all asics)
|
|
|
|
*/
|
2009-06-05 12:42:42 +00:00
|
|
|
void radeon_scratch_free(struct radeon_device *rdev, uint32_t reg)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < rdev->scratch.num_reg; i++) {
|
|
|
|
if (rdev->scratch.reg[i] == reg) {
|
|
|
|
rdev->scratch.free[i] = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-04 17:47:46 +00:00
|
|
|
/*
|
|
|
|
* GPU doorbell aperture helpers function.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* radeon_doorbell_init - Init doorbell driver information.
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Init doorbell driver information (CIK)
|
|
|
|
* Returns 0 on success, error on failure.
|
|
|
|
*/
|
|
|
|
int radeon_doorbell_init(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* doorbell bar mapping */
|
|
|
|
rdev->doorbell.base = pci_resource_start(rdev->pdev, 2);
|
|
|
|
rdev->doorbell.size = pci_resource_len(rdev->pdev, 2);
|
|
|
|
|
|
|
|
/* limit to 4 MB for now */
|
|
|
|
if (rdev->doorbell.size > (4 * 1024 * 1024))
|
|
|
|
rdev->doorbell.size = 4 * 1024 * 1024;
|
|
|
|
|
|
|
|
rdev->doorbell.ptr = ioremap(rdev->doorbell.base, rdev->doorbell.size);
|
|
|
|
if (rdev->doorbell.ptr == NULL) {
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
DRM_INFO("doorbell mmio base: 0x%08X\n", (uint32_t)rdev->doorbell.base);
|
|
|
|
DRM_INFO("doorbell mmio size: %u\n", (unsigned)rdev->doorbell.size);
|
|
|
|
|
|
|
|
rdev->doorbell.num_pages = rdev->doorbell.size / PAGE_SIZE;
|
|
|
|
|
|
|
|
for (i = 0; i < rdev->doorbell.num_pages; i++) {
|
|
|
|
rdev->doorbell.free[i] = true;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* radeon_doorbell_fini - Tear down doorbell driver information.
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Tear down doorbell driver information (CIK)
|
|
|
|
*/
|
|
|
|
void radeon_doorbell_fini(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
iounmap(rdev->doorbell.ptr);
|
|
|
|
rdev->doorbell.ptr = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* radeon_doorbell_get - Allocate a doorbell page
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
* @doorbell: doorbell page number
|
|
|
|
*
|
|
|
|
* Allocate a doorbell page for use by the driver (all asics).
|
|
|
|
* Returns 0 on success or -EINVAL on failure.
|
|
|
|
*/
|
|
|
|
int radeon_doorbell_get(struct radeon_device *rdev, u32 *doorbell)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < rdev->doorbell.num_pages; i++) {
|
|
|
|
if (rdev->doorbell.free[i]) {
|
|
|
|
rdev->doorbell.free[i] = false;
|
|
|
|
*doorbell = i;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* radeon_doorbell_free - Free a doorbell page
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
* @doorbell: doorbell page number
|
|
|
|
*
|
|
|
|
* Free a doorbell page allocated for use by the driver (all asics)
|
|
|
|
*/
|
|
|
|
void radeon_doorbell_free(struct radeon_device *rdev, u32 doorbell)
|
|
|
|
{
|
|
|
|
if (doorbell < rdev->doorbell.num_pages)
|
|
|
|
rdev->doorbell.free[doorbell] = true;
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/*
|
|
|
|
* radeon_wb_*()
|
|
|
|
* Writeback is the the method by which the the GPU updates special pages
|
|
|
|
* in memory with the status of certain GPU events (fences, ring pointers,
|
|
|
|
* etc.).
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* radeon_wb_disable - Disable Writeback
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Disables Writeback (all asics). Used for suspend.
|
|
|
|
*/
|
2010-08-27 22:25:25 +00:00
|
|
|
void radeon_wb_disable(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
rdev->wb.enabled = false;
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_wb_fini - Disable Writeback and free memory
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Disables Writeback and frees the Writeback memory (all asics).
|
|
|
|
* Used at driver shutdown.
|
|
|
|
*/
|
2010-08-27 22:25:25 +00:00
|
|
|
void radeon_wb_fini(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
radeon_wb_disable(rdev);
|
|
|
|
if (rdev->wb.wb_obj) {
|
2013-06-06 21:51:21 +00:00
|
|
|
if (!radeon_bo_reserve(rdev->wb.wb_obj, false)) {
|
|
|
|
radeon_bo_kunmap(rdev->wb.wb_obj);
|
|
|
|
radeon_bo_unpin(rdev->wb.wb_obj);
|
|
|
|
radeon_bo_unreserve(rdev->wb.wb_obj);
|
|
|
|
}
|
2010-08-27 22:25:25 +00:00
|
|
|
radeon_bo_unref(&rdev->wb.wb_obj);
|
|
|
|
rdev->wb.wb = NULL;
|
|
|
|
rdev->wb.wb_obj = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_wb_init- Init Writeback driver info and allocate memory
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Disables Writeback and frees the Writeback memory (all asics).
|
|
|
|
* Used at driver startup.
|
|
|
|
* Returns 0 on success or an -error on failure.
|
|
|
|
*/
|
2010-08-27 22:25:25 +00:00
|
|
|
int radeon_wb_init(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
|
|
|
|
if (rdev->wb.wb_obj == NULL) {
|
2011-02-18 16:59:16 +00:00
|
|
|
r = radeon_bo_create(rdev, RADEON_GPU_PAGE_SIZE, PAGE_SIZE, true,
|
2012-05-10 22:33:13 +00:00
|
|
|
RADEON_GEM_DOMAIN_GTT, NULL, &rdev->wb.wb_obj);
|
2010-08-27 22:25:25 +00:00
|
|
|
if (r) {
|
|
|
|
dev_warn(rdev->dev, "(%d) create WB bo failed\n", r);
|
|
|
|
return r;
|
|
|
|
}
|
2013-06-06 21:51:21 +00:00
|
|
|
r = radeon_bo_reserve(rdev->wb.wb_obj, false);
|
|
|
|
if (unlikely(r != 0)) {
|
|
|
|
radeon_wb_fini(rdev);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
r = radeon_bo_pin(rdev->wb.wb_obj, RADEON_GEM_DOMAIN_GTT,
|
|
|
|
&rdev->wb.gpu_addr);
|
|
|
|
if (r) {
|
|
|
|
radeon_bo_unreserve(rdev->wb.wb_obj);
|
|
|
|
dev_warn(rdev->dev, "(%d) pin WB bo failed\n", r);
|
|
|
|
radeon_wb_fini(rdev);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
r = radeon_bo_kmap(rdev->wb.wb_obj, (void **)&rdev->wb.wb);
|
2010-08-27 22:25:25 +00:00
|
|
|
radeon_bo_unreserve(rdev->wb.wb_obj);
|
2013-06-06 21:51:21 +00:00
|
|
|
if (r) {
|
|
|
|
dev_warn(rdev->dev, "(%d) map WB bo failed\n", r);
|
|
|
|
radeon_wb_fini(rdev);
|
|
|
|
return r;
|
|
|
|
}
|
2010-08-27 22:25:25 +00:00
|
|
|
}
|
|
|
|
|
2011-06-13 22:02:51 +00:00
|
|
|
/* clear wb memory */
|
|
|
|
memset((char *)rdev->wb.wb, 0, RADEON_GPU_PAGE_SIZE);
|
2010-09-04 09:04:34 +00:00
|
|
|
/* disable event_write fences */
|
|
|
|
rdev->wb.use_event = false;
|
2010-08-27 22:25:25 +00:00
|
|
|
/* disabled via module param */
|
2012-05-09 13:34:47 +00:00
|
|
|
if (radeon_no_wb == 1) {
|
2010-08-27 22:25:25 +00:00
|
|
|
rdev->wb.enabled = false;
|
2012-05-09 13:34:47 +00:00
|
|
|
} else {
|
2010-08-27 22:25:25 +00:00
|
|
|
if (rdev->flags & RADEON_IS_AGP) {
|
2012-01-03 14:48:38 +00:00
|
|
|
/* often unreliable on AGP */
|
|
|
|
rdev->wb.enabled = false;
|
|
|
|
} else if (rdev->family < CHIP_R300) {
|
|
|
|
/* often unreliable on pre-r300 */
|
2010-08-27 22:25:25 +00:00
|
|
|
rdev->wb.enabled = false;
|
2010-09-04 09:04:34 +00:00
|
|
|
} else {
|
2010-08-27 22:25:25 +00:00
|
|
|
rdev->wb.enabled = true;
|
2010-09-04 09:04:34 +00:00
|
|
|
/* event_write fences are only available on r600+ */
|
2012-05-09 13:34:47 +00:00
|
|
|
if (rdev->family >= CHIP_R600) {
|
2010-09-04 09:04:34 +00:00
|
|
|
rdev->wb.use_event = true;
|
2012-05-09 13:34:47 +00:00
|
|
|
}
|
2010-09-04 09:04:34 +00:00
|
|
|
}
|
2010-08-27 22:25:25 +00:00
|
|
|
}
|
2012-05-03 21:06:28 +00:00
|
|
|
/* always use writeback/events on NI, APUs */
|
|
|
|
if (rdev->family >= CHIP_PALM) {
|
2011-01-07 02:19:27 +00:00
|
|
|
rdev->wb.enabled = true;
|
|
|
|
rdev->wb.use_event = true;
|
|
|
|
}
|
2010-08-27 22:25:25 +00:00
|
|
|
|
|
|
|
dev_info(rdev->dev, "WB %sabled\n", rdev->wb.enabled ? "en" : "dis");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
drm/radeon/kms: simplify memory controller setup V2
Get rid of _location and use _start/_end also simplify the
computation of vram_start|end & gtt_start|end. For R1XX-R2XX
we place VRAM at the same address of PCI aperture, those GPU
shouldn't have much memory and seems to behave better when
setup that way. For R3XX and newer we place VRAM at 0. For
R6XX-R7XX AGP we place VRAM before or after AGP aperture this
might limit to limit the VRAM size but it's very unlikely.
For IGP we don't change the VRAM placement.
Tested on (compiz,quake3,suspend/resume):
PCI/PCIE:RV280,R420,RV515,RV570,RV610,RV710
AGP:RV100,RV280,R420,RV350,RV620(RPB*),RV730
IGP:RS480(RPB*),RS690,RS780(RPB*),RS880
RPB: resume previously broken
V2 correct commit message to reflect more accurately the bug
and move VRAM placement to 0 for most of the GPU to avoid
limiting VRAM.
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-02-17 21:54:29 +00:00
|
|
|
/**
|
|
|
|
* radeon_vram_location - try to find VRAM location
|
|
|
|
* @rdev: radeon device structure holding all necessary informations
|
|
|
|
* @mc: memory controller structure holding memory informations
|
|
|
|
* @base: base address at which to put VRAM
|
|
|
|
*
|
|
|
|
* Function will place try to place VRAM at base address provided
|
|
|
|
* as parameter (which is so far either PCI aperture address or
|
|
|
|
* for IGP TOM base address).
|
|
|
|
*
|
|
|
|
* If there is not enough space to fit the unvisible VRAM in the 32bits
|
|
|
|
* address space then we limit the VRAM size to the aperture.
|
|
|
|
*
|
|
|
|
* If we are using AGP and if the AGP aperture doesn't allow us to have
|
|
|
|
* room for all the VRAM than we restrict the VRAM to the PCI aperture
|
|
|
|
* size and print a warning.
|
|
|
|
*
|
|
|
|
* This function will never fails, worst case are limiting VRAM.
|
|
|
|
*
|
|
|
|
* Note: GTT start, end, size should be initialized before calling this
|
|
|
|
* function on AGP platform.
|
|
|
|
*
|
2011-03-31 01:57:33 +00:00
|
|
|
* Note: We don't explicitly enforce VRAM start to be aligned on VRAM size,
|
drm/radeon/kms: simplify memory controller setup V2
Get rid of _location and use _start/_end also simplify the
computation of vram_start|end & gtt_start|end. For R1XX-R2XX
we place VRAM at the same address of PCI aperture, those GPU
shouldn't have much memory and seems to behave better when
setup that way. For R3XX and newer we place VRAM at 0. For
R6XX-R7XX AGP we place VRAM before or after AGP aperture this
might limit to limit the VRAM size but it's very unlikely.
For IGP we don't change the VRAM placement.
Tested on (compiz,quake3,suspend/resume):
PCI/PCIE:RV280,R420,RV515,RV570,RV610,RV710
AGP:RV100,RV280,R420,RV350,RV620(RPB*),RV730
IGP:RS480(RPB*),RS690,RS780(RPB*),RS880
RPB: resume previously broken
V2 correct commit message to reflect more accurately the bug
and move VRAM placement to 0 for most of the GPU to avoid
limiting VRAM.
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-02-17 21:54:29 +00:00
|
|
|
* this shouldn't be a problem as we are using the PCI aperture as a reference.
|
|
|
|
* Otherwise this would be needed for rv280, all r3xx, and all r4xx, but
|
|
|
|
* not IGP.
|
|
|
|
*
|
|
|
|
* Note: we use mc_vram_size as on some board we need to program the mc to
|
|
|
|
* cover the whole aperture even if VRAM size is inferior to aperture size
|
|
|
|
* Novell bug 204882 + along with lots of ubuntu ones
|
|
|
|
*
|
|
|
|
* Note: when limiting vram it's safe to overwritte real_vram_size because
|
|
|
|
* we are not in case where real_vram_size is inferior to mc_vram_size (ie
|
|
|
|
* note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu
|
|
|
|
* ones)
|
|
|
|
*
|
|
|
|
* Note: IGP TOM addr should be the same as the aperture addr, we don't
|
|
|
|
* explicitly check for that thought.
|
|
|
|
*
|
|
|
|
* FIXME: when reducing VRAM size align new size on power of 2.
|
2009-06-05 12:42:42 +00:00
|
|
|
*/
|
drm/radeon/kms: simplify memory controller setup V2
Get rid of _location and use _start/_end also simplify the
computation of vram_start|end & gtt_start|end. For R1XX-R2XX
we place VRAM at the same address of PCI aperture, those GPU
shouldn't have much memory and seems to behave better when
setup that way. For R3XX and newer we place VRAM at 0. For
R6XX-R7XX AGP we place VRAM before or after AGP aperture this
might limit to limit the VRAM size but it's very unlikely.
For IGP we don't change the VRAM placement.
Tested on (compiz,quake3,suspend/resume):
PCI/PCIE:RV280,R420,RV515,RV570,RV610,RV710
AGP:RV100,RV280,R420,RV350,RV620(RPB*),RV730
IGP:RS480(RPB*),RS690,RS780(RPB*),RS880
RPB: resume previously broken
V2 correct commit message to reflect more accurately the bug
and move VRAM placement to 0 for most of the GPU to avoid
limiting VRAM.
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-02-17 21:54:29 +00:00
|
|
|
void radeon_vram_location(struct radeon_device *rdev, struct radeon_mc *mc, u64 base)
|
2009-06-05 12:42:42 +00:00
|
|
|
{
|
2012-10-23 13:53:16 +00:00
|
|
|
uint64_t limit = (uint64_t)radeon_vram_limit << 20;
|
|
|
|
|
drm/radeon/kms: simplify memory controller setup V2
Get rid of _location and use _start/_end also simplify the
computation of vram_start|end & gtt_start|end. For R1XX-R2XX
we place VRAM at the same address of PCI aperture, those GPU
shouldn't have much memory and seems to behave better when
setup that way. For R3XX and newer we place VRAM at 0. For
R6XX-R7XX AGP we place VRAM before or after AGP aperture this
might limit to limit the VRAM size but it's very unlikely.
For IGP we don't change the VRAM placement.
Tested on (compiz,quake3,suspend/resume):
PCI/PCIE:RV280,R420,RV515,RV570,RV610,RV710
AGP:RV100,RV280,R420,RV350,RV620(RPB*),RV730
IGP:RS480(RPB*),RS690,RS780(RPB*),RS880
RPB: resume previously broken
V2 correct commit message to reflect more accurately the bug
and move VRAM placement to 0 for most of the GPU to avoid
limiting VRAM.
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-02-17 21:54:29 +00:00
|
|
|
mc->vram_start = base;
|
2013-04-08 15:13:01 +00:00
|
|
|
if (mc->mc_vram_size > (rdev->mc.mc_mask - base + 1)) {
|
drm/radeon/kms: simplify memory controller setup V2
Get rid of _location and use _start/_end also simplify the
computation of vram_start|end & gtt_start|end. For R1XX-R2XX
we place VRAM at the same address of PCI aperture, those GPU
shouldn't have much memory and seems to behave better when
setup that way. For R3XX and newer we place VRAM at 0. For
R6XX-R7XX AGP we place VRAM before or after AGP aperture this
might limit to limit the VRAM size but it's very unlikely.
For IGP we don't change the VRAM placement.
Tested on (compiz,quake3,suspend/resume):
PCI/PCIE:RV280,R420,RV515,RV570,RV610,RV710
AGP:RV100,RV280,R420,RV350,RV620(RPB*),RV730
IGP:RS480(RPB*),RS690,RS780(RPB*),RS880
RPB: resume previously broken
V2 correct commit message to reflect more accurately the bug
and move VRAM placement to 0 for most of the GPU to avoid
limiting VRAM.
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-02-17 21:54:29 +00:00
|
|
|
dev_warn(rdev->dev, "limiting VRAM to PCI aperture size\n");
|
|
|
|
mc->real_vram_size = mc->aper_size;
|
|
|
|
mc->mc_vram_size = mc->aper_size;
|
|
|
|
}
|
|
|
|
mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
|
2010-08-16 15:54:36 +00:00
|
|
|
if (rdev->flags & RADEON_IS_AGP && mc->vram_end > mc->gtt_start && mc->vram_start <= mc->gtt_end) {
|
drm/radeon/kms: simplify memory controller setup V2
Get rid of _location and use _start/_end also simplify the
computation of vram_start|end & gtt_start|end. For R1XX-R2XX
we place VRAM at the same address of PCI aperture, those GPU
shouldn't have much memory and seems to behave better when
setup that way. For R3XX and newer we place VRAM at 0. For
R6XX-R7XX AGP we place VRAM before or after AGP aperture this
might limit to limit the VRAM size but it's very unlikely.
For IGP we don't change the VRAM placement.
Tested on (compiz,quake3,suspend/resume):
PCI/PCIE:RV280,R420,RV515,RV570,RV610,RV710
AGP:RV100,RV280,R420,RV350,RV620(RPB*),RV730
IGP:RS480(RPB*),RS690,RS780(RPB*),RS880
RPB: resume previously broken
V2 correct commit message to reflect more accurately the bug
and move VRAM placement to 0 for most of the GPU to avoid
limiting VRAM.
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-02-17 21:54:29 +00:00
|
|
|
dev_warn(rdev->dev, "limiting VRAM to PCI aperture size\n");
|
|
|
|
mc->real_vram_size = mc->aper_size;
|
|
|
|
mc->mc_vram_size = mc->aper_size;
|
|
|
|
}
|
|
|
|
mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
|
2012-10-23 13:53:16 +00:00
|
|
|
if (limit && limit < mc->real_vram_size)
|
|
|
|
mc->real_vram_size = limit;
|
2010-12-03 19:37:21 +00:00
|
|
|
dev_info(rdev->dev, "VRAM: %lluM 0x%016llX - 0x%016llX (%lluM used)\n",
|
drm/radeon/kms: simplify memory controller setup V2
Get rid of _location and use _start/_end also simplify the
computation of vram_start|end & gtt_start|end. For R1XX-R2XX
we place VRAM at the same address of PCI aperture, those GPU
shouldn't have much memory and seems to behave better when
setup that way. For R3XX and newer we place VRAM at 0. For
R6XX-R7XX AGP we place VRAM before or after AGP aperture this
might limit to limit the VRAM size but it's very unlikely.
For IGP we don't change the VRAM placement.
Tested on (compiz,quake3,suspend/resume):
PCI/PCIE:RV280,R420,RV515,RV570,RV610,RV710
AGP:RV100,RV280,R420,RV350,RV620(RPB*),RV730
IGP:RS480(RPB*),RS690,RS780(RPB*),RS880
RPB: resume previously broken
V2 correct commit message to reflect more accurately the bug
and move VRAM placement to 0 for most of the GPU to avoid
limiting VRAM.
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-02-17 21:54:29 +00:00
|
|
|
mc->mc_vram_size >> 20, mc->vram_start,
|
|
|
|
mc->vram_end, mc->real_vram_size >> 20);
|
|
|
|
}
|
2009-06-05 12:42:42 +00:00
|
|
|
|
drm/radeon/kms: simplify memory controller setup V2
Get rid of _location and use _start/_end also simplify the
computation of vram_start|end & gtt_start|end. For R1XX-R2XX
we place VRAM at the same address of PCI aperture, those GPU
shouldn't have much memory and seems to behave better when
setup that way. For R3XX and newer we place VRAM at 0. For
R6XX-R7XX AGP we place VRAM before or after AGP aperture this
might limit to limit the VRAM size but it's very unlikely.
For IGP we don't change the VRAM placement.
Tested on (compiz,quake3,suspend/resume):
PCI/PCIE:RV280,R420,RV515,RV570,RV610,RV710
AGP:RV100,RV280,R420,RV350,RV620(RPB*),RV730
IGP:RS480(RPB*),RS690,RS780(RPB*),RS880
RPB: resume previously broken
V2 correct commit message to reflect more accurately the bug
and move VRAM placement to 0 for most of the GPU to avoid
limiting VRAM.
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-02-17 21:54:29 +00:00
|
|
|
/**
|
|
|
|
* radeon_gtt_location - try to find GTT location
|
|
|
|
* @rdev: radeon device structure holding all necessary informations
|
|
|
|
* @mc: memory controller structure holding memory informations
|
|
|
|
*
|
|
|
|
* Function will place try to place GTT before or after VRAM.
|
|
|
|
*
|
|
|
|
* If GTT size is bigger than space left then we ajust GTT size.
|
|
|
|
* Thus function will never fails.
|
|
|
|
*
|
|
|
|
* FIXME: when reducing GTT size align new size on power of 2.
|
|
|
|
*/
|
|
|
|
void radeon_gtt_location(struct radeon_device *rdev, struct radeon_mc *mc)
|
|
|
|
{
|
|
|
|
u64 size_af, size_bf;
|
|
|
|
|
2013-04-08 15:13:01 +00:00
|
|
|
size_af = ((rdev->mc.mc_mask - mc->vram_end) + mc->gtt_base_align) & ~mc->gtt_base_align;
|
2010-07-15 14:51:10 +00:00
|
|
|
size_bf = mc->vram_start & ~mc->gtt_base_align;
|
drm/radeon/kms: simplify memory controller setup V2
Get rid of _location and use _start/_end also simplify the
computation of vram_start|end & gtt_start|end. For R1XX-R2XX
we place VRAM at the same address of PCI aperture, those GPU
shouldn't have much memory and seems to behave better when
setup that way. For R3XX and newer we place VRAM at 0. For
R6XX-R7XX AGP we place VRAM before or after AGP aperture this
might limit to limit the VRAM size but it's very unlikely.
For IGP we don't change the VRAM placement.
Tested on (compiz,quake3,suspend/resume):
PCI/PCIE:RV280,R420,RV515,RV570,RV610,RV710
AGP:RV100,RV280,R420,RV350,RV620(RPB*),RV730
IGP:RS480(RPB*),RS690,RS780(RPB*),RS880
RPB: resume previously broken
V2 correct commit message to reflect more accurately the bug
and move VRAM placement to 0 for most of the GPU to avoid
limiting VRAM.
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-02-17 21:54:29 +00:00
|
|
|
if (size_bf > size_af) {
|
|
|
|
if (mc->gtt_size > size_bf) {
|
|
|
|
dev_warn(rdev->dev, "limiting GTT\n");
|
|
|
|
mc->gtt_size = size_bf;
|
2009-06-05 12:42:42 +00:00
|
|
|
}
|
2010-07-15 14:51:10 +00:00
|
|
|
mc->gtt_start = (mc->vram_start & ~mc->gtt_base_align) - mc->gtt_size;
|
2009-06-05 12:42:42 +00:00
|
|
|
} else {
|
drm/radeon/kms: simplify memory controller setup V2
Get rid of _location and use _start/_end also simplify the
computation of vram_start|end & gtt_start|end. For R1XX-R2XX
we place VRAM at the same address of PCI aperture, those GPU
shouldn't have much memory and seems to behave better when
setup that way. For R3XX and newer we place VRAM at 0. For
R6XX-R7XX AGP we place VRAM before or after AGP aperture this
might limit to limit the VRAM size but it's very unlikely.
For IGP we don't change the VRAM placement.
Tested on (compiz,quake3,suspend/resume):
PCI/PCIE:RV280,R420,RV515,RV570,RV610,RV710
AGP:RV100,RV280,R420,RV350,RV620(RPB*),RV730
IGP:RS480(RPB*),RS690,RS780(RPB*),RS880
RPB: resume previously broken
V2 correct commit message to reflect more accurately the bug
and move VRAM placement to 0 for most of the GPU to avoid
limiting VRAM.
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-02-17 21:54:29 +00:00
|
|
|
if (mc->gtt_size > size_af) {
|
|
|
|
dev_warn(rdev->dev, "limiting GTT\n");
|
|
|
|
mc->gtt_size = size_af;
|
|
|
|
}
|
2010-07-15 14:51:10 +00:00
|
|
|
mc->gtt_start = (mc->vram_end + 1 + mc->gtt_base_align) & ~mc->gtt_base_align;
|
2009-06-05 12:42:42 +00:00
|
|
|
}
|
drm/radeon/kms: simplify memory controller setup V2
Get rid of _location and use _start/_end also simplify the
computation of vram_start|end & gtt_start|end. For R1XX-R2XX
we place VRAM at the same address of PCI aperture, those GPU
shouldn't have much memory and seems to behave better when
setup that way. For R3XX and newer we place VRAM at 0. For
R6XX-R7XX AGP we place VRAM before or after AGP aperture this
might limit to limit the VRAM size but it's very unlikely.
For IGP we don't change the VRAM placement.
Tested on (compiz,quake3,suspend/resume):
PCI/PCIE:RV280,R420,RV515,RV570,RV610,RV710
AGP:RV100,RV280,R420,RV350,RV620(RPB*),RV730
IGP:RS480(RPB*),RS690,RS780(RPB*),RS880
RPB: resume previously broken
V2 correct commit message to reflect more accurately the bug
and move VRAM placement to 0 for most of the GPU to avoid
limiting VRAM.
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-02-17 21:54:29 +00:00
|
|
|
mc->gtt_end = mc->gtt_start + mc->gtt_size - 1;
|
2010-12-03 19:37:21 +00:00
|
|
|
dev_info(rdev->dev, "GTT: %lluM 0x%016llX - 0x%016llX\n",
|
drm/radeon/kms: simplify memory controller setup V2
Get rid of _location and use _start/_end also simplify the
computation of vram_start|end & gtt_start|end. For R1XX-R2XX
we place VRAM at the same address of PCI aperture, those GPU
shouldn't have much memory and seems to behave better when
setup that way. For R3XX and newer we place VRAM at 0. For
R6XX-R7XX AGP we place VRAM before or after AGP aperture this
might limit to limit the VRAM size but it's very unlikely.
For IGP we don't change the VRAM placement.
Tested on (compiz,quake3,suspend/resume):
PCI/PCIE:RV280,R420,RV515,RV570,RV610,RV710
AGP:RV100,RV280,R420,RV350,RV620(RPB*),RV730
IGP:RS480(RPB*),RS690,RS780(RPB*),RS880
RPB: resume previously broken
V2 correct commit message to reflect more accurately the bug
and move VRAM placement to 0 for most of the GPU to avoid
limiting VRAM.
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-02-17 21:54:29 +00:00
|
|
|
mc->gtt_size >> 20, mc->gtt_start, mc->gtt_end);
|
2009-06-05 12:42:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* GPU helpers function.
|
|
|
|
*/
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_card_posted - check if the hw has already been initialized
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Check if the asic has been initialized (all asics).
|
|
|
|
* Used at driver startup.
|
|
|
|
* Returns true if initialized or false if not.
|
|
|
|
*/
|
2009-09-11 13:35:22 +00:00
|
|
|
bool radeon_card_posted(struct radeon_device *rdev)
|
2009-06-05 12:42:42 +00:00
|
|
|
{
|
|
|
|
uint32_t reg;
|
|
|
|
|
2013-05-22 17:29:33 +00:00
|
|
|
/* required for EFI mode on macbook2,1 which uses an r5xx asic */
|
2012-11-14 09:42:35 +00:00
|
|
|
if (efi_enabled(EFI_BOOT) &&
|
2013-05-22 17:29:33 +00:00
|
|
|
(rdev->pdev->subsystem_vendor == PCI_VENDOR_ID_APPLE) &&
|
|
|
|
(rdev->family < CHIP_R600))
|
2011-08-08 16:21:16 +00:00
|
|
|
return false;
|
|
|
|
|
2013-05-22 15:30:34 +00:00
|
|
|
if (ASIC_IS_NODCE(rdev))
|
|
|
|
goto check_memsize;
|
|
|
|
|
2009-06-05 12:42:42 +00:00
|
|
|
/* first check CRTCs */
|
2013-05-22 15:22:51 +00:00
|
|
|
if (ASIC_IS_DCE4(rdev)) {
|
2010-11-22 22:56:28 +00:00
|
|
|
reg = RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC0_REGISTER_OFFSET) |
|
|
|
|
RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC1_REGISTER_OFFSET);
|
2013-05-22 15:22:51 +00:00
|
|
|
if (rdev->num_crtc >= 4) {
|
|
|
|
reg |= RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC2_REGISTER_OFFSET) |
|
|
|
|
RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC3_REGISTER_OFFSET);
|
|
|
|
}
|
|
|
|
if (rdev->num_crtc >= 6) {
|
|
|
|
reg |= RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC4_REGISTER_OFFSET) |
|
|
|
|
RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC5_REGISTER_OFFSET);
|
|
|
|
}
|
2010-01-12 22:54:34 +00:00
|
|
|
if (reg & EVERGREEN_CRTC_MASTER_EN)
|
|
|
|
return true;
|
|
|
|
} else if (ASIC_IS_AVIVO(rdev)) {
|
2009-06-05 12:42:42 +00:00
|
|
|
reg = RREG32(AVIVO_D1CRTC_CONTROL) |
|
|
|
|
RREG32(AVIVO_D2CRTC_CONTROL);
|
|
|
|
if (reg & AVIVO_CRTC_EN) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
reg = RREG32(RADEON_CRTC_GEN_CNTL) |
|
|
|
|
RREG32(RADEON_CRTC2_GEN_CNTL);
|
|
|
|
if (reg & RADEON_CRTC_EN) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-22 15:30:34 +00:00
|
|
|
check_memsize:
|
2009-06-05 12:42:42 +00:00
|
|
|
/* then check MEM_SIZE, in case the crtcs are off */
|
|
|
|
if (rdev->family >= CHIP_R600)
|
|
|
|
reg = RREG32(R600_CONFIG_MEMSIZE);
|
|
|
|
else
|
|
|
|
reg = RREG32(RADEON_CONFIG_MEMSIZE);
|
|
|
|
|
|
|
|
if (reg)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_update_bandwidth_info - update display bandwidth params
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Used when sclk/mclk are switched or display modes are set.
|
|
|
|
* params are used to calculate display watermarks (all asics)
|
|
|
|
*/
|
2010-03-17 00:54:38 +00:00
|
|
|
void radeon_update_bandwidth_info(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
fixed20_12 a;
|
2010-08-10 16:33:20 +00:00
|
|
|
u32 sclk = rdev->pm.current_sclk;
|
|
|
|
u32 mclk = rdev->pm.current_mclk;
|
2010-03-17 00:54:38 +00:00
|
|
|
|
2010-08-10 16:33:20 +00:00
|
|
|
/* sclk/mclk in Mhz */
|
|
|
|
a.full = dfixed_const(100);
|
|
|
|
rdev->pm.sclk.full = dfixed_const(sclk);
|
|
|
|
rdev->pm.sclk.full = dfixed_div(rdev->pm.sclk, a);
|
|
|
|
rdev->pm.mclk.full = dfixed_const(mclk);
|
|
|
|
rdev->pm.mclk.full = dfixed_div(rdev->pm.mclk, a);
|
2010-03-17 00:54:38 +00:00
|
|
|
|
2010-08-10 16:33:20 +00:00
|
|
|
if (rdev->flags & RADEON_IS_IGP) {
|
2010-04-28 01:46:42 +00:00
|
|
|
a.full = dfixed_const(16);
|
2010-03-17 00:54:38 +00:00
|
|
|
/* core_bandwidth = sclk(Mhz) * 16 */
|
2010-04-28 01:46:42 +00:00
|
|
|
rdev->pm.core_bandwidth.full = dfixed_div(rdev->pm.sclk, a);
|
2010-03-17 00:54:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_boot_test_post_card - check and possibly initialize the hw
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Check if the asic is initialized and if not, attempt to initialize
|
|
|
|
* it (all asics).
|
|
|
|
* Returns true if initialized or false if not.
|
|
|
|
*/
|
2009-12-01 04:06:31 +00:00
|
|
|
bool radeon_boot_test_post_card(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
if (radeon_card_posted(rdev))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (rdev->bios) {
|
|
|
|
DRM_INFO("GPU not posted. posting now...\n");
|
|
|
|
if (rdev->is_atom_bios)
|
|
|
|
atom_asic_init(rdev->mode_info.atom_context);
|
|
|
|
else
|
|
|
|
radeon_combios_asic_init(rdev->ddev);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
dev_err(rdev->dev, "Card not posted and no BIOS - ignoring\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_dummy_page_init - init dummy page used by the driver
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Allocate the dummy page used by the driver (all asics).
|
|
|
|
* This dummy page is used by the driver as a filler for gart entries
|
|
|
|
* when pages are taken out of the GART
|
|
|
|
* Returns 0 on sucess, -ENOMEM on failure.
|
|
|
|
*/
|
2009-09-08 00:10:24 +00:00
|
|
|
int radeon_dummy_page_init(struct radeon_device *rdev)
|
|
|
|
{
|
2010-02-05 06:00:07 +00:00
|
|
|
if (rdev->dummy_page.page)
|
|
|
|
return 0;
|
2009-09-08 00:10:24 +00:00
|
|
|
rdev->dummy_page.page = alloc_page(GFP_DMA32 | GFP_KERNEL | __GFP_ZERO);
|
|
|
|
if (rdev->dummy_page.page == NULL)
|
|
|
|
return -ENOMEM;
|
|
|
|
rdev->dummy_page.addr = pci_map_page(rdev->pdev, rdev->dummy_page.page,
|
|
|
|
0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
|
2010-08-10 04:48:58 +00:00
|
|
|
if (pci_dma_mapping_error(rdev->pdev, rdev->dummy_page.addr)) {
|
|
|
|
dev_err(&rdev->pdev->dev, "Failed to DMA MAP the dummy page\n");
|
2009-09-08 00:10:24 +00:00
|
|
|
__free_page(rdev->dummy_page.page);
|
|
|
|
rdev->dummy_page.page = NULL;
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_dummy_page_fini - free dummy page used by the driver
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Frees the dummy page used by the driver (all asics).
|
|
|
|
*/
|
2009-09-08 00:10:24 +00:00
|
|
|
void radeon_dummy_page_fini(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
if (rdev->dummy_page.page == NULL)
|
|
|
|
return;
|
|
|
|
pci_unmap_page(rdev->pdev, rdev->dummy_page.addr,
|
|
|
|
PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
|
|
|
|
__free_page(rdev->dummy_page.page);
|
|
|
|
rdev->dummy_page.page = NULL;
|
|
|
|
}
|
|
|
|
|
2009-06-05 12:42:42 +00:00
|
|
|
|
|
|
|
/* ATOM accessor methods */
|
2012-07-17 18:02:33 +00:00
|
|
|
/*
|
|
|
|
* ATOM is an interpreted byte code stored in tables in the vbios. The
|
|
|
|
* driver registers callbacks to access registers and the interpreter
|
|
|
|
* in the driver parses the tables and executes then to program specific
|
|
|
|
* actions (set display modes, asic init, etc.). See radeon_atombios.c,
|
|
|
|
* atombios.h, and atom.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* cail_pll_read - read PLL register
|
|
|
|
*
|
|
|
|
* @info: atom card_info pointer
|
|
|
|
* @reg: PLL register offset
|
|
|
|
*
|
|
|
|
* Provides a PLL register accessor for the atom interpreter (r4xx+).
|
|
|
|
* Returns the value of the PLL register.
|
|
|
|
*/
|
2009-06-05 12:42:42 +00:00
|
|
|
static uint32_t cail_pll_read(struct card_info *info, uint32_t reg)
|
|
|
|
{
|
|
|
|
struct radeon_device *rdev = info->dev->dev_private;
|
|
|
|
uint32_t r;
|
|
|
|
|
|
|
|
r = rdev->pll_rreg(rdev, reg);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* cail_pll_write - write PLL register
|
|
|
|
*
|
|
|
|
* @info: atom card_info pointer
|
|
|
|
* @reg: PLL register offset
|
|
|
|
* @val: value to write to the pll register
|
|
|
|
*
|
|
|
|
* Provides a PLL register accessor for the atom interpreter (r4xx+).
|
|
|
|
*/
|
2009-06-05 12:42:42 +00:00
|
|
|
static void cail_pll_write(struct card_info *info, uint32_t reg, uint32_t val)
|
|
|
|
{
|
|
|
|
struct radeon_device *rdev = info->dev->dev_private;
|
|
|
|
|
|
|
|
rdev->pll_wreg(rdev, reg, val);
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* cail_mc_read - read MC (Memory Controller) register
|
|
|
|
*
|
|
|
|
* @info: atom card_info pointer
|
|
|
|
* @reg: MC register offset
|
|
|
|
*
|
|
|
|
* Provides an MC register accessor for the atom interpreter (r4xx+).
|
|
|
|
* Returns the value of the MC register.
|
|
|
|
*/
|
2009-06-05 12:42:42 +00:00
|
|
|
static uint32_t cail_mc_read(struct card_info *info, uint32_t reg)
|
|
|
|
{
|
|
|
|
struct radeon_device *rdev = info->dev->dev_private;
|
|
|
|
uint32_t r;
|
|
|
|
|
|
|
|
r = rdev->mc_rreg(rdev, reg);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* cail_mc_write - write MC (Memory Controller) register
|
|
|
|
*
|
|
|
|
* @info: atom card_info pointer
|
|
|
|
* @reg: MC register offset
|
|
|
|
* @val: value to write to the pll register
|
|
|
|
*
|
|
|
|
* Provides a MC register accessor for the atom interpreter (r4xx+).
|
|
|
|
*/
|
2009-06-05 12:42:42 +00:00
|
|
|
static void cail_mc_write(struct card_info *info, uint32_t reg, uint32_t val)
|
|
|
|
{
|
|
|
|
struct radeon_device *rdev = info->dev->dev_private;
|
|
|
|
|
|
|
|
rdev->mc_wreg(rdev, reg, val);
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* cail_reg_write - write MMIO register
|
|
|
|
*
|
|
|
|
* @info: atom card_info pointer
|
|
|
|
* @reg: MMIO register offset
|
|
|
|
* @val: value to write to the pll register
|
|
|
|
*
|
|
|
|
* Provides a MMIO register accessor for the atom interpreter (r4xx+).
|
|
|
|
*/
|
2009-06-05 12:42:42 +00:00
|
|
|
static void cail_reg_write(struct card_info *info, uint32_t reg, uint32_t val)
|
|
|
|
{
|
|
|
|
struct radeon_device *rdev = info->dev->dev_private;
|
|
|
|
|
|
|
|
WREG32(reg*4, val);
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* cail_reg_read - read MMIO register
|
|
|
|
*
|
|
|
|
* @info: atom card_info pointer
|
|
|
|
* @reg: MMIO register offset
|
|
|
|
*
|
|
|
|
* Provides an MMIO register accessor for the atom interpreter (r4xx+).
|
|
|
|
* Returns the value of the MMIO register.
|
|
|
|
*/
|
2009-06-05 12:42:42 +00:00
|
|
|
static uint32_t cail_reg_read(struct card_info *info, uint32_t reg)
|
|
|
|
{
|
|
|
|
struct radeon_device *rdev = info->dev->dev_private;
|
|
|
|
uint32_t r;
|
|
|
|
|
|
|
|
r = RREG32(reg*4);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* cail_ioreg_write - write IO register
|
|
|
|
*
|
|
|
|
* @info: atom card_info pointer
|
|
|
|
* @reg: IO register offset
|
|
|
|
* @val: value to write to the pll register
|
|
|
|
*
|
|
|
|
* Provides a IO register accessor for the atom interpreter (r4xx+).
|
|
|
|
*/
|
2010-06-30 15:52:50 +00:00
|
|
|
static void cail_ioreg_write(struct card_info *info, uint32_t reg, uint32_t val)
|
|
|
|
{
|
|
|
|
struct radeon_device *rdev = info->dev->dev_private;
|
|
|
|
|
|
|
|
WREG32_IO(reg*4, val);
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* cail_ioreg_read - read IO register
|
|
|
|
*
|
|
|
|
* @info: atom card_info pointer
|
|
|
|
* @reg: IO register offset
|
|
|
|
*
|
|
|
|
* Provides an IO register accessor for the atom interpreter (r4xx+).
|
|
|
|
* Returns the value of the IO register.
|
|
|
|
*/
|
2010-06-30 15:52:50 +00:00
|
|
|
static uint32_t cail_ioreg_read(struct card_info *info, uint32_t reg)
|
|
|
|
{
|
|
|
|
struct radeon_device *rdev = info->dev->dev_private;
|
|
|
|
uint32_t r;
|
|
|
|
|
|
|
|
r = RREG32_IO(reg*4);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_atombios_init - init the driver info and callbacks for atombios
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Initializes the driver info and register access callbacks for the
|
|
|
|
* ATOM interpreter (r4xx+).
|
|
|
|
* Returns 0 on sucess, -ENOMEM on failure.
|
|
|
|
* Called at driver startup.
|
|
|
|
*/
|
2009-06-05 12:42:42 +00:00
|
|
|
int radeon_atombios_init(struct radeon_device *rdev)
|
|
|
|
{
|
2009-10-27 19:08:01 +00:00
|
|
|
struct card_info *atom_card_info =
|
|
|
|
kzalloc(sizeof(struct card_info), GFP_KERNEL);
|
|
|
|
|
|
|
|
if (!atom_card_info)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
rdev->mode_info.atom_card_info = atom_card_info;
|
|
|
|
atom_card_info->dev = rdev->ddev;
|
|
|
|
atom_card_info->reg_read = cail_reg_read;
|
|
|
|
atom_card_info->reg_write = cail_reg_write;
|
2010-06-30 15:52:50 +00:00
|
|
|
/* needed for iio ops */
|
|
|
|
if (rdev->rio_mem) {
|
|
|
|
atom_card_info->ioreg_read = cail_ioreg_read;
|
|
|
|
atom_card_info->ioreg_write = cail_ioreg_write;
|
|
|
|
} else {
|
|
|
|
DRM_ERROR("Unable to find PCI I/O BAR; using MMIO for ATOM IIO\n");
|
|
|
|
atom_card_info->ioreg_read = cail_reg_read;
|
|
|
|
atom_card_info->ioreg_write = cail_reg_write;
|
|
|
|
}
|
2009-10-27 19:08:01 +00:00
|
|
|
atom_card_info->mc_read = cail_mc_read;
|
|
|
|
atom_card_info->mc_write = cail_mc_write;
|
|
|
|
atom_card_info->pll_read = cail_pll_read;
|
|
|
|
atom_card_info->pll_write = cail_pll_write;
|
|
|
|
|
|
|
|
rdev->mode_info.atom_context = atom_parse(atom_card_info, rdev->bios);
|
2013-02-11 21:34:32 +00:00
|
|
|
if (!rdev->mode_info.atom_context) {
|
|
|
|
radeon_atombios_fini(rdev);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2009-12-16 23:00:46 +00:00
|
|
|
mutex_init(&rdev->mode_info.atom_context->mutex);
|
2009-06-05 12:42:42 +00:00
|
|
|
radeon_atom_initialize_bios_scratch_regs(rdev->ddev);
|
2009-11-16 20:29:46 +00:00
|
|
|
atom_allocate_fb_scratch(rdev->mode_info.atom_context);
|
2009-06-05 12:42:42 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_atombios_fini - free the driver info and callbacks for atombios
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Frees the driver info and register access callbacks for the ATOM
|
|
|
|
* interpreter (r4xx+).
|
|
|
|
* Called at driver shutdown.
|
|
|
|
*/
|
2009-06-05 12:42:42 +00:00
|
|
|
void radeon_atombios_fini(struct radeon_device *rdev)
|
|
|
|
{
|
2009-12-09 16:39:16 +00:00
|
|
|
if (rdev->mode_info.atom_context) {
|
|
|
|
kfree(rdev->mode_info.atom_context->scratch);
|
|
|
|
}
|
2013-02-11 21:34:32 +00:00
|
|
|
kfree(rdev->mode_info.atom_context);
|
|
|
|
rdev->mode_info.atom_context = NULL;
|
2009-10-27 19:08:01 +00:00
|
|
|
kfree(rdev->mode_info.atom_card_info);
|
2013-02-11 21:34:32 +00:00
|
|
|
rdev->mode_info.atom_card_info = NULL;
|
2009-06-05 12:42:42 +00:00
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/* COMBIOS */
|
|
|
|
/*
|
|
|
|
* COMBIOS is the bios format prior to ATOM. It provides
|
|
|
|
* command tables similar to ATOM, but doesn't have a unified
|
|
|
|
* parser. See radeon_combios.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* radeon_combios_init - init the driver info for combios
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Initializes the driver info for combios (r1xx-r3xx).
|
|
|
|
* Returns 0 on sucess.
|
|
|
|
* Called at driver startup.
|
|
|
|
*/
|
2009-06-05 12:42:42 +00:00
|
|
|
int radeon_combios_init(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
radeon_combios_initialize_bios_scratch_regs(rdev->ddev);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_combios_fini - free the driver info for combios
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Frees the driver info for combios (r1xx-r3xx).
|
|
|
|
* Called at driver shutdown.
|
|
|
|
*/
|
2009-06-05 12:42:42 +00:00
|
|
|
void radeon_combios_fini(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/* if we get transitioned to only one device, take VGA back */
|
|
|
|
/**
|
|
|
|
* radeon_vga_set_decode - enable/disable vga decode
|
|
|
|
*
|
|
|
|
* @cookie: radeon_device pointer
|
|
|
|
* @state: enable/disable vga decode
|
|
|
|
*
|
|
|
|
* Enable/disable vga decode (all asics).
|
|
|
|
* Returns VGA resource flags.
|
|
|
|
*/
|
2009-09-21 04:33:58 +00:00
|
|
|
static unsigned int radeon_vga_set_decode(void *cookie, bool state)
|
|
|
|
{
|
|
|
|
struct radeon_device *rdev = cookie;
|
|
|
|
radeon_vga_set_state(rdev, state);
|
|
|
|
if (state)
|
|
|
|
return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
|
|
|
|
VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
|
|
|
|
else
|
|
|
|
return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
|
|
|
|
}
|
2009-10-08 04:03:05 +00:00
|
|
|
|
2012-10-23 13:53:16 +00:00
|
|
|
/**
|
|
|
|
* radeon_check_pot_argument - check that argument is a power of two
|
|
|
|
*
|
|
|
|
* @arg: value to check
|
|
|
|
*
|
|
|
|
* Validates that a certain argument is a power of two (all asics).
|
|
|
|
* Returns true if argument is valid.
|
|
|
|
*/
|
|
|
|
static bool radeon_check_pot_argument(int arg)
|
|
|
|
{
|
|
|
|
return (arg & (arg - 1)) == 0;
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_check_arguments - validate module params
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Validates certain module parameters and updates
|
|
|
|
* the associated values used by the driver (all asics).
|
|
|
|
*/
|
2012-08-31 17:43:50 +00:00
|
|
|
static void radeon_check_arguments(struct radeon_device *rdev)
|
2009-12-11 20:18:34 +00:00
|
|
|
{
|
|
|
|
/* vramlimit must be a power of two */
|
2012-10-23 13:53:16 +00:00
|
|
|
if (!radeon_check_pot_argument(radeon_vram_limit)) {
|
2009-12-11 20:18:34 +00:00
|
|
|
dev_warn(rdev->dev, "vram limit (%d) must be a power of 2\n",
|
|
|
|
radeon_vram_limit);
|
|
|
|
radeon_vram_limit = 0;
|
|
|
|
}
|
2012-10-23 13:53:16 +00:00
|
|
|
|
2013-07-05 21:16:51 +00:00
|
|
|
if (radeon_gart_size == -1) {
|
|
|
|
/* default to a larger gart size on newer asics */
|
|
|
|
if (rdev->family >= CHIP_RV770)
|
|
|
|
radeon_gart_size = 1024;
|
|
|
|
else
|
|
|
|
radeon_gart_size = 512;
|
|
|
|
}
|
2009-12-11 20:18:34 +00:00
|
|
|
/* gtt size must be power of two and greater or equal to 32M */
|
2012-10-23 13:53:16 +00:00
|
|
|
if (radeon_gart_size < 32) {
|
2013-07-05 21:16:51 +00:00
|
|
|
dev_warn(rdev->dev, "gart size (%d) too small\n",
|
2009-12-11 20:18:34 +00:00
|
|
|
radeon_gart_size);
|
2013-07-05 21:16:51 +00:00
|
|
|
if (rdev->family >= CHIP_RV770)
|
|
|
|
radeon_gart_size = 1024;
|
|
|
|
else
|
|
|
|
radeon_gart_size = 512;
|
2012-10-23 13:53:16 +00:00
|
|
|
} else if (!radeon_check_pot_argument(radeon_gart_size)) {
|
2009-12-11 20:18:34 +00:00
|
|
|
dev_warn(rdev->dev, "gart size (%d) must be a power of 2\n",
|
|
|
|
radeon_gart_size);
|
2013-07-05 21:16:51 +00:00
|
|
|
if (rdev->family >= CHIP_RV770)
|
|
|
|
radeon_gart_size = 1024;
|
|
|
|
else
|
|
|
|
radeon_gart_size = 512;
|
2009-12-11 20:18:34 +00:00
|
|
|
}
|
2012-10-23 13:53:16 +00:00
|
|
|
rdev->mc.gtt_size = (uint64_t)radeon_gart_size << 20;
|
|
|
|
|
2009-12-11 20:18:34 +00:00
|
|
|
/* AGP mode can only be -1, 1, 2, 4, 8 */
|
|
|
|
switch (radeon_agpmode) {
|
|
|
|
case -1:
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 4:
|
|
|
|
case 8:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
dev_warn(rdev->dev, "invalid AGP mode %d (valid mode: "
|
|
|
|
"-1, 0, 1, 2, 4, 8)\n", radeon_agpmode);
|
|
|
|
radeon_agpmode = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-07 14:18:47 +00:00
|
|
|
/**
|
|
|
|
* radeon_switcheroo_quirk_long_wakeup - return true if longer d3 delay is
|
|
|
|
* needed for waking up.
|
|
|
|
*
|
|
|
|
* @pdev: pci dev pointer
|
|
|
|
*/
|
|
|
|
static bool radeon_switcheroo_quirk_long_wakeup(struct pci_dev *pdev)
|
|
|
|
{
|
|
|
|
|
|
|
|
/* 6600m in a macbook pro */
|
|
|
|
if (pdev->subsystem_vendor == PCI_VENDOR_ID_APPLE &&
|
|
|
|
pdev->subsystem_device == 0x00e2) {
|
|
|
|
printk(KERN_INFO "radeon: quirking longer d3 wakeup delay\n");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_switcheroo_set_state - set switcheroo state
|
|
|
|
*
|
|
|
|
* @pdev: pci dev pointer
|
|
|
|
* @state: vga switcheroo state
|
|
|
|
*
|
|
|
|
* Callback for the switcheroo driver. Suspends or resumes the
|
|
|
|
* the asics before or after it is powered up using ACPI methods.
|
|
|
|
*/
|
2010-02-01 05:38:10 +00:00
|
|
|
static void radeon_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = pci_get_drvdata(pdev);
|
|
|
|
pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
|
|
|
|
if (state == VGA_SWITCHEROO_ON) {
|
2013-01-07 14:18:47 +00:00
|
|
|
unsigned d3_delay = dev->pdev->d3_delay;
|
|
|
|
|
2010-02-01 05:38:10 +00:00
|
|
|
printk(KERN_INFO "radeon: switched on\n");
|
|
|
|
/* don't suspend or resume card normally */
|
2010-12-06 23:20:40 +00:00
|
|
|
dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
|
2013-01-07 14:18:47 +00:00
|
|
|
|
|
|
|
if (d3_delay < 20 && radeon_switcheroo_quirk_long_wakeup(pdev))
|
|
|
|
dev->pdev->d3_delay = 20;
|
|
|
|
|
2010-02-01 05:38:10 +00:00
|
|
|
radeon_resume_kms(dev);
|
2013-01-07 14:18:47 +00:00
|
|
|
|
|
|
|
dev->pdev->d3_delay = d3_delay;
|
|
|
|
|
2010-12-06 23:20:40 +00:00
|
|
|
dev->switch_power_state = DRM_SWITCH_POWER_ON;
|
2010-05-31 23:09:06 +00:00
|
|
|
drm_kms_helper_poll_enable(dev);
|
2010-02-01 05:38:10 +00:00
|
|
|
} else {
|
|
|
|
printk(KERN_INFO "radeon: switched off\n");
|
2010-05-31 23:09:06 +00:00
|
|
|
drm_kms_helper_poll_disable(dev);
|
2010-12-06 23:20:40 +00:00
|
|
|
dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
|
2010-02-01 05:38:10 +00:00
|
|
|
radeon_suspend_kms(dev, pmm);
|
2010-12-06 23:20:40 +00:00
|
|
|
dev->switch_power_state = DRM_SWITCH_POWER_OFF;
|
2010-02-01 05:38:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_switcheroo_can_switch - see if switcheroo state can change
|
|
|
|
*
|
|
|
|
* @pdev: pci dev pointer
|
|
|
|
*
|
|
|
|
* Callback for the switcheroo driver. Check of the switcheroo
|
|
|
|
* state can be changed.
|
|
|
|
* Returns true if the state can be changed, false if not.
|
|
|
|
*/
|
2010-02-01 05:38:10 +00:00
|
|
|
static bool radeon_switcheroo_can_switch(struct pci_dev *pdev)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = pci_get_drvdata(pdev);
|
|
|
|
bool can_switch;
|
|
|
|
|
|
|
|
spin_lock(&dev->count_lock);
|
|
|
|
can_switch = (dev->open_count == 0);
|
|
|
|
spin_unlock(&dev->count_lock);
|
|
|
|
return can_switch;
|
|
|
|
}
|
|
|
|
|
2012-05-11 05:51:17 +00:00
|
|
|
static const struct vga_switcheroo_client_ops radeon_switcheroo_ops = {
|
|
|
|
.set_gpu_state = radeon_switcheroo_set_state,
|
|
|
|
.reprobe = NULL,
|
|
|
|
.can_switch = radeon_switcheroo_can_switch,
|
|
|
|
};
|
2010-02-01 05:38:10 +00:00
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_device_init - initialize the driver
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
* @pdev: drm dev pointer
|
|
|
|
* @pdev: pci dev pointer
|
|
|
|
* @flags: driver flags
|
|
|
|
*
|
|
|
|
* Initializes the driver info and hw (all asics).
|
|
|
|
* Returns 0 for success or an error on failure.
|
|
|
|
* Called at driver startup.
|
|
|
|
*/
|
2009-06-05 12:42:42 +00:00
|
|
|
int radeon_device_init(struct radeon_device *rdev,
|
|
|
|
struct drm_device *ddev,
|
|
|
|
struct pci_dev *pdev,
|
|
|
|
uint32_t flags)
|
|
|
|
{
|
2010-06-30 15:52:50 +00:00
|
|
|
int r, i;
|
2009-07-10 12:36:26 +00:00
|
|
|
int dma_bits;
|
2009-06-05 12:42:42 +00:00
|
|
|
|
|
|
|
rdev->shutdown = false;
|
2009-09-11 13:35:22 +00:00
|
|
|
rdev->dev = &pdev->dev;
|
2009-06-05 12:42:42 +00:00
|
|
|
rdev->ddev = ddev;
|
|
|
|
rdev->pdev = pdev;
|
|
|
|
rdev->flags = flags;
|
|
|
|
rdev->family = flags & RADEON_FAMILY_MASK;
|
|
|
|
rdev->is_atom_bios = false;
|
|
|
|
rdev->usec_timeout = RADEON_MAX_USEC_TIMEOUT;
|
2013-07-05 21:16:51 +00:00
|
|
|
rdev->mc.gtt_size = 512 * 1024 * 1024;
|
2009-09-16 13:24:21 +00:00
|
|
|
rdev->accel_working = false;
|
2012-07-17 18:02:30 +00:00
|
|
|
/* set up ring ids */
|
|
|
|
for (i = 0; i < RADEON_NUM_RINGS; i++) {
|
|
|
|
rdev->ring[i].idx = i;
|
|
|
|
}
|
2010-04-12 20:21:53 +00:00
|
|
|
|
2011-07-29 14:28:59 +00:00
|
|
|
DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X).\n",
|
|
|
|
radeon_family_name[rdev->family], pdev->vendor, pdev->device,
|
|
|
|
pdev->subsystem_vendor, pdev->subsystem_device);
|
2010-04-12 20:21:53 +00:00
|
|
|
|
2009-06-05 12:42:42 +00:00
|
|
|
/* mutex initialization are all done here so we
|
|
|
|
* can recall function without having locking issues */
|
2012-05-09 13:34:45 +00:00
|
|
|
mutex_init(&rdev->ring_lock);
|
2009-12-23 08:23:21 +00:00
|
|
|
mutex_init(&rdev->dc_hw_i2c_mutex);
|
2012-05-16 19:45:24 +00:00
|
|
|
atomic_set(&rdev->ih.lock, 0);
|
2009-11-20 13:29:23 +00:00
|
|
|
mutex_init(&rdev->gem.mutex);
|
2009-12-22 22:02:16 +00:00
|
|
|
mutex_init(&rdev->pm.mutex);
|
2012-08-09 14:34:17 +00:00
|
|
|
mutex_init(&rdev->gpu_clock_mutex);
|
2013-08-06 16:40:16 +00:00
|
|
|
mutex_init(&rdev->srbm_mutex);
|
2012-05-11 12:57:18 +00:00
|
|
|
init_rwsem(&rdev->pm.mclk_lock);
|
2012-07-02 16:45:19 +00:00
|
|
|
init_rwsem(&rdev->exclusive_lock);
|
2010-01-07 23:22:47 +00:00
|
|
|
init_waitqueue_head(&rdev->irq.vblank_queue);
|
2012-05-10 17:00:06 +00:00
|
|
|
r = radeon_gem_init(rdev);
|
|
|
|
if (r)
|
|
|
|
return r;
|
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 03:11:05 +00:00
|
|
|
/* initialize vm here */
|
2012-05-09 08:07:08 +00:00
|
|
|
mutex_init(&rdev->vm_manager.lock);
|
2012-10-08 13:45:46 +00:00
|
|
|
/* Adjust VM size here.
|
|
|
|
* Currently set to 4GB ((1 << 20) 4k pages).
|
|
|
|
* Max GPUVM size for cayman and SI is 40 bits.
|
|
|
|
*/
|
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 03:11:05 +00:00
|
|
|
rdev->vm_manager.max_pfn = 1 << 20;
|
|
|
|
INIT_LIST_HEAD(&rdev->vm_manager.lru_vm);
|
2009-06-05 12:42:42 +00:00
|
|
|
|
2009-09-14 16:29:49 +00:00
|
|
|
/* Set asic functions */
|
|
|
|
r = radeon_asic_init(rdev);
|
2009-12-11 20:18:34 +00:00
|
|
|
if (r)
|
2009-09-14 16:29:49 +00:00
|
|
|
return r;
|
2009-12-11 20:18:34 +00:00
|
|
|
radeon_check_arguments(rdev);
|
2009-09-14 16:29:49 +00:00
|
|
|
|
2010-03-21 18:02:25 +00:00
|
|
|
/* all of the newer IGP chips have an internal gart
|
|
|
|
* However some rs4xx report as AGP, so remove that here.
|
|
|
|
*/
|
|
|
|
if ((rdev->family >= CHIP_RS400) &&
|
|
|
|
(rdev->flags & RADEON_IS_IGP)) {
|
|
|
|
rdev->flags &= ~RADEON_IS_AGP;
|
|
|
|
}
|
|
|
|
|
2009-11-30 16:47:59 +00:00
|
|
|
if (rdev->flags & RADEON_IS_AGP && radeon_agpmode == -1) {
|
2009-10-06 17:04:29 +00:00
|
|
|
radeon_agp_disable(rdev);
|
2009-06-05 12:42:42 +00:00
|
|
|
}
|
|
|
|
|
2013-04-08 15:13:01 +00:00
|
|
|
/* Set the internal MC address mask
|
|
|
|
* This is the max address of the GPU's
|
|
|
|
* internal address space.
|
|
|
|
*/
|
|
|
|
if (rdev->family >= CHIP_CAYMAN)
|
|
|
|
rdev->mc.mc_mask = 0xffffffffffULL; /* 40 bit MC */
|
|
|
|
else if (rdev->family >= CHIP_CEDAR)
|
|
|
|
rdev->mc.mc_mask = 0xfffffffffULL; /* 36 bit MC */
|
|
|
|
else
|
|
|
|
rdev->mc.mc_mask = 0xffffffffULL; /* 32 bit MC */
|
|
|
|
|
2009-07-10 12:36:26 +00:00
|
|
|
/* set DMA mask + need_dma32 flags.
|
|
|
|
* PCIE - can handle 40-bits.
|
2011-10-05 14:02:57 +00:00
|
|
|
* IGP - can handle 40-bits
|
2009-07-10 12:36:26 +00:00
|
|
|
* AGP - generally dma32 is safest
|
2011-10-05 14:02:57 +00:00
|
|
|
* PCI - dma32 for legacy pci gart, 40 bits on newer asics
|
2009-07-10 12:36:26 +00:00
|
|
|
*/
|
|
|
|
rdev->need_dma32 = false;
|
|
|
|
if (rdev->flags & RADEON_IS_AGP)
|
|
|
|
rdev->need_dma32 = true;
|
2011-10-05 14:02:57 +00:00
|
|
|
if ((rdev->flags & RADEON_IS_PCI) &&
|
2012-08-28 20:50:22 +00:00
|
|
|
(rdev->family <= CHIP_RS740))
|
2009-07-10 12:36:26 +00:00
|
|
|
rdev->need_dma32 = true;
|
|
|
|
|
|
|
|
dma_bits = rdev->need_dma32 ? 32 : 40;
|
|
|
|
r = pci_set_dma_mask(rdev->pdev, DMA_BIT_MASK(dma_bits));
|
2009-06-05 12:42:42 +00:00
|
|
|
if (r) {
|
2011-06-08 10:04:45 +00:00
|
|
|
rdev->need_dma32 = true;
|
2011-10-17 21:15:08 +00:00
|
|
|
dma_bits = 32;
|
2009-06-05 12:42:42 +00:00
|
|
|
printk(KERN_WARNING "radeon: No suitable DMA available.\n");
|
|
|
|
}
|
2011-10-17 21:15:08 +00:00
|
|
|
r = pci_set_consistent_dma_mask(rdev->pdev, DMA_BIT_MASK(dma_bits));
|
|
|
|
if (r) {
|
|
|
|
pci_set_consistent_dma_mask(rdev->pdev, DMA_BIT_MASK(32));
|
|
|
|
printk(KERN_WARNING "radeon: No coherent DMA available.\n");
|
|
|
|
}
|
2009-06-05 12:42:42 +00:00
|
|
|
|
|
|
|
/* Registers mapping */
|
|
|
|
/* TODO: block userspace mapping of io register */
|
2012-12-02 13:06:15 +00:00
|
|
|
spin_lock_init(&rdev->mmio_idx_lock);
|
2012-12-19 02:24:37 +00:00
|
|
|
if (rdev->family >= CHIP_BONAIRE) {
|
|
|
|
rdev->rmmio_base = pci_resource_start(rdev->pdev, 5);
|
|
|
|
rdev->rmmio_size = pci_resource_len(rdev->pdev, 5);
|
|
|
|
} else {
|
|
|
|
rdev->rmmio_base = pci_resource_start(rdev->pdev, 2);
|
|
|
|
rdev->rmmio_size = pci_resource_len(rdev->pdev, 2);
|
|
|
|
}
|
2009-06-05 12:42:42 +00:00
|
|
|
rdev->rmmio = ioremap(rdev->rmmio_base, rdev->rmmio_size);
|
|
|
|
if (rdev->rmmio == NULL) {
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)rdev->rmmio_base);
|
|
|
|
DRM_INFO("register mmio size: %u\n", (unsigned)rdev->rmmio_size);
|
|
|
|
|
2013-03-04 17:47:46 +00:00
|
|
|
/* doorbell bar mapping */
|
|
|
|
if (rdev->family >= CHIP_BONAIRE)
|
|
|
|
radeon_doorbell_init(rdev);
|
|
|
|
|
2010-06-30 15:52:50 +00:00
|
|
|
/* io port mapping */
|
|
|
|
for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
|
|
|
|
if (pci_resource_flags(rdev->pdev, i) & IORESOURCE_IO) {
|
|
|
|
rdev->rio_mem_size = pci_resource_len(rdev->pdev, i);
|
|
|
|
rdev->rio_mem = pci_iomap(rdev->pdev, i, rdev->rio_mem_size);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (rdev->rio_mem == NULL)
|
|
|
|
DRM_ERROR("Unable to find PCI I/O BAR\n");
|
|
|
|
|
2009-09-21 04:33:58 +00:00
|
|
|
/* if we have > 1 VGA cards, then disable the radeon VGA resources */
|
2009-10-28 01:09:58 +00:00
|
|
|
/* this will fail for cards that aren't VGA class devices, just
|
|
|
|
* ignore it */
|
|
|
|
vga_client_register(rdev->pdev, rdev, NULL, radeon_vga_set_decode);
|
2012-05-11 05:51:17 +00:00
|
|
|
vga_switcheroo_register_client(rdev->pdev, &radeon_switcheroo_ops);
|
2009-09-21 04:33:58 +00:00
|
|
|
|
2009-09-08 00:10:24 +00:00
|
|
|
r = radeon_init(rdev);
|
2009-10-06 17:04:29 +00:00
|
|
|
if (r)
|
2009-09-08 00:10:24 +00:00
|
|
|
return r;
|
|
|
|
|
2012-07-07 10:47:58 +00:00
|
|
|
r = radeon_ib_ring_tests(rdev);
|
|
|
|
if (r)
|
|
|
|
DRM_ERROR("ib ring test failed (%d).\n", r);
|
|
|
|
|
2013-04-26 02:29:27 +00:00
|
|
|
r = radeon_gem_debugfs_init(rdev);
|
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("registering gem debugfs failed (%d).\n", r);
|
|
|
|
}
|
|
|
|
|
2009-10-06 17:04:29 +00:00
|
|
|
if (rdev->flags & RADEON_IS_AGP && !rdev->accel_working) {
|
|
|
|
/* Acceleration not working on AGP card try again
|
|
|
|
* with fallback to PCI or PCIE GART
|
|
|
|
*/
|
2010-03-09 14:45:11 +00:00
|
|
|
radeon_asic_reset(rdev);
|
2009-10-06 17:04:29 +00:00
|
|
|
radeon_fini(rdev);
|
|
|
|
radeon_agp_disable(rdev);
|
|
|
|
r = radeon_init(rdev);
|
2009-09-14 16:29:49 +00:00
|
|
|
if (r)
|
|
|
|
return r;
|
2009-06-05 12:42:42 +00:00
|
|
|
}
|
2011-09-27 10:31:00 +00:00
|
|
|
if ((radeon_testing & 1)) {
|
2009-07-21 09:23:57 +00:00
|
|
|
radeon_test_moves(rdev);
|
|
|
|
}
|
2011-09-27 10:31:00 +00:00
|
|
|
if ((radeon_testing & 2)) {
|
|
|
|
radeon_test_syncing(rdev);
|
|
|
|
}
|
2009-06-05 12:42:42 +00:00
|
|
|
if (radeon_benchmarking) {
|
2011-10-13 03:29:39 +00:00
|
|
|
radeon_benchmark(rdev, radeon_benchmarking);
|
2009-06-05 12:42:42 +00:00
|
|
|
}
|
2009-09-10 19:46:48 +00:00
|
|
|
return 0;
|
2009-06-05 12:42:42 +00:00
|
|
|
}
|
|
|
|
|
2011-10-24 12:54:54 +00:00
|
|
|
static void radeon_debugfs_remove_files(struct radeon_device *rdev);
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_device_fini - tear down the driver
|
|
|
|
*
|
|
|
|
* @rdev: radeon_device pointer
|
|
|
|
*
|
|
|
|
* Tear down the driver info (all asics).
|
|
|
|
* Called at driver shutdown.
|
|
|
|
*/
|
2009-06-05 12:42:42 +00:00
|
|
|
void radeon_device_fini(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
DRM_INFO("radeon: finishing device.\n");
|
|
|
|
rdev->shutdown = true;
|
2010-03-09 14:45:12 +00:00
|
|
|
/* evict vram memory */
|
|
|
|
radeon_bo_evict_vram(rdev);
|
2009-10-01 16:02:11 +00:00
|
|
|
radeon_fini(rdev);
|
2010-02-01 05:38:10 +00:00
|
|
|
vga_switcheroo_unregister_client(rdev->pdev);
|
2009-10-08 04:03:05 +00:00
|
|
|
vga_client_register(rdev->pdev, NULL, NULL, NULL);
|
2010-07-08 16:24:52 +00:00
|
|
|
if (rdev->rio_mem)
|
|
|
|
pci_iounmap(rdev->pdev, rdev->rio_mem);
|
2010-06-30 15:52:50 +00:00
|
|
|
rdev->rio_mem = NULL;
|
2009-06-05 12:42:42 +00:00
|
|
|
iounmap(rdev->rmmio);
|
|
|
|
rdev->rmmio = NULL;
|
2013-03-04 17:47:46 +00:00
|
|
|
if (rdev->family >= CHIP_BONAIRE)
|
|
|
|
radeon_doorbell_fini(rdev);
|
2011-10-24 12:54:54 +00:00
|
|
|
radeon_debugfs_remove_files(rdev);
|
2009-06-05 12:42:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Suspend & resume.
|
|
|
|
*/
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_suspend_kms - initiate device suspend
|
|
|
|
*
|
|
|
|
* @pdev: drm dev pointer
|
|
|
|
* @state: suspend state
|
|
|
|
*
|
|
|
|
* Puts the hw in the suspend state (all asics).
|
|
|
|
* Returns 0 for success or an error on failure.
|
|
|
|
* Called at driver suspend.
|
|
|
|
*/
|
2009-06-05 12:42:42 +00:00
|
|
|
int radeon_suspend_kms(struct drm_device *dev, pm_message_t state)
|
|
|
|
{
|
2009-12-30 01:18:30 +00:00
|
|
|
struct radeon_device *rdev;
|
2009-06-05 12:42:42 +00:00
|
|
|
struct drm_crtc *crtc;
|
2010-06-02 16:08:41 +00:00
|
|
|
struct drm_connector *connector;
|
2011-08-25 17:39:48 +00:00
|
|
|
int i, r;
|
2012-12-17 16:04:32 +00:00
|
|
|
bool force_completion = false;
|
2009-06-05 12:42:42 +00:00
|
|
|
|
2009-12-30 01:18:30 +00:00
|
|
|
if (dev == NULL || dev->dev_private == NULL) {
|
2009-06-05 12:42:42 +00:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
if (state.event == PM_EVENT_PRETHAW) {
|
|
|
|
return 0;
|
|
|
|
}
|
2009-12-30 01:18:30 +00:00
|
|
|
rdev = dev->dev_private;
|
|
|
|
|
2010-12-06 23:20:40 +00:00
|
|
|
if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
|
2010-02-01 05:38:10 +00:00
|
|
|
return 0;
|
2010-06-02 16:08:41 +00:00
|
|
|
|
2012-02-01 01:06:25 +00:00
|
|
|
drm_kms_helper_poll_disable(dev);
|
|
|
|
|
2010-06-02 16:08:41 +00:00
|
|
|
/* turn off display hw */
|
|
|
|
list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
|
|
|
|
drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
|
|
|
|
}
|
|
|
|
|
2009-06-05 12:42:42 +00:00
|
|
|
/* unpin the front buffers */
|
|
|
|
list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
|
|
|
|
struct radeon_framebuffer *rfb = to_radeon_framebuffer(crtc->fb);
|
2009-11-20 13:29:23 +00:00
|
|
|
struct radeon_bo *robj;
|
2009-06-05 12:42:42 +00:00
|
|
|
|
|
|
|
if (rfb == NULL || rfb->obj == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
2011-02-18 16:59:17 +00:00
|
|
|
robj = gem_to_radeon_bo(rfb->obj);
|
2010-03-30 05:34:13 +00:00
|
|
|
/* don't unpin kernel fb objects */
|
|
|
|
if (!radeon_fbdev_robj_is_fb(rdev, robj)) {
|
2009-11-20 13:29:23 +00:00
|
|
|
r = radeon_bo_reserve(robj, false);
|
2010-03-30 05:34:13 +00:00
|
|
|
if (r == 0) {
|
2009-11-20 13:29:23 +00:00
|
|
|
radeon_bo_unpin(robj);
|
|
|
|
radeon_bo_unreserve(robj);
|
|
|
|
}
|
2009-06-05 12:42:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* evict vram memory */
|
2009-11-20 13:29:23 +00:00
|
|
|
radeon_bo_evict_vram(rdev);
|
2012-05-09 13:34:48 +00:00
|
|
|
|
|
|
|
mutex_lock(&rdev->ring_lock);
|
2009-06-05 12:42:42 +00:00
|
|
|
/* wait for gpu to finish processing current batch */
|
2012-12-17 16:04:32 +00:00
|
|
|
for (i = 0; i < RADEON_NUM_RINGS; i++) {
|
|
|
|
r = radeon_fence_wait_empty_locked(rdev, i);
|
|
|
|
if (r) {
|
|
|
|
/* delay GPU reset to resume */
|
|
|
|
force_completion = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (force_completion) {
|
|
|
|
radeon_fence_driver_force_completion(rdev);
|
|
|
|
}
|
2012-05-09 13:34:48 +00:00
|
|
|
mutex_unlock(&rdev->ring_lock);
|
2009-06-05 12:42:42 +00:00
|
|
|
|
2009-09-15 02:21:01 +00:00
|
|
|
radeon_save_bios_scratch_regs(rdev);
|
|
|
|
|
2010-05-07 19:10:16 +00:00
|
|
|
radeon_pm_suspend(rdev);
|
2009-10-01 16:02:11 +00:00
|
|
|
radeon_suspend(rdev);
|
2009-12-04 21:56:37 +00:00
|
|
|
radeon_hpd_fini(rdev);
|
2009-06-05 12:42:42 +00:00
|
|
|
/* evict remaining vram memory */
|
2009-11-20 13:29:23 +00:00
|
|
|
radeon_bo_evict_vram(rdev);
|
2009-06-05 12:42:42 +00:00
|
|
|
|
2010-05-21 16:48:54 +00:00
|
|
|
radeon_agp_suspend(rdev);
|
|
|
|
|
2009-06-05 12:42:42 +00:00
|
|
|
pci_save_state(dev->pdev);
|
|
|
|
if (state.event == PM_EVENT_SUSPEND) {
|
|
|
|
/* Shut down the device */
|
|
|
|
pci_disable_device(dev->pdev);
|
|
|
|
pci_set_power_state(dev->pdev, PCI_D3hot);
|
|
|
|
}
|
2011-01-25 23:07:35 +00:00
|
|
|
console_lock();
|
2010-03-30 05:34:13 +00:00
|
|
|
radeon_fbdev_set_suspend(rdev, 1);
|
2011-01-25 23:07:35 +00:00
|
|
|
console_unlock();
|
2009-06-05 12:42:42 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_resume_kms - initiate device resume
|
|
|
|
*
|
|
|
|
* @pdev: drm dev pointer
|
|
|
|
*
|
|
|
|
* Bring the hw back to operating state (all asics).
|
|
|
|
* Returns 0 for success or an error on failure.
|
|
|
|
* Called at driver resume.
|
|
|
|
*/
|
2009-06-05 12:42:42 +00:00
|
|
|
int radeon_resume_kms(struct drm_device *dev)
|
|
|
|
{
|
2010-06-11 18:40:56 +00:00
|
|
|
struct drm_connector *connector;
|
2009-06-05 12:42:42 +00:00
|
|
|
struct radeon_device *rdev = dev->dev_private;
|
2012-07-07 10:47:58 +00:00
|
|
|
int r;
|
2009-06-05 12:42:42 +00:00
|
|
|
|
2010-12-06 23:20:40 +00:00
|
|
|
if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
|
2010-02-01 05:38:10 +00:00
|
|
|
return 0;
|
|
|
|
|
2011-01-25 23:07:35 +00:00
|
|
|
console_lock();
|
2009-06-05 12:42:42 +00:00
|
|
|
pci_set_power_state(dev->pdev, PCI_D0);
|
|
|
|
pci_restore_state(dev->pdev);
|
|
|
|
if (pci_enable_device(dev->pdev)) {
|
2011-01-25 23:07:35 +00:00
|
|
|
console_unlock();
|
2009-06-05 12:42:42 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2009-11-05 05:39:10 +00:00
|
|
|
/* resume AGP if in use */
|
|
|
|
radeon_agp_resume(rdev);
|
2009-10-01 16:02:11 +00:00
|
|
|
radeon_resume(rdev);
|
2012-07-07 10:47:58 +00:00
|
|
|
|
|
|
|
r = radeon_ib_ring_tests(rdev);
|
|
|
|
if (r)
|
|
|
|
DRM_ERROR("ib ring test failed (%d).\n", r);
|
|
|
|
|
2010-05-07 19:10:16 +00:00
|
|
|
radeon_pm_resume(rdev);
|
2009-09-15 02:21:01 +00:00
|
|
|
radeon_restore_bios_scratch_regs(rdev);
|
2010-06-11 18:40:56 +00:00
|
|
|
|
2010-03-30 05:34:13 +00:00
|
|
|
radeon_fbdev_set_suspend(rdev, 0);
|
2011-01-25 23:07:35 +00:00
|
|
|
console_unlock();
|
2009-06-05 12:42:42 +00:00
|
|
|
|
2012-01-20 19:56:39 +00:00
|
|
|
/* init dig PHYs, disp eng pll */
|
|
|
|
if (rdev->is_atom_bios) {
|
2011-05-22 17:20:36 +00:00
|
|
|
radeon_atom_encoder_init(rdev);
|
2012-03-20 21:18:04 +00:00
|
|
|
radeon_atom_disp_eng_pll_init(rdev);
|
2012-09-14 13:45:50 +00:00
|
|
|
/* turn on the BL */
|
|
|
|
if (rdev->mode_info.bl_encoder) {
|
|
|
|
u8 bl_level = radeon_get_backlight_level(rdev,
|
|
|
|
rdev->mode_info.bl_encoder);
|
|
|
|
radeon_set_backlight_level(rdev, rdev->mode_info.bl_encoder,
|
|
|
|
bl_level);
|
|
|
|
}
|
2012-01-20 19:56:39 +00:00
|
|
|
}
|
2009-12-04 21:56:37 +00:00
|
|
|
/* reset hpd state */
|
|
|
|
radeon_hpd_init(rdev);
|
2009-06-05 12:42:42 +00:00
|
|
|
/* blat the mode back in */
|
|
|
|
drm_helper_resume_force_mode(dev);
|
2010-12-20 16:22:29 +00:00
|
|
|
/* turn on display hw */
|
|
|
|
list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
|
|
|
|
drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
|
|
|
|
}
|
2012-02-01 01:06:25 +00:00
|
|
|
|
|
|
|
drm_kms_helper_poll_enable(dev);
|
2009-06-05 12:42:42 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-17 18:02:33 +00:00
|
|
|
/**
|
|
|
|
* radeon_gpu_reset - reset the asic
|
|
|
|
*
|
|
|
|
* @rdev: radeon device pointer
|
|
|
|
*
|
|
|
|
* Attempt the reset the GPU if it has hung (all asics).
|
|
|
|
* Returns 0 for success or an error on failure.
|
|
|
|
*/
|
2010-03-09 14:45:12 +00:00
|
|
|
int radeon_gpu_reset(struct radeon_device *rdev)
|
|
|
|
{
|
2012-07-09 09:52:44 +00:00
|
|
|
unsigned ring_sizes[RADEON_NUM_RINGS];
|
|
|
|
uint32_t *ring_data[RADEON_NUM_RINGS];
|
|
|
|
|
|
|
|
bool saved = false;
|
|
|
|
|
|
|
|
int i, r;
|
2011-02-10 04:46:06 +00:00
|
|
|
int resched;
|
2010-03-09 14:45:12 +00:00
|
|
|
|
2012-07-02 16:45:19 +00:00
|
|
|
down_write(&rdev->exclusive_lock);
|
2010-03-09 14:45:12 +00:00
|
|
|
radeon_save_bios_scratch_regs(rdev);
|
2011-02-10 04:46:06 +00:00
|
|
|
/* block TTM */
|
|
|
|
resched = ttm_bo_lock_delayed_workqueue(&rdev->mman.bdev);
|
2013-07-31 13:16:42 +00:00
|
|
|
radeon_pm_suspend(rdev);
|
2010-03-09 14:45:12 +00:00
|
|
|
radeon_suspend(rdev);
|
|
|
|
|
2012-07-09 09:52:44 +00:00
|
|
|
for (i = 0; i < RADEON_NUM_RINGS; ++i) {
|
|
|
|
ring_sizes[i] = radeon_ring_backup(rdev, &rdev->ring[i],
|
|
|
|
&ring_data[i]);
|
|
|
|
if (ring_sizes[i]) {
|
|
|
|
saved = true;
|
|
|
|
dev_info(rdev->dev, "Saved %d dwords of commands "
|
|
|
|
"on ring %d.\n", ring_sizes[i], i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
retry:
|
2010-03-09 14:45:12 +00:00
|
|
|
r = radeon_asic_reset(rdev);
|
|
|
|
if (!r) {
|
2012-07-09 09:52:44 +00:00
|
|
|
dev_info(rdev->dev, "GPU reset succeeded, trying to resume\n");
|
2010-03-09 14:45:12 +00:00
|
|
|
radeon_resume(rdev);
|
2012-07-09 09:52:44 +00:00
|
|
|
}
|
2012-07-07 10:47:58 +00:00
|
|
|
|
2012-07-09 09:52:44 +00:00
|
|
|
radeon_restore_bios_scratch_regs(rdev);
|
2012-07-07 10:47:58 +00:00
|
|
|
|
2012-07-09 09:52:44 +00:00
|
|
|
if (!r) {
|
|
|
|
for (i = 0; i < RADEON_NUM_RINGS; ++i) {
|
|
|
|
radeon_ring_restore(rdev, &rdev->ring[i],
|
|
|
|
ring_sizes[i], ring_data[i]);
|
2012-08-29 11:24:15 +00:00
|
|
|
ring_sizes[i] = 0;
|
|
|
|
ring_data[i] = NULL;
|
2012-07-09 09:52:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
r = radeon_ib_ring_tests(rdev);
|
|
|
|
if (r) {
|
|
|
|
dev_err(rdev->dev, "ib ring test failed (%d).\n", r);
|
|
|
|
if (saved) {
|
2012-08-29 11:24:15 +00:00
|
|
|
saved = false;
|
2012-07-09 09:52:44 +00:00
|
|
|
radeon_suspend(rdev);
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2012-12-17 15:29:06 +00:00
|
|
|
radeon_fence_driver_force_completion(rdev);
|
2012-07-09 09:52:44 +00:00
|
|
|
for (i = 0; i < RADEON_NUM_RINGS; ++i) {
|
|
|
|
kfree(ring_data[i]);
|
|
|
|
}
|
2010-03-09 14:45:12 +00:00
|
|
|
}
|
2011-11-10 17:57:26 +00:00
|
|
|
|
2013-07-31 13:16:42 +00:00
|
|
|
radeon_pm_resume(rdev);
|
2012-12-14 21:20:46 +00:00
|
|
|
drm_helper_resume_force_mode(rdev->ddev);
|
|
|
|
|
2012-07-09 09:52:44 +00:00
|
|
|
ttm_bo_unlock_delayed_workqueue(&rdev->mman.bdev, resched);
|
2011-11-10 17:57:26 +00:00
|
|
|
if (r) {
|
|
|
|
/* bad news, how to tell it to userspace ? */
|
|
|
|
dev_info(rdev->dev, "GPU reset failed\n");
|
|
|
|
}
|
|
|
|
|
2012-07-02 16:45:19 +00:00
|
|
|
up_write(&rdev->exclusive_lock);
|
2010-03-09 14:45:12 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2009-06-05 12:42:42 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Debugfs
|
|
|
|
*/
|
|
|
|
int radeon_debugfs_add_files(struct radeon_device *rdev,
|
|
|
|
struct drm_info_list *files,
|
|
|
|
unsigned nfiles)
|
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
|
2011-10-24 12:54:54 +00:00
|
|
|
for (i = 0; i < rdev->debugfs_count; i++) {
|
|
|
|
if (rdev->debugfs[i].files == files) {
|
2009-06-05 12:42:42 +00:00
|
|
|
/* Already registered */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2011-09-16 20:45:30 +00:00
|
|
|
|
2011-10-24 12:54:54 +00:00
|
|
|
i = rdev->debugfs_count + 1;
|
2011-09-16 20:45:30 +00:00
|
|
|
if (i > RADEON_DEBUGFS_MAX_COMPONENTS) {
|
|
|
|
DRM_ERROR("Reached maximum number of debugfs components.\n");
|
|
|
|
DRM_ERROR("Report so we increase "
|
|
|
|
"RADEON_DEBUGFS_MAX_COMPONENTS.\n");
|
2009-06-05 12:42:42 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
2011-10-24 12:54:54 +00:00
|
|
|
rdev->debugfs[rdev->debugfs_count].files = files;
|
|
|
|
rdev->debugfs[rdev->debugfs_count].num_files = nfiles;
|
|
|
|
rdev->debugfs_count = i;
|
2009-06-05 12:42:42 +00:00
|
|
|
#if defined(CONFIG_DEBUG_FS)
|
|
|
|
drm_debugfs_create_files(files, nfiles,
|
|
|
|
rdev->ddev->control->debugfs_root,
|
|
|
|
rdev->ddev->control);
|
|
|
|
drm_debugfs_create_files(files, nfiles,
|
|
|
|
rdev->ddev->primary->debugfs_root,
|
|
|
|
rdev->ddev->primary);
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-10-24 12:54:54 +00:00
|
|
|
static void radeon_debugfs_remove_files(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
#if defined(CONFIG_DEBUG_FS)
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
for (i = 0; i < rdev->debugfs_count; i++) {
|
|
|
|
drm_debugfs_remove_files(rdev->debugfs[i].files,
|
|
|
|
rdev->debugfs[i].num_files,
|
|
|
|
rdev->ddev->control);
|
|
|
|
drm_debugfs_remove_files(rdev->debugfs[i].files,
|
|
|
|
rdev->debugfs[i].num_files,
|
|
|
|
rdev->ddev->primary);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-06-05 12:42:42 +00:00
|
|
|
#if defined(CONFIG_DEBUG_FS)
|
|
|
|
int radeon_debugfs_init(struct drm_minor *minor)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void radeon_debugfs_cleanup(struct drm_minor *minor)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|