quick_dump: Add basic haswell support

Mostly using the IVB registers + a few I grabbed from i915_reg.h

Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
This commit is contained in:
Ben Widawsky
2013-05-22 16:15:04 -07:00
parent 099a92ea28
commit 1109c5acfd
4 changed files with 15 additions and 0 deletions
+2
View File
@@ -49,6 +49,8 @@ if args.autodetect:
args.profile = open('ivybridge', 'r')
elif chipset.is_valleyview(devid):
args.profile = open('valleyview', 'r')
elif chipset.is_haswell(devid):
args.profile = open('haswell', 'r')
else:
print("Autodetect of %x " + devid + " failed")