gf110.c 4.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
/*
 * 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"

26 27
struct gf110_therm_priv {
	struct nvkm_therm_priv base;
28 29
};

30
static int
31
pwm_info(struct nvkm_therm *therm, int line)
32 33
{
	u32 gpio = nv_rd32(therm, 0x00d610 + (line * 0x04));
34

35 36 37
	switch (gpio & 0x000000c0) {
	case 0x00000000: /* normal mode, possibly pwm forced off by us */
	case 0x00000040: /* nvio special */
38
		switch (gpio & 0x0000001f) {
39
		case 0x00: return 2;
40 41
		case 0x19: return 1;
		case 0x1c: return 0;
42
		case 0x1e: return 2;
43 44 45
		default:
			break;
		}
46 47
	default:
		break;
48 49 50
	}

	nv_error(therm, "GPIO %d unknown PWM: 0x%08x\n", line, gpio);
51
	return -ENODEV;
52 53 54
}

static int
55
gf110_fan_pwm_ctrl(struct nvkm_therm *therm, int line, bool enable)
56
{
57
	u32 data = enable ? 0x00000040 : 0x00000000;
58 59 60
	int indx = pwm_info(therm, line);
	if (indx < 0)
		return indx;
61 62 63
	else if (indx < 2)
		nv_mask(therm, 0x00d610 + (line * 0x04), 0x000000c0, data);
	/* nothing to do for indx == 2, it seems hardwired to PTHERM */
64 65 66
	return 0;
}

67
static int
68
gf110_fan_pwm_get(struct nvkm_therm *therm, int line, u32 *divs, u32 *duty)
69 70 71 72
{
	int indx = pwm_info(therm, line);
	if (indx < 0)
		return indx;
73 74 75 76 77 78 79 80 81
	else if (indx < 2) {
		if (nv_rd32(therm, 0x00d610 + (line * 0x04)) & 0x00000040) {
			*divs = nv_rd32(therm, 0x00e114 + (indx * 8));
			*duty = nv_rd32(therm, 0x00e118 + (indx * 8));
			return 0;
		}
	} else if (indx == 2) {
		*divs = nv_rd32(therm, 0x0200d8) & 0x1fff;
		*duty = nv_rd32(therm, 0x0200dc) & 0x1fff;
82 83 84 85 86 87
		return 0;
	}

	return -EINVAL;
}

88
static int
89
gf110_fan_pwm_set(struct nvkm_therm *therm, int line, u32 divs, u32 duty)
90 91 92 93
{
	int indx = pwm_info(therm, line);
	if (indx < 0)
		return indx;
94 95 96 97 98 99 100
	else if (indx < 2) {
		nv_wr32(therm, 0x00e114 + (indx * 8), divs);
		nv_wr32(therm, 0x00e118 + (indx * 8), duty | 0x80000000);
	} else if (indx == 2) {
		nv_mask(therm, 0x0200d8, 0x1fff, divs); /* keep the high bits */
		nv_wr32(therm, 0x0200dc, duty | 0x40000000);
	}
101 102 103 104
	return 0;
}

static int
105
gf110_fan_pwm_clock(struct nvkm_therm *therm, int line)
106
{
107 108 109 110 111 112 113
	int indx = pwm_info(therm, line);
	if (indx < 0)
		return 0;
	else if (indx < 2)
		return (nv_device(therm)->crystal * 1000) / 20;
	else
		return nv_device(therm)->crystal * 1000 / 10;
114 115
}

116
int
117
gf110_therm_init(struct nvkm_object *object)
118
{
119
	struct gf110_therm_priv *priv = (void *)object;
120 121
	int ret;

122
	ret = nvkm_therm_init(&priv->base.base);
123 124 125 126 127
	if (ret)
		return ret;

	/* enable fan tach, count revolutions per-second */
	nv_mask(priv, 0x00e720, 0x00000003, 0x00000002);
128 129
	if (priv->base.fan->tach.func != DCB_GPIO_UNUSED) {
		nv_mask(priv, 0x00d79c, 0x000000ff, priv->base.fan->tach.line);
130 131 132 133 134 135 136 137
		nv_wr32(priv, 0x00e724, nv_device(priv)->crystal * 1000);
		nv_mask(priv, 0x00e720, 0x00000001, 0x00000001);
	}
	nv_mask(priv, 0x00e720, 0x00000002, 0x00000000);

	return 0;
}

138
static int
139 140 141
gf110_therm_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
		 struct nvkm_oclass *oclass, void *data, u32 size,
		 struct nvkm_object **pobject)
142
{
143
	struct gf110_therm_priv *priv;
144 145
	int ret;

146
	ret = nvkm_therm_create(parent, engine, oclass, &priv);
147 148 149 150
	*pobject = nv_object(priv);
	if (ret)
		return ret;

151
	g84_sensor_setup(&priv->base.base);
152

153 154 155 156 157 158 159 160
	priv->base.base.pwm_ctrl = gf110_fan_pwm_ctrl;
	priv->base.base.pwm_get = gf110_fan_pwm_get;
	priv->base.base.pwm_set = gf110_fan_pwm_set;
	priv->base.base.pwm_clock = gf110_fan_pwm_clock;
	priv->base.base.temp_get = g84_temp_get;
	priv->base.base.fan_sense = gt215_therm_fan_sense;
	priv->base.sensor.program_alarms = nvkm_therm_program_alarms_polling;
	return nvkm_therm_preinit(&priv->base.base);
161 162
}

163 164
struct nvkm_oclass
gf110_therm_oclass = {
165
	.handle = NV_SUBDEV(THERM, 0xd0),
166 167 168 169 170
	.ofuncs = &(struct nvkm_ofuncs) {
		.ctor = gf110_therm_ctor,
		.dtor = _nvkm_therm_dtor,
		.init = gf110_therm_init,
		.fini = g84_therm_fini,
171 172
	},
};