Thunk : Add gfx1011 support from thunk side

Change-Id: I6b202b75fc1ad0e69576a35a6a3e499818137e04
Signed-off-by: shaoyunl <shaoyun.liu@amd.com>


[ROCm/ROCR-Runtime commit: a1e399a3ff]
This commit is contained in:
shaoyunl
2019-09-24 18:47:23 -04:00
parent 45d37b9665
commit 677448a6ea
3 changed files with 13 additions and 1 deletions
+7
View File
@@ -146,6 +146,12 @@ const struct device_info navi10_device_info = {
.doorbell_size = DOORBELL_SIZE_GFX9,
};
const struct device_info navi12_device_info = {
.asic_family = CHIP_NAVI12,
.eop_buffer_size = 4096,
.doorbell_size = DOORBELL_SIZE_GFX9,
};
const struct device_info navi14_device_info = {
.asic_family = CHIP_NAVI14,
.eop_buffer_size = 4096,
@@ -168,6 +174,7 @@ static const struct device_info *dev_lookup_table[] = {
[CHIP_RAVEN] = &raven_device_info,
[CHIP_ARCTURUS] = &arcturus_device_info,
[CHIP_NAVI10] = &navi10_device_info,
[CHIP_NAVI12] = &navi12_device_info,
[CHIP_NAVI14] = &navi14_device_info,
};