drm/radeon: skip colorbuffer checking if COLOR_INFO.FORMAT is set to INVALID
commit 56492e0fac2dbaf7735ffd66b206a90624917789 upstream. This fixes a bug which was causing rejections of valid GPU commands from userspace. Signed-off-by: Marek Olšák <marek.olsak@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e4496194b5
commit
790d844980
|
@ -942,7 +942,10 @@ static int evergreen_cs_track_check(struct radeon_cs_parser *p)
|
|||
if (track->cb_dirty) {
|
||||
tmp = track->cb_target_mask;
|
||||
for (i = 0; i < 8; i++) {
|
||||
if ((tmp >> (i * 4)) & 0xF) {
|
||||
u32 format = G_028C70_FORMAT(track->cb_color_info[i]);
|
||||
|
||||
if (format != V_028C70_COLOR_INVALID &&
|
||||
(tmp >> (i * 4)) & 0xF) {
|
||||
/* at least one component is enabled */
|
||||
if (track->cb_color_bo[i] == NULL) {
|
||||
dev_warn(p->dev, "%s:%d mask 0x%08X | 0x%08X no cb for %d\n",
|
||||
|
|
|
@ -747,7 +747,10 @@ static int r600_cs_track_check(struct radeon_cs_parser *p)
|
|||
if (track->cb_dirty) {
|
||||
tmp = track->cb_target_mask;
|
||||
for (i = 0; i < 8; i++) {
|
||||
if ((tmp >> (i * 4)) & 0xF) {
|
||||
u32 format = G_0280A0_FORMAT(track->cb_color_info[i]);
|
||||
|
||||
if (format != V_0280A0_COLOR_INVALID &&
|
||||
(tmp >> (i * 4)) & 0xF) {
|
||||
/* at least one component is enabled */
|
||||
if (track->cb_color_bo[i] == NULL) {
|
||||
dev_warn(p->dev, "%s:%d mask 0x%08X | 0x%08X no cb for %d\n",
|
||||
|
|
Loading…
Reference in New Issue