summaryrefslogtreecommitdiff
path: root/radeontool.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@linux.ie>2006-11-03 19:14:38 -0800
committerDave Airlie <airlied@linux.ie>2006-11-03 19:14:38 -0800
commit1fe41408ffbac1289d056658a5f2c8e3befdbffd (patch)
treedb90922b15bc3254e1ef94599053033a7dc2e86d /radeontool.c
parenta22248f04fe6003306255fecaf590b5796cd5c53 (diff)
adsd fw_cntl and TMDS external detect
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);
}
}