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:
Mary Guillemard 2023-10-11 13:57:04 +02:00 committed by Marge Bot
parent 32f2a0f1e1
commit 2d8b9b9160
2 changed files with 5 additions and 1 deletions

View file

@ -19,6 +19,7 @@ nvk_classes = [
'clc3c0',
'clc597',
'clc5c0',
'clc697',
'clc6c0',
]

View file

@ -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);