summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau
diff options
context:
space:
mode:
authorRoy Spliet2015-09-30 01:23:52 +0200
committerBen Skeggs2015-11-03 06:02:18 +0100
commit0d42743dfa908a2ca4e349f883361906ebb4db95 (patch)
tree9a73cf3e92d39d7c40d38708f5f3c0064b50ffe3 /drivers/gpu/drm/nouveau
parentdrm/nouveau/bus/hwsq: Implement VBLANK waiting heuristic (diff)
downloadkernel-qcow2-linux-0d42743dfa908a2ca4e349f883361906ebb4db95.tar.gz
kernel-qcow2-linux-0d42743dfa908a2ca4e349f883361906ebb4db95.tar.xz
kernel-qcow2-linux-0d42743dfa908a2ca4e349f883361906ebb4db95.zip
drm/nouveau/clk/g84: Enable reclocking for GDDR3 G94-G200
Your milage may vary, as it's only been tested on a single G94 and one G96. Signed-off-by: Roy Spliet <rspliet@eclipso.eu> Tested-by: Pierre Moreau <pierre.morrow@free.fr> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau')
-rw-r--r--drivers/gpu/drm/nouveau/nvkm/subdev/clk/g84.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/clk/g84.c b/drivers/gpu/drm/nouveau/nvkm/subdev/clk/g84.c
index 347da9ee20f5..f97e3ec196bb 100644
--- a/drivers/gpu/drm/nouveau/nvkm/subdev/clk/g84.c
+++ b/drivers/gpu/drm/nouveau/nvkm/subdev/clk/g84.c
@@ -44,5 +44,5 @@ int
g84_clk_new(struct nvkm_device *device, int index, struct nvkm_clk **pclk)
{
return nv50_clk_new_(&g84_clk, device, index,
- (device->chipset == 0xa0), pclk);
+ (device->chipset >= 0x94), pclk);
}