mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-05 22:00:11 +01:00
amdgpu/addrlib: Fix family setting for VI and CZ ASICs
This commit is contained in:
parent
b328e47d3d
commit
c867a2b222
1 changed files with 2 additions and 0 deletions
|
|
@ -410,10 +410,12 @@ ChipFamily CiLib::HwlConvertChipFamily(
|
|||
m_settings.isPolaris10 = ASICREV_IS_POLARIS10_P(uChipRevision);
|
||||
m_settings.isPolaris11 = ASICREV_IS_POLARIS11_M(uChipRevision);
|
||||
m_settings.isPolaris12 = ASICREV_IS_POLARIS12_V(uChipRevision);
|
||||
family = ADDR_CHIP_FAMILY_VI;
|
||||
break;
|
||||
case FAMILY_CZ:
|
||||
m_settings.isCarrizo = 1;
|
||||
m_settings.isVolcanicIslands = 1;
|
||||
family = ADDR_CHIP_FAMILY_VI;
|
||||
break;
|
||||
default:
|
||||
ADDR_ASSERT(!"This should be a unexpected Fusion");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue