From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C90924302ED; Thu, 16 Jul 2026 14:29:22 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784212163; cv=none; b=XWgsIrMk+baTPIjXTnQD8z+0B/nvQeI5/DZv8pteCVnhJxjlDASEtmxbLKTCA7YHtPSArTK3c+3A6lnDjjLt+j0a0ZtZkYhBbEbGpgehV/0VqeYMU7PmXvEldfRcxvNwZcbLLl2ZYOF7IeUAR2CtEho9fi18FfNMDQyZ1WQZyTI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784212163; c=relaxed/simple; bh=92T+gxunzGMBXPOos5O0RgulgNgP9aX5pMkhPJpaDIY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=Xgvuis51FouEXjG7CqMAKKdMzc0LKAOr3IUO/IHLu7MZ0yLxELxPGlf2Ror7YnWMoSKIJlTZmeENP4Hlhb8zaM5rEuIV6C2LO9FxErMKpDS8EZWtg0pEauMssXsoo8ITJs2t0JV7i+Q+o3KZxMeux87bF4tCHFMO0WNP7HCFMKA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=IWJwQRZL; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="IWJwQRZL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3C2B51F00A3A; Thu, 16 Jul 2026 14:29:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784212162; bh=5vYShxxozI1X8vMN9lHRUFp5CqincaVKYqVgi+B5wGg=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=IWJwQRZL9RtQCNKzzBjCQ4CIQTEB+NKUvuSal5RkxDc+0J6wdOZzxb2slv0MyDd40 yYh3/iLegg6xIa8euxlZ+95rbICjssIJt4ZdDDNPVhbduqYolwKq/Nv9VCYEwIugrt qiwowuxwVfStCc7PMGzfw5Izn5VWHKQHDlPQ6E7A= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, =?UTF-8?q?Rodrigo=20Lugathe=20da=20Concei=C3=A7=C3=A3o=20Alves?= , stable Subject: [PATCH 6.12 222/349] USB: core: add USB_QUIRK_NO_LPM for VIA Labs USB 2.0 hub Date: Thu, 16 Jul 2026 15:32:36 +0200 Message-ID: <20260716133038.331530654@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260716133033.287196923@linuxfoundation.org> References: <20260716133033.287196923@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Rodrigo Lugathe da Conceição Alves commit bd728c3d9b1cc0bb0fda6a7055c5c8b55d7477b2 upstream. The VIA Labs, Inc. USB 2.0 hub controller (2109:2817), found in a KVM switch, fails to enumerate high-power devices during cold boot and system restart. Applying the kernel parameter usbcore.quirks=2109:2817:k resolves the issue. Enumeration failure log: usb 1-1.2.3: device descriptor read/64, error -32 usb 1-1.2.3: Device not responding to setup address. usb 1-1.2.3: device not accepting address 11, error -71 usb 1-1.2-port3: unable to enumerate USB device Add USB_QUIRK_NO_LPM for this device. Signed-off-by: Rodrigo Lugathe da Conceição Alves Cc: stable Link: https://patch.msgid.link/20260603113626.395612-1-lugathe2@gmail.com Signed-off-by: Greg Kroah-Hartman --- drivers/usb/core/quirks.c | 3 +++ 1 file changed, 3 insertions(+) --- a/drivers/usb/core/quirks.c +++ b/drivers/usb/core/quirks.c @@ -574,6 +574,9 @@ static const struct usb_device_id usb_qu /* VLI disk */ { USB_DEVICE(0x2109, 0x0711), .driver_info = USB_QUIRK_NO_LPM }, + /* VIA Labs, Inc. USB2.0 Hub */ + { USB_DEVICE(0x2109, 0x2817), .driver_info = USB_QUIRK_NO_LPM }, + /* Raydium Touchscreen */ { USB_DEVICE(0x2386, 0x3114), .driver_info = USB_QUIRK_NO_LPM },