[Mesa-dev] [PATCH 1/2] gallium/radeon: refactor the GRBM counters path
Marek Olšák
maraeo at gmail.com
Mon Jan 23 17:50:08 UTC 2017
On Fri, Jan 20, 2017 at 8:19 PM, Samuel Pitoiset
<samuel.pitoiset at gmail.com> wrote:
> This will allow to expose more queries in order to know which
> blocks are busy/idle.
>
> Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
> ---
> src/gallium/drivers/radeon/r600_gpu_load.c | 55 ++++++++++++++-------------
> src/gallium/drivers/radeon/r600_pipe_common.h | 18 +++++----
> src/gallium/drivers/radeon/r600_query.c | 14 +++----
> 3 files changed, 44 insertions(+), 43 deletions(-)
>
> diff --git a/src/gallium/drivers/radeon/r600_gpu_load.c b/src/gallium/drivers/radeon/r600_gpu_load.c
> index e3488b3ac7..38ddda1652 100644
> --- a/src/gallium/drivers/radeon/r600_gpu_load.c
> +++ b/src/gallium/drivers/radeon/r600_gpu_load.c
> @@ -35,6 +35,7 @@
> */
>
> #include "r600_pipe_common.h"
> +#include "r600_query.h"
> #include "os/os_time.h"
>
> /* For good accuracy at 1000 fps or lower. This will be inaccurate for higher
> @@ -45,6 +46,12 @@
> #define SPI_BUSY(x) (((x) >> 22) & 0x1)
> #define GUI_ACTIVE(x) (((x) >> 31) & 0x1)
>
> +#define UPDATE_COUNTER(field, mask) \
> + if (mask(value)) \
> + p_atomic_inc(&counters->named.field.busy); \
> + else \
> + p_atomic_inc(&counters->named.field.idle);
> +
> static void r600_update_grbm_counters(struct r600_common_screen *rscreen,
> union r600_grbm_counters *counters)
> {
> @@ -52,15 +59,8 @@ static void r600_update_grbm_counters(struct r600_common_screen *rscreen,
>
> rscreen->ws->read_registers(rscreen->ws, GRBM_STATUS, 1, &value);
>
> - if (SPI_BUSY(value))
> - p_atomic_inc(&counters->named.spi_busy);
> - else
> - p_atomic_inc(&counters->named.spi_idle);
> -
> - if (GUI_ACTIVE(value))
> - p_atomic_inc(&counters->named.gui_busy);
> - else
> - p_atomic_inc(&counters->named.gui_idle);
> + UPDATE_COUNTER(spi, SPI_BUSY);
> + UPDATE_COUNTER(gui, GUI_ACTIVE);
> }
>
> static PIPE_THREAD_ROUTINE(r600_gpu_load_thread, param)
> @@ -104,8 +104,8 @@ void r600_gpu_load_kill_thread(struct r600_common_screen *rscreen)
> rscreen->gpu_load_thread = 0;
> }
>
> -static uint64_t r600_read_counter(struct r600_common_screen *rscreen,
> - unsigned busy_index)
> +static uint64_t r600_read_grbm_counter(struct r600_common_screen *rscreen,
> + unsigned busy_index)
> {
> /* Start the thread if needed. */
> if (!rscreen->gpu_load_thread) {
> @@ -123,10 +123,10 @@ static uint64_t r600_read_counter(struct r600_common_screen *rscreen,
> return busy | ((uint64_t)idle << 32);
> }
>
> -static unsigned r600_end_counter(struct r600_common_screen *rscreen,
> - uint64_t begin, unsigned busy_index)
> +static unsigned r600_end_grbm_counter(struct r600_common_screen *rscreen,
> + uint64_t begin, unsigned busy_index)
> {
> - uint64_t end = r600_read_counter(rscreen, busy_index);
> + uint64_t end = r600_read_grbm_counter(rscreen, busy_index);
> unsigned busy = (end & 0xffffffff) - (begin & 0xffffffff);
> unsigned idle = (end >> 32) - (begin >> 32);
>
> @@ -147,25 +147,28 @@ static unsigned r600_end_counter(struct r600_common_screen *rscreen,
> }
> }
>
> -#define BUSY_INDEX(rscreen, field) (&rscreen->grbm_counters.named.field##_busy - \
> +#define BUSY_INDEX(rscreen, field) (&rscreen->grbm_counters.named.field.busy - \
> rscreen->grbm_counters.array)
>
> -uint64_t r600_begin_counter_spi(struct r600_common_screen *rscreen)
> -{
> - return r600_read_counter(rscreen, BUSY_INDEX(rscreen, spi));
> -}
> -
> -unsigned r600_end_counter_spi(struct r600_common_screen *rscreen, uint64_t begin)
> +static unsigned busy_index_from_type(struct r600_common_screen *rscreen,
> + unsigned type)
> {
> - return r600_end_counter(rscreen, begin, BUSY_INDEX(rscreen, spi));
> + switch (type) {
> + case R600_QUERY_GPU_LOAD: return BUSY_INDEX(rscreen, gui);
> + case R600_QUERY_GPU_SHADERS_BUSY: return BUSY_INDEX(rscreen, spi);
> + default: unreachable("query type does not correspond to grbm id");
Always make a new line after ':'
Other than that:
Reviewed-by: Marek Olšák <marek.olsak at amd.com>
Marek
More information about the mesa-dev
mailing list