提交 08de5743 编写于 作者: K Karol Herbst 提交者: Ben Skeggs

drm/nouveau/volt/gf100-: Add speedo

v5: Squashed speedo related commits.
Signed-off-by: NKarol Herbst <karolherbst@gmail.com>
Reviewed-by: NMartin Peres <martin.peres@free.fr>
Signed-off-by: NBen Skeggs <bskeggs@redhat.com>
上级 a3c950f2
...@@ -25,6 +25,8 @@ struct nvkm_volt { ...@@ -25,6 +25,8 @@ struct nvkm_volt {
u8 max0_id; u8 max0_id;
u8 max1_id; u8 max1_id;
u8 max2_id; u8 max2_id;
int speedo;
}; };
int nvkm_volt_map(struct nvkm_volt *volt, u8 id, u8 temperature); int nvkm_volt_map(struct nvkm_volt *volt, u8 id, u8 temperature);
......
...@@ -195,6 +195,14 @@ nvkm_volt_parse_bios(struct nvkm_bios *bios, struct nvkm_volt *volt) ...@@ -195,6 +195,14 @@ nvkm_volt_parse_bios(struct nvkm_bios *bios, struct nvkm_volt *volt)
} }
} }
static int
nvkm_volt_speedo_read(struct nvkm_volt *volt)
{
if (volt->func->speedo_read)
return volt->func->speedo_read(volt);
return -EINVAL;
}
static int static int
nvkm_volt_init(struct nvkm_subdev *subdev) nvkm_volt_init(struct nvkm_subdev *subdev)
{ {
...@@ -209,6 +217,21 @@ nvkm_volt_init(struct nvkm_subdev *subdev) ...@@ -209,6 +217,21 @@ nvkm_volt_init(struct nvkm_subdev *subdev)
return 0; return 0;
} }
static int
nvkm_volt_oneinit(struct nvkm_subdev *subdev)
{
struct nvkm_volt *volt = nvkm_volt(subdev);
volt->speedo = nvkm_volt_speedo_read(volt);
if (volt->speedo > 0)
nvkm_debug(&volt->subdev, "speedo %x\n", volt->speedo);
if (volt->func->oneinit)
return volt->func->oneinit(volt);
return 0;
}
static void * static void *
nvkm_volt_dtor(struct nvkm_subdev *subdev) nvkm_volt_dtor(struct nvkm_subdev *subdev)
{ {
...@@ -219,6 +242,7 @@ static const struct nvkm_subdev_func ...@@ -219,6 +242,7 @@ static const struct nvkm_subdev_func
nvkm_volt = { nvkm_volt = {
.dtor = nvkm_volt_dtor, .dtor = nvkm_volt_dtor,
.init = nvkm_volt_init, .init = nvkm_volt_init,
.oneinit = nvkm_volt_oneinit,
}; };
void void
......
...@@ -23,10 +23,36 @@ ...@@ -23,10 +23,36 @@
*/ */
#include "priv.h" #include "priv.h"
#include <subdev/fuse.h>
static int
gf100_volt_speedo_read(struct nvkm_volt *volt)
{
struct nvkm_device *device = volt->subdev.device;
struct nvkm_fuse *fuse = device->fuse;
if (!fuse)
return -EINVAL;
return nvkm_fuse_read(fuse, 0x1cc);
}
int
gf100_volt_oneinit(struct nvkm_volt *volt)
{
struct nvkm_subdev *subdev = &volt->subdev;
if (volt->speedo <= 0)
nvkm_error(subdev, "couldn't find speedo value, volting not "
"possible\n");
return 0;
}
static const struct nvkm_volt_func static const struct nvkm_volt_func
gf100_volt = { gf100_volt = {
.oneinit = gf100_volt_oneinit,
.vid_get = nvkm_voltgpio_get, .vid_get = nvkm_voltgpio_get,
.vid_set = nvkm_voltgpio_set, .vid_set = nvkm_voltgpio_set,
.speedo_read = gf100_volt_speedo_read,
}; };
int int
......
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#include <subdev/gpio.h> #include <subdev/gpio.h>
#include <subdev/bios.h> #include <subdev/bios.h>
#include <subdev/bios/volt.h> #include <subdev/bios/volt.h>
#include <subdev/fuse.h>
#define gk104_volt(p) container_of((p), struct gk104_volt, base) #define gk104_volt(p) container_of((p), struct gk104_volt, base)
struct gk104_volt { struct gk104_volt {
...@@ -64,13 +65,33 @@ gk104_volt_set(struct nvkm_volt *base, u32 uv) ...@@ -64,13 +65,33 @@ gk104_volt_set(struct nvkm_volt *base, u32 uv)
return 0; return 0;
} }
static int
gk104_volt_speedo_read(struct nvkm_volt *volt)
{
struct nvkm_device *device = volt->subdev.device;
struct nvkm_fuse *fuse = device->fuse;
int ret;
if (!fuse)
return -EINVAL;
nvkm_wr32(device, 0x122634, 0x0);
ret = nvkm_fuse_read(fuse, 0x3a8);
nvkm_wr32(device, 0x122634, 0x41);
return ret;
}
static const struct nvkm_volt_func static const struct nvkm_volt_func
gk104_volt_pwm = { gk104_volt_pwm = {
.oneinit = gf100_volt_oneinit,
.volt_get = gk104_volt_get, .volt_get = gk104_volt_get,
.volt_set = gk104_volt_set, .volt_set = gk104_volt_set,
.speedo_read = gk104_volt_speedo_read,
}, gk104_volt_gpio = { }, gk104_volt_gpio = {
.oneinit = gf100_volt_oneinit,
.vid_get = nvkm_voltgpio_get, .vid_get = nvkm_voltgpio_get,
.vid_set = nvkm_voltgpio_set, .vid_set = nvkm_voltgpio_set,
.speedo_read = gk104_volt_speedo_read,
}; };
int int
......
...@@ -9,11 +9,13 @@ int nvkm_volt_new_(const struct nvkm_volt_func *, struct nvkm_device *, ...@@ -9,11 +9,13 @@ int nvkm_volt_new_(const struct nvkm_volt_func *, struct nvkm_device *,
int index, struct nvkm_volt **); int index, struct nvkm_volt **);
struct nvkm_volt_func { struct nvkm_volt_func {
int (*oneinit)(struct nvkm_volt *);
int (*volt_get)(struct nvkm_volt *); int (*volt_get)(struct nvkm_volt *);
int (*volt_set)(struct nvkm_volt *, u32 uv); int (*volt_set)(struct nvkm_volt *, u32 uv);
int (*vid_get)(struct nvkm_volt *); int (*vid_get)(struct nvkm_volt *);
int (*vid_set)(struct nvkm_volt *, u8 vid); int (*vid_set)(struct nvkm_volt *, u8 vid);
int (*set_id)(struct nvkm_volt *, u8 id, int condition); int (*set_id)(struct nvkm_volt *, u8 id, int condition);
int (*speedo_read)(struct nvkm_volt *);
}; };
int nvkm_voltgpio_init(struct nvkm_volt *); int nvkm_voltgpio_init(struct nvkm_volt *);
...@@ -23,4 +25,6 @@ int nvkm_voltgpio_set(struct nvkm_volt *, u8); ...@@ -23,4 +25,6 @@ int nvkm_voltgpio_set(struct nvkm_volt *, u8);
int nvkm_voltpwm_init(struct nvkm_volt *volt); int nvkm_voltpwm_init(struct nvkm_volt *volt);
int nvkm_voltpwm_get(struct nvkm_volt *volt); int nvkm_voltpwm_get(struct nvkm_volt *volt);
int nvkm_voltpwm_set(struct nvkm_volt *volt, u32 uv); int nvkm_voltpwm_set(struct nvkm_volt *volt, u32 uv);
int gf100_volt_oneinit(struct nvkm_volt *);
#endif #endif
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册