mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-22 10:58:08 +02:00
Fixes: 32c5d6d1dc ("iris: Add an alignment parameter to iris_bo_alloc()")
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15811>
104 lines
4.1 KiB
C
104 lines
4.1 KiB
C
/*
|
|
* Copyright © 2019 Intel Corporation
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included
|
|
* in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include "iris_perf.h"
|
|
#include "iris_context.h"
|
|
|
|
static void *
|
|
iris_oa_bo_alloc(void *bufmgr, const char *name, uint64_t size)
|
|
{
|
|
return iris_bo_alloc(bufmgr, name, size, 64, IRIS_MEMZONE_OTHER, BO_ALLOC_SMEM);
|
|
}
|
|
|
|
static void
|
|
iris_perf_emit_stall_at_pixel_scoreboard(struct iris_context *ice)
|
|
{
|
|
iris_emit_end_of_pipe_sync(&ice->batches[IRIS_BATCH_RENDER],
|
|
"OA metrics",
|
|
PIPE_CONTROL_STALL_AT_SCOREBOARD);
|
|
}
|
|
|
|
static void
|
|
iris_perf_emit_mi_report_perf_count(void *c,
|
|
void *bo,
|
|
uint32_t offset_in_bytes,
|
|
uint32_t report_id)
|
|
{
|
|
struct iris_context *ice = c;
|
|
struct iris_batch *batch = &ice->batches[IRIS_BATCH_RENDER];
|
|
batch->screen->vtbl.emit_mi_report_perf_count(batch, bo, offset_in_bytes, report_id);
|
|
}
|
|
|
|
static void
|
|
iris_perf_batchbuffer_flush(void *c, const char *file, int line)
|
|
{
|
|
struct iris_context *ice = c;
|
|
_iris_batch_flush(&ice->batches[IRIS_BATCH_RENDER], __FILE__, __LINE__);
|
|
}
|
|
|
|
static void
|
|
iris_perf_store_register_mem(void *ctx, void *bo,
|
|
uint32_t reg, uint32_t reg_size,
|
|
uint32_t offset)
|
|
{
|
|
struct iris_context *ice = ctx;
|
|
struct iris_batch *batch = &ice->batches[IRIS_BATCH_RENDER];
|
|
if (reg_size == 8) {
|
|
batch->screen->vtbl.store_register_mem64(batch, reg, bo, offset, false);
|
|
} else {
|
|
assert(reg_size == 4);
|
|
batch->screen->vtbl.store_register_mem32(batch, reg, bo, offset, false);
|
|
}
|
|
}
|
|
|
|
typedef void (*bo_unreference_t)(void *);
|
|
typedef void *(*bo_map_t)(void *, void *, unsigned flags);
|
|
typedef void (*bo_unmap_t)(void *);
|
|
typedef void (*emit_mi_report_t)(void *, void *, uint32_t, uint32_t);
|
|
typedef void (*emit_mi_flush_t)(void *);
|
|
typedef void (*store_register_mem_t)(void *ctx, void *bo,
|
|
uint32_t reg, uint32_t reg_size,
|
|
uint32_t offset);
|
|
typedef bool (*batch_references_t)(void *batch, void *bo);
|
|
typedef void (*bo_wait_rendering_t)(void *bo);
|
|
typedef int (*bo_busy_t)(void *bo);
|
|
|
|
void
|
|
iris_perf_init_vtbl(struct intel_perf_config *perf_cfg)
|
|
{
|
|
perf_cfg->vtbl.bo_alloc = iris_oa_bo_alloc;
|
|
perf_cfg->vtbl.bo_unreference = (bo_unreference_t)iris_bo_unreference;
|
|
perf_cfg->vtbl.bo_map = (bo_map_t)iris_bo_map;
|
|
perf_cfg->vtbl.bo_unmap = (bo_unmap_t)iris_bo_unmap;
|
|
perf_cfg->vtbl.emit_stall_at_pixel_scoreboard =
|
|
(emit_mi_flush_t)iris_perf_emit_stall_at_pixel_scoreboard;
|
|
|
|
perf_cfg->vtbl.emit_mi_report_perf_count =
|
|
(emit_mi_report_t)iris_perf_emit_mi_report_perf_count;
|
|
perf_cfg->vtbl.batchbuffer_flush = iris_perf_batchbuffer_flush;
|
|
perf_cfg->vtbl.store_register_mem =
|
|
(store_register_mem_t) iris_perf_store_register_mem;
|
|
perf_cfg->vtbl.batch_references = (batch_references_t)iris_batch_references;
|
|
perf_cfg->vtbl.bo_wait_rendering =
|
|
(bo_wait_rendering_t)iris_bo_wait_rendering;
|
|
perf_cfg->vtbl.bo_busy = (bo_busy_t)iris_bo_busy;
|
|
}
|