Merge branch 'drm-next' of git://people.freedesktop.org/~airlied/linux
[GitHub/exynos8895/android_kernel_samsung_universal8895.git] / drivers / gpu / drm / nouveau / nv40_pm.c
CommitLineData
1262a206
BS
1/*
2 * Copyright 2011 Red Hat Inc.
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
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.
21 *
22 * Authors: Ben Skeggs
23 */
24
760285e7 25#include <drm/drmP.h>
77145f1c 26#include "nouveau_drm.h"
1262a206
BS
27#include "nouveau_bios.h"
28#include "nouveau_pm.h"
29#include "nouveau_hw.h"
30
77145f1c
BS
31#include <subdev/bios/pll.h>
32#include <subdev/clock.h>
33#include <subdev/timer.h>
34
35#include <engine/fifo.h>
1262a206
BS
36
37#define min2(a,b) ((a) < (b) ? (a) : (b))
38
39static u32
40read_pll_1(struct drm_device *dev, u32 reg)
41{
77145f1c
BS
42 struct nouveau_device *device = nouveau_dev(dev);
43 u32 ctrl = nv_rd32(device, reg + 0x00);
1262a206
BS
44 int P = (ctrl & 0x00070000) >> 16;
45 int N = (ctrl & 0x0000ff00) >> 8;
46 int M = (ctrl & 0x000000ff) >> 0;
47 u32 ref = 27000, clk = 0;
48
49 if (ctrl & 0x80000000)
50 clk = ref * N / M;
51
52 return clk >> P;
53}
54
55static u32
56read_pll_2(struct drm_device *dev, u32 reg)
57{
77145f1c
BS
58 struct nouveau_device *device = nouveau_dev(dev);
59 u32 ctrl = nv_rd32(device, reg + 0x00);
60 u32 coef = nv_rd32(device, reg + 0x04);
1262a206
BS
61 int N2 = (coef & 0xff000000) >> 24;
62 int M2 = (coef & 0x00ff0000) >> 16;
63 int N1 = (coef & 0x0000ff00) >> 8;
64 int M1 = (coef & 0x000000ff) >> 0;
65 int P = (ctrl & 0x00070000) >> 16;
66 u32 ref = 27000, clk = 0;
67
2bfa7482 68 if ((ctrl & 0x80000000) && M1) {
1262a206 69 clk = ref * N1 / M1;
2bfa7482
BS
70 if ((ctrl & 0x40000100) == 0x40000000) {
71 if (M2)
72 clk = clk * N2 / M2;
73 else
74 clk = 0;
75 }
1262a206
BS
76 }
77
78 return clk >> P;
79}
80
81static u32
82read_clk(struct drm_device *dev, u32 src)
83{
84 switch (src) {
85 case 3:
86 return read_pll_2(dev, 0x004000);
87 case 2:
88 return read_pll_1(dev, 0x004008);
89 default:
90 break;
91 }
92
93 return 0;
94}
95
96int
97nv40_pm_clocks_get(struct drm_device *dev, struct nouveau_pm_level *perflvl)
98{
77145f1c
BS
99 struct nouveau_device *device = nouveau_dev(dev);
100 u32 ctrl = nv_rd32(device, 0x00c040);
1262a206
BS
101
102 perflvl->core = read_clk(dev, (ctrl & 0x00000003) >> 0);
103 perflvl->shader = read_clk(dev, (ctrl & 0x00000030) >> 4);
104 perflvl->memory = read_pll_2(dev, 0x4020);
105 return 0;
106}
107
108struct nv40_pm_state {
109 u32 ctrl;
110 u32 npll_ctrl;
111 u32 npll_coef;
112 u32 spll;
113 u32 mpll_ctrl;
114 u32 mpll_coef;
115};
116
117static int
70790f4f 118nv40_calc_pll(struct drm_device *dev, u32 reg, struct nvbios_pll *pll,
1262a206
BS
119 u32 clk, int *N1, int *M1, int *N2, int *M2, int *log2P)
120{
77145f1c
BS
121 struct nouveau_device *device = nouveau_dev(dev);
122 struct nouveau_bios *bios = nouveau_bios(device);
123 struct nouveau_clock *pclk = nouveau_clock(device);
1262a206
BS
124 struct nouveau_pll_vals coef;
125 int ret;
126
77145f1c 127 ret = nvbios_pll_parse(bios, reg, pll);
1262a206
BS
128 if (ret)
129 return ret;
130
70790f4f
BS
131 if (clk < pll->vco1.max_freq)
132 pll->vco2.max_freq = 0;
1262a206 133
77145f1c 134 pclk->pll_calc(pclk, pll, clk, &coef);
1262a206
BS
135 if (ret == 0)
136 return -ERANGE;
137
138 *N1 = coef.N1;
139 *M1 = coef.M1;
140 if (N2 && M2) {
70790f4f 141 if (pll->vco2.max_freq) {
1262a206
BS
142 *N2 = coef.N2;
143 *M2 = coef.M2;
144 } else {
145 *N2 = 1;
146 *M2 = 1;
147 }
148 }
149 *log2P = coef.log2P;
150 return 0;
151}
152
153void *
154nv40_pm_clocks_pre(struct drm_device *dev, struct nouveau_pm_level *perflvl)
155{
156 struct nv40_pm_state *info;
70790f4f 157 struct nvbios_pll pll;
1262a206
BS
158 int N1, N2, M1, M2, log2P;
159 int ret;
160
161 info = kmalloc(sizeof(*info), GFP_KERNEL);
162 if (!info)
163 return ERR_PTR(-ENOMEM);
164
165 /* core/geometric clock */
166 ret = nv40_calc_pll(dev, 0x004000, &pll, perflvl->core,
167 &N1, &M1, &N2, &M2, &log2P);
168 if (ret < 0)
169 goto out;
170
171 if (N2 == M2) {
172 info->npll_ctrl = 0x80000100 | (log2P << 16);
173 info->npll_coef = (N1 << 8) | M1;
174 } else {
175 info->npll_ctrl = 0xc0000000 | (log2P << 16);
176 info->npll_coef = (N2 << 24) | (M2 << 16) | (N1 << 8) | M1;
177 }
178
179 /* use the second PLL for shader/rop clock, if it differs from core */
180 if (perflvl->shader && perflvl->shader != perflvl->core) {
181 ret = nv40_calc_pll(dev, 0x004008, &pll, perflvl->shader,
182 &N1, &M1, NULL, NULL, &log2P);
183 if (ret < 0)
184 goto out;
185
186 info->spll = 0xc0000000 | (log2P << 16) | (N1 << 8) | M1;
187 info->ctrl = 0x00000223;
188 } else {
189 info->spll = 0x00000000;
190 info->ctrl = 0x00000333;
191 }
192
193 /* memory clock */
2bfa7482
BS
194 if (!perflvl->memory) {
195 info->mpll_ctrl = 0x00000000;
196 goto out;
197 }
198
1262a206
BS
199 ret = nv40_calc_pll(dev, 0x004020, &pll, perflvl->memory,
200 &N1, &M1, &N2, &M2, &log2P);
201 if (ret < 0)
202 goto out;
203
204 info->mpll_ctrl = 0x80000000 | (log2P << 16);
70790f4f 205 info->mpll_ctrl |= min2(pll.bias_p + log2P, pll.max_p) << 20;
1262a206
BS
206 if (N2 == M2) {
207 info->mpll_ctrl |= 0x00000100;
208 info->mpll_coef = (N1 << 8) | M1;
209 } else {
210 info->mpll_ctrl |= 0x40000000;
211 info->mpll_coef = (N2 << 24) | (M2 << 16) | (N1 << 8) | M1;
212 }
213
214out:
215 if (ret < 0) {
216 kfree(info);
217 info = ERR_PTR(ret);
218 }
219 return info;
220}
221
222static bool
223nv40_pm_gr_idle(void *data)
224{
225 struct drm_device *dev = data;
77145f1c 226 struct nouveau_device *device = nouveau_dev(dev);
1262a206 227
77145f1c
BS
228 if ((nv_rd32(device, 0x400760) & 0x000000f0) >> 4 !=
229 (nv_rd32(device, 0x400760) & 0x0000000f))
1262a206
BS
230 return false;
231
77145f1c 232 if (nv_rd32(device, 0x400700))
1262a206
BS
233 return false;
234
235 return true;
236}
237
dd1da8de 238int
1262a206
BS
239nv40_pm_clocks_set(struct drm_device *dev, void *pre_state)
240{
77145f1c
BS
241 struct nouveau_device *device = nouveau_dev(dev);
242 struct nouveau_fifo *pfifo = nouveau_fifo(device);
243 struct nouveau_drm *drm = nouveau_drm(dev);
1262a206
BS
244 struct nv40_pm_state *info = pre_state;
245 unsigned long flags;
59ef9742 246 struct bit_entry M;
1262a206
BS
247 u32 crtc_mask = 0;
248 u8 sr1[2];
dd1da8de 249 int i, ret = -EAGAIN;
1262a206
BS
250
251 /* determine which CRTCs are active, fetch VGA_SR1 for each */
252 for (i = 0; i < 2; i++) {
77145f1c 253 u32 vbl = nv_rd32(device, 0x600808 + (i * 0x2000));
1262a206
BS
254 u32 cnt = 0;
255 do {
77145f1c
BS
256 if (vbl != nv_rd32(device, 0x600808 + (i * 0x2000))) {
257 nv_wr08(device, 0x0c03c4 + (i * 0x2000), 0x01);
258 sr1[i] = nv_rd08(device, 0x0c03c5 + (i * 0x2000));
1262a206
BS
259 if (!(sr1[i] & 0x20))
260 crtc_mask |= (1 << i);
261 break;
262 }
263 udelay(1);
264 } while (cnt++ < 32);
265 }
266
267 /* halt and idle engines */
77145f1c 268 pfifo->pause(pfifo, &flags);
1262a206 269
77145f1c 270 if (!nv_wait_cb(device, nv40_pm_gr_idle, dev))
1262a206
BS
271 goto resume;
272
dd1da8de
MP
273 ret = 0;
274
1262a206 275 /* set engine clocks */
77145f1c
BS
276 nv_mask(device, 0x00c040, 0x00000333, 0x00000000);
277 nv_wr32(device, 0x004004, info->npll_coef);
278 nv_mask(device, 0x004000, 0xc0070100, info->npll_ctrl);
279 nv_mask(device, 0x004008, 0xc007ffff, info->spll);
1262a206 280 mdelay(5);
77145f1c 281 nv_mask(device, 0x00c040, 0x00000333, info->ctrl);
1262a206 282
2bfa7482
BS
283 if (!info->mpll_ctrl)
284 goto resume;
285
1262a206
BS
286 /* wait for vblank start on active crtcs, disable memory access */
287 for (i = 0; i < 2; i++) {
288 if (!(crtc_mask & (1 << i)))
289 continue;
77145f1c
BS
290 nv_wait(device, 0x600808 + (i * 0x2000), 0x00010000, 0x00000000);
291 nv_wait(device, 0x600808 + (i * 0x2000), 0x00010000, 0x00010000);
292 nv_wr08(device, 0x0c03c4 + (i * 0x2000), 0x01);
293 nv_wr08(device, 0x0c03c5 + (i * 0x2000), sr1[i] | 0x20);
1262a206
BS
294 }
295
296 /* prepare ram for reclocking */
77145f1c
BS
297 nv_wr32(device, 0x1002d4, 0x00000001); /* precharge */
298 nv_wr32(device, 0x1002d0, 0x00000001); /* refresh */
299 nv_wr32(device, 0x1002d0, 0x00000001); /* refresh */
300 nv_mask(device, 0x100210, 0x80000000, 0x00000000); /* no auto refresh */
301 nv_wr32(device, 0x1002dc, 0x00000001); /* enable self-refresh */
1262a206
BS
302
303 /* change the PLL of each memory partition */
77145f1c
BS
304 nv_mask(device, 0x00c040, 0x0000c000, 0x00000000);
305 switch (nv_device(drm->device)->chipset) {
1262a206
BS
306 case 0x40:
307 case 0x45:
308 case 0x41:
309 case 0x42:
310 case 0x47:
77145f1c
BS
311 nv_mask(device, 0x004044, 0xc0771100, info->mpll_ctrl);
312 nv_mask(device, 0x00402c, 0xc0771100, info->mpll_ctrl);
313 nv_wr32(device, 0x004048, info->mpll_coef);
314 nv_wr32(device, 0x004030, info->mpll_coef);
1262a206
BS
315 case 0x43:
316 case 0x49:
317 case 0x4b:
77145f1c
BS
318 nv_mask(device, 0x004038, 0xc0771100, info->mpll_ctrl);
319 nv_wr32(device, 0x00403c, info->mpll_coef);
1262a206 320 default:
77145f1c
BS
321 nv_mask(device, 0x004020, 0xc0771100, info->mpll_ctrl);
322 nv_wr32(device, 0x004024, info->mpll_coef);
1262a206
BS
323 break;
324 }
325 udelay(100);
77145f1c 326 nv_mask(device, 0x00c040, 0x0000c000, 0x0000c000);
1262a206
BS
327
328 /* re-enable normal operation of memory controller */
77145f1c
BS
329 nv_wr32(device, 0x1002dc, 0x00000000);
330 nv_mask(device, 0x100210, 0x80000000, 0x80000000);
1262a206
BS
331 udelay(100);
332
59ef9742
BS
333 /* execute memory reset script from vbios */
334 if (!bit_table(dev, 'M', &M))
77145f1c 335 nouveau_bios_run_init_table(dev, ROM16(M.data[0]), NULL, 0);
59ef9742 336
1262a206
BS
337 /* make sure we're in vblank (hopefully the same one as before), and
338 * then re-enable crtc memory access
339 */
340 for (i = 0; i < 2; i++) {
341 if (!(crtc_mask & (1 << i)))
342 continue;
77145f1c
BS
343 nv_wait(device, 0x600808 + (i * 0x2000), 0x00010000, 0x00010000);
344 nv_wr08(device, 0x0c03c4 + (i * 0x2000), 0x01);
345 nv_wr08(device, 0x0c03c5 + (i * 0x2000), sr1[i]);
1262a206
BS
346 }
347
348 /* resume engines */
349resume:
77145f1c 350 pfifo->start(pfifo, &flags);
1262a206 351 kfree(info);
dd1da8de 352 return ret;
1262a206 353}