Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Apr 2016 06:03:22 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-amd64@FreeBSD.org
Subject:   [Bug 208959] UHCI interrupt storm with "uhci_interrupt: uhci_interrupt: host controller halted"
Message-ID:  <bug-208959-6-hFkULY90zi@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-208959-6@https.bugs.freebsd.org/bugzilla/>
References:  <bug-208959-6@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D208959

--- Comment #3 from Hans Petter Selasky <hselasky@FreeBSD.org> ---
In sys/dev/usb/controller/uhci.c try to change:

        /* get acknowledge bits */
        status &=3D (UHCI_STS_USBINT |
            UHCI_STS_USBEI |
            UHCI_STS_RD |
            UHCI_STS_HSE |
            UHCI_STS_HCPE |
            UHCI_STS_HCH);

Into:

        /* get acknowledge bits */
        status &=3D (UHCI_STS_USBINT |
            UHCI_STS_USBEI |
            UHCI_STS_RD |
            UHCI_STS_HSE |
            UHCI_STS_HCPE);

I'm not sure if it helps.

--HPS

--=20
You are receiving this mail because:
You are on the CC list for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-208959-6-hFkULY90zi>