g84.c 7.6 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
/*
 * 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"
26

27
#include <subdev/fuse.h>
28

29 30
struct g84_therm_priv {
	struct nvkm_therm_priv base;
31 32 33
};

int
34
g84_temp_get(struct nvkm_therm *therm)
35
{
36
	struct nvkm_fuse *fuse = nvkm_fuse(therm);
37 38 39 40 41

	if (nv_ro32(fuse, 0x1a8) == 1)
		return nv_rd32(therm, 0x20400);
	else
		return -ENODEV;
42 43
}

44
void
45
g84_sensor_setup(struct nvkm_therm *therm)
46
{
47
	struct nvkm_fuse *fuse = nvkm_fuse(therm);
48 49 50 51 52 53 54 55 56

	/* enable temperature reading for cards with insane defaults */
	if (nv_ro32(fuse, 0x1a8) == 1) {
		nv_mask(therm, 0x20008, 0x80008000, 0x80000000);
		nv_mask(therm, 0x2000c, 0x80000003, 0x00000000);
		mdelay(20); /* wait for the temperature to stabilize */
	}
}

57
static void
58
g84_therm_program_alarms(struct nvkm_therm *therm)
59
{
60
	struct nvkm_therm_priv *priv = (void *)therm;
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
	struct nvbios_therm_sensor *sensor = &priv->bios_sensor;
	unsigned long flags;

	spin_lock_irqsave(&priv->sensor.alarm_program_lock, flags);

	/* enable RISING and FALLING IRQs for shutdown, THRS 0, 1, 2 and 4 */
	nv_wr32(therm, 0x20000, 0x000003ff);

	/* shutdown: The computer should be shutdown when reached */
	nv_wr32(therm, 0x20484, sensor->thrs_shutdown.hysteresis);
	nv_wr32(therm, 0x20480, sensor->thrs_shutdown.temp);

	/* THRS_1 : fan boost*/
	nv_wr32(therm, 0x204c4, sensor->thrs_fan_boost.temp);

	/* THRS_2 : critical */
	nv_wr32(therm, 0x204c0, sensor->thrs_critical.temp);

	/* THRS_4 : down clock */
	nv_wr32(therm, 0x20414, sensor->thrs_down_clock.temp);
	spin_unlock_irqrestore(&priv->sensor.alarm_program_lock, flags);

83 84 85 86 87 88 89
	nv_debug(therm,
		 "Programmed thresholds [ %d(%d), %d(%d), %d(%d), %d(%d) ]\n",
		 sensor->thrs_fan_boost.temp, sensor->thrs_fan_boost.hysteresis,
		 sensor->thrs_down_clock.temp,
		 sensor->thrs_down_clock.hysteresis,
		 sensor->thrs_critical.temp, sensor->thrs_critical.hysteresis,
		 sensor->thrs_shutdown.temp, sensor->thrs_shutdown.hysteresis);
90 91 92 93 94

}

/* must be called with alarm_program_lock taken ! */
static void
95
g84_therm_threshold_hyst_emulation(struct nvkm_therm *therm,
96 97
				   uint32_t thrs_reg, u8 status_bit,
				   const struct nvbios_therm_threshold *thrs,
98
				   enum nvkm_therm_thrs thrs_name)
99
{
100 101
	enum nvkm_therm_thrs_direction direction;
	enum nvkm_therm_thrs_state prev_state, new_state;
102 103
	int temp, cur;

104
	prev_state = nvkm_therm_sensor_get_threshold_state(therm, thrs_name);
105 106 107 108 109
	temp = nv_rd32(therm, thrs_reg);

	/* program the next threshold */
	if (temp == thrs->temp) {
		nv_wr32(therm, thrs_reg, thrs->temp - thrs->hysteresis);
110
		new_state = NVKM_THERM_THRS_HIGHER;
111 112
	} else {
		nv_wr32(therm, thrs_reg, thrs->temp);
113
		new_state = NVKM_THERM_THRS_LOWER;
114 115 116 117
	}

	/* fix the state (in case someone reprogrammed the alarms) */
	cur = therm->temp_get(therm);
118 119 120
	if (new_state == NVKM_THERM_THRS_LOWER && cur > thrs->temp)
		new_state = NVKM_THERM_THRS_HIGHER;
	else if (new_state == NVKM_THERM_THRS_HIGHER &&
121
		cur < thrs->temp - thrs->hysteresis)
122 123
		new_state = NVKM_THERM_THRS_LOWER;
	nvkm_therm_sensor_set_threshold_state(therm, thrs_name, new_state);
124 125 126

	/* find the direction */
	if (prev_state < new_state)
127
		direction = NVKM_THERM_THRS_RISING;
128
	else if (prev_state > new_state)
129
		direction = NVKM_THERM_THRS_FALLING;
130 131 132 133
	else
		return;

	/* advertise a change in direction */
134
	nvkm_therm_sensor_event(therm, thrs_name, direction);
135 136 137
}

static void
138
g84_therm_intr(struct nvkm_subdev *subdev)
139
{
140 141
	struct nvkm_therm *therm = nvkm_therm(subdev);
	struct nvkm_therm_priv *priv = (void *)therm;
142 143 144 145 146 147
	struct nvbios_therm_sensor *sensor = &priv->bios_sensor;
	unsigned long flags;
	uint32_t intr;

	spin_lock_irqsave(&priv->sensor.alarm_program_lock, flags);

148
	intr = nv_rd32(therm, 0x20100) & 0x3ff;
149 150 151

	/* THRS_4: downclock */
	if (intr & 0x002) {
152 153 154
		g84_therm_threshold_hyst_emulation(therm, 0x20414, 24,
						   &sensor->thrs_down_clock,
						   NVKM_THERM_THRS_DOWNCLOCK);
155 156 157 158 159
		intr &= ~0x002;
	}

	/* shutdown */
	if (intr & 0x004) {
160
		g84_therm_threshold_hyst_emulation(therm, 0x20480, 20,
161
						   &sensor->thrs_shutdown,
162
						   NVKM_THERM_THRS_SHUTDOWN);
163 164 165 166 167
		intr &= ~0x004;
	}

	/* THRS_1 : fan boost */
	if (intr & 0x008) {
168
		g84_therm_threshold_hyst_emulation(therm, 0x204c4, 21,
169
						   &sensor->thrs_fan_boost,
170
						   NVKM_THERM_THRS_FANBOOST);
171 172 173 174 175
		intr &= ~0x008;
	}

	/* THRS_2 : critical */
	if (intr & 0x010) {
176
		g84_therm_threshold_hyst_emulation(therm, 0x204c0, 22,
177
						   &sensor->thrs_critical,
178
						   NVKM_THERM_THRS_CRITICAL);
179 180 181 182 183 184 185 186 187 188 189 190 191
		intr &= ~0x010;
	}

	if (intr)
		nv_error(therm, "unhandled intr 0x%08x\n", intr);

	/* ACK everything */
	nv_wr32(therm, 0x20100, 0xffffffff);
	nv_wr32(therm, 0x1100, 0x10000); /* PBUS */

	spin_unlock_irqrestore(&priv->sensor.alarm_program_lock, flags);
}

192
static int
193
g84_therm_init(struct nvkm_object *object)
194
{
195
	struct g84_therm_priv *priv = (void *)object;
196 197
	int ret;

198
	ret = nvkm_therm_init(&priv->base.base);
199 200 201
	if (ret)
		return ret;

202
	g84_sensor_setup(&priv->base.base);
203 204 205
	return 0;
}

206
static int
207 208 209
g84_therm_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
	       struct nvkm_oclass *oclass, void *data, u32 size,
	       struct nvkm_object **pobject)
210
{
211
	struct g84_therm_priv *priv;
212 213
	int ret;

214
	ret = nvkm_therm_create(parent, engine, oclass, &priv);
215 216 217 218 219 220 221 222
	*pobject = nv_object(priv);
	if (ret)
		return ret;

	priv->base.base.pwm_ctrl = nv50_fan_pwm_ctrl;
	priv->base.base.pwm_get = nv50_fan_pwm_get;
	priv->base.base.pwm_set = nv50_fan_pwm_set;
	priv->base.base.pwm_clock = nv50_fan_pwm_clock;
223 224 225
	priv->base.base.temp_get = g84_temp_get;
	priv->base.sensor.program_alarms = g84_therm_program_alarms;
	nv_subdev(priv)->intr = g84_therm_intr;
226 227

	/* init the thresholds */
228 229 230 231 232 233 234 235 236 237 238 239 240 241
	nvkm_therm_sensor_set_threshold_state(&priv->base.base,
					      NVKM_THERM_THRS_SHUTDOWN,
					      NVKM_THERM_THRS_LOWER);
	nvkm_therm_sensor_set_threshold_state(&priv->base.base,
					      NVKM_THERM_THRS_FANBOOST,
					      NVKM_THERM_THRS_LOWER);
	nvkm_therm_sensor_set_threshold_state(&priv->base.base,
					      NVKM_THERM_THRS_CRITICAL,
					      NVKM_THERM_THRS_LOWER);
	nvkm_therm_sensor_set_threshold_state(&priv->base.base,
					      NVKM_THERM_THRS_DOWNCLOCK,
					      NVKM_THERM_THRS_LOWER);

	return nvkm_therm_preinit(&priv->base.base);
242 243
}

244
int
245
g84_therm_fini(struct nvkm_object *object, bool suspend)
246 247 248 249 250 251 252 253
{
	/* Disable PTherm IRQs */
	nv_wr32(object, 0x20000, 0x00000000);

	/* ACK all PTherm IRQs */
	nv_wr32(object, 0x20100, 0xffffffff);
	nv_wr32(object, 0x1100, 0x10000); /* PBUS */

254
	return _nvkm_therm_fini(object, suspend);
255 256
}

257 258
struct nvkm_oclass
g84_therm_oclass = {
259
	.handle = NV_SUBDEV(THERM, 0x84),
260 261 262 263 264
	.ofuncs = &(struct nvkm_ofuncs) {
		.ctor = g84_therm_ctor,
		.dtor = _nvkm_therm_dtor,
		.init = g84_therm_init,
		.fini = g84_therm_fini,
265 266
	},
};