iccsense.h 288 B

12345678910111213141516
  1. #ifndef __NVBIOS_ICCSENSE_H__
  2. #define __NVBIOS_ICCSENSE_H__
  3. struct pwr_rail_t {
  4. u8 mode;
  5. u8 extdev_id;
  6. u8 resistor_mohm;
  7. u8 rail;
  8. };
  9. struct nvbios_iccsense {
  10. int nr_entry;
  11. struct pwr_rail_t *rail;
  12. };
  13. int nvbios_iccsense_parse(struct nvkm_bios *, struct nvbios_iccsense *);
  14. #endif