1#ifndef __NVKM_DEVINIT_NV04_H__
2#define __NVKM_DEVINIT_NV04_H__
3
4#include "priv.h"
5
6struct nv04_devinit_priv {
7 struct nouveau_devinit base;
8 u8 owner;
9};
10
11int nv04_devinit_ctor(struct nouveau_object *, struct nouveau_object *,
12 struct nouveau_oclass *, void *, u32,
13 struct nouveau_object **);
14void nv04_devinit_dtor(struct nouveau_object *);
15int nv04_devinit_init(struct nouveau_object *);
16int nv04_devinit_fini(struct nouveau_object *, bool);
17int nv04_devinit_pll_set(struct nouveau_devinit *, u32, u32);
18
19void setPLL_single(struct nouveau_devinit *, u32, struct nouveau_pll_vals *);
20void setPLL_double_highregs(struct nouveau_devinit *, u32, struct nouveau_pll_vals *);
21void setPLL_double_lowregs(struct nouveau_devinit *, u32, struct nouveau_pll_vals *);
22
23#endif
24