Skip to content

Commit 3997d15

Browse files
authored
Merge pull request #77 from Echelon9/feature/vbios-gk208-chipset
nvbios: Add support for gk208 and gk208b
2 parents 680ea3c + 99a187f commit 3997d15

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

nvbios/info.c

+5
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,11 @@ int envy_bios_parse_bit_i (struct envy_bios *bios, struct envy_bios_bit_entry *b
253253
bios->chipset = 0xf1;
254254
bios->chipset_name = "GK110B";
255255
break;
256+
/* GK208 and GK208B */
257+
case 0x8028:
258+
bios->chipset = 0x108;
259+
bios->chipset_name = "GK208/GK208B";
260+
break;
256261
/* GM117 */
257262
case 0x8207:
258263
bios->chipset = 0x117;

0 commit comments

Comments
 (0)