aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/priv.h
blob: ed398b81e86e231c7ab72d488cf1de55b543304e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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