[S390] Remove error checking from copy_oldmem_page()
[linux/fpc-iii.git] / drivers / gpu / drm / nouveau / nouveau_temp.c
blob081ca7b03e8aa53bbb692173f910862a55bc5950
1 /*
2 * Copyright 2010 PathScale 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.
22 * Authors: Martin Peres
25 #include "drmP.h"
27 #include "nouveau_drv.h"
28 #include "nouveau_pm.h"
30 static void
31 nouveau_temp_vbios_parse(struct drm_device *dev, u8 *temp)
33 struct drm_nouveau_private *dev_priv = dev->dev_private;
34 struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
35 struct nouveau_pm_temp_sensor_constants *sensor = &pm->sensor_constants;
36 struct nouveau_pm_threshold_temp *temps = &pm->threshold_temp;
37 int i, headerlen, recordlen, entries;
39 if (!temp) {
40 NV_DEBUG(dev, "temperature table pointer invalid\n");
41 return;
44 /* Set the default sensor's contants */
45 sensor->offset_constant = 0;
46 sensor->offset_mult = 0;
47 sensor->offset_div = 1;
48 sensor->slope_mult = 1;
49 sensor->slope_div = 1;
51 /* Set the default temperature thresholds */
52 temps->critical = 110;
53 temps->down_clock = 100;
54 temps->fan_boost = 90;
56 /* Set the known default values to setup the temperature sensor */
57 if (dev_priv->card_type >= NV_40) {
58 switch (dev_priv->chipset) {
59 case 0x43:
60 sensor->offset_mult = 32060;
61 sensor->offset_div = 1000;
62 sensor->slope_mult = 792;
63 sensor->slope_div = 1000;
64 break;
66 case 0x44:
67 case 0x47:
68 case 0x4a:
69 sensor->offset_mult = 27839;
70 sensor->offset_div = 1000;
71 sensor->slope_mult = 780;
72 sensor->slope_div = 1000;
73 break;
75 case 0x46:
76 sensor->offset_mult = -24775;
77 sensor->offset_div = 100;
78 sensor->slope_mult = 467;
79 sensor->slope_div = 10000;
80 break;
82 case 0x49:
83 sensor->offset_mult = -25051;
84 sensor->offset_div = 100;
85 sensor->slope_mult = 458;
86 sensor->slope_div = 10000;
87 break;
89 case 0x4b:
90 sensor->offset_mult = -24088;
91 sensor->offset_div = 100;
92 sensor->slope_mult = 442;
93 sensor->slope_div = 10000;
94 break;
96 case 0x50:
97 sensor->offset_mult = -22749;
98 sensor->offset_div = 100;
99 sensor->slope_mult = 431;
100 sensor->slope_div = 10000;
101 break;
103 case 0x67:
104 sensor->offset_mult = -26149;
105 sensor->offset_div = 100;
106 sensor->slope_mult = 484;
107 sensor->slope_div = 10000;
108 break;
112 headerlen = temp[1];
113 recordlen = temp[2];
114 entries = temp[3];
115 temp = temp + headerlen;
117 /* Read the entries from the table */
118 for (i = 0; i < entries; i++) {
119 s16 value = ROM16(temp[1]);
121 switch (temp[0]) {
122 case 0x01:
123 if ((value & 0x8f) == 0)
124 sensor->offset_constant = (value >> 9) & 0x7f;
125 break;
127 case 0x04:
128 if ((value & 0xf00f) == 0xa000) /* core */
129 temps->critical = (value&0x0ff0) >> 4;
130 break;
132 case 0x07:
133 if ((value & 0xf00f) == 0xa000) /* core */
134 temps->down_clock = (value&0x0ff0) >> 4;
135 break;
137 case 0x08:
138 if ((value & 0xf00f) == 0xa000) /* core */
139 temps->fan_boost = (value&0x0ff0) >> 4;
140 break;
142 case 0x10:
143 sensor->offset_mult = value;
144 break;
146 case 0x11:
147 sensor->offset_div = value;
148 break;
150 case 0x12:
151 sensor->slope_mult = value;
152 break;
154 case 0x13:
155 sensor->slope_div = value;
156 break;
158 temp += recordlen;
161 nouveau_temp_safety_checks(dev);
164 static int
165 nv40_sensor_setup(struct drm_device *dev)
167 struct drm_nouveau_private *dev_priv = dev->dev_private;
168 struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
169 struct nouveau_pm_temp_sensor_constants *sensor = &pm->sensor_constants;
170 s32 offset = sensor->offset_mult / sensor->offset_div;
171 s32 sensor_calibration;
173 /* set up the sensors */
174 sensor_calibration = 120 - offset - sensor->offset_constant;
175 sensor_calibration = sensor_calibration * sensor->slope_div /
176 sensor->slope_mult;
178 if (dev_priv->chipset >= 0x46)
179 sensor_calibration |= 0x80000000;
180 else
181 sensor_calibration |= 0x10000000;
183 nv_wr32(dev, 0x0015b0, sensor_calibration);
185 /* Wait for the sensor to update */
186 msleep(5);
188 /* read */
189 return nv_rd32(dev, 0x0015b4) & 0x1fff;
193 nv40_temp_get(struct drm_device *dev)
195 struct drm_nouveau_private *dev_priv = dev->dev_private;
196 struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
197 struct nouveau_pm_temp_sensor_constants *sensor = &pm->sensor_constants;
198 int offset = sensor->offset_mult / sensor->offset_div;
199 int core_temp;
201 if (dev_priv->card_type >= NV_50) {
202 core_temp = nv_rd32(dev, 0x20008);
203 } else {
204 core_temp = nv_rd32(dev, 0x0015b4) & 0x1fff;
205 /* Setup the sensor if the temperature is 0 */
206 if (core_temp == 0)
207 core_temp = nv40_sensor_setup(dev);
210 core_temp = core_temp * sensor->slope_mult / sensor->slope_div;
211 core_temp = core_temp + offset + sensor->offset_constant;
213 return core_temp;
217 nv84_temp_get(struct drm_device *dev)
219 return nv_rd32(dev, 0x20400);
222 void
223 nouveau_temp_safety_checks(struct drm_device *dev)
225 struct drm_nouveau_private *dev_priv = dev->dev_private;
226 struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
227 struct nouveau_pm_threshold_temp *temps = &pm->threshold_temp;
229 if (temps->critical > 120)
230 temps->critical = 120;
231 else if (temps->critical < 80)
232 temps->critical = 80;
234 if (temps->down_clock > 110)
235 temps->down_clock = 110;
236 else if (temps->down_clock < 60)
237 temps->down_clock = 60;
239 if (temps->fan_boost > 100)
240 temps->fan_boost = 100;
241 else if (temps->fan_boost < 40)
242 temps->fan_boost = 40;
245 static bool
246 probe_monitoring_device(struct nouveau_i2c_chan *i2c,
247 struct i2c_board_info *info)
249 struct i2c_client *client;
251 request_module("%s%s", I2C_MODULE_PREFIX, info->type);
253 client = i2c_new_device(&i2c->adapter, info);
254 if (!client)
255 return false;
257 if (!client->driver || client->driver->detect(client, info)) {
258 i2c_unregister_device(client);
259 return false;
262 return true;
265 static void
266 nouveau_temp_probe_i2c(struct drm_device *dev)
268 struct drm_nouveau_private *dev_priv = dev->dev_private;
269 struct dcb_table *dcb = &dev_priv->vbios.dcb;
270 struct i2c_board_info info[] = {
271 { I2C_BOARD_INFO("w83l785ts", 0x2d) },
272 { I2C_BOARD_INFO("w83781d", 0x2d) },
273 { I2C_BOARD_INFO("adt7473", 0x2e) },
274 { I2C_BOARD_INFO("f75375", 0x2e) },
275 { I2C_BOARD_INFO("lm99", 0x4c) },
278 int idx = (dcb->version >= 0x40 ?
279 dcb->i2c_default_indices & 0xf : 2);
281 nouveau_i2c_identify(dev, "monitoring device", info,
282 probe_monitoring_device, idx);
285 void
286 nouveau_temp_init(struct drm_device *dev)
288 struct drm_nouveau_private *dev_priv = dev->dev_private;
289 struct nvbios *bios = &dev_priv->vbios;
290 struct bit_entry P;
291 u8 *temp = NULL;
293 if (bios->type == NVBIOS_BIT) {
294 if (bit_table(dev, 'P', &P))
295 return;
297 if (P.version == 1)
298 temp = ROMPTR(bios, P.data[12]);
299 else if (P.version == 2)
300 temp = ROMPTR(bios, P.data[16]);
301 else
302 NV_WARN(dev, "unknown temp for BIT P %d\n", P.version);
304 nouveau_temp_vbios_parse(dev, temp);
307 nouveau_temp_probe_i2c(dev);
310 void
311 nouveau_temp_fini(struct drm_device *dev)