mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add AHCI/XHCI device IDs found on AMD Ryzen+B350 system.
MFC after: 2 weeks
This commit is contained in:
parent
f549e3521d
commit
d171d2f281
2 changed files with 5 additions and 0 deletions
|
|
@ -68,6 +68,7 @@ static const struct {
|
||||||
AHCI_Q_ATI_PMP_BUG | AHCI_Q_1MSI},
|
AHCI_Q_ATI_PMP_BUG | AHCI_Q_1MSI},
|
||||||
/* Not sure SB8x0/SB9x0 needs this quirk. Be conservative though */
|
/* Not sure SB8x0/SB9x0 needs this quirk. Be conservative though */
|
||||||
{0x43951002, 0x00, "AMD SB8x0/SB9x0", AHCI_Q_ATI_PMP_BUG},
|
{0x43951002, 0x00, "AMD SB8x0/SB9x0", AHCI_Q_ATI_PMP_BUG},
|
||||||
|
{0x43b71022, 0x00, "AMD 300 Series", 0},
|
||||||
{0x78001022, 0x00, "AMD Hudson-2", 0},
|
{0x78001022, 0x00, "AMD Hudson-2", 0},
|
||||||
{0x78011022, 0x00, "AMD Hudson-2", 0},
|
{0x78011022, 0x00, "AMD Hudson-2", 0},
|
||||||
{0x78021022, 0x00, "AMD Hudson-2", 0},
|
{0x78021022, 0x00, "AMD Hudson-2", 0},
|
||||||
|
|
|
||||||
|
|
@ -97,6 +97,10 @@ xhci_pci_match(device_t self)
|
||||||
uint32_t device_id = pci_get_devid(self);
|
uint32_t device_id = pci_get_devid(self);
|
||||||
|
|
||||||
switch (device_id) {
|
switch (device_id) {
|
||||||
|
case 0x145c1022:
|
||||||
|
return ("AMD KERNCZ USB 3.0 controller");
|
||||||
|
case 0x43bb1022:
|
||||||
|
return ("AMD 300 Series USB 3.0 controller");
|
||||||
case 0x78141022:
|
case 0x78141022:
|
||||||
return ("AMD FCH USB 3.0 controller");
|
return ("AMD FCH USB 3.0 controller");
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue