projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
44ab8cc
)
drm/nvc0/pm: restrict pll mode to clocks that can actually use it
author
Ben Skeggs
<bskeggs@redhat.com>
Mon, 6 Feb 2012 23:59:54 +0000
(09:59 +1000)
committer
Ben Skeggs
<bskeggs@redhat.com>
Tue, 13 Mar 2012 07:14:58 +0000
(17:14 +1000)
Fixes reclocking failure on some chips where we attempted to set PDAEMON
to PLL mode.
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/nvc0_pm.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/gpu/drm/nouveau/nvc0_pm.c
b/drivers/gpu/drm/nouveau/nvc0_pm.c
index e9992f62c1c0f97da00b8c04c5fdaca6d5c0f13b..ce65f81bb871d24ad889afac59aa306db5ac70e7 100644
(file)
--- a/
drivers/gpu/drm/nouveau/nvc0_pm.c
+++ b/
drivers/gpu/drm/nouveau/nvc0_pm.c
@@
-269,7
+269,7
@@
calc_clk(struct drm_device *dev, int clk, struct nvc0_pm_clock *info, u32 freq)
clk0 = calc_div(dev, clk, clk0, freq, &div1D);
/* see if we can get any closer using PLLs */
- if (clk0 != freq) {
+ if (clk0 != freq
&& (0x00004387 & (1 << clk))
) {
if (clk < 7)
clk1 = calc_pll(dev, clk, freq, &info->coef);
else