2009-06-30 11:57:44 +02: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>
|
2009-07-03 17:24:50 +02:00
|
|
|
|
2009-09-26 16:08:05 +02:00
|
|
|
#include <drm/drmP.h>
|
|
|
|
#include <drm/drm_crtc_helper.h>
|
2009-10-21 11:33:33 +02:00
|
|
|
#include <drm/radeon_drm.h>
|
2009-06-30 11:57:44 +02:00
|
|
|
#include "radeon_reg.h"
|
|
|
|
#include "radeon.h"
|
|
|
|
#include "radeon_asic.h"
|
|
|
|
#include "atom.h"
|
2010-03-01 07:55:30 +01:00
|
|
|
#include "display.h"
|
2009-06-30 11:57:44 +02:00
|
|
|
|
2009-10-21 11:33:33 +02:00
|
|
|
#include <drm/drm_pciids.h>
|
|
|
|
|
2009-06-30 11:57:44 +02:00
|
|
|
|
2010-03-10 11:23:24 +01:00
|
|
|
int radeon_no_wb;
|
|
|
|
int radeon_modeset = -1;
|
|
|
|
int radeon_dynclks = -1;
|
|
|
|
int radeon_r4xx_atom = 0;
|
|
|
|
int radeon_agpmode = 0;
|
|
|
|
int radeon_vram_limit = 0;
|
|
|
|
int radeon_gart_size = 512; /* default gart size */
|
|
|
|
int radeon_benchmarking = 0;
|
|
|
|
int radeon_testing = 0;
|
|
|
|
int radeon_connector_table = 0;
|
|
|
|
int radeon_tv = 1;
|
|
|
|
int radeon_new_pll = -1;
|
|
|
|
int radeon_dynpm = -1;
|
|
|
|
int radeon_audio = 1;
|
|
|
|
|
2009-06-30 11:57:44 +02:00
|
|
|
|
2010-03-01 07:55:30 +01:00
|
|
|
extern display_t *rdisplay;
|
2009-11-02 21:36:12 +01:00
|
|
|
|
2010-02-12 14:55:15 +01:00
|
|
|
void parse_cmdline(char *cmdline, videomode_t *mode, char *log, int *kms);
|
|
|
|
int init_display(struct radeon_device *rdev, videomode_t *mode);
|
|
|
|
int init_display_kms(struct radeon_device *rdev, videomode_t *mode);
|
|
|
|
|
|
|
|
int get_modes(videomode_t *mode, int *count);
|
|
|
|
int set_user_mode(videomode_t *mode);
|
2010-03-01 07:55:30 +01:00
|
|
|
int r100_2D_test(struct radeon_device *rdev);
|
2009-10-26 23:40:01 +01:00
|
|
|
|
2009-10-24 23:42:25 +02:00
|
|
|
|
|
|
|
/* Legacy VGA regions */
|
|
|
|
#define VGA_RSRC_NONE 0x00
|
|
|
|
#define VGA_RSRC_LEGACY_IO 0x01
|
|
|
|
#define VGA_RSRC_LEGACY_MEM 0x02
|
|
|
|
#define VGA_RSRC_LEGACY_MASK (VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM)
|
|
|
|
/* Non-legacy access */
|
|
|
|
#define VGA_RSRC_NORMAL_IO 0x04
|
|
|
|
#define VGA_RSRC_NORMAL_MEM 0x08
|
|
|
|
|
|
|
|
|
2009-06-30 11:57:44 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Clear GPU surface registers.
|
|
|
|
*/
|
2009-09-26 16:08:05 +02:00
|
|
|
void radeon_surface_init(struct radeon_device *rdev)
|
2009-06-30 11:57:44 +02:00
|
|
|
{
|
|
|
|
/* FIXME: check this out */
|
|
|
|
if (rdev->family < CHIP_R600) {
|
|
|
|
int i;
|
|
|
|
|
2009-12-14 19:34:32 +01:00
|
|
|
for (i = 0; i < RADEON_GEM_MAX_SURFACES; i++) {
|
2010-02-12 14:55:15 +01:00
|
|
|
radeon_clear_surface_reg(rdev, i);
|
2009-06-30 11:57:44 +02:00
|
|
|
}
|
2009-09-26 16:08:05 +02:00
|
|
|
/* enable surfaces */
|
|
|
|
WREG32(RADEON_SURFACE_CNTL, 0);
|
2009-06-30 11:57:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* GPU scratch registers helpers function.
|
|
|
|
*/
|
2009-09-26 16:08:05 +02:00
|
|
|
void radeon_scratch_init(struct radeon_device *rdev)
|
2009-06-30 11:57:44 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* FIXME: check this out */
|
|
|
|
if (rdev->family < CHIP_R300) {
|
|
|
|
rdev->scratch.num_reg = 5;
|
|
|
|
} else {
|
|
|
|
rdev->scratch.num_reg = 7;
|
|
|
|
}
|
|
|
|
for (i = 0; i < rdev->scratch.num_reg; i++) {
|
|
|
|
rdev->scratch.free[i] = true;
|
|
|
|
rdev->scratch.reg[i] = RADEON_SCRATCH_REG0 + (i * 4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-10 11:23:24 +01: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.
|
|
|
|
*
|
|
|
|
* Note: We don't explictly enforce VRAM start to be aligned on VRAM size,
|
|
|
|
* 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-30 11:57:44 +02:00
|
|
|
*/
|
2010-03-10 11:23:24 +01:00
|
|
|
void radeon_vram_location(struct radeon_device *rdev, struct radeon_mc *mc, u64 base)
|
2009-06-30 11:57:44 +02:00
|
|
|
{
|
2010-03-10 11:23:24 +01:00
|
|
|
mc->vram_start = base;
|
|
|
|
if (mc->mc_vram_size > (0xFFFFFFFF - base + 1)) {
|
|
|
|
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;
|
|
|
|
if (rdev->flags & RADEON_IS_AGP && mc->vram_end > mc->gtt_start && mc->vram_end <= mc->gtt_end) {
|
|
|
|
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;
|
2009-06-30 11:57:44 +02:00
|
|
|
}
|
2010-03-10 11:23:24 +01:00
|
|
|
mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
|
|
|
|
dev_info(rdev->dev, "VRAM: %lluM 0x%08llX - 0x%08llX (%lluM used)\n",
|
|
|
|
mc->mc_vram_size >> 20, mc->vram_start,
|
|
|
|
mc->vram_end, mc->real_vram_size >> 20);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
|
|
|
|
size_af = 0xFFFFFFFF - mc->vram_end;
|
|
|
|
size_bf = mc->vram_start;
|
|
|
|
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-30 11:57:44 +02:00
|
|
|
}
|
2010-03-10 11:23:24 +01:00
|
|
|
mc->gtt_start = mc->vram_start - mc->gtt_size;
|
2009-06-30 11:57:44 +02:00
|
|
|
} else {
|
2010-03-10 11:23:24 +01:00
|
|
|
if (mc->gtt_size > size_af) {
|
|
|
|
dev_warn(rdev->dev, "limiting GTT\n");
|
|
|
|
mc->gtt_size = size_af;
|
|
|
|
}
|
|
|
|
mc->gtt_start = mc->vram_end + 1;
|
2009-06-30 11:57:44 +02:00
|
|
|
}
|
2010-03-10 11:23:24 +01:00
|
|
|
mc->gtt_end = mc->gtt_start + mc->gtt_size - 1;
|
|
|
|
dev_info(rdev->dev, "GTT: %lluM 0x%08llX - 0x%08llX\n",
|
|
|
|
mc->gtt_size >> 20, mc->gtt_start, mc->gtt_end);
|
2009-06-30 11:57:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* GPU helpers function.
|
|
|
|
*/
|
2009-09-26 16:08:05 +02:00
|
|
|
bool radeon_card_posted(struct radeon_device *rdev)
|
2009-06-30 11:57:44 +02:00
|
|
|
{
|
|
|
|
uint32_t reg;
|
|
|
|
|
|
|
|
/* first check CRTCs */
|
2010-03-10 11:23:24 +01:00
|
|
|
if (ASIC_IS_DCE4(rdev)) {
|
|
|
|
reg = RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC0_REGISTER_OFFSET) |
|
|
|
|
RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC1_REGISTER_OFFSET) |
|
|
|
|
RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC2_REGISTER_OFFSET) |
|
|
|
|
RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC3_REGISTER_OFFSET) |
|
|
|
|
RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC4_REGISTER_OFFSET) |
|
|
|
|
RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC5_REGISTER_OFFSET);
|
|
|
|
if (reg & EVERGREEN_CRTC_MASTER_EN)
|
|
|
|
return true;
|
|
|
|
} else if (ASIC_IS_AVIVO(rdev)) {
|
2009-06-30 11:57:44 +02: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-12-14 19:34:32 +01: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-24 23:42:25 +02:00
|
|
|
int radeon_dummy_page_init(struct radeon_device *rdev)
|
|
|
|
{
|
2010-03-10 11:23:24 +01:00
|
|
|
if (rdev->dummy_page.page)
|
|
|
|
return 0;
|
2009-10-24 23:42:25 +02:00
|
|
|
rdev->dummy_page.page = AllocPage();
|
|
|
|
if (rdev->dummy_page.page == NULL)
|
|
|
|
return -ENOMEM;
|
|
|
|
rdev->dummy_page.addr = MapIoMem(rdev->dummy_page.page, 4096, 5);
|
|
|
|
if (!rdev->dummy_page.addr) {
|
|
|
|
// __free_page(rdev->dummy_page.page);
|
|
|
|
rdev->dummy_page.page = NULL;
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void radeon_dummy_page_fini(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
if (rdev->dummy_page.page == NULL)
|
|
|
|
return;
|
|
|
|
KernelFree(rdev->dummy_page.addr);
|
|
|
|
rdev->dummy_page.page = NULL;
|
|
|
|
}
|
|
|
|
|
2009-06-30 11:57:44 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Registers accessors functions.
|
|
|
|
*/
|
|
|
|
uint32_t radeon_invalid_rreg(struct radeon_device *rdev, uint32_t reg)
|
|
|
|
{
|
|
|
|
DRM_ERROR("Invalid callback to read register 0x%04X\n", reg);
|
|
|
|
BUG_ON(1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void radeon_invalid_wreg(struct radeon_device *rdev, uint32_t reg, uint32_t v)
|
|
|
|
{
|
|
|
|
DRM_ERROR("Invalid callback to write register 0x%04X with 0x%08X\n",
|
|
|
|
reg, v);
|
|
|
|
BUG_ON(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void radeon_register_accessor_init(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
rdev->mc_rreg = &radeon_invalid_rreg;
|
|
|
|
rdev->mc_wreg = &radeon_invalid_wreg;
|
|
|
|
rdev->pll_rreg = &radeon_invalid_rreg;
|
|
|
|
rdev->pll_wreg = &radeon_invalid_wreg;
|
|
|
|
rdev->pciep_rreg = &radeon_invalid_rreg;
|
|
|
|
rdev->pciep_wreg = &radeon_invalid_wreg;
|
|
|
|
|
|
|
|
/* Don't change order as we are overridding accessor. */
|
|
|
|
if (rdev->family < CHIP_RV515) {
|
2009-09-26 16:08:05 +02:00
|
|
|
rdev->pcie_reg_mask = 0xff;
|
|
|
|
} else {
|
|
|
|
rdev->pcie_reg_mask = 0x7ff;
|
2009-06-30 11:57:44 +02:00
|
|
|
}
|
|
|
|
/* FIXME: not sure here */
|
|
|
|
if (rdev->family <= CHIP_R580) {
|
2009-07-01 18:17:51 +02:00
|
|
|
rdev->pll_rreg = &r100_pll_rreg;
|
|
|
|
rdev->pll_wreg = &r100_pll_wreg;
|
2009-06-30 11:57:44 +02:00
|
|
|
}
|
2009-09-26 16:08:05 +02:00
|
|
|
if (rdev->family >= CHIP_R420) {
|
|
|
|
rdev->mc_rreg = &r420_mc_rreg;
|
|
|
|
rdev->mc_wreg = &r420_mc_wreg;
|
|
|
|
}
|
2009-06-30 11:57:44 +02:00
|
|
|
if (rdev->family >= CHIP_RV515) {
|
|
|
|
rdev->mc_rreg = &rv515_mc_rreg;
|
|
|
|
rdev->mc_wreg = &rv515_mc_wreg;
|
|
|
|
}
|
|
|
|
if (rdev->family == CHIP_RS400 || rdev->family == CHIP_RS480) {
|
2009-07-13 13:25:53 +02:00
|
|
|
rdev->mc_rreg = &rs400_mc_rreg;
|
|
|
|
rdev->mc_wreg = &rs400_mc_wreg;
|
2009-06-30 11:57:44 +02:00
|
|
|
}
|
2009-10-21 11:33:33 +02:00
|
|
|
if (rdev->family == CHIP_RS690 || rdev->family == CHIP_RS740) {
|
|
|
|
rdev->mc_rreg = &rs690_mc_rreg;
|
|
|
|
rdev->mc_wreg = &rs690_mc_wreg;
|
|
|
|
}
|
|
|
|
if (rdev->family == CHIP_RS600) {
|
|
|
|
rdev->mc_rreg = &rs600_mc_rreg;
|
|
|
|
rdev->mc_wreg = &rs600_mc_wreg;
|
|
|
|
}
|
2010-03-10 11:23:24 +01:00
|
|
|
if ((rdev->family >= CHIP_R600) && (rdev->family <= CHIP_RV740)) {
|
2009-10-24 23:42:25 +02:00
|
|
|
rdev->pciep_rreg = &r600_pciep_rreg;
|
|
|
|
rdev->pciep_wreg = &r600_pciep_wreg;
|
|
|
|
}
|
2009-06-30 11:57:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ASIC
|
|
|
|
*/
|
|
|
|
int radeon_asic_init(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
radeon_register_accessor_init(rdev);
|
|
|
|
switch (rdev->family) {
|
|
|
|
case CHIP_R100:
|
|
|
|
case CHIP_RV100:
|
|
|
|
case CHIP_RS100:
|
|
|
|
case CHIP_RV200:
|
|
|
|
case CHIP_RS200:
|
2010-03-10 11:23:24 +01:00
|
|
|
rdev->asic = &r100_asic;
|
|
|
|
break;
|
2009-06-30 11:57:44 +02:00
|
|
|
case CHIP_R200:
|
|
|
|
case CHIP_RV250:
|
|
|
|
case CHIP_RS300:
|
|
|
|
case CHIP_RV280:
|
2010-03-10 11:23:24 +01:00
|
|
|
rdev->asic = &r200_asic;
|
2009-06-30 11:57:44 +02:00
|
|
|
break;
|
|
|
|
case CHIP_R300:
|
|
|
|
case CHIP_R350:
|
|
|
|
case CHIP_RV350:
|
|
|
|
case CHIP_RV380:
|
2010-03-10 11:23:24 +01:00
|
|
|
if (rdev->flags & RADEON_IS_PCIE)
|
|
|
|
rdev->asic = &r300_asic_pcie;
|
|
|
|
else
|
2009-07-13 13:25:53 +02:00
|
|
|
rdev->asic = &r300_asic;
|
2009-06-30 11:57:44 +02:00
|
|
|
break;
|
|
|
|
case CHIP_R420:
|
|
|
|
case CHIP_R423:
|
|
|
|
case CHIP_RV410:
|
2009-07-13 13:25:53 +02:00
|
|
|
rdev->asic = &r420_asic;
|
2009-06-30 11:57:44 +02:00
|
|
|
break;
|
|
|
|
case CHIP_RS400:
|
|
|
|
case CHIP_RS480:
|
2009-07-13 13:25:53 +02:00
|
|
|
rdev->asic = &rs400_asic;
|
2009-06-30 11:57:44 +02:00
|
|
|
break;
|
|
|
|
case CHIP_RS600:
|
2009-10-21 11:33:33 +02:00
|
|
|
rdev->asic = &rs600_asic;
|
2009-06-30 11:57:44 +02:00
|
|
|
break;
|
|
|
|
case CHIP_RS690:
|
|
|
|
case CHIP_RS740:
|
2009-10-21 11:33:33 +02:00
|
|
|
rdev->asic = &rs690_asic;
|
2009-06-30 11:57:44 +02:00
|
|
|
break;
|
|
|
|
case CHIP_RV515:
|
2009-07-13 13:25:53 +02:00
|
|
|
rdev->asic = &rv515_asic;
|
2009-06-30 11:57:44 +02:00
|
|
|
break;
|
|
|
|
case CHIP_R520:
|
|
|
|
case CHIP_RV530:
|
|
|
|
case CHIP_RV560:
|
|
|
|
case CHIP_RV570:
|
|
|
|
case CHIP_R580:
|
|
|
|
rdev->asic = &r520_asic;
|
|
|
|
break;
|
|
|
|
case CHIP_R600:
|
|
|
|
case CHIP_RV610:
|
|
|
|
case CHIP_RV630:
|
|
|
|
case CHIP_RV620:
|
|
|
|
case CHIP_RV635:
|
|
|
|
case CHIP_RV670:
|
|
|
|
case CHIP_RS780:
|
2009-10-21 11:33:33 +02:00
|
|
|
case CHIP_RS880:
|
2009-10-24 23:42:25 +02:00
|
|
|
rdev->asic = &r600_asic;
|
2009-10-21 11:33:33 +02:00
|
|
|
break;
|
2009-06-30 11:57:44 +02:00
|
|
|
case CHIP_RV770:
|
|
|
|
case CHIP_RV730:
|
|
|
|
case CHIP_RV710:
|
2009-10-21 11:33:33 +02:00
|
|
|
case CHIP_RV740:
|
2009-10-24 23:42:25 +02:00
|
|
|
rdev->asic = &rv770_asic;
|
2009-10-21 11:33:33 +02:00
|
|
|
break;
|
2010-03-10 11:23:24 +01:00
|
|
|
case CHIP_CEDAR:
|
|
|
|
case CHIP_REDWOOD:
|
|
|
|
case CHIP_JUNIPER:
|
|
|
|
case CHIP_CYPRESS:
|
|
|
|
case CHIP_HEMLOCK:
|
|
|
|
rdev->asic = &evergreen_asic;
|
|
|
|
break;
|
2009-06-30 11:57:44 +02:00
|
|
|
default:
|
|
|
|
/* FIXME: not supported yet */
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2010-02-12 14:55:15 +01:00
|
|
|
|
|
|
|
if (rdev->flags & RADEON_IS_IGP) {
|
|
|
|
rdev->asic->get_memory_clock = NULL;
|
|
|
|
rdev->asic->set_memory_clock = NULL;
|
|
|
|
}
|
|
|
|
|
2009-06-30 11:57:44 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Wrapper around modesetting bits.
|
|
|
|
*/
|
|
|
|
int radeon_clocks_init(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r = radeon_static_clocks_init(rdev->ddev);
|
|
|
|
if (r) {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
DRM_INFO("Clocks initialized !\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void radeon_clocks_fini(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ATOM accessor methods */
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
int radeon_atombios_init(struct radeon_device *rdev)
|
|
|
|
{
|
2009-11-12 16:36:53 +01: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;
|
|
|
|
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;
|
2009-06-30 11:57:44 +02:00
|
|
|
|
2009-11-12 16:36:53 +01:00
|
|
|
rdev->mode_info.atom_context = atom_parse(atom_card_info, rdev->bios);
|
2009-06-30 11:57:44 +02:00
|
|
|
radeon_atom_initialize_bios_scratch_regs(rdev->ddev);
|
2009-12-14 19:34:32 +01:00
|
|
|
atom_allocate_fb_scratch(rdev->mode_info.atom_context);
|
2009-06-30 11:57:44 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void radeon_atombios_fini(struct radeon_device *rdev)
|
|
|
|
{
|
2009-12-14 19:34:32 +01:00
|
|
|
if (rdev->mode_info.atom_context) {
|
|
|
|
kfree(rdev->mode_info.atom_context->scratch);
|
2009-07-01 18:17:51 +02:00
|
|
|
kfree(rdev->mode_info.atom_context);
|
2009-12-14 19:34:32 +01:00
|
|
|
}
|
2009-11-12 16:36:53 +01:00
|
|
|
kfree(rdev->mode_info.atom_card_info);
|
2009-06-30 11:57:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int radeon_combios_init(struct radeon_device *rdev)
|
|
|
|
{
|
2009-07-13 13:25:53 +02:00
|
|
|
radeon_combios_initialize_bios_scratch_regs(rdev->ddev);
|
2009-06-30 11:57:44 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void radeon_combios_fini(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-10-24 23:42:25 +02:00
|
|
|
/* if we get transitioned to only one device, tak VGA back */
|
|
|
|
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-06-30 11:57:44 +02:00
|
|
|
|
2009-10-21 11:33:33 +02:00
|
|
|
void radeon_agp_disable(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
rdev->flags &= ~RADEON_IS_AGP;
|
|
|
|
if (rdev->family >= CHIP_R600) {
|
|
|
|
DRM_INFO("Forcing AGP to PCIE mode\n");
|
|
|
|
rdev->flags |= RADEON_IS_PCIE;
|
|
|
|
} else if (rdev->family >= CHIP_RV515 ||
|
|
|
|
rdev->family == CHIP_RV380 ||
|
|
|
|
rdev->family == CHIP_RV410 ||
|
|
|
|
rdev->family == CHIP_R423) {
|
|
|
|
DRM_INFO("Forcing AGP to PCIE mode\n");
|
|
|
|
rdev->flags |= RADEON_IS_PCIE;
|
|
|
|
rdev->asic->gart_tlb_flush = &rv370_pcie_gart_tlb_flush;
|
|
|
|
rdev->asic->gart_set_page = &rv370_pcie_gart_set_page;
|
|
|
|
} else {
|
|
|
|
DRM_INFO("Forcing AGP to PCI mode\n");
|
|
|
|
rdev->flags |= RADEON_IS_PCI;
|
|
|
|
rdev->asic->gart_tlb_flush = &r100_pci_gart_tlb_flush;
|
|
|
|
rdev->asic->gart_set_page = &r100_pci_gart_set_page;
|
|
|
|
}
|
2010-02-12 14:55:15 +01:00
|
|
|
rdev->mc.gtt_size = radeon_gart_size * 1024 * 1024;
|
|
|
|
}
|
|
|
|
|
|
|
|
void radeon_check_arguments(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
/* vramlimit must be a power of two */
|
|
|
|
switch (radeon_vram_limit) {
|
|
|
|
case 0:
|
|
|
|
case 4:
|
|
|
|
case 8:
|
|
|
|
case 16:
|
|
|
|
case 32:
|
|
|
|
case 64:
|
|
|
|
case 128:
|
|
|
|
case 256:
|
|
|
|
case 512:
|
|
|
|
case 1024:
|
|
|
|
case 2048:
|
|
|
|
case 4096:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
dev_warn(rdev->dev, "vram limit (%d) must be a power of 2\n",
|
|
|
|
radeon_vram_limit);
|
|
|
|
radeon_vram_limit = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
radeon_vram_limit = radeon_vram_limit << 20;
|
|
|
|
/* gtt size must be power of two and greater or equal to 32M */
|
|
|
|
switch (radeon_gart_size) {
|
|
|
|
case 4:
|
|
|
|
case 8:
|
|
|
|
case 16:
|
|
|
|
dev_warn(rdev->dev, "gart size (%d) too small forcing to 512M\n",
|
|
|
|
radeon_gart_size);
|
|
|
|
radeon_gart_size = 512;
|
|
|
|
break;
|
|
|
|
case 32:
|
|
|
|
case 64:
|
|
|
|
case 128:
|
|
|
|
case 256:
|
|
|
|
case 512:
|
|
|
|
case 1024:
|
|
|
|
case 2048:
|
|
|
|
case 4096:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
dev_warn(rdev->dev, "gart size (%d) must be a power of 2\n",
|
|
|
|
radeon_gart_size);
|
|
|
|
radeon_gart_size = 512;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
rdev->mc.gtt_size = radeon_gart_size * 1024 * 1024;
|
|
|
|
/* 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;
|
|
|
|
}
|
2009-10-21 11:33:33 +02:00
|
|
|
}
|
2009-09-26 16:08:05 +02:00
|
|
|
|
2009-06-30 11:57:44 +02:00
|
|
|
int radeon_device_init(struct radeon_device *rdev,
|
|
|
|
struct drm_device *ddev,
|
|
|
|
struct pci_dev *pdev,
|
|
|
|
uint32_t flags)
|
|
|
|
{
|
2009-10-21 11:33:33 +02:00
|
|
|
int r;
|
2009-09-26 16:08:05 +02:00
|
|
|
int dma_bits;
|
2009-06-30 11:57:44 +02:00
|
|
|
|
|
|
|
DRM_INFO("radeon: Initializing kernel modesetting.\n");
|
|
|
|
rdev->shutdown = false;
|
|
|
|
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;
|
|
|
|
rdev->mc.gtt_size = radeon_gart_size * 1024 * 1024;
|
|
|
|
rdev->gpu_lockup = false;
|
2009-10-21 11:33:33 +02:00
|
|
|
rdev->accel_working = false;
|
2009-06-30 11:57:44 +02:00
|
|
|
/* mutex initialization are all done here so we
|
|
|
|
* can recall function without having locking issues */
|
|
|
|
// mutex_init(&rdev->cs_mutex);
|
|
|
|
// mutex_init(&rdev->ib_pool.mutex);
|
|
|
|
// mutex_init(&rdev->cp.mutex);
|
|
|
|
// rwlock_init(&rdev->fence_drv.lock);
|
|
|
|
|
2009-09-26 16:08:05 +02:00
|
|
|
/* Set asic functions */
|
|
|
|
r = radeon_asic_init(rdev);
|
2010-02-12 14:55:15 +01:00
|
|
|
if (r)
|
2009-09-26 16:08:05 +02:00
|
|
|
return r;
|
2010-02-12 14:55:15 +01:00
|
|
|
radeon_check_arguments(rdev);
|
2009-09-26 16:08:05 +02:00
|
|
|
|
2009-12-14 19:34:32 +01:00
|
|
|
if (rdev->flags & RADEON_IS_AGP && radeon_agpmode == -1) {
|
2009-10-21 11:33:33 +02:00
|
|
|
radeon_agp_disable(rdev);
|
2009-06-30 11:57:44 +02:00
|
|
|
}
|
|
|
|
|
2009-09-26 16:08:05 +02:00
|
|
|
/* set DMA mask + need_dma32 flags.
|
|
|
|
* PCIE - can handle 40-bits.
|
|
|
|
* IGP - can handle 40-bits (in theory)
|
|
|
|
* AGP - generally dma32 is safest
|
|
|
|
* PCI - only dma32
|
|
|
|
*/
|
|
|
|
rdev->need_dma32 = false;
|
|
|
|
if (rdev->flags & RADEON_IS_AGP)
|
|
|
|
rdev->need_dma32 = true;
|
|
|
|
if (rdev->flags & RADEON_IS_PCI)
|
|
|
|
rdev->need_dma32 = true;
|
|
|
|
|
|
|
|
dma_bits = rdev->need_dma32 ? 32 : 40;
|
|
|
|
r = pci_set_dma_mask(rdev->pdev, DMA_BIT_MASK(dma_bits));
|
2009-07-01 18:17:51 +02:00
|
|
|
if (r) {
|
|
|
|
printk(KERN_WARNING "radeon: No suitable DMA available.\n");
|
|
|
|
}
|
2009-06-30 11:57:44 +02:00
|
|
|
|
|
|
|
/* Registers mapping */
|
|
|
|
/* TODO: block userspace mapping of io register */
|
|
|
|
rdev->rmmio_base = pci_resource_start(rdev->pdev, 2);
|
|
|
|
|
|
|
|
rdev->rmmio_size = pci_resource_len(rdev->pdev, 2);
|
|
|
|
|
|
|
|
rdev->rmmio = (void*)MapIoMem(rdev->rmmio_base, rdev->rmmio_size,
|
|
|
|
PG_SW+PG_NOCACHE);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2009-10-21 11:33:33 +02:00
|
|
|
/* if we have > 1 VGA cards, then disable the radeon VGA resources */
|
2010-03-10 11:23:24 +01:00
|
|
|
/* this will fail for cards that aren't VGA class devices, just
|
|
|
|
* ignore it */
|
2009-10-21 11:33:33 +02:00
|
|
|
// r = vga_client_register(rdev->pdev, rdev, NULL, radeon_vga_set_decode);
|
|
|
|
// if (r) {
|
|
|
|
// return -EINVAL;
|
|
|
|
// }
|
2009-09-26 16:08:05 +02:00
|
|
|
|
2009-10-21 11:33:33 +02:00
|
|
|
r = radeon_init(rdev);
|
|
|
|
if (r)
|
2009-06-30 11:57:44 +02:00
|
|
|
return r;
|
|
|
|
|
2009-10-21 11:33:33 +02: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
|
|
|
|
*/
|
|
|
|
radeon_gpu_reset(rdev);
|
|
|
|
radeon_fini(rdev);
|
|
|
|
radeon_agp_disable(rdev);
|
|
|
|
r = radeon_init(rdev);
|
2009-09-26 16:08:05 +02:00
|
|
|
if (r)
|
2009-10-21 11:33:33 +02:00
|
|
|
return r;
|
2009-07-05 11:51:42 +02:00
|
|
|
}
|
2009-09-26 16:08:05 +02:00
|
|
|
// if (radeon_testing) {
|
|
|
|
// radeon_test_moves(rdev);
|
|
|
|
// }
|
|
|
|
// if (radeon_benchmarking) {
|
|
|
|
// radeon_benchmark(rdev);
|
|
|
|
// }
|
|
|
|
return 0;
|
2009-06-30 11:57:44 +02:00
|
|
|
}
|
|
|
|
|
2009-09-26 16:08:05 +02:00
|
|
|
|
2009-06-30 11:57:44 +02:00
|
|
|
/*
|
|
|
|
* Driver load/unload
|
|
|
|
*/
|
|
|
|
int radeon_driver_load_kms(struct drm_device *dev, unsigned long flags)
|
|
|
|
{
|
|
|
|
struct radeon_device *rdev;
|
|
|
|
int r;
|
|
|
|
|
2009-09-28 10:42:03 +02:00
|
|
|
ENTER();
|
2009-06-30 11:57:44 +02:00
|
|
|
|
2009-07-02 19:11:39 +02:00
|
|
|
rdev = kzalloc(sizeof(struct radeon_device), GFP_KERNEL);
|
2009-06-30 11:57:44 +02:00
|
|
|
if (rdev == NULL) {
|
|
|
|
return -ENOMEM;
|
|
|
|
};
|
|
|
|
|
|
|
|
dev->dev_private = (void *)rdev;
|
|
|
|
|
|
|
|
/* update BUS flag */
|
2009-10-26 23:40:01 +01:00
|
|
|
if (drm_device_is_agp(dev)) {
|
2009-06-30 11:57:44 +02:00
|
|
|
flags |= RADEON_IS_AGP;
|
2009-10-26 23:40:01 +01:00
|
|
|
} else if (drm_device_is_pcie(dev)) {
|
|
|
|
flags |= RADEON_IS_PCIE;
|
|
|
|
} else {
|
|
|
|
flags |= RADEON_IS_PCI;
|
|
|
|
}
|
2009-06-30 11:57:44 +02:00
|
|
|
|
2009-09-28 10:42:03 +02: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-30 11:57:44 +02:00
|
|
|
r = radeon_device_init(rdev, dev, dev->pdev, flags);
|
|
|
|
if (r) {
|
2009-09-28 10:42:03 +02:00
|
|
|
DRM_ERROR("Fatal error while trying to initialize radeon.\n");
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
/* Again modeset_init should fail only on fatal error
|
|
|
|
* otherwise it should provide enough functionalities
|
|
|
|
* for shadowfb to run
|
|
|
|
*/
|
2009-11-02 21:36:12 +01:00
|
|
|
if( radeon_modeset )
|
|
|
|
{
|
2009-11-12 16:36:53 +01:00
|
|
|
r = radeon_modeset_init(rdev);
|
|
|
|
if (r) {
|
|
|
|
return r;
|
|
|
|
}
|
2009-11-02 21:36:12 +01:00
|
|
|
};
|
2009-06-30 11:57:44 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-02-12 14:55:15 +01:00
|
|
|
videomode_t usermode;
|
2009-10-26 23:40:01 +01:00
|
|
|
|
2009-10-24 01:46:58 +02:00
|
|
|
|
2009-06-30 11:57:44 +02:00
|
|
|
int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|
|
|
{
|
2009-11-02 21:36:12 +01:00
|
|
|
static struct drm_device *dev;
|
2009-06-30 11:57:44 +02:00
|
|
|
int ret;
|
|
|
|
|
2009-10-21 11:33:33 +02:00
|
|
|
ENTER();
|
2009-06-30 11:57:44 +02:00
|
|
|
|
2009-11-02 21:36:12 +01:00
|
|
|
dev = kzalloc(sizeof(*dev), 0);
|
2009-06-30 11:57:44 +02:00
|
|
|
if (!dev)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
// ret = pci_enable_device(pdev);
|
|
|
|
// if (ret)
|
|
|
|
// goto err_g1;
|
|
|
|
|
|
|
|
// pci_set_master(pdev);
|
|
|
|
|
|
|
|
// if ((ret = drm_fill_in_dev(dev, pdev, ent, driver))) {
|
|
|
|
// printk(KERN_ERR "DRM: Fill_in_dev failed.\n");
|
|
|
|
// goto err_g2;
|
|
|
|
// }
|
|
|
|
|
|
|
|
dev->pdev = pdev;
|
|
|
|
dev->pci_device = pdev->device;
|
|
|
|
dev->pci_vendor = pdev->vendor;
|
|
|
|
|
2009-10-21 11:33:33 +02:00
|
|
|
ret = radeon_driver_load_kms(dev, ent->driver_data );
|
|
|
|
if (ret)
|
2009-06-30 11:57:44 +02:00
|
|
|
goto err_g4;
|
|
|
|
|
2009-11-02 21:36:12 +01:00
|
|
|
if( radeon_modeset )
|
|
|
|
init_display_kms(dev->dev_private, &usermode);
|
|
|
|
else
|
2009-11-12 16:36:53 +01:00
|
|
|
init_display(dev->dev_private, &usermode);
|
2009-10-21 11:33:33 +02:00
|
|
|
|
|
|
|
LEAVE();
|
2009-07-05 11:51:42 +02:00
|
|
|
|
2009-06-30 11:57:44 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_g4:
|
|
|
|
// drm_put_minor(&dev->primary);
|
|
|
|
//err_g3:
|
|
|
|
// if (drm_core_check_feature(dev, DRIVER_MODESET))
|
|
|
|
// drm_put_minor(&dev->control);
|
|
|
|
//err_g2:
|
|
|
|
// pci_disable_device(pdev);
|
|
|
|
//err_g1:
|
|
|
|
free(dev);
|
|
|
|
|
2009-10-21 11:33:33 +02:00
|
|
|
LEAVE();
|
|
|
|
|
2009-06-30 11:57:44 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
resource_size_t drm_get_resource_start(struct drm_device *dev, unsigned int resource)
|
|
|
|
{
|
|
|
|
return pci_resource_start(dev->pdev, resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
resource_size_t drm_get_resource_len(struct drm_device *dev, unsigned int resource)
|
|
|
|
{
|
|
|
|
return pci_resource_len(dev->pdev, resource);
|
|
|
|
}
|
|
|
|
|
2009-07-03 17:24:50 +02:00
|
|
|
|
|
|
|
uint32_t __div64_32(uint64_t *n, uint32_t base)
|
|
|
|
{
|
|
|
|
uint64_t rem = *n;
|
|
|
|
uint64_t b = base;
|
|
|
|
uint64_t res, d = 1;
|
|
|
|
uint32_t high = rem >> 32;
|
|
|
|
|
|
|
|
/* Reduce the thing a bit first */
|
|
|
|
res = 0;
|
|
|
|
if (high >= base) {
|
|
|
|
high /= base;
|
|
|
|
res = (uint64_t) high << 32;
|
|
|
|
rem -= (uint64_t) (high*base) << 32;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((int64_t)b > 0 && b < rem) {
|
|
|
|
b = b+b;
|
|
|
|
d = d+d;
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
if (rem >= b) {
|
|
|
|
rem -= b;
|
|
|
|
res += d;
|
|
|
|
}
|
|
|
|
b >>= 1;
|
|
|
|
d >>= 1;
|
|
|
|
} while (d);
|
|
|
|
|
|
|
|
*n = res;
|
|
|
|
return rem;
|
|
|
|
}
|
|
|
|
|
2009-10-26 23:40:01 +01:00
|
|
|
|
|
|
|
static struct pci_device_id pciidlist[] = {
|
|
|
|
radeon_PCI_IDS
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define API_VERSION 0x01000100
|
|
|
|
|
|
|
|
#define SRV_GETVERSION 0
|
|
|
|
#define SRV_ENUM_MODES 1
|
|
|
|
#define SRV_SET_MODE 2
|
|
|
|
|
|
|
|
int _stdcall display_handler(ioctl_t *io)
|
|
|
|
{
|
|
|
|
int retval = -1;
|
|
|
|
u32_t *inp;
|
|
|
|
u32_t *outp;
|
|
|
|
|
|
|
|
inp = io->input;
|
|
|
|
outp = io->output;
|
|
|
|
|
|
|
|
switch(io->io_code)
|
|
|
|
{
|
|
|
|
case SRV_GETVERSION:
|
|
|
|
if(io->out_size==4)
|
|
|
|
{
|
|
|
|
*outp = API_VERSION;
|
|
|
|
retval = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SRV_ENUM_MODES:
|
|
|
|
dbgprintf("SRV_ENUM_MODES inp %x inp_size %x out_size %x\n",
|
|
|
|
inp, io->inp_size, io->out_size );
|
|
|
|
|
2009-11-02 21:36:12 +01:00
|
|
|
if( radeon_modeset &&
|
|
|
|
(outp != NULL) && (io->out_size == 4) &&
|
2010-02-12 14:55:15 +01:00
|
|
|
(io->inp_size == *outp * sizeof(videomode_t)) )
|
2009-11-12 16:36:53 +01:00
|
|
|
{
|
2010-02-12 14:55:15 +01:00
|
|
|
retval = get_modes((videomode_t*)inp, outp);
|
2009-10-26 23:40:01 +01:00
|
|
|
};
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SRV_SET_MODE:
|
2009-11-02 21:36:12 +01:00
|
|
|
dbgprintf("SRV_SET_MODE inp %x inp_size %x\n",
|
|
|
|
inp, io->inp_size);
|
|
|
|
|
|
|
|
if( radeon_modeset &&
|
|
|
|
(inp != NULL) &&
|
2010-02-12 14:55:15 +01:00
|
|
|
(io->inp_size == sizeof(videomode_t)) )
|
2009-10-26 23:40:01 +01:00
|
|
|
{
|
2010-02-12 14:55:15 +01:00
|
|
|
retval = set_user_mode((videomode_t*)inp);
|
2009-10-26 23:40:01 +01:00
|
|
|
};
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-11-02 21:36:12 +01:00
|
|
|
static char log[256];
|
2010-02-12 14:55:15 +01:00
|
|
|
static pci_dev_t device;
|
2009-11-02 21:36:12 +01:00
|
|
|
|
2009-10-26 23:40:01 +01:00
|
|
|
u32_t drvEntry(int action, char *cmdline)
|
|
|
|
{
|
2010-03-01 07:55:30 +01:00
|
|
|
struct radeon_device *rdev = NULL;
|
|
|
|
|
2009-10-26 23:40:01 +01:00
|
|
|
struct pci_device_id *ent;
|
|
|
|
|
|
|
|
int err;
|
|
|
|
u32_t retval = 0;
|
|
|
|
|
|
|
|
if(action != 1)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if( GetService("DISPLAY") != 0 )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if( cmdline && *cmdline )
|
2009-11-12 16:36:53 +01:00
|
|
|
parse_cmdline(cmdline, &usermode, log, &radeon_modeset);
|
2009-10-26 23:40:01 +01:00
|
|
|
|
|
|
|
if(!dbg_open(log))
|
|
|
|
{
|
|
|
|
strcpy(log, "/rd/1/drivers/atikms.log");
|
|
|
|
|
|
|
|
if(!dbg_open(log))
|
|
|
|
{
|
|
|
|
printf("Can't open %s\nExit\n", log);
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
}
|
2010-03-10 11:23:24 +01:00
|
|
|
dbgprintf("Radeon RC10 cmdline %s\n", cmdline);
|
2009-10-26 23:40:01 +01:00
|
|
|
|
|
|
|
enum_pci_devices();
|
|
|
|
|
|
|
|
ent = find_pci_device(&device, pciidlist);
|
|
|
|
|
|
|
|
if( unlikely(ent == NULL) )
|
|
|
|
{
|
|
|
|
dbgprintf("device not found\n");
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
dbgprintf("device %x:%x\n", device.pci_dev.vendor,
|
|
|
|
device.pci_dev.device);
|
|
|
|
|
|
|
|
err = drm_get_dev(&device.pci_dev, ent);
|
|
|
|
|
2010-03-01 07:55:30 +01:00
|
|
|
rdev = rdisplay->ddev->dev_private;
|
|
|
|
|
|
|
|
if( (rdev->asic == &r600_asic) ||
|
|
|
|
(rdev->asic == &rv770_asic))
|
|
|
|
r600_2D_test(rdev);
|
2010-03-10 11:23:24 +01:00
|
|
|
else if (rdev->asic != &evergreen_asic)
|
2010-03-01 07:55:30 +01:00
|
|
|
r100_2D_test(rdev);
|
|
|
|
|
2009-11-02 21:36:12 +01:00
|
|
|
err = RegService("DISPLAY", display_handler);
|
|
|
|
|
|
|
|
if( err != 0)
|
|
|
|
dbgprintf("Set DISPLAY handler\n");
|
2009-10-26 23:40:01 +01:00
|
|
|
|
2009-11-02 21:36:12 +01:00
|
|
|
return err;
|
2009-10-26 23:40:01 +01:00
|
|
|
};
|
2010-03-10 11:23:24 +01:00
|
|
|
|
|
|
|
void drm_vblank_post_modeset(struct drm_device *dev, int crtc)
|
|
|
|
{};
|
|
|
|
|
|
|
|
void drm_vblank_pre_modeset(struct drm_device *dev, int crtc)
|
|
|
|
{};
|
|
|
|
|