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