1#ifndef __NVBIOS_INIT_H__ 2#define __NVBIOS_INIT_H__ 3struct nvbios_init { 4 struct nvkm_subdev *subdev; 5 struct nvkm_bios *bios; 6 u16 offset; 7 struct dcb_output *outp; 8 int crtc; 9 10 /* internal state used during parsing */ 11 u8 execute; 12 u32 nested; 13 u16 repeat; 14 u16 repend; 15 u32 ramcfg; 16}; 17 18int nvbios_exec(struct nvbios_init *); 19int nvbios_init(struct nvkm_subdev *, bool execute); 20#endif 21