1 #ifndef __NVBIOS_M0209_H__ 2 #define __NVBIOS_M0209_H__ 3 4 u32 nvbios_M0209Te(struct nouveau_bios *, 5 u8 *ver, u8 *hdr, u8 *cnt, u8 *len, u8 *snr, u8 *ssz); 6 7 struct nvbios_M0209E { 8 u8 v00_40; 9 u8 bits; 10 u8 modulo; 11 u8 v02_40; 12 u8 v02_07; 13 u8 v03; 14 }; 15 16 u32 nvbios_M0209Ee(struct nouveau_bios *, int idx, 17 u8 *ver, u8 *hdr, u8 *cnt, u8 *len); 18 u32 nvbios_M0209Ep(struct nouveau_bios *, int idx, 19 u8 *ver, u8 *hdr, u8 *cnt, u8 *len, 20 struct nvbios_M0209E *); 21 22 struct nvbios_M0209S { 23 u32 data[0x200]; 24 }; 25 26 u32 nvbios_M0209Se(struct nouveau_bios *, int ent, int idx, u8 *ver, u8 *hdr); 27 u32 nvbios_M0209Sp(struct nouveau_bios *, int ent, int idx, u8 *ver, u8 *hdr, 28 struct nvbios_M0209S *); 29 30 #endif 31