priv.h 1.0 KB

123456789101112131415161718192021222324252627282930
  1. #ifndef __NVKM_VOLT_PRIV_H__
  2. #define __NVKM_VOLT_PRIV_H__
  3. #define nvkm_volt(p) container_of((p), struct nvkm_volt, subdev)
  4. #include <subdev/volt.h>
  5. void nvkm_volt_ctor(const struct nvkm_volt_func *, struct nvkm_device *,
  6. int index, struct nvkm_volt *);
  7. int nvkm_volt_new_(const struct nvkm_volt_func *, struct nvkm_device *,
  8. int index, struct nvkm_volt **);
  9. struct nvkm_volt_func {
  10. int (*oneinit)(struct nvkm_volt *);
  11. int (*volt_get)(struct nvkm_volt *);
  12. int (*volt_set)(struct nvkm_volt *, u32 uv);
  13. int (*vid_get)(struct nvkm_volt *);
  14. int (*vid_set)(struct nvkm_volt *, u8 vid);
  15. int (*set_id)(struct nvkm_volt *, u8 id, int condition);
  16. int (*speedo_read)(struct nvkm_volt *);
  17. };
  18. int nvkm_voltgpio_init(struct nvkm_volt *);
  19. int nvkm_voltgpio_get(struct nvkm_volt *);
  20. int nvkm_voltgpio_set(struct nvkm_volt *, u8);
  21. int nvkm_voltpwm_init(struct nvkm_volt *volt);
  22. int nvkm_voltpwm_get(struct nvkm_volt *volt);
  23. int nvkm_voltpwm_set(struct nvkm_volt *volt, u32 uv);
  24. int gf100_volt_oneinit(struct nvkm_volt *);
  25. #endif