Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / drivers / gpu / drm / nouveau / include / nvkm / subdev / bios / init.h
1 #ifndef __NVBIOS_INIT_H__
2 #define __NVBIOS_INIT_H__
3 struct 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
18 int nvbios_exec(struct nvbios_init *);
19 int nvbios_init(struct nvkm_subdev *, bool execute);
20 #endif