Skip to content

Commit f84fa2b

Browse files
committed
Add support for Polaris 11 and Polaris 10
1 parent 6fb1c5c commit f84fa2b

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

family_str.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,6 @@ const char * const family_str[] = {
6060
str(FIJI),
6161
str(CARRIZO),
6262
str(STONEY),
63+
str(POLARIS11),
64+
str(POLARIS10),
6365
};

include/r600_pci_ids.h

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -505,3 +505,25 @@ CHIPSET(0x9875, 0x9875, CARRIZO)
505505
CHIPSET(0x9876, 0x9876, CARRIZO)
506506
CHIPSET(0x9877, 0x9877, CARRIZO)
507507
CHIPSET(0x98E4, 0x98E4, STONEY)
508+
509+
CHIPSET(0x67E0, 0x67E0, POLARIS11)
510+
CHIPSET(0x67E3, 0x67E3, POLARIS11)
511+
CHIPSET(0x67E8, 0x67E8, POLARIS11)
512+
CHIPSET(0x67EB, 0x67EB, POLARIS11)
513+
CHIPSET(0x67EF, 0x67EF, POLARIS11)
514+
CHIPSET(0x67FF, 0x67FF, POLARIS11)
515+
CHIPSET(0x67E1, 0x67E1, POLARIS11)
516+
CHIPSET(0x67E7, 0x67E7, POLARIS11)
517+
CHIPSET(0x67E9, 0x67E9, POLARIS11)
518+
519+
CHIPSET(0x67C0, 0x67C0, POLARIS10)
520+
CHIPSET(0x67C1, 0x67C1, POLARIS10)
521+
CHIPSET(0x67C2, 0x67C2, POLARIS10)
522+
CHIPSET(0x67C4, 0x67C4, POLARIS10)
523+
CHIPSET(0x67C7, 0x67C7, POLARIS10)
524+
CHIPSET(0x67DF, 0x67DF, POLARIS10)
525+
CHIPSET(0x67C8, 0x67C8, POLARIS10)
526+
CHIPSET(0x67C9, 0x67C9, POLARIS10)
527+
CHIPSET(0x67CA, 0x67CA, POLARIS10)
528+
CHIPSET(0x67CC, 0x67CC, POLARIS10)
529+
CHIPSET(0x67CF, 0x67CF, POLARIS10)

include/radeontop.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ enum radeon_family {
119119
FIJI,
120120
CARRIZO,
121121
STONEY,
122+
POLARIS11,
123+
POLARIS10,
122124
};
123125

124126
extern const char * const family_str[];

0 commit comments

Comments
 (0)