2019-06-20 00:13:43 +00:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
2014-09-17 23:24:10 +00:00
|
|
|
#ifndef __NVBIOS_IMAGE_H__
|
|
|
|
#define __NVBIOS_IMAGE_H__
|
|
|
|
struct nvbios_image {
|
|
|
|
u32 base;
|
|
|
|
u32 size;
|
|
|
|
u8 type;
|
|
|
|
bool last;
|
|
|
|
};
|
|
|
|
|
2015-01-14 04:40:03 +00:00
|
|
|
bool nvbios_image(struct nvkm_bios *, int, struct nvbios_image *);
|
2014-09-17 23:24:10 +00:00
|
|
|
#endif
|