panfrost: Restrict job descriptor emission to JM hardware

CSF hardware issue jobs through command stream instructions.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26356>
This commit is contained in:
Boris Brezillon 2023-11-15 12:49:19 +01:00 committed by Marge Bot
parent 54e0086abe
commit 1d4583759a
2 changed files with 5 additions and 0 deletions

View file

@ -910,6 +910,7 @@ GENX(pan_emit_fbd)(const struct panfrost_device *dev,
}
#endif
#if PAN_ARCH <= 9
void
GENX(pan_emit_fragment_job)(const struct pan_fb_info *fb, mali_ptr fbd,
void *out)
@ -935,3 +936,4 @@ GENX(pan_emit_fragment_job)(const struct pan_fb_info *fb, mali_ptr fbd,
#endif
}
}
#endif

View file

@ -182,8 +182,11 @@ unsigned GENX(pan_emit_fbd)(const struct panfrost_device *dev,
const struct pan_tiler_context *tiler_ctx,
void *out);
#if PAN_ARCH <= 9
void GENX(pan_emit_fragment_job)(const struct pan_fb_info *fb, mali_ptr fbd,
void *out);
#endif
#endif /* ifdef PAN_ARCH */
#endif