nv40.c 5.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * 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
 * 	    Martin Peres
 */
#include "priv.h"

27
struct nv40_therm_priv {
28
	struct nvkm_therm_priv base;
29 30
};

31 32 33
enum nv40_sensor_style { INVALID_STYLE = -1, OLD_STYLE = 0, NEW_STYLE = 1 };

static enum nv40_sensor_style
34
nv40_sensor_style(struct nvkm_therm *therm)
35
{
36
	struct nvkm_device *device = nv_device(therm);
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58

	switch (device->chipset) {
	case 0x43:
	case 0x44:
	case 0x4a:
	case 0x47:
		return OLD_STYLE;

	case 0x46:
	case 0x49:
	case 0x4b:
	case 0x4e:
	case 0x4c:
	case 0x67:
	case 0x68:
	case 0x63:
		return NEW_STYLE;
	default:
		return INVALID_STYLE;
	}
}

59
static int
60
nv40_sensor_setup(struct nvkm_therm *therm)
61
{
62
	enum nv40_sensor_style style = nv40_sensor_style(therm);
63 64

	/* enable ADC readout and disable the ALARM threshold */
65
	if (style == NEW_STYLE) {
66 67
		nv_mask(therm, 0x15b8, 0x80000000, 0);
		nv_wr32(therm, 0x15b0, 0x80003fff);
68
		mdelay(20); /* wait for the temperature to stabilize */
69
		return nv_rd32(therm, 0x15b4) & 0x3fff;
70
	} else if (style == OLD_STYLE) {
71
		nv_wr32(therm, 0x15b0, 0xff);
72
		mdelay(20); /* wait for the temperature to stabilize */
73
		return nv_rd32(therm, 0x15b4) & 0xff;
74 75
	} else
		return -ENODEV;
76 77 78
}

static int
79
nv40_temp_get(struct nvkm_therm *therm)
80
{
81
	struct nvkm_therm_priv *priv = (void *)therm;
82
	struct nvbios_therm_sensor *sensor = &priv->bios_sensor;
83
	enum nv40_sensor_style style = nv40_sensor_style(therm);
84 85
	int core_temp;

86
	if (style == NEW_STYLE) {
87 88
		nv_wr32(therm, 0x15b0, 0x80003fff);
		core_temp = nv_rd32(therm, 0x15b4) & 0x3fff;
89
	} else if (style == OLD_STYLE) {
90 91
		nv_wr32(therm, 0x15b0, 0xff);
		core_temp = nv_rd32(therm, 0x15b4) & 0xff;
92 93
	} else
		return -ENODEV;
94

95 96 97 98
	/* if the slope or the offset is unset, do no use the sensor */
	if (!sensor->slope_div || !sensor->slope_mult ||
	    !sensor->offset_num || !sensor->offset_den)
	    return -ENODEV;
99 100 101 102 103

	core_temp = core_temp * sensor->slope_mult / sensor->slope_div;
	core_temp = core_temp + sensor->offset_num / sensor->offset_den;
	core_temp = core_temp + sensor->offset_constant - 8;

104 105 106 107
	/* reserve negative temperatures for errors */
	if (core_temp < 0)
		core_temp = 0;

108 109 110
	return core_temp;
}

111
static int
112
nv40_fan_pwm_ctrl(struct nvkm_therm *therm, int line, bool enable)
113 114 115 116 117 118 119 120 121 122 123
{
	u32 mask = enable ? 0x80000000 : 0x0000000;
	if      (line == 2) nv_mask(therm, 0x0010f0, 0x80000000, mask);
	else if (line == 9) nv_mask(therm, 0x0015f4, 0x80000000, mask);
	else {
		nv_error(therm, "unknown pwm ctrl for gpio %d\n", line);
		return -ENODEV;
	}
	return 0;
}

124
static int
125
nv40_fan_pwm_get(struct nvkm_therm *therm, int line, u32 *divs, u32 *duty)
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
{
	if (line == 2) {
		u32 reg = nv_rd32(therm, 0x0010f0);
		if (reg & 0x80000000) {
			*duty = (reg & 0x7fff0000) >> 16;
			*divs = (reg & 0x00007fff);
			return 0;
		}
	} else
	if (line == 9) {
		u32 reg = nv_rd32(therm, 0x0015f4);
		if (reg & 0x80000000) {
			*divs = nv_rd32(therm, 0x0015f8);
			*duty = (reg & 0x7fffffff);
			return 0;
		}
	} else {
		nv_error(therm, "unknown pwm ctrl for gpio %d\n", line);
		return -ENODEV;
	}

	return -EINVAL;
}

150
static int
151
nv40_fan_pwm_set(struct nvkm_therm *therm, int line, u32 divs, u32 duty)
152 153
{
	if (line == 2) {
154
		nv_mask(therm, 0x0010f0, 0x7fff7fff, (duty << 16) | divs);
155 156 157
	} else
	if (line == 9) {
		nv_wr32(therm, 0x0015f8, divs);
158
		nv_mask(therm, 0x0015f4, 0x7fffffff, duty);
159 160 161 162 163 164 165 166
	} else {
		nv_error(therm, "unknown pwm ctrl for gpio %d\n", line);
		return -ENODEV;
	}

	return 0;
}

167
void
168
nv40_therm_intr(struct nvkm_subdev *subdev)
169
{
170
	struct nvkm_therm *therm = nvkm_therm(subdev);
171 172 173 174 175 176 177 178 179 180
	uint32_t stat = nv_rd32(therm, 0x1100);

	/* traitement */

	/* ack all IRQs */
	nv_wr32(therm, 0x1100, 0x70000);

	nv_error(therm, "THERM received an IRQ: stat = %x\n", stat);
}

181
static int
182 183 184 185
nv40_therm_ctor(struct nvkm_object *parent,
		struct nvkm_object *engine,
		struct nvkm_oclass *oclass, void *data, u32 size,
		struct nvkm_object **pobject)
186
{
187
	struct nv40_therm_priv *priv;
188 189
	int ret;

190
	ret = nvkm_therm_create(parent, engine, oclass, &priv);
191 192 193 194
	*pobject = nv_object(priv);
	if (ret)
		return ret;

195 196 197
	priv->base.base.pwm_ctrl = nv40_fan_pwm_ctrl;
	priv->base.base.pwm_get = nv40_fan_pwm_get;
	priv->base.base.pwm_set = nv40_fan_pwm_set;
198
	priv->base.base.temp_get = nv40_temp_get;
199
	priv->base.sensor.program_alarms = nvkm_therm_program_alarms_polling;
200
	nv_subdev(priv)->intr = nv40_therm_intr;
201
	return nvkm_therm_preinit(&priv->base.base);
202 203
}

204
static int
205
nv40_therm_init(struct nvkm_object *object)
206
{
207
	struct nvkm_therm *therm = (void *)object;
208 209 210

	nv40_sensor_setup(therm);

211
	return _nvkm_therm_init(object);
212 213
}

214
struct nvkm_oclass
215 216
nv40_therm_oclass = {
	.handle = NV_SUBDEV(THERM, 0x40),
217
	.ofuncs = &(struct nvkm_ofuncs) {
218
		.ctor = nv40_therm_ctor,
219
		.dtor = _nvkm_therm_dtor,
220
		.init = nv40_therm_init,
221
		.fini = _nvkm_therm_fini,
222
	},
223
};