Skip to content

Commit

Permalink
Add workaround for Maxwell devices not supporting inforom.
Browse files Browse the repository at this point in the history
  • Loading branch information
DualCoder committed Apr 19, 2021
1 parent 1af65cd commit 7f2a16d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions vgpu_unlock
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
});
Expand Down

0 comments on commit 7f2a16d

Please sign in to comment.