panfrost: Rename panfrost_batch_get_bifrost_tiler()

Tiler descriptor emission will be different on CSF, so let's just
prefix the function with jm_, and pick a shorter name without bifrost
in it (the function is already conditionally defined if PAN_ARCH >= 6,
which means bifrost or later).

Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26249>
This commit is contained in:
Boris Brezillon 2023-11-15 15:40:13 +01:00 committed by Marge Bot
parent 5225eeb4b1
commit 50898556e0

View file

@ -2953,7 +2953,7 @@ panfrost_update_state_3d(struct panfrost_batch *batch)
#if PAN_ARCH >= 6
static mali_ptr
panfrost_batch_get_bifrost_tiler(struct panfrost_batch *batch)
jm_emit_tiler_desc(struct panfrost_batch *batch)
{
struct panfrost_device *dev = pan_device(batch->ctx->base.screen);
@ -3426,7 +3426,7 @@ jm_emit_tiler_job(struct panfrost_batch *batch,
#if PAN_ARCH >= 6
pan_section_pack(job, TILER_JOB, TILER, cfg) {
cfg.address = panfrost_batch_get_bifrost_tiler(batch);
cfg.address = jm_emit_tiler_desc(batch);
}
pan_section_pack(job, TILER_JOB, PADDING, cfg)