From: Marek Olšák Date: Tue, 28 Feb 2017 20:27:59 +0000 (+0100) Subject: gallium/radeon: don't monitor SDMA busyness on EG/Cayman/SI X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c416d8a3bcc085d13489da618c9169b343c226eb;p=mesa.git gallium/radeon: don't monitor SDMA busyness on EG/Cayman/SI It's always busy. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=99955 Reviewed-by: Dave Airlie --- diff --git a/src/gallium/drivers/radeon/r600_gpu_load.c b/src/gallium/drivers/radeon/r600_gpu_load.c index 24f54c0e68e..9697314081a 100644 --- a/src/gallium/drivers/radeon/r600_gpu_load.c +++ b/src/gallium/drivers/radeon/r600_gpu_load.c @@ -105,7 +105,7 @@ static void r600_update_mmio_counters(struct r600_common_screen *rscreen, UPDATE_COUNTER(gui, GUI_ACTIVE); gui_busy = GUI_ACTIVE(value); - if (rscreen->chip_class >= EVERGREEN) { + if (rscreen->chip_class >= CIK) { /* SRBM_STATUS2 */ rscreen->ws->read_registers(rscreen->ws, SRBM_STATUS2, 1, &value);