1 /* SPDX-License-Identifier: MIT 2 * 3 * Copyright (c) 2025, NVIDIA CORPORATION. All rights reserved. 4 */ 5 #include "gpu.h" 6 7 #include <nvif/class.h> 8 9 const struct nvkm_rm_gpu 10 ad10x_gpu = { 11 .disp.class = { 12 .root = AD102_DISP, 13 .caps = GV100_DISP_CAPS, 14 .core = AD102_DISP_CORE_CHANNEL_DMA, 15 .wndw = GA102_DISP_WINDOW_CHANNEL_DMA, 16 .wimm = GA102_DISP_WINDOW_IMM_CHANNEL_DMA, 17 .curs = GA102_DISP_CURSOR, 18 }, 19 20 .usermode.class = AMPERE_USERMODE_A, 21 }; 22