On Fri, Oct 18, 2024 at 08:36:31AM -0300, Ronny Machado wrote:
> Hi @misc
> 
> I've got this littla laptop which I use for almost everything, it has
> had OpenBSD since 6.8, never had a problem except for the wifi which I
> swapped with a compatible one and the trackpad which never worked in
> OpenBSD, not a problem, I use a mouse...
> 
> Now, one thing that always worked nicely was suspend...never had a
> problem, after the 7.6 upgrade, some USB devices stopped working,so no
> mouse nor usb NIC...As I said always worked out of the box.
> 
> I anyone could point me in the right direction :)
> 
> Attached in case someone want to take a look: 

likely the Controller Save State (CSS) changes

try a kernel with this

Index: sys/dev/pci/xhci_pci.c
===================================================================
RCS file: /cvs/src/sys/dev/pci/xhci_pci.c,v
diff -u -p -r1.14 xhci_pci.c
--- sys/dev/pci/xhci_pci.c      17 Aug 2024 01:55:03 -0000      1.14
+++ sys/dev/pci/xhci_pci.c      18 Oct 2024 11:52:54 -0000
@@ -152,9 +152,7 @@ xhci_pci_attach(struct device *parent, s
                        pa->pa_flags &= ~PCI_FLAGS_MSI_ENABLED;
                break;
        case PCI_VENDOR_AMD:
-               if (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_AMD_17_1X_XHCI_1 ||
-                   PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_AMD_17_1X_XHCI_2)
-                       psc->sc.sc_flags |= XHCI_NOCSS;
+               psc->sc.sc_flags |= XHCI_NOCSS;
                break;
        }
 

Reply via email to