On Sun, Oct 16, 2022 at 03:46:11AM -0600, Anthony J. Bentley wrote:
> On Valve's Steam Deck dock (https://www.steamdeck.com/en/dock), setting
> 'inet autoconf' in hostname.axen0 and running 'sh /etc/netstart axen0'
> (or equivalently, selecting axen0 during install) results in no response
> from the network, and this message in dmesg:
> 
> axen0: invalid buffer(pkt#1), continue
> 
> This continues to print in dmesg until the ethernet cable is unplugged.

some pcidevs changes unrelated to that issue
should make ccp(4) match

there are no docs for family 17h model 90h on
https://developer.amd.com/resources/developer-guides-manuals/
unsure what AMD 0x145a is

storage is from Longsys, FORESEE brand
controller seems to be from BayHub Technology, unclear which model

Index: pcidevs
===================================================================
RCS file: /cvs/src/sys/dev/pci/pcidevs,v
retrieving revision 1.2006
diff -u -p -r1.2006 pcidevs
--- pcidevs     3 Oct 2022 05:39:07 -0000       1.2006
+++ pcidevs     18 Oct 2022 03:34:22 -0000
@@ -834,6 +834,7 @@ product AMD 15_0X_DRAM              0x1602  15/0xh DR
 product AMD 15_0X_MISC         0x1603  15/0xh Misc Cfg
 product AMD 15_0X_CPU_PM       0x1604  15/0xh CPU Power
 product AMD 15_0X_HB           0x1605  15/0xh Host
+product AMD 17_90_XHCI_1       0x162c  17h/90h xHCI
 product AMD 17_6X_RC           0x1630  17h/6xh Root Complex
 product AMD 17_6X_IOMMU                0x1631  17h/6xh IOMMU
 product AMD 17_6X_HB           0x1632  17h/6xh Host
@@ -841,6 +842,19 @@ product AMD 17_6X_PCIE_1   0x1633  17h/6xh 
 product AMD 17_6X_PCIE_2       0x1634  17h/6xh PCIE
 product AMD 17_6X_PCIE_3       0x1635  17h/6xh PCIE
 product AMD 17_6X_XHCI         0x1639  17h/6xh xHCI
+product AMD 17_90_XHCI_2       0x163b  17h/90h xHCI
+product AMD 17_90_HB           0x1645  17h/90h Host
+product AMD 17_90_PCIE_1       0x1647  17h/90h PCIE
+product AMD 17_90_PCIE_2       0x1648  17h/90h PCIE
+product AMD 17_90_CCP          0x1649  17h/90h Crypto
+product AMD 17_90_DF_0         0x1660  17h/90h Data Fabric
+product AMD 17_90_DF_1         0x1661  17h/90h Data Fabric
+product AMD 17_90_DF_2         0x1662  17h/90h Data Fabric
+product AMD 17_90_DF_3         0x1663  17h/90h Data Fabric
+product AMD 17_90_DF_4         0x1664  17h/90h Data Fabric
+product AMD 17_90_DF_5         0x1665  17h/90h Data Fabric
+product AMD 17_90_DF_6         0x1666  17h/90h Data Fabric
+product AMD 17_90_DF_7         0x1667  17h/90h Data Fabric
 product AMD 19_5X_DF_0         0x166a  19h/5xh Data Fabric
 product AMD 19_5X_DF_1         0x166b  19h/5xh Data Fabric
 product AMD 19_5X_DF_2         0x166c  19h/5xh Data Fabric
@@ -1221,6 +1235,7 @@ product ATI RENOIR                0x1636  Renoir
 product ATI RENOIR_HDA         0x1637  Renoir HD Audio
 product ATI CEZANNE            0x1638  Cezanne
 product ATI VANGOGH            0x163f  Van Gogh
+product ATI VANGOGH_HDA                0x1640  Van Gogh HD Audio
 product ATI LUCIENNE           0x164c  Lucienne
 product ATI YELLOW_CARP_1      0x164d  Yellow Carp
 product ATI RAPHAEL            0x164e  Raphael
Index: ccp_pci.c
===================================================================
RCS file: /cvs/src/sys/dev/pci/ccp_pci.c,v
retrieving revision 1.6
diff -u -p -r1.6 ccp_pci.c
--- ccp_pci.c   11 Mar 2022 18:00:45 -0000      1.6
+++ ccp_pci.c   18 Oct 2022 03:01:07 -0000
@@ -48,6 +48,7 @@ static const struct pci_matchid ccp_pci_
        { PCI_VENDOR_AMD,       PCI_PRODUCT_AMD_17_CCP_2 },
        { PCI_VENDOR_AMD,       PCI_PRODUCT_AMD_17_1X_CCP },
        { PCI_VENDOR_AMD,       PCI_PRODUCT_AMD_17_3X_CCP },
+       { PCI_VENDOR_AMD,       PCI_PRODUCT_AMD_17_90_CCP },
 };
 
 int

Reply via email to