priv.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #ifndef __NVKM_DEVICE_PRIV_H__
  2. #define __NVKM_DEVICE_PRIV_H__
  3. #include <core/device.h>
  4. #include <subdev/bar.h>
  5. #include <subdev/bios.h>
  6. #include <subdev/bus.h>
  7. #include <subdev/clk.h>
  8. #include <subdev/devinit.h>
  9. #include <subdev/fb.h>
  10. #include <subdev/fuse.h>
  11. #include <subdev/gpio.h>
  12. #include <subdev/i2c.h>
  13. #include <subdev/ibus.h>
  14. #include <subdev/iccsense.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/top.h>
  25. #include <subdev/volt.h>
  26. #include <subdev/secboot.h>
  27. #include <engine/bsp.h>
  28. #include <engine/ce.h>
  29. #include <engine/cipher.h>
  30. #include <engine/disp.h>
  31. #include <engine/dma.h>
  32. #include <engine/fifo.h>
  33. #include <engine/gr.h>
  34. #include <engine/mpeg.h>
  35. #include <engine/mspdec.h>
  36. #include <engine/msppp.h>
  37. #include <engine/msvld.h>
  38. #include <engine/nvenc.h>
  39. #include <engine/nvdec.h>
  40. #include <engine/pm.h>
  41. #include <engine/sec.h>
  42. #include <engine/sw.h>
  43. #include <engine/vic.h>
  44. #include <engine/vp.h>
  45. int nvkm_device_ctor(const struct nvkm_device_func *,
  46. const struct nvkm_device_quirk *,
  47. struct device *, enum nvkm_device_type, u64 handle,
  48. const char *name, const char *cfg, const char *dbg,
  49. bool detect, bool mmio, u64 subdev_mask,
  50. struct nvkm_device *);
  51. int nvkm_device_init(struct nvkm_device *);
  52. int nvkm_device_fini(struct nvkm_device *, bool suspend);
  53. #endif