Skip to content

Commit 195674a

Browse files
imirkingregkh
authored andcommitted
drm/nouveau/bsp/g92: disable by default
commit 194d68dd051c2dd5ac2b522ae16100e774e8d869 upstream. G92's seem to require some additional bit of initialization before the BSP engine can work. It feels like clocks are not set up for the underlying VLD engine, which means that all commands submitted to the xtensa chip end up hanging. VP seems to work fine though. This still allows people to force-enable the bsp engine if they want to play around with it, but makes it harder for the card to hang by default. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu> Signed-off-by: Ben Skeggs <bskeggs@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 4d56587 commit 195674a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • drivers/gpu/drm/nouveau/nvkm/engine/bsp

drivers/gpu/drm/nouveau/nvkm/engine/bsp/g84.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ int
4040
g84_bsp_new(struct nvkm_device *device, int index, struct nvkm_engine **pengine)
4141
{
4242
return nvkm_xtensa_new_(&g84_bsp, device, index,
43-
true, 0x103000, pengine);
43+
device->chipset != 0x92, 0x103000, pengine);
4444
}

0 commit comments

Comments
 (0)