2 * Copyright 2010 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.
26 #include "nouveau_drv.h"
27 #include "nouveau_bios.h"
28 #include "nouveau_pm.h"
30 static u32
read_clk(struct drm_device
*, int, bool);
31 static u32
read_pll(struct drm_device
*, int, u32
);
34 read_vco(struct drm_device
*dev
, int clk
)
36 u32 sctl
= nv_rd32(dev
, 0x4120 + (clk
* 4));
37 if ((sctl
& 0x00000030) != 0x00000030)
38 return read_pll(dev
, 0x41, 0x00e820);
39 return read_pll(dev
, 0x42, 0x00e8a0);
43 read_clk(struct drm_device
*dev
, int clk
, bool ignore_en
)
45 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
48 /* refclk for the 0xe8xx plls is a fixed frequency */
50 if (dev_priv
->chipset
== 0xaf) {
51 /* no joke.. seriously.. sigh.. */
52 return nv_rd32(dev
, 0x00471c) * 1000;
55 return dev_priv
->crystal
;
58 sctl
= nv_rd32(dev
, 0x4120 + (clk
* 4));
59 if (!ignore_en
&& !(sctl
& 0x00000100))
62 switch (sctl
& 0x00003000) {
64 return dev_priv
->crystal
;
66 if (sctl
& 0x00000040)
70 sclk
= read_vco(dev
, clk
);
71 sdiv
= ((sctl
& 0x003f0000) >> 16) + 2;
72 return (sclk
* 2) / sdiv
;
79 read_pll(struct drm_device
*dev
, int clk
, u32 pll
)
81 u32 ctrl
= nv_rd32(dev
, pll
+ 0);
82 u32 sclk
= 0, P
= 1, N
= 1, M
= 1;
84 if (!(ctrl
& 0x00000008)) {
85 if (ctrl
& 0x00000001) {
86 u32 coef
= nv_rd32(dev
, pll
+ 4);
87 M
= (coef
& 0x000000ff) >> 0;
88 N
= (coef
& 0x0000ff00) >> 8;
89 P
= (coef
& 0x003f0000) >> 16;
91 /* no post-divider on these.. */
92 if ((pll
& 0x00ff00) == 0x00e800)
95 sclk
= read_clk(dev
, 0x00 + clk
, false);
98 sclk
= read_clk(dev
, 0x10 + clk
, false);
101 return sclk
* N
/ (M
* P
);
110 calc_clk(struct drm_device
*dev
, int clk
, u32 pll
, u32 khz
, struct creg
*reg
)
112 struct pll_lims limits
;
113 u32 oclk
, sclk
, sdiv
;
120 NV_DEBUG(dev
, "no clock for 0x%04x/0x%02x\n", pll
, clk
);
126 reg
->clk
= 0x00000100;
129 reg
->clk
= 0x00002100;
132 reg
->clk
= 0x00002140;
135 sclk
= read_vco(dev
, clk
);
136 sdiv
= min((sclk
* 2) / (khz
- 2999), (u32
)65);
137 /* if the clock has a PLL attached, and we can get a within
138 * [-2, 3) MHz of a divider, we'll disable the PLL and use
139 * the divider instead.
141 * divider can go as low as 2, limited here because NVIDIA
142 * and the VBIOS on my NVA8 seem to prefer using the PLL
143 * for 810MHz - is there a good reason?
146 oclk
= (sclk
* 2) / sdiv
;
148 if (!pll
|| (diff
>= -2000 && diff
< 3000)) {
149 reg
->clk
= (((sdiv
- 2) << 16) | 0x00003100);
155 NV_ERROR(dev
, "bad freq %02x: %d %d\n", clk
, khz
, sclk
);
162 ret
= get_pll_limits(dev
, pll
, &limits
);
166 limits
.refclk
= read_clk(dev
, clk
- 0x10, true);
170 ret
= nva3_calc_pll(dev
, &limits
, khz
, &N
, NULL
, &M
, &P
);
172 reg
->clk
= nv_rd32(dev
, 0x4120 + (clk
* 4));
173 reg
->pll
= (P
<< 16) | (N
<< 8) | M
;
179 prog_pll(struct drm_device
*dev
, int clk
, u32 pll
, struct creg
*reg
)
181 const u32 src0
= 0x004120 + (clk
* 4);
182 const u32 src1
= 0x004160 + (clk
* 4);
183 const u32 ctrl
= pll
+ 0;
184 const u32 coef
= pll
+ 4;
187 if (!reg
->clk
&& !reg
->pll
) {
188 NV_DEBUG(dev
, "no clock for %02x\n", clk
);
192 cntl
= nv_rd32(dev
, ctrl
) & 0xfffffff2;
194 nv_mask(dev
, src0
, 0x00000101, 0x00000101);
195 nv_wr32(dev
, coef
, reg
->pll
);
196 nv_wr32(dev
, ctrl
, cntl
| 0x00000015);
197 nv_mask(dev
, src1
, 0x00000100, 0x00000000);
198 nv_mask(dev
, src1
, 0x00000001, 0x00000000);
200 nv_mask(dev
, src1
, 0x003f3141, 0x00000101 | reg
->clk
);
201 nv_wr32(dev
, ctrl
, cntl
| 0x0000001d);
202 nv_mask(dev
, ctrl
, 0x00000001, 0x00000000);
203 nv_mask(dev
, src0
, 0x00000100, 0x00000000);
204 nv_mask(dev
, src0
, 0x00000001, 0x00000000);
209 prog_clk(struct drm_device
*dev
, int clk
, struct creg
*reg
)
212 NV_DEBUG(dev
, "no clock for %02x\n", clk
);
216 nv_mask(dev
, 0x004120 + (clk
* 4), 0x003f3141, 0x00000101 | reg
->clk
);
220 nva3_pm_clocks_get(struct drm_device
*dev
, struct nouveau_pm_level
*perflvl
)
222 perflvl
->core
= read_pll(dev
, 0x00, 0x4200);
223 perflvl
->shader
= read_pll(dev
, 0x01, 0x4220);
224 perflvl
->memory
= read_pll(dev
, 0x02, 0x4000);
225 perflvl
->unka0
= read_clk(dev
, 0x20, false);
226 perflvl
->vdec
= read_clk(dev
, 0x21, false);
227 perflvl
->daemon
= read_clk(dev
, 0x25, false);
228 perflvl
->copy
= perflvl
->core
;
232 struct nva3_pm_state
{
241 nva3_pm_clocks_pre(struct drm_device
*dev
, struct nouveau_pm_level
*perflvl
)
243 struct nva3_pm_state
*info
;
246 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
248 return ERR_PTR(-ENOMEM
);
250 ret
= calc_clk(dev
, 0x10, 0x4200, perflvl
->core
, &info
->nclk
);
254 ret
= calc_clk(dev
, 0x11, 0x4220, perflvl
->shader
, &info
->sclk
);
258 ret
= calc_clk(dev
, 0x12, 0x4000, perflvl
->memory
, &info
->mclk
);
262 ret
= calc_clk(dev
, 0x20, 0x0000, perflvl
->unka0
, &info
->unka0
);
266 ret
= calc_clk(dev
, 0x21, 0x0000, perflvl
->vdec
, &info
->vdec
);
279 nva3_pm_grcp_idle(void *data
)
281 struct drm_device
*dev
= data
;
283 if (!(nv_rd32(dev
, 0x400304) & 0x00000001))
285 if (nv_rd32(dev
, 0x400308) == 0x0050001c)
291 nva3_pm_clocks_set(struct drm_device
*dev
, void *pre_state
)
293 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
294 struct nva3_pm_state
*info
= pre_state
;
297 /* prevent any new grctx switches from starting */
298 spin_lock_irqsave(&dev_priv
->context_switch_lock
, flags
);
299 nv_wr32(dev
, 0x400324, 0x00000000);
300 nv_wr32(dev
, 0x400328, 0x0050001c); /* wait flag 0x1c */
301 /* wait for any pending grctx switches to complete */
302 if (!nv_wait_cb(dev
, nva3_pm_grcp_idle
, dev
)) {
303 NV_ERROR(dev
, "pm: ctxprog didn't go idle\n");
307 nv_mask(dev
, 0x002504, 0x00000001, 0x00000001);
308 if (!nv_wait(dev
, 0x002504, 0x00000010, 0x00000010)) {
309 NV_ERROR(dev
, "pm: fifo didn't go idle\n");
313 prog_pll(dev
, 0x00, 0x004200, &info
->nclk
);
314 prog_pll(dev
, 0x01, 0x004220, &info
->sclk
);
315 prog_clk(dev
, 0x20, &info
->unka0
);
316 prog_clk(dev
, 0x21, &info
->vdec
);
318 if (info
->mclk
.clk
|| info
->mclk
.pll
) {
319 nv_wr32(dev
, 0x100210, 0);
320 nv_wr32(dev
, 0x1002dc, 1);
321 nv_wr32(dev
, 0x004018, 0x00001000);
322 prog_pll(dev
, 0x02, 0x004000, &info
->mclk
);
323 if (nv_rd32(dev
, 0x4000) & 0x00000008)
324 nv_wr32(dev
, 0x004018, 0x1000d000);
326 nv_wr32(dev
, 0x004018, 0x10005000);
327 nv_wr32(dev
, 0x1002dc, 0);
328 nv_wr32(dev
, 0x100210, 0x80000000);
333 nv_mask(dev
, 0x002504, 0x00000001, 0x00000000);
334 /* restore ctxprog to normal */
335 nv_wr32(dev
, 0x400324, 0x00000000);
336 nv_wr32(dev
, 0x400328, 0x0070009c); /* set flag 0x1c */
337 /* unblock it if necessary */
338 if (nv_rd32(dev
, 0x400308) == 0x0050001c)
339 nv_mask(dev
, 0x400824, 0x10000000, 0x10000000);
340 spin_unlock_irqrestore(&dev_priv
->context_switch_lock
, flags
);