From patchwork Wed May 18 22:02:51 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Brian Norris X-Patchwork-Id: 574195 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8C767C433EF for ; Wed, 18 May 2022 22:06:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229681AbiERWGZ (ORCPT ); Wed, 18 May 2022 18:06:25 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43542 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229995AbiERWGA (ORCPT ); Wed, 18 May 2022 18:06:00 -0400 Received: from mail-pf1-x42e.google.com (mail-pf1-x42e.google.com [IPv6:2607:f8b0:4864:20::42e]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id F386B1666A5 for ; Wed, 18 May 2022 15:04:16 -0700 (PDT) Received: by mail-pf1-x42e.google.com with SMTP id y41so3358227pfw.12 for ; Wed, 18 May 2022 15:04:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chromium.org; s=google; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=/nGLK4xvSVUA2aTskL7KBthCb1HFoB9NWaLdwGSmKHI=; b=BI2RBE7OtfruFWTCNYrgW7SluCI1Rz1x30/zpufzVOuVeQ01dyyAl9KN+supk4ojPw GdvQYhtBojNjCzrclI30qnVPoypBgeo9+SsWAx194EvXhdWjCbQcLBkBIc6pdUknE90J XxrdkfQEZ8oMyivFmEzFxb+kEYZUVIRttm6B4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=/nGLK4xvSVUA2aTskL7KBthCb1HFoB9NWaLdwGSmKHI=; b=ZYCjykmSLjSMyZS3hsU3fXCCZrxbr38P786J6iqwE8K6CBlFQc0iEm05UIaagY0Ap+ QnRqw2oNz9hV/RLOLdY/6riPVvySbkBzGn/zOXgx+NJvkYn5dP5z3djnRPlWkKPlI4qZ vAbhU9igtLHqMejnCrlaQoMGmPUX9ok3cS1sxBpbfYicMSybcofJH03em0kqDlB0uEBl Wi3N0E96GehbbyuYDZTh/BvVWC05mbSbjOk7sYrqenumHG7gowgDcY37c/ZtNMjrUn75 dnoTRQJVemkAkt6B7C8w3KW20F5Pz0MKPEQYUTEB5udq/qHj7apWX43+woqkABXUhkq/ UbGg== X-Gm-Message-State: AOAM531xuGITFX1l7IOUFoX78NlGVNX2etXhEr6uvrQSCHRbFEbxQTp7 lz2u6X2Yl53r6/+xukMgXHi9wA== X-Google-Smtp-Source: ABdhPJxXorvF4EPHY4DS+gEC8RdZC65si6o5SpHebhRG0HV11EiT/ZrxUJae2tcLmaUH8cRGnpDoXg== X-Received: by 2002:a05:6a00:1145:b0:4f6:3ebc:a79b with SMTP id b5-20020a056a00114500b004f63ebca79bmr1609722pfm.41.1652911456421; Wed, 18 May 2022 15:04:16 -0700 (PDT) Received: from localhost ([2620:15c:202:201:620e:26da:4317:c2ee]) by smtp.gmail.com with UTF8SMTPSA id p123-20020a622981000000b0051811c2aa89sm2407750pfp.196.2022.05.18.15.04.15 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Wed, 18 May 2022 15:04:15 -0700 (PDT) From: Brian Norris To: Alan Stern , Greg Kroah-Hartman Cc: linux-kernel@vger.kernel.org, Dmitry Torokhov , linux-usb@vger.kernel.org, Doug Anderson , Brian Norris Subject: [PATCH] usb: Probe EHCI, OHCI controllers asynchronously Date: Wed, 18 May 2022 15:02:51 -0700 Message-Id: <20220518150150.1.Ie8ea0e945a9c15066237014be219eed60066d493@changeid> X-Mailer: git-send-email 2.36.1.124.g0e6072fb45-goog MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org From: Dmitry Torokhov initcall_debug shows that OHCI controllers take ~60ms to probe on Rockchip RK3399 systems: probe of fe3a0000.usb returned 1 after 58941 usecs A few of these can add up to waste non-trivial amounts of time at boot. These host controllers don't provide resources to other drivers, so this shouldn't contribute to exposing race conditions. Chrome OS kernels have carried this patch on some systems for a while without issues. Similar patches have been merged for a variety of (e)MMC host controllers for similar reasons. Signed-off-by: Dmitry Torokhov [Brian: rewrote commit message, refreshed, but retained dtor's original authorship ] Signed-off-by: Brian Norris Acked-by: Alan Stern Reviewed-by: Douglas Anderson --- drivers/usb/host/ehci-platform.c | 1 + drivers/usb/host/ohci-platform.c | 1 + 2 files changed, 2 insertions(+) diff --git a/drivers/usb/host/ehci-platform.c b/drivers/usb/host/ehci-platform.c index 1115431a255d..f343967443e2 100644 --- a/drivers/usb/host/ehci-platform.c +++ b/drivers/usb/host/ehci-platform.c @@ -518,6 +518,7 @@ static struct platform_driver ehci_platform_driver = { .pm = pm_ptr(&ehci_platform_pm_ops), .of_match_table = vt8500_ehci_ids, .acpi_match_table = ACPI_PTR(ehci_acpi_match), + .probe_type = PROBE_PREFER_ASYNCHRONOUS, } }; diff --git a/drivers/usb/host/ohci-platform.c b/drivers/usb/host/ohci-platform.c index 4a8456f12a73..47dfbfe9e519 100644 --- a/drivers/usb/host/ohci-platform.c +++ b/drivers/usb/host/ohci-platform.c @@ -334,6 +334,7 @@ static struct platform_driver ohci_platform_driver = { .name = "ohci-platform", .pm = &ohci_platform_pm_ops, .of_match_table = ohci_platform_ids, + .probe_type = PROBE_PREFER_ASYNCHRONOUS, } };