mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 19:58:09 +02:00
nvk: Actually reserve 1/2 for FALCON
In 03f785083f ("nvk: Reserve MME scratch area for communicating with
FALCON"), we said we reserved these but actually only reserved 0. Only
0 is actually used today but if we're going to claim to reserve
registers we should actually do it.
Reviewed-by: Mary Guillemard <mary@mary.zone>
Reviewed-by: Mohamed Ahmed <mohamedahmedegypt2001@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37671>
This commit is contained in:
parent
17ab1d463f
commit
0bfe27553d
1 changed files with 2 additions and 2 deletions
|
|
@ -46,8 +46,8 @@ enum nvk_mme {
|
|||
enum nvk_mme_scratch {
|
||||
/* These are reserved for communicating with FALCON */
|
||||
NVK_MME_SCRATCH_FALCON_0 = 0,
|
||||
NVK_MME_SCRATCH_FALCON_1 = 0,
|
||||
NVK_MME_SCRATCH_FALCON_2 = 0,
|
||||
NVK_MME_SCRATCH_FALCON_1 = 1,
|
||||
NVK_MME_SCRATCH_FALCON_2 = 2,
|
||||
|
||||
NVK_MME_SCRATCH_CS_INVOCATIONS_HI,
|
||||
NVK_MME_SCRATCH_CS_INVOCATIONS_LO,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue