This is a note to let you know that I've just added the patch titled drm/radeon: tweak ACCEL_WORKING2 query for hawaii to the 3.14-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: drm-radeon-tweak-accel_working2-query-for-hawaii.patch and it can be found in the queue-3.14 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 3c64bd26f7e9bd589ebe0d1ebec69ef2f784c12d Mon Sep 17 00:00:00 2001 From: Alex Deucher <alexander.deucher@xxxxxxx> Date: Fri, 1 Aug 2014 20:05:30 +0200 Subject: drm/radeon: tweak ACCEL_WORKING2 query for hawaii From: Alex Deucher <alexander.deucher@xxxxxxx> commit 3c64bd26f7e9bd589ebe0d1ebec69ef2f784c12d upstream. Return 2 so we can be sure the kernel has the necessary changes for acceleration to work. Note: This patch depends on these two commits: - drm/radeon: fix cut and paste issue for hawaii. - drm/radeon: use packet2 for nop on hawaii with old firmware Signed-off-by: Alex Deucher <alexander.deucher@xxxxxxx> Signed-off-by: Andreas Boll <andreas.boll.dev@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/gpu/drm/radeon/radeon_kms.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) --- a/drivers/gpu/drm/radeon/radeon_kms.c +++ b/drivers/gpu/drm/radeon/radeon_kms.c @@ -254,7 +254,14 @@ static int radeon_info_ioctl(struct drm_ } break; case RADEON_INFO_ACCEL_WORKING2: - *value = rdev->accel_working; + if (rdev->family == CHIP_HAWAII) { + if (rdev->accel_working) + *value = 2; + else + *value = 0; + } else { + *value = rdev->accel_working; + } break; case RADEON_INFO_TILING_CONFIG: if (rdev->family >= CHIP_BONAIRE) Patches currently in stable-queue which might be from alexander.deucher@xxxxxxx are queue-3.14/drm-radeon-tweak-accel_working2-query-for-hawaii.patch queue-3.14/drm-radeon-dpm-handle-voltage-info-fetching-on-hawaii.patch queue-3.14/drm-radeon-atom-add-new-voltage-fetch-function-for-hawaii.patch queue-3.14/drm-radeon-set-vm-base-addr-using-the-pfp-v2.patch queue-3.14/drm-radeon-re-enable-dpm-by-default-on-btc.patch queue-3.14/drm-radeon-load-the-lm63-driver-for-an-lm64-thermal-chip.patch queue-3.14/drm-radeon-re-enable-dpm-by-default-on-cayman.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html