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