Add some AMD device IDs.

This commit is contained in:
Dmitry Luhtionov 2024-06-07 11:00:09 -04:00 committed by Alexander Motin
parent 0dfd11abc4
commit 4cc4b5e2b5
4 changed files with 8 additions and 0 deletions

View file

@ -72,6 +72,9 @@ static const struct {
{0x43b61022, 0x00, "AMD X399", 0},
{0x43b51022, 0x00, "AMD 300 Series", 0}, /* X370 */
{0x43b71022, 0x00, "AMD 300 Series", 0}, /* B350 */
{0x43c81022, 0x00, "AMD 400 Series", 0}, /* B450 */
{0x43eb1022, 0x00, "AMD 500 Series", 0},
{0x43f61022, 0x00, "AMD 600 Series", 0}, /* X670 */
{0x78001022, 0x00, "AMD Hudson-2", 0},
{0x78011022, 0x00, "AMD Hudson-2", 0},
{0x78021022, 0x00, "AMD Hudson-2", 0},

View file

@ -193,6 +193,7 @@ static const struct {
{ HDA_ATI_RV940, "ATI RV940", 0, 0 },
{ HDA_ATI_RV970, "ATI RV970", 0, 0 },
{ HDA_ATI_R1000, "ATI R1000", 0, 0 },
{ HDA_ATI_OLAND, "ATI Oland", 0, 0 },
{ HDA_ATI_KABINI, "ATI Kabini", 0, 0 },
{ HDA_ATI_TRINITY, "ATI Trinity", 0, 0 },
{ HDA_AMD_X370, "AMD X370", 0, 0 },

View file

@ -178,6 +178,7 @@
#define HDA_ATI_RV930 HDA_MODEL_CONSTRUCT(ATI, 0xaa90)
#define HDA_ATI_RV910 HDA_MODEL_CONSTRUCT(ATI, 0xaa98)
#define HDA_ATI_R1000 HDA_MODEL_CONSTRUCT(ATI, 0xaaa0)
#define HDA_ATI_OLAND HDA_MODEL_CONSTRUCT(ATI, 0xaab0)
#define HDA_ATI_KABINI HDA_MODEL_CONSTRUCT(ATI, 0x9840)
#define HDA_ATI_TRINITY HDA_MODEL_CONSTRUCT(ATI, 0x9902)
#define HDA_ATI_ALL HDA_MODEL_CONSTRUCT(ATI, 0xffff)

View file

@ -100,6 +100,9 @@ xhci_pci_match(device_t self)
return ("AMD Starship USB 3.0 controller");
case 0x149c1022:
return ("AMD Matisse USB 3.0 controller");
case 0x15e01022:
case 0x15e11022:
return ("AMD Raven USB 3.1 controller");
case 0x43ba1022:
return ("AMD X399 USB 3.0 controller");
case 0x43b91022: /* X370 */