summaryrefslogtreecommitdiff
path: root/radeontool.c
diff options
context:
space:
mode:
Diffstat (limited to 'radeontool.c')
-rw-r--r--radeontool.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/radeontool.c b/radeontool.c
index 3c81b43..7f322f6 100644
--- a/radeontool.c
+++ b/radeontool.c
@@ -352,6 +352,8 @@ static struct {
REGLIST(FP_VERT_STRETCH),
REGLIST(FP_V2_SYNC_STRT_WID),
REGLIST(FP_VERT2_STRETCH),
+ REGLIST(FW_CNTL),
+ REGLIST(FW_STATUS),
REGLIST(GEN_INT_CNTL),
REGLIST(GEN_INT_STATUS),
REGLIST(GENENB),
@@ -1074,6 +1076,13 @@ static void radeon_rom_legacy_dfptable(unsigned char *bios, int hdr)
}
}
+static void radeon_rom_legacy_exttmdstable(unsigned char *bios, int hdr)
+{
+ if (BIOS16(hdr + 0x58)) {
+ printf("Found External TMDS Table\n");
+ }
+
+}
void radeon_rom_tables(const char * file)
{
@@ -1117,6 +1126,7 @@ void radeon_rom_tables(const char * file)
radeon_rom_legacy_clocks(bios, hdr);
radeon_rom_legacy_connectors(bios, hdr);
radeon_rom_legacy_dfptable(bios, hdr);
+ radeon_rom_legacy_exttmdstable(bios, hdr);
}
}