tests/gem_media_fill: add support for gen7

v2: Fixed the source register used for the send with EOT
    Fixed the posted destination operand for the send with EOT

Reviewed-by: Zhao Yakui <yakui.zhao@intel.com>
Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
This commit is contained in:
Xiang, Haihao
2013-12-02 12:49:14 +08:00
parent bd384c2ba3
commit c683569725
5 changed files with 685 additions and 0 deletions
+2
View File
@@ -7,6 +7,8 @@ media_fillfunc_t get_media_fillfunc(int devid)
if (IS_GEN8(devid))
fill = gen8_media_fillfunc;
else if (IS_GEN7(devid))
fill = gen7_media_fillfunc;
return fill;
}