based on Martins initial work v3: fix ina2x9 calculations v4: don't kmalloc(0), fix the lsb/pga stuff v5: add a field to tell if the power reading may be invalid add nkvm_iccsense_read_all function check for the device on the i2c bus Signed-off-by: Karol Herbst <nouveau@karolherbst.de> Reviewed-by: Martin Peres <martin.peres@free.fr>
17 lines
483 B
C
17 lines
483 B
C
#ifndef __NVKM_ICCSENSE_PRIV_H__
|
|
#define __NVKM_ICCSENSE_PRIV_H__
|
|
#define nvkm_iccsense(p) container_of((p), struct nvkm_iccsense, subdev)
|
|
#include <subdev/iccsense.h>
|
|
|
|
struct nvkm_iccsense_rail {
|
|
int (*read)(struct nvkm_iccsense *, struct nvkm_iccsense_rail *);
|
|
struct i2c_adapter *i2c;
|
|
u8 addr;
|
|
u8 rail;
|
|
u8 mohm;
|
|
};
|
|
|
|
void nvkm_iccsense_ctor(struct nvkm_device *, int, struct nvkm_iccsense *);
|
|
int nvkm_iccsense_new_(struct nvkm_device *, int, struct nvkm_iccsense **);
|
|
#endif
|