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