From patchwork Sun Apr 19 05:37:46 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Marek_Beh=C3=BAn?= X-Patchwork-Id: 11497089 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 2038113B2 for ; Sun, 19 Apr 2020 05:37:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CCE1220753 for ; Sun, 19 Apr 2020 05:37:53 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=nic.cz header.i=@nic.cz header.b="DuPNGhMo" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725939AbgDSFhx (ORCPT ); Sun, 19 Apr 2020 01:37:53 -0400 Received: from lists.nic.cz ([217.31.204.67]:37384 "EHLO mail.nic.cz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725446AbgDSFhx (ORCPT ); Sun, 19 Apr 2020 01:37:53 -0400 Received: from dellmb.labs.office.nic.cz (unknown [IPv6:2001:1488:fffe:6:cac7:3539:7f1f:463]) by mail.nic.cz (Postfix) with ESMTP id 44575140079; Sun, 19 Apr 2020 07:37:51 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=nic.cz; s=default; t=1587274671; bh=zdZ5E6lSFk+r6arWOcn3KBR83L7Rdjb3OX60Z+CwHIU=; h=From:To:Date; b=DuPNGhMotHvxqZUGK2wDpRAJ3dLI4821ExzOHNC8PK6vm1PeYj2kjWm76NqlLT2xV +psPBQjlDUMB8wqTwFuPVJmbLs48jDtF4oO0GkV/mIsYtS1SDPn+Yhn0wJK4UI9DC2 VRpRVYayWhaXJSYV8N+pQSd1hcO4HR5uFgB94cO4= From: =?utf-8?q?Marek_Beh=C3=BAn?= To: linux-mmc@vger.kernel.org Cc: =?utf-8?q?Marek_Beh=C3=BAn?= , Zhoujie Wu , Ulf Hansson , Gregory CLEMENT , Vladimir Oltean Subject: [PATCH] mmc: sdhci-xenon: fix annoying 1.8V regulator warning Date: Sun, 19 Apr 2020 07:37:46 +0200 Message-Id: <20200419053746.22443-1-marek.behun@nic.cz> X-Mailer: git-send-email 2.24.1 MIME-Version: 1.0 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mail.nic.cz X-Spam-Status: No, score=0.00 X-Spamd-Bar: / X-Virus-Scanned: clamav-milter 0.101.4 at mail X-Virus-Status: Clean Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org For some reason the Host Control2 register of the Xenon SDHCI controller sometimes reports the bit representing 1.8V signaling as 0 when read after it was written as 1. Subsequent read reports 1. This causes the sdhci_start_signal_voltage_switch function to report 1.8V regulator output did not become stable When CONFIG_PM is enabled, the host is suspended and resumend many times, and in each resume the switch to 1.8V is called, and so the kernel log reports this message annoyingly often. Do an empty read of the Host Control2 register in Xenon's .voltage_switch method to circumvent this. Signed-off-by: Marek BehĂșn Cc: Zhoujie Wu Cc: Ulf Hansson Cc: Gregory CLEMENT Cc: Vladimir Oltean --- drivers/mmc/host/sdhci-xenon.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/drivers/mmc/host/sdhci-xenon.c b/drivers/mmc/host/sdhci-xenon.c index 1dea1ba66f7b..126ae723f8ab 100644 --- a/drivers/mmc/host/sdhci-xenon.c +++ b/drivers/mmc/host/sdhci-xenon.c @@ -235,6 +235,25 @@ static void xenon_voltage_switch(struct sdhci_host *host) { /* Wait for 5ms after set 1.8V signal enable bit */ usleep_range(5000, 5500); + + /* + * For some reason the controller's Host Control2 register reports + * the bit representing 1.8V signaling as 0 when read after it was + * written as 1. Subsequent read reports 1. + * + * This causes the sdhci_start_signal_voltage_switch function to + * report + * "1.8V regulator output did not become stable" + * in kernel log. + * + * When CONFIG_PM is enabled, the host is suspended and resumend many + * times, and in each resume the switch to 1.8V is called, and so the + * kernel log reports this message annoyingly often. + * + * Do an empty read of the Host Control2 register here to circumvent + * this. + */ + sdhci_readw(host, SDHCI_HOST_CONTROL2); } static const struct sdhci_ops sdhci_xenon_ops = {