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 28 29
enum nv40_sensor_style { INVALID_STYLE = -1, OLD_STYLE = 0, NEW_STYLE = 1 };

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

	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;
	}
}

55
static int
56
nv40_sensor_setup(struct nvkm_therm *therm)
57
{
58
	enum nv40_sensor_style style = nv40_sensor_style(therm);
59 60

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

static int
B
Ben Skeggs 已提交
75
nv40_temp_get(struct nvkm_therm *obj)
76
{
B
Ben Skeggs 已提交
77 78 79
	struct nvkm_therm_priv *therm = container_of(obj, typeof(*therm), base);
	struct nvbios_therm_sensor *sensor = &therm->bios_sensor;
	enum nv40_sensor_style style = nv40_sensor_style(&therm->base);
80 81
	int core_temp;

82
	if (style == NEW_STYLE) {
83 84
		nv_wr32(therm, 0x15b0, 0x80003fff);
		core_temp = nv_rd32(therm, 0x15b4) & 0x3fff;
85
	} else if (style == OLD_STYLE) {
86 87
		nv_wr32(therm, 0x15b0, 0xff);
		core_temp = nv_rd32(therm, 0x15b4) & 0xff;
88 89
	} else
		return -ENODEV;
90

91 92 93 94
	/* 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;
95 96 97 98 99

	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;

100 101 102 103
	/* reserve negative temperatures for errors */
	if (core_temp < 0)
		core_temp = 0;

104 105 106
	return core_temp;
}

107
static int
108
nv40_fan_pwm_ctrl(struct nvkm_therm *therm, int line, bool enable)
109 110 111 112 113 114 115 116 117 118 119
{
	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;
}

120
static int
121
nv40_fan_pwm_get(struct nvkm_therm *therm, int line, u32 *divs, u32 *duty)
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
{
	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;
}

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

	return 0;
}

163
void
164
nv40_therm_intr(struct nvkm_subdev *subdev)
165
{
166
	struct nvkm_therm *therm = nvkm_therm(subdev);
167 168 169 170 171 172 173 174 175 176
	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);
}

177
static int
178 179 180 181
nv40_therm_ctor(struct nvkm_object *parent,
		struct nvkm_object *engine,
		struct nvkm_oclass *oclass, void *data, u32 size,
		struct nvkm_object **pobject)
182
{
B
Ben Skeggs 已提交
183
	struct nvkm_therm_priv *therm;
184 185
	int ret;

B
Ben Skeggs 已提交
186 187
	ret = nvkm_therm_create(parent, engine, oclass, &therm);
	*pobject = nv_object(therm);
188 189 190
	if (ret)
		return ret;

B
Ben Skeggs 已提交
191 192 193 194 195 196 197
	therm->base.pwm_ctrl = nv40_fan_pwm_ctrl;
	therm->base.pwm_get = nv40_fan_pwm_get;
	therm->base.pwm_set = nv40_fan_pwm_set;
	therm->base.temp_get = nv40_temp_get;
	therm->sensor.program_alarms = nvkm_therm_program_alarms_polling;
	nv_subdev(therm)->intr = nv40_therm_intr;
	return nvkm_therm_preinit(&therm->base);
198 199
}

200
static int
201
nv40_therm_init(struct nvkm_object *object)
202
{
203
	struct nvkm_therm *therm = (void *)object;
204 205 206

	nv40_sensor_setup(therm);

207
	return _nvkm_therm_init(object);
208 209
}

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