]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - drivers/gpu/drm/nouveau/nvkm/engine/device/priv.h
drm/nouveau/iccsense: configure sensors like nvidia does
[mirror_ubuntu-focal-kernel.git] / drivers / gpu / drm / nouveau / nvkm / engine / device / priv.h
CommitLineData
9838366c
BS
1#ifndef __NVKM_DEVICE_PRIV_H__
2#define __NVKM_DEVICE_PRIV_H__
9719047b 3#include <core/device.h>
9838366c 4
6cf813fb
BS
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>
dc06e366 15#include <subdev/iccsense.h>
6cf813fb
BS
16#include <subdev/instmem.h>
17#include <subdev/ltc.h>
18#include <subdev/mc.h>
19#include <subdev/mmu.h>
20#include <subdev/mxm.h>
0a34fb31 21#include <subdev/pci.h>
6cf813fb
BS
22#include <subdev/pmu.h>
23#include <subdev/therm.h>
24#include <subdev/timer.h>
25#include <subdev/volt.h>
7d12388a 26#include <subdev/secboot.h>
6cf813fb
BS
27
28#include <engine/bsp.h>
29#include <engine/ce.h>
30#include <engine/cipher.h>
31#include <engine/disp.h>
19fef52d 32#include <engine/dma.h>
6cf813fb
BS
33#include <engine/fifo.h>
34#include <engine/gr.h>
35#include <engine/mpeg.h>
36#include <engine/mspdec.h>
37#include <engine/msppp.h>
38#include <engine/msvld.h>
294af04b 39#include <engine/nvenc.h>
3545b425 40#include <engine/nvdec.h>
6cf813fb
BS
41#include <engine/pm.h>
42#include <engine/sec.h>
43#include <engine/sw.h>
72150b2e 44#include <engine/vic.h>
6cf813fb
BS
45#include <engine/vp.h>
46
7974dd1b
BS
47int nvkm_device_ctor(const struct nvkm_device_func *,
48 const struct nvkm_device_quirk *,
26c9e8ef 49 struct device *, enum nvkm_device_type, u64 handle,
7974dd1b
BS
50 const char *name, const char *cfg, const char *dbg,
51 bool detect, bool mmio, u64 subdev_mask,
52 struct nvkm_device *);
53int nvkm_device_init(struct nvkm_device *);
54int nvkm_device_fini(struct nvkm_device *, bool suspend);
9838366c 55#endif