drm/radeon/kms: properly handle 40 bit MC addresses in the cursor code
Signed-off-by: Alex Deucher <alexdeucher@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
5bccf5e32f
commit
f981d4633a
@ -118,22 +118,25 @@ static void radeon_show_cursor(struct drm_crtc *crtc)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void radeon_set_cursor(struct drm_crtc *crtc, struct drm_gem_object *obj,
|
static void radeon_set_cursor(struct drm_crtc *crtc, struct drm_gem_object *obj,
|
||||||
uint32_t gpu_addr)
|
uint64_t gpu_addr)
|
||||||
{
|
{
|
||||||
struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
|
struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
|
||||||
struct radeon_device *rdev = crtc->dev->dev_private;
|
struct radeon_device *rdev = crtc->dev->dev_private;
|
||||||
|
|
||||||
if (ASIC_IS_DCE4(rdev)) {
|
if (ASIC_IS_DCE4(rdev)) {
|
||||||
WREG32(EVERGREEN_CUR_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset, 0);
|
WREG32(EVERGREEN_CUR_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset,
|
||||||
WREG32(EVERGREEN_CUR_SURFACE_ADDRESS + radeon_crtc->crtc_offset, gpu_addr);
|
upper_32_bits(gpu_addr));
|
||||||
|
WREG32(EVERGREEN_CUR_SURFACE_ADDRESS + radeon_crtc->crtc_offset,
|
||||||
|
gpu_addr & 0xffffffff);
|
||||||
} else if (ASIC_IS_AVIVO(rdev)) {
|
} else if (ASIC_IS_AVIVO(rdev)) {
|
||||||
if (rdev->family >= CHIP_RV770) {
|
if (rdev->family >= CHIP_RV770) {
|
||||||
if (radeon_crtc->crtc_id)
|
if (radeon_crtc->crtc_id)
|
||||||
WREG32(R700_D2CUR_SURFACE_ADDRESS_HIGH, 0);
|
WREG32(R700_D2CUR_SURFACE_ADDRESS_HIGH, upper_32_bits(gpu_addr));
|
||||||
else
|
else
|
||||||
WREG32(R700_D1CUR_SURFACE_ADDRESS_HIGH, 0);
|
WREG32(R700_D1CUR_SURFACE_ADDRESS_HIGH, upper_32_bits(gpu_addr));
|
||||||
}
|
}
|
||||||
WREG32(AVIVO_D1CUR_SURFACE_ADDRESS + radeon_crtc->crtc_offset, gpu_addr);
|
WREG32(AVIVO_D1CUR_SURFACE_ADDRESS + radeon_crtc->crtc_offset,
|
||||||
|
gpu_addr & 0xffffffff);
|
||||||
} else {
|
} else {
|
||||||
radeon_crtc->legacy_cursor_offset = gpu_addr - radeon_crtc->legacy_display_base_addr;
|
radeon_crtc->legacy_cursor_offset = gpu_addr - radeon_crtc->legacy_display_base_addr;
|
||||||
/* offset is from DISP(2)_BASE_ADDRESS */
|
/* offset is from DISP(2)_BASE_ADDRESS */
|
||||||
|
Loading…
Reference in New Issue
Block a user