Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 #ifndef __NVBIOS_PCIR_H__
0003 #define __NVBIOS_PCIR_H__
0004 struct nvbios_pcirT {
0005     u16 vendor_id;
0006     u16 device_id;
0007     u8  class_code[3];
0008     u32 image_size;
0009     u16 image_rev;
0010     u8  image_type;
0011     bool last;
0012 };
0013 
0014 u32 nvbios_pcirTe(struct nvkm_bios *, u32, u8 *ver, u16 *hdr);
0015 u32 nvbios_pcirTp(struct nvkm_bios *, u32, u8 *ver, u16 *hdr,
0016           struct nvbios_pcirT *);
0017 #endif