2019-06-20 00:13:43 +00:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
2016-02-18 13:35:12 +00:00
|
|
|
#ifndef __NVBIOS_ICCSENSE_H__
|
|
|
|
#define __NVBIOS_ICCSENSE_H__
|
2016-07-27 19:49:47 +00:00
|
|
|
struct pwr_rail_resistor_t {
|
|
|
|
u8 mohm;
|
|
|
|
bool enabled;
|
|
|
|
};
|
|
|
|
|
2016-02-18 13:35:12 +00:00
|
|
|
struct pwr_rail_t {
|
|
|
|
u8 mode;
|
|
|
|
u8 extdev_id;
|
2016-07-27 19:49:47 +00:00
|
|
|
u8 resistor_count;
|
|
|
|
struct pwr_rail_resistor_t resistors[3];
|
|
|
|
u16 config;
|
2016-02-18 13:35:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct nvbios_iccsense {
|
|
|
|
int nr_entry;
|
|
|
|
struct pwr_rail_t *rail;
|
|
|
|
};
|
|
|
|
|
|
|
|
int nvbios_iccsense_parse(struct nvkm_bios *, struct nvbios_iccsense *);
|
|
|
|
#endif
|