radeon_hd: Add new Polaris GPU, untested

This commit is contained in:
Alexander von Gluck IV
2016-06-30 15:09:59 -05:00
parent c9e6b4e096
commit 30d631c821
2 changed files with 12 additions and 3 deletions
@@ -111,7 +111,8 @@ enum radeon_chipset {
RADEON_HAWAII, // DCE 8.5
RADEON_TOPAZ, //Volcanic Islands, NO DCE
RADEON_TONGA, // DCE 10.0
RADEON_CARRIZO // DCE 11.0
RADEON_CARRIZO, // DCE 11.0
RADEON_POLARIS //Artic Islands, DCE 12.0
};
// !! Must match chipset families above
@@ -168,7 +169,8 @@ static const char radeon_chip_name[][MAX_NAME_LENGTH] = {
"Hawaii",
"Topaz",
"Tonga",
"Carrizo"
"Carrizo",
"Polaris"
};
@@ -497,7 +497,14 @@ const struct supported_device {
{0x9874, 11, 0, RADEON_CARRIZO, CHIP_APU, "Radeon HD Carrizo"},
{0x9875, 11, 0, RADEON_CARRIZO, CHIP_APU, "Radeon HD Carrizo"},
{0x9876, 11, 0, RADEON_CARRIZO, CHIP_APU, "Radeon HD Carrizo"},
{0x9877, 11, 0, RADEON_CARRIZO, CHIP_APU, "Radeon HD Carrizo"}
{0x9877, 11, 0, RADEON_CARRIZO, CHIP_APU, "Radeon HD Carrizo"},
// Introduced: 2016
// Codename: Artic Islands / Polaris
// Process: 14 nm
// Radeon RX 460 TBA
// Radeon RX 470 TBA
{0x67df, 12, 0, RADEON_POLARIS, CHIP_STD, "Radeon RX480"}
};