From 7f2a16d0fc9a49add33901eb8775608659c927fb Mon Sep 17 00:00:00 2001 From: Jonathan Johansson Date: Mon, 19 Apr 2021 21:36:52 +0200 Subject: [PATCH] Add workaround for Maxwell devices not supporting inforom. --- vgpu_unlock | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vgpu_unlock b/vgpu_unlock index 6258371..b185e05 100755 --- a/vgpu_unlock +++ b/vgpu_unlock @@ -314,6 +314,11 @@ script_source = r""" syslog("op_type: 0x" + op_type.toString(16) + " failed."); } } + + // Workaround for some Maxwell cards not supporting reading inforom. + if(op_type == 0x2080014b && status == 0x56) { + this.argp.add(0x1C).writeU32(0x57); + } } });