gf119.c 4.4 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
 */
#include "priv.h"

static int
27
pwm_info(struct nvkm_therm *therm, int line)
28
{
29 30
	struct nvkm_subdev *subdev = &therm->subdev;
	struct nvkm_device *device = subdev->device;
31
	u32 gpio = nvkm_rd32(device, 0x00d610 + (line * 0x04));
32

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

48
	nvkm_error(subdev, "GPIO %d unknown PWM: %08x\n", line, gpio);
49
	return -ENODEV;
50 51
}

52
int
53
gf119_fan_pwm_ctrl(struct nvkm_therm *therm, int line, bool enable)
54
{
55
	struct nvkm_device *device = therm->subdev.device;
56
	u32 data = enable ? 0x00000040 : 0x00000000;
57 58 59
	int indx = pwm_info(therm, line);
	if (indx < 0)
		return indx;
60
	else if (indx < 2)
61
		nvkm_mask(device, 0x00d610 + (line * 0x04), 0x000000c0, data);
62
	/* nothing to do for indx == 2, it seems hardwired to PTHERM */
63 64 65
	return 0;
}

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

	return -EINVAL;
}

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

105
int
106
gf119_fan_pwm_clock(struct nvkm_therm *therm, int line)
107
{
108
	struct nvkm_device *device = therm->subdev.device;
109 110 111 112
	int indx = pwm_info(therm, line);
	if (indx < 0)
		return 0;
	else if (indx < 2)
113
		return (device->crystal * 1000) / 20;
114
	else
115
		return device->crystal * 1000 / 10;
116 117
}

118 119
void
gf119_therm_init(struct nvkm_therm *therm)
120
{
121
	struct nvkm_device *device = therm->subdev.device;
122

123
	g84_sensor_setup(therm);
124 125

	/* enable fan tach, count revolutions per-second */
126
	nvkm_mask(device, 0x00e720, 0x00000003, 0x00000002);
B
Ben Skeggs 已提交
127
	if (therm->fan->tach.func != DCB_GPIO_UNUSED) {
128
		nvkm_mask(device, 0x00d79c, 0x000000ff, therm->fan->tach.line);
129
		nvkm_wr32(device, 0x00e724, device->crystal * 1000);
130
		nvkm_mask(device, 0x00e720, 0x00000001, 0x00000001);
131
	}
132
	nvkm_mask(device, 0x00e720, 0x00000002, 0x00000000);
133 134
}

135 136 137 138 139 140 141 142 143 144 145 146
static const struct nvkm_therm_func
gf119_therm = {
	.init = gf119_therm_init,
	.fini = g84_therm_fini,
	.pwm_ctrl = gf119_fan_pwm_ctrl,
	.pwm_get = gf119_fan_pwm_get,
	.pwm_set = gf119_fan_pwm_set,
	.pwm_clock = gf119_fan_pwm_clock,
	.temp_get = g84_temp_get,
	.fan_sense = gt215_therm_fan_sense,
	.program_alarms = nvkm_therm_program_alarms_polling,
};
147

148 149 150 151 152
int
gf119_therm_new(struct nvkm_device *device, int index,
	       struct nvkm_therm **ptherm)
{
	return nvkm_therm_new_(&gf119_therm, device, index, ptherm);
153
}