1/* SPDX-License-Identifier: MIT */
2#ifndef __NVBIOS_P0260_H__
3#define __NVBIOS_P0260_H__
4u32 nvbios_P0260Te(struct nvkm_bios *,
5		   u8 *ver, u8 *hdr, u8 *cnt, u8 *len, u8 *xnr, u8 *xsz);
6
7struct nvbios_P0260E {
8	u32 data;
9};
10
11u32 nvbios_P0260Ee(struct nvkm_bios *, int idx, u8 *ver, u8 *hdr);
12u32 nvbios_P0260Ep(struct nvkm_bios *, int idx, u8 *ver, u8 *hdr,
13		   struct nvbios_P0260E *);
14
15struct nvbios_P0260X {
16	u32 data;
17};
18
19u32 nvbios_P0260Xe(struct nvkm_bios *, int idx, u8 *ver, u8 *hdr);
20u32 nvbios_P0260Xp(struct nvkm_bios *, int idx, u8 *ver, u8 *hdr,
21		   struct nvbios_P0260X *);
22#endif
23