These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / drivers / gpu / drm / nouveau / nvkm / engine / device / priv.h
1 #ifndef __NVKM_DEVICE_PRIV_H__
2 #define __NVKM_DEVICE_PRIV_H__
3 #include <core/device.h>
4
5 #include <subdev/bar.h>
6 #include <subdev/bios.h>
7 #include <subdev/bus.h>
8 #include <subdev/clk.h>
9 #include <subdev/devinit.h>
10 #include <subdev/fb.h>
11 #include <subdev/fuse.h>
12 #include <subdev/gpio.h>
13 #include <subdev/i2c.h>
14 #include <subdev/ibus.h>
15 #include <subdev/instmem.h>
16 #include <subdev/ltc.h>
17 #include <subdev/mc.h>
18 #include <subdev/mmu.h>
19 #include <subdev/mxm.h>
20 #include <subdev/pci.h>
21 #include <subdev/pmu.h>
22 #include <subdev/therm.h>
23 #include <subdev/timer.h>
24 #include <subdev/volt.h>
25
26 #include <engine/bsp.h>
27 #include <engine/ce.h>
28 #include <engine/cipher.h>
29 #include <engine/disp.h>
30 #include <engine/dma.h>
31 #include <engine/fifo.h>
32 #include <engine/gr.h>
33 #include <engine/mpeg.h>
34 #include <engine/mspdec.h>
35 #include <engine/msppp.h>
36 #include <engine/msvld.h>
37 #include <engine/pm.h>
38 #include <engine/sec.h>
39 #include <engine/sw.h>
40 #include <engine/vp.h>
41
42 int  nvkm_device_ctor(const struct nvkm_device_func *,
43                       const struct nvkm_device_quirk *,
44                       struct device *, enum nvkm_device_type, u64 handle,
45                       const char *name, const char *cfg, const char *dbg,
46                       bool detect, bool mmio, u64 subdev_mask,
47                       struct nvkm_device *);
48 int  nvkm_device_init(struct nvkm_device *);
49 int  nvkm_device_fini(struct nvkm_device *, bool suspend);
50 #endif