nv40.c 6.2 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
	struct nvkm_device *device = therm->subdev.device;
59
	enum nv40_sensor_style style = nv40_sensor_style(therm);
60 61

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

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

84
	if (style == NEW_STYLE) {
85 86
		nvkm_wr32(device, 0x15b0, 0x80003fff);
		core_temp = nvkm_rd32(device, 0x15b4) & 0x3fff;
87
	} else if (style == OLD_STYLE) {
88 89
		nvkm_wr32(device, 0x15b0, 0xff);
		core_temp = nvkm_rd32(device, 0x15b4) & 0xff;
90 91
	} else
		return -ENODEV;
92

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

	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;

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

106 107 108
	return core_temp;
}

109
static int
110
nv40_fan_pwm_ctrl(struct nvkm_therm *therm, int line, bool enable)
111
{
112 113
	struct nvkm_subdev *subdev = &therm->subdev;
	struct nvkm_device *device = subdev->device;
114
	u32 mask = enable ? 0x80000000 : 0x0000000;
115 116
	if      (line == 2) nvkm_mask(device, 0x0010f0, 0x80000000, mask);
	else if (line == 9) nvkm_mask(device, 0x0015f4, 0x80000000, mask);
117
	else {
118
		nvkm_error(subdev, "unknown pwm ctrl for gpio %d\n", line);
119 120 121 122 123
		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
	struct nvkm_subdev *subdev = &therm->subdev;
	struct nvkm_device *device = subdev->device;
129
	if (line == 2) {
130
		u32 reg = nvkm_rd32(device, 0x0010f0);
131 132 133 134 135 136 137
		if (reg & 0x80000000) {
			*duty = (reg & 0x7fff0000) >> 16;
			*divs = (reg & 0x00007fff);
			return 0;
		}
	} else
	if (line == 9) {
138
		u32 reg = nvkm_rd32(device, 0x0015f4);
139
		if (reg & 0x80000000) {
140
			*divs = nvkm_rd32(device, 0x0015f8);
141 142 143 144
			*duty = (reg & 0x7fffffff);
			return 0;
		}
	} else {
145
		nvkm_error(subdev, "unknown pwm ctrl for gpio %d\n", line);
146 147 148 149 150 151
		return -ENODEV;
	}

	return -EINVAL;
}

152
static int
153
nv40_fan_pwm_set(struct nvkm_therm *therm, int line, u32 divs, u32 duty)
154
{
155 156
	struct nvkm_subdev *subdev = &therm->subdev;
	struct nvkm_device *device = subdev->device;
157
	if (line == 2) {
158
		nvkm_mask(device, 0x0010f0, 0x7fff7fff, (duty << 16) | divs);
159 160
	} else
	if (line == 9) {
161 162
		nvkm_wr32(device, 0x0015f8, divs);
		nvkm_mask(device, 0x0015f4, 0x7fffffff, duty);
163
	} else {
164
		nvkm_error(subdev, "unknown pwm ctrl for gpio %d\n", line);
165 166 167 168 169 170
		return -ENODEV;
	}

	return 0;
}

171
void
172
nv40_therm_intr(struct nvkm_subdev *subdev)
173
{
174
	struct nvkm_therm *therm = nvkm_therm(subdev);
175 176
	struct nvkm_device *device = therm->subdev.device;
	uint32_t stat = nvkm_rd32(device, 0x1100);
177 178 179 180

	/* traitement */

	/* ack all IRQs */
181
	nvkm_wr32(device, 0x1100, 0x70000);
182

183
	nvkm_error(subdev, "THERM received an IRQ: stat = %x\n", stat);
184 185
}

186
static int
187 188 189 190
nv40_therm_ctor(struct nvkm_object *parent,
		struct nvkm_object *engine,
		struct nvkm_oclass *oclass, void *data, u32 size,
		struct nvkm_object **pobject)
191
{
B
Ben Skeggs 已提交
192
	struct nvkm_therm_priv *therm;
193 194
	int ret;

B
Ben Skeggs 已提交
195 196
	ret = nvkm_therm_create(parent, engine, oclass, &therm);
	*pobject = nv_object(therm);
197 198 199
	if (ret)
		return ret;

B
Ben Skeggs 已提交
200 201 202 203 204 205 206
	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);
207 208
}

209
static int
210
nv40_therm_init(struct nvkm_object *object)
211
{
212
	struct nvkm_therm *therm = (void *)object;
213 214 215

	nv40_sensor_setup(therm);

216
	return _nvkm_therm_init(object);
217 218
}

219
struct nvkm_oclass
220 221
nv40_therm_oclass = {
	.handle = NV_SUBDEV(THERM, 0x40),
222
	.ofuncs = &(struct nvkm_ofuncs) {
223
		.ctor = nv40_therm_ctor,
224
		.dtor = _nvkm_therm_dtor,
225
		.init = nv40_therm_init,
226
		.fini = _nvkm_therm_fini,
227
	},
228
};