Trying nouveau reclocking

2016-01-27 Thread Boszormenyi Zoltan
Hi, 2016-01-27 14:26 keltezéssel, Ilia Mirkin írta: > The warn in question is > > static u32 > nvkm_mc_intr_mask(struct nvkm_mc *mc) > { > u32 intr = mc->func->intr_mask(mc); > if (WARN_ON_ONCE(intr == 0x)) > intr = 0; /* likely fallen off the bus */ >

Trying nouveau reclocking

2016-01-27 Thread Boszormenyi Zoltan
Hi, I was trying to use re-clocking with nouveau in 4.5.0-rc1 with: # echo "0f" >/sys/kernel/debug/dri/0/pstate while Chromium with a WebGL app already running. (www.playmapscube.com) The video chip in question is: 03:00.0 VGA compatible controller: NVIDIA Corporation GT218 [ION] (rev a2) or

Trying nouveau reclocking

2016-01-27 Thread Ilia Mirkin
The warn in question is static u32 nvkm_mc_intr_mask(struct nvkm_mc *mc) { u32 intr = mc->func->intr_mask(mc); if (WARN_ON_ONCE(intr == 0x)) intr = 0; /* likely fallen off the bus */ return intr; } Which is basically a sign of total death. Is this