From nobody Fri Apr 26 19:08:19 2024 Delivered-To: importer@patchew.org Received-SPF: none (zohomail.com: 78.46.105.101 is neither permitted nor denied by domain of seabios.org) client-ip=78.46.105.101; envelope-from=seabios-bounces@seabios.org; helo=coreboot.org; Authentication-Results: mx.zohomail.com; spf=none (zohomail.com: 78.46.105.101 is neither permitted nor denied by domain of seabios.org) smtp.mailfrom=seabios-bounces@seabios.org ARC-Seal: i=1; a=rsa-sha256; t=1584351707; cv=none; d=zohomail.com; s=zohoarc; b=iEamsIi2rem/515fAXU7RQAcj/JK+gpUqMsInGt/Dh7ksVpmcy3ae29UqM3NeF+mra+gjMRgTaRoxqtclHUFPLLGHNU31YxW0O4qNztG4n3swdShDIMJ7/v5z6cUZKgdW/f89T7AHjNePlbFvMk450fnhNUZ/8VIDkBrDffs1R4= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1584351707; h=Content-Type:Content-Transfer-Encoding:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Subject:To; bh=QdqaIQtB61Kt8MJXWBrGAtEOgWDKsqy01hRQBRBQw+M=; b=Cv2NBhxrZVcitc66DSORyzGnRVyCQ3FA+Asfn8AebXmNyR5Lx7a7uvi3TiGIJ/OfvhVvrAU7CurDgBrdKw3gSs9y/KYPR+uJgt4Lu97AqRUhlgUr9iB2aF2NgM0wpY3NXaOoZijC/ei/h2tx8iBs3CzbSnqUdZ0zxuCxTNIMgaQ= ARC-Authentication-Results: i=1; mx.zohomail.com; spf=none (zohomail.com: 78.46.105.101 is neither permitted nor denied by domain of seabios.org) smtp.mailfrom=seabios-bounces@seabios.org Return-Path: Received: from coreboot.org (coreboot.org [78.46.105.101]) by mx.zohomail.com with SMTPS id 1584351707228162.20111534279965; Mon, 16 Mar 2020 02:41:47 -0700 (PDT) Received: from authenticated-user (PRIMARY_HOSTNAME [PUBLIC_IP]) by coreboot.org (Postfix) with ESMTPA id EC533B01A4D; Mon, 16 Mar 2020 09:41:43 +0000 (UTC) Received: from authenticated-user (PRIMARY_HOSTNAME [PUBLIC_IP]) by coreboot.org (Postfix) with ESMTP id 9C79EB01A47 for ; Mon, 16 Mar 2020 09:41:25 +0000 (UTC) Received: from authenticated-user (PRIMARY_HOSTNAME [PUBLIC_IP]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: pmenzel) by mx.molgen.mpg.de (Postfix) with ESMTPSA id 32A7E2064608E; Mon, 16 Mar 2020 10:41:25 +0100 (CET) To: seabios@seabios.org From: Paul Menzel Message-ID: <3d8ee81e-0d00-18ae-6a9f-1e735b4f0e68@molgen.mpg.de> Date: Mon, 16 Mar 2020 10:41:24 +0100 MIME-Version: 1.0 Content-Language: en-US Message-ID-Hash: HM4IGTKKWZKGMDETPWPC2NLMNRZN7XHA X-Message-ID-Hash: HM4IGTKKWZKGMDETPWPC2NLMNRZN7XHA X-MailFrom: pmenzel@molgen.mpg.de X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-seabios.seabios.org-0; header-match-seabios.seabios.org-1; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header X-Mailman-Version: 3.3.1 Precedence: list Subject: [SeaBIOS] [PATCH] sdcard: Increase power-on timeout to 25 ms List-Id: SeaBIOS mailing list Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="utf-8"; format="flowed" Content-Transfer-Encoding: quoted-printable X-Spamd-Bar: +++ X-Spam-Level: *** Authentication-Results: coreboot.org; auth=pass smtp.auth=mailman@coreboot.org smtp.mailfrom=seabios-bounces@seabios.org From: Matt DeVillier Date: Fri, 14 Dec 2018 01:20:31 -0600 This helps card detection on some Chromebooks. Signed-off-by: Matt DeVillier Signed-off-by: Paul Menzel --- Upstream from https://github.com/MrChromebox/SeaBIOS/ Matt, it=E2=80=99d be great if you could list the affected Chromebooks you = know of. src/hw/sdcard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hw/sdcard.c b/src/hw/sdcard.c index 97517f4..2cd4e3d 100644 --- a/src/hw/sdcard.c +++ b/src/hw/sdcard.c @@ -128,7 +128,7 @@ struct sdhci_s { // SDHCI timeouts #define SDHCI_POWER_OFF_TIME 1 -#define SDHCI_POWER_ON_TIME 5 +#define SDHCI_POWER_ON_TIME 25 #define SDHCI_CLOCK_ON_TIME 1 // 74 clock cycles #define SDHCI_POWERUP_TIMEOUT 1000 #define SDHCI_PIO_TIMEOUT 1000 // XXX - this is just made up --=20 2.25.1 _______________________________________________ SeaBIOS mailing list -- seabios@seabios.org To unsubscribe send an email to seabios-leave@seabios.org