2012-12-04 09:50:33 +10:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* 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 the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Authors: Ben Skeggs
|
|
|
|
*/
|
|
|
|
#include "priv.h"
|
|
|
|
|
|
|
|
static int
|
2015-01-14 15:11:48 +10:00
|
|
|
pwm_info(struct nvkm_therm *therm, int line)
|
2012-12-04 09:50:33 +10:00
|
|
|
{
|
2015-08-20 14:54:09 +10:00
|
|
|
struct nvkm_device *device = therm->subdev.device;
|
|
|
|
u32 gpio = nvkm_rd32(device, 0x00d610 + (line * 0x04));
|
2014-02-18 03:56:11 +01:00
|
|
|
|
2012-12-05 14:56:37 +10:00
|
|
|
switch (gpio & 0x000000c0) {
|
|
|
|
case 0x00000000: /* normal mode, possibly pwm forced off by us */
|
|
|
|
case 0x00000040: /* nvio special */
|
2012-12-04 09:50:33 +10:00
|
|
|
switch (gpio & 0x0000001f) {
|
2014-02-18 03:56:11 +01:00
|
|
|
case 0x00: return 2;
|
2012-12-04 09:50:33 +10:00
|
|
|
case 0x19: return 1;
|
|
|
|
case 0x1c: return 0;
|
2014-05-12 15:05:01 +02:00
|
|
|
case 0x1e: return 2;
|
2012-12-04 09:50:33 +10:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2012-12-05 14:56:37 +10:00
|
|
|
default:
|
|
|
|
break;
|
2012-12-04 09:50:33 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
nv_error(therm, "GPIO %d unknown PWM: 0x%08x\n", line, gpio);
|
2012-12-05 14:56:37 +10:00
|
|
|
return -ENODEV;
|
2012-12-04 09:50:33 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2015-01-14 15:11:48 +10:00
|
|
|
gf110_fan_pwm_ctrl(struct nvkm_therm *therm, int line, bool enable)
|
2012-12-04 09:50:33 +10:00
|
|
|
{
|
2015-08-20 14:54:09 +10:00
|
|
|
struct nvkm_device *device = therm->subdev.device;
|
2012-12-05 14:56:37 +10:00
|
|
|
u32 data = enable ? 0x00000040 : 0x00000000;
|
2012-12-04 09:50:33 +10:00
|
|
|
int indx = pwm_info(therm, line);
|
|
|
|
if (indx < 0)
|
|
|
|
return indx;
|
2014-02-18 03:56:11 +01:00
|
|
|
else if (indx < 2)
|
2015-08-20 14:54:09 +10:00
|
|
|
nvkm_mask(device, 0x00d610 + (line * 0x04), 0x000000c0, data);
|
2014-02-18 03:56:11 +01:00
|
|
|
/* nothing to do for indx == 2, it seems hardwired to PTHERM */
|
2012-12-04 09:50:33 +10:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-12-05 14:56:37 +10:00
|
|
|
static int
|
2015-01-14 15:11:48 +10:00
|
|
|
gf110_fan_pwm_get(struct nvkm_therm *therm, int line, u32 *divs, u32 *duty)
|
2012-12-05 14:56:37 +10:00
|
|
|
{
|
2015-08-20 14:54:09 +10:00
|
|
|
struct nvkm_device *device = therm->subdev.device;
|
2012-12-05 14:56:37 +10:00
|
|
|
int indx = pwm_info(therm, line);
|
|
|
|
if (indx < 0)
|
|
|
|
return indx;
|
2014-02-18 03:56:11 +01:00
|
|
|
else if (indx < 2) {
|
2015-08-20 14:54:09 +10:00
|
|
|
if (nvkm_rd32(device, 0x00d610 + (line * 0x04)) & 0x00000040) {
|
|
|
|
*divs = nvkm_rd32(device, 0x00e114 + (indx * 8));
|
|
|
|
*duty = nvkm_rd32(device, 0x00e118 + (indx * 8));
|
2014-02-18 03:56:11 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else if (indx == 2) {
|
2015-08-20 14:54:09 +10:00
|
|
|
*divs = nvkm_rd32(device, 0x0200d8) & 0x1fff;
|
|
|
|
*duty = nvkm_rd32(device, 0x0200dc) & 0x1fff;
|
2012-12-05 14:56:37 +10:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2012-12-04 09:50:33 +10:00
|
|
|
static int
|
2015-01-14 15:11:48 +10:00
|
|
|
gf110_fan_pwm_set(struct nvkm_therm *therm, int line, u32 divs, u32 duty)
|
2012-12-04 09:50:33 +10:00
|
|
|
{
|
2015-08-20 14:54:09 +10:00
|
|
|
struct nvkm_device *device = therm->subdev.device;
|
2012-12-04 09:50:33 +10:00
|
|
|
int indx = pwm_info(therm, line);
|
|
|
|
if (indx < 0)
|
|
|
|
return indx;
|
2014-02-18 03:56:11 +01:00
|
|
|
else if (indx < 2) {
|
2015-08-20 14:54:09 +10:00
|
|
|
nvkm_wr32(device, 0x00e114 + (indx * 8), divs);
|
|
|
|
nvkm_wr32(device, 0x00e118 + (indx * 8), duty | 0x80000000);
|
2014-02-18 03:56:11 +01:00
|
|
|
} else if (indx == 2) {
|
2015-08-20 14:54:09 +10:00
|
|
|
nvkm_mask(device, 0x0200d8, 0x1fff, divs); /* keep the high bits */
|
|
|
|
nvkm_wr32(device, 0x0200dc, duty | 0x40000000);
|
2014-02-18 03:56:11 +01:00
|
|
|
}
|
2012-12-04 09:50:33 +10:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2015-01-14 15:11:48 +10:00
|
|
|
gf110_fan_pwm_clock(struct nvkm_therm *therm, int line)
|
2012-12-04 09:50:33 +10:00
|
|
|
{
|
2015-08-20 14:54:09 +10:00
|
|
|
struct nvkm_device *device = therm->subdev.device;
|
2014-02-18 03:56:11 +01:00
|
|
|
int indx = pwm_info(therm, line);
|
|
|
|
if (indx < 0)
|
|
|
|
return 0;
|
|
|
|
else if (indx < 2)
|
2015-08-20 14:54:09 +10:00
|
|
|
return (device->crystal * 1000) / 20;
|
2014-02-18 03:56:11 +01:00
|
|
|
else
|
2015-08-20 14:54:09 +10:00
|
|
|
return device->crystal * 1000 / 10;
|
2012-12-04 09:50:33 +10:00
|
|
|
}
|
|
|
|
|
2014-08-17 17:33:08 +02:00
|
|
|
int
|
2015-01-14 15:11:48 +10:00
|
|
|
gf110_therm_init(struct nvkm_object *object)
|
2012-12-04 12:10:19 +10:00
|
|
|
{
|
2015-08-20 14:54:07 +10:00
|
|
|
struct nvkm_therm_priv *therm = (void *)object;
|
2015-08-20 14:54:09 +10:00
|
|
|
struct nvkm_device *device = therm->base.subdev.device;
|
2012-12-04 12:10:19 +10:00
|
|
|
int ret;
|
|
|
|
|
2015-08-20 14:54:07 +10:00
|
|
|
ret = nvkm_therm_init(&therm->base);
|
2012-12-04 12:10:19 +10:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* enable fan tach, count revolutions per-second */
|
2015-08-20 14:54:09 +10:00
|
|
|
nvkm_mask(device, 0x00e720, 0x00000003, 0x00000002);
|
2015-08-20 14:54:07 +10:00
|
|
|
if (therm->fan->tach.func != DCB_GPIO_UNUSED) {
|
2015-08-20 14:54:09 +10:00
|
|
|
nvkm_mask(device, 0x00d79c, 0x000000ff, therm->fan->tach.line);
|
|
|
|
nvkm_wr32(device, 0x00e724, nv_device(therm)->crystal * 1000);
|
|
|
|
nvkm_mask(device, 0x00e720, 0x00000001, 0x00000001);
|
2012-12-04 12:10:19 +10:00
|
|
|
}
|
2015-08-20 14:54:09 +10:00
|
|
|
nvkm_mask(device, 0x00e720, 0x00000002, 0x00000000);
|
2012-12-04 12:10:19 +10:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-12-04 09:50:33 +10:00
|
|
|
static int
|
2015-01-14 15:11:48 +10:00
|
|
|
gf110_therm_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
|
|
|
|
struct nvkm_oclass *oclass, void *data, u32 size,
|
|
|
|
struct nvkm_object **pobject)
|
2012-12-04 09:50:33 +10:00
|
|
|
{
|
2015-08-20 14:54:07 +10:00
|
|
|
struct nvkm_therm_priv *therm;
|
2012-12-04 09:50:33 +10:00
|
|
|
int ret;
|
|
|
|
|
2015-08-20 14:54:07 +10:00
|
|
|
ret = nvkm_therm_create(parent, engine, oclass, &therm);
|
|
|
|
*pobject = nv_object(therm);
|
2012-12-04 09:50:33 +10:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2015-08-20 14:54:07 +10:00
|
|
|
g84_sensor_setup(&therm->base);
|
2014-08-24 23:15:10 +02:00
|
|
|
|
2015-08-20 14:54:07 +10:00
|
|
|
therm->base.pwm_ctrl = gf110_fan_pwm_ctrl;
|
|
|
|
therm->base.pwm_get = gf110_fan_pwm_get;
|
|
|
|
therm->base.pwm_set = gf110_fan_pwm_set;
|
|
|
|
therm->base.pwm_clock = gf110_fan_pwm_clock;
|
|
|
|
therm->base.temp_get = g84_temp_get;
|
|
|
|
therm->base.fan_sense = gt215_therm_fan_sense;
|
|
|
|
therm->sensor.program_alarms = nvkm_therm_program_alarms_polling;
|
|
|
|
return nvkm_therm_preinit(&therm->base);
|
2012-12-04 09:50:33 +10:00
|
|
|
}
|
|
|
|
|
2015-01-14 15:11:48 +10:00
|
|
|
struct nvkm_oclass
|
|
|
|
gf110_therm_oclass = {
|
2012-12-04 09:50:33 +10:00
|
|
|
.handle = NV_SUBDEV(THERM, 0xd0),
|
2015-01-14 15:11:48 +10:00
|
|
|
.ofuncs = &(struct nvkm_ofuncs) {
|
|
|
|
.ctor = gf110_therm_ctor,
|
|
|
|
.dtor = _nvkm_therm_dtor,
|
|
|
|
.init = gf110_therm_init,
|
|
|
|
.fini = g84_therm_fini,
|
2012-12-04 09:50:33 +10:00
|
|
|
},
|
|
|
|
};
|