xref: /netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/npde.h (revision 41ec02673d281bbb3d38e6c78504ce6e30c228c1)
1 /*	$NetBSD: npde.h,v 1.3 2021/12/18 23:45:33 riastradh Exp $	*/
2 
3 /* SPDX-License-Identifier: MIT */
4 #ifndef __NVBIOS_NPDE_H__
5 #define __NVBIOS_NPDE_H__
6 struct nvbios_npdeT {
7 	u32 image_size;
8 	bool last;
9 };
10 
11 u32 nvbios_npdeTe(struct nvkm_bios *, u32);
12 u32 nvbios_npdeTp(struct nvkm_bios *, u32, struct nvbios_npdeT *);
13 #endif
14