2 * Copyright 2012 Red Hat Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
27 #include <core/device.h>
29 struct nv50_therm_priv
{
30 struct nvkm_therm_priv base
;
34 pwm_info(struct nvkm_therm
*therm
, int *line
, int *ctrl
, int *indx
)
51 nv_error(therm
, "unknown pwm ctrl for gpio %d\n", *line
);
59 nv50_fan_pwm_ctrl(struct nvkm_therm
*therm
, int line
, bool enable
)
61 u32 data
= enable
? 0x00000001 : 0x00000000;
62 int ctrl
, id
, ret
= pwm_info(therm
, &line
, &ctrl
, &id
);
64 nv_mask(therm
, ctrl
, 0x00010001 << line
, data
<< line
);
69 nv50_fan_pwm_get(struct nvkm_therm
*therm
, int line
, u32
*divs
, u32
*duty
)
71 int ctrl
, id
, ret
= pwm_info(therm
, &line
, &ctrl
, &id
);
75 if (nv_rd32(therm
, ctrl
) & (1 << line
)) {
76 *divs
= nv_rd32(therm
, 0x00e114 + (id
* 8));
77 *duty
= nv_rd32(therm
, 0x00e118 + (id
* 8));
85 nv50_fan_pwm_set(struct nvkm_therm
*therm
, int line
, u32 divs
, u32 duty
)
87 int ctrl
, id
, ret
= pwm_info(therm
, &line
, &ctrl
, &id
);
91 nv_wr32(therm
, 0x00e114 + (id
* 8), divs
);
92 nv_wr32(therm
, 0x00e118 + (id
* 8), duty
| 0x80000000);
97 nv50_fan_pwm_clock(struct nvkm_therm
*therm
, int line
)
99 int chipset
= nv_device(therm
)->chipset
;
100 int crystal
= nv_device(therm
)->crystal
;
103 /* determine the PWM source clock */
104 if (chipset
> 0x50 && chipset
< 0x94) {
105 u8 pwm_div
= nv_rd32(therm
, 0x410c);
106 if (nv_rd32(therm
, 0xc040) & 0x800000) {
107 /* Use the HOST clock (100 MHz)
108 * Where does this constant(2.4) comes from? */
109 pwm_clock
= (100000000 >> pwm_div
) * 10 / 24;
111 /* Where does this constant(20) comes from? */
112 pwm_clock
= (crystal
* 1000) >> pwm_div
;
116 pwm_clock
= (crystal
* 1000) / 20;
123 nv50_sensor_setup(struct nvkm_therm
*therm
)
125 nv_mask(therm
, 0x20010, 0x40000000, 0x0);
126 mdelay(20); /* wait for the temperature to stabilize */
130 nv50_temp_get(struct nvkm_therm
*therm
)
132 struct nvkm_therm_priv
*priv
= (void *)therm
;
133 struct nvbios_therm_sensor
*sensor
= &priv
->bios_sensor
;
136 core_temp
= nv_rd32(therm
, 0x20014) & 0x3fff;
138 /* if the slope or the offset is unset, do no use the sensor */
139 if (!sensor
->slope_div
|| !sensor
->slope_mult
||
140 !sensor
->offset_num
|| !sensor
->offset_den
)
143 core_temp
= core_temp
* sensor
->slope_mult
/ sensor
->slope_div
;
144 core_temp
= core_temp
+ sensor
->offset_num
/ sensor
->offset_den
;
145 core_temp
= core_temp
+ sensor
->offset_constant
- 8;
147 /* reserve negative temperatures for errors */
155 nv50_therm_ctor(struct nvkm_object
*parent
,
156 struct nvkm_object
*engine
,
157 struct nvkm_oclass
*oclass
, void *data
, u32 size
,
158 struct nvkm_object
**pobject
)
160 struct nv50_therm_priv
*priv
;
163 ret
= nvkm_therm_create(parent
, engine
, oclass
, &priv
);
164 *pobject
= nv_object(priv
);
168 priv
->base
.base
.pwm_ctrl
= nv50_fan_pwm_ctrl
;
169 priv
->base
.base
.pwm_get
= nv50_fan_pwm_get
;
170 priv
->base
.base
.pwm_set
= nv50_fan_pwm_set
;
171 priv
->base
.base
.pwm_clock
= nv50_fan_pwm_clock
;
172 priv
->base
.base
.temp_get
= nv50_temp_get
;
173 priv
->base
.sensor
.program_alarms
= nvkm_therm_program_alarms_polling
;
174 nv_subdev(priv
)->intr
= nv40_therm_intr
;
176 return nvkm_therm_preinit(&priv
->base
.base
);
180 nv50_therm_init(struct nvkm_object
*object
)
182 struct nvkm_therm
*therm
= (void *)object
;
184 nv50_sensor_setup(therm
);
186 return _nvkm_therm_init(object
);
190 nv50_therm_oclass
= {
191 .handle
= NV_SUBDEV(THERM
, 0x50),
192 .ofuncs
= &(struct nvkm_ofuncs
) {
193 .ctor
= nv50_therm_ctor
,
194 .dtor
= _nvkm_therm_dtor
,
195 .init
= nv50_therm_init
,
196 .fini
= _nvkm_therm_fini
,