search for: 5dfa2fd

Displaying 6 results from an estimated 6 matches for "5dfa2fd".

2016 Feb 20
0
[PATCH v4 3/6] iccsense: implement for ina209, ina219 and ina3221
...8a4bd3 100644 --- a/drm/nouveau/nvkm/subdev/iccsense/Kbuild +++ b/drm/nouveau/nvkm/subdev/iccsense/Kbuild @@ -1 +1,2 @@ nvkm-y += nvkm/subdev/iccsense/base.o +nvkm-y += nvkm/subdev/iccsense/gf100.o diff --git a/drm/nouveau/nvkm/subdev/iccsense/base.c b/drm/nouveau/nvkm/subdev/iccsense/base.c index 5dfa2fd..29c6641 100644 --- a/drm/nouveau/nvkm/subdev/iccsense/base.c +++ b/drm/nouveau/nvkm/subdev/iccsense/base.c @@ -23,13 +23,161 @@ */ #include "priv.h" -struct nvkm_subdev_func iccsense_func = { 0 }; +#include <subdev/bios.h> +#include <subdev/bios/extdev.h> +#include <s...
2016 Feb 20
12
[PATCH v4 0/6] Suppor for various power sensors on GF100+
This is a complete rework from the first version I sent out. Now the implementation is more centered around the power_rails we find in the SENSE table instead of extdev centered. This makes the implementation a lot easier and straightforward. I've added support for the INA219, INA209 and INA3221 sensors found on multiple Fermi and Kepler cards. The power consumption is also exported via
2016 Feb 20
4
[PATCH v3 0/4] Suppor for various power sensors on GF100+
This is a complete rework from the first version I sent out. Now the implementation is more centered around the power_rails we find in the SENSE table instead of extdev centered. This makes the implementation a lot easier and straightforward. I've added support for the INA219, INA209 and INA3221 sensors found on multiple Fermi and Kepler cards. The power consumption is also exported via
2016 Feb 19
4
[PATCH v2 0/4] Suppor for various power sensors on GF100+
This is a complete rework from the last version I sent out. Now the implementation is more centered around the power_rails we find in the SENSE table instead of extdev centered. This makes the implementation a lot easier and straightforward. I've added support for the INA219, INA209 and INA3221 sensors found on multiple Fermi and Kepler cards, but only the INA3221 bits are tested so far.
2016 Feb 19
0
[PATCH v2 1/4] subdev/iccsense: add new subdev for power sensors
...ense/Kbuild new file mode 100644 index 0000000..b6863da --- /dev/null +++ b/drm/nouveau/nvkm/subdev/iccsense/Kbuild @@ -0,0 +1 @@ +nvkm-y += nvkm/subdev/iccsense/base.o diff --git a/drm/nouveau/nvkm/subdev/iccsense/base.c b/drm/nouveau/nvkm/subdev/iccsense/base.c new file mode 100644 index 0000000..5dfa2fd --- /dev/null +++ b/drm/nouveau/nvkm/subdev/iccsense/base.c @@ -0,0 +1,43 @@ +/* + * Copyright 2015 Martin Peres + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in th...
2016 Feb 20
0
[PATCH v4 1/6] subdev/iccsense: add new subdev for power sensors
...ense/Kbuild new file mode 100644 index 0000000..b6863da --- /dev/null +++ b/drm/nouveau/nvkm/subdev/iccsense/Kbuild @@ -0,0 +1 @@ +nvkm-y += nvkm/subdev/iccsense/base.o diff --git a/drm/nouveau/nvkm/subdev/iccsense/base.c b/drm/nouveau/nvkm/subdev/iccsense/base.c new file mode 100644 index 0000000..5dfa2fd --- /dev/null +++ b/drm/nouveau/nvkm/subdev/iccsense/base.c @@ -0,0 +1,43 @@ +/* + * Copyright 2015 Martin Peres + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in th...