mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 13:28:06 +02:00
nouveau: nvidia_header: Add AMPERE_A in vk_push_print
Signed-off-by: Mary Guillemard <mary.guillemard@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27126>
This commit is contained in:
parent
32f2a0f1e1
commit
2d8b9b9160
2 changed files with 5 additions and 1 deletions
|
|
@ -19,6 +19,7 @@ nvk_classes = [
|
|||
'clc3c0',
|
||||
'clc597',
|
||||
'clc5c0',
|
||||
'clc697',
|
||||
'clc6c0',
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
#include "nvk_clc397.h"
|
||||
#include "nvk_clc3c0.h"
|
||||
#include "nvk_clc597.h"
|
||||
#include "nvk_clc697.h"
|
||||
|
||||
#ifndef NDEBUG
|
||||
void
|
||||
|
|
@ -106,7 +107,9 @@ vk_push_print(FILE *fp, const struct nv_push *push,
|
|||
} else {
|
||||
switch (subchan) {
|
||||
case 0:
|
||||
if (devinfo->cls_eng3d >= 0xc597)
|
||||
if (devinfo->cls_eng3d >= 0xc697)
|
||||
mthd_name = P_PARSE_NVC697_MTHD(mthd);
|
||||
else if (devinfo->cls_eng3d >= 0xc597)
|
||||
mthd_name = P_PARSE_NVC597_MTHD(mthd);
|
||||
else if (devinfo->cls_eng3d >= 0xc397)
|
||||
mthd_name = P_PARSE_NVC397_MTHD(mthd);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue