From patchwork Thu Jun 6 13:12:22 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Kucera X-Patchwork-Id: 802206 Received: from speedy.danman.eu (speedy.danman.eu [46.227.180.235]) (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 79314196450 for ; Thu, 6 Jun 2024 13:12:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=46.227.180.235 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717679563; cv=none; b=U3IzyuzzH2Nn6TDAFRjMCFpklfwa5R2RZ45gBwLsPt4TdlTH2ViSkaE0mxLtpyRTJFR88T6wwVc0c9jIbhvuvz3PyNS1AG9cgdW+wh32u9TeLwFglnlfdMcKeqN8emVaKFbo4zw9XyS85rGyjJJ3q5nn1iNOQj4Nxb5BqIQfbdY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717679563; c=relaxed/simple; bh=hT0xMpxC2PVOcLLVwSyI7l0MGKFndldpqMUWi6oMMqU=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=u3H+pVepzXnSTtVJUBYXSpK4pYsKdQ1rTIsh15f/HehrKH21F4PzxEeysek4Cob0xhiBseU++rPxMszInGsDLIrLDdPHV5EqKtoDRoCfQzEMYLXPHwy8xyTSobClKOvBymuWRIguYSoiWcuUf3w9crDbMuyHozcPC8L4imUuGWc= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=danman.eu; spf=pass smtp.mailfrom=danman.eu; arc=none smtp.client-ip=46.227.180.235 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=danman.eu Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=danman.eu Received: from silverhorse.byt.danman.eu (unknown [62.197.239.54]) by speedy.danman.eu (Postfix) with ESMTPSA id 1D82B24018B; Thu, 6 Jun 2024 15:12:37 +0200 (CEST) From: linux-mmc@danman.eu To: linux-mmc@vger.kernel.org, ulf.hansson@linaro.org Cc: Daniel Kucera Subject: [PATCH v4] mmc: core: allow detection of locked cards Date: Thu, 6 Jun 2024 15:12:22 +0200 Message-Id: <20240606131222.1131880-1-linux-mmc@danman.eu> X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-mmc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Daniel Kucera Locked SD card will not reply to SEND_SCR or SD_STATUS commands so it was failing to initialize previously. When skipped, the card will get initialized and CMD42 can be sent using ioctl to unlock the card or remove password protection. For eMMC, this is not necessary because all initialization commands are allowed in locked state. Until unlocked, all read/write calls will timeout. Signed-off-by: Daniel Kucera --- drivers/mmc/core/sd.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c index 1c8148cdd..ae821df7d 100644 --- a/drivers/mmc/core/sd.c +++ b/drivers/mmc/core/sd.c @@ -928,8 +928,19 @@ int mmc_sd_setup_card(struct mmc_host *host, struct mmc_card *card, bool reinit) { int err; + u32 card_status; - if (!reinit) { + err = mmc_send_status(card, &card_status); + if (err){ + pr_err("%s: unable to get card status\n", mmc_hostname(host)); + return err; + } + + if (card_status & R1_CARD_IS_LOCKED){ + pr_warn("%s: card is locked\n", mmc_hostname(host)); + } + + if (!reinit && !(card_status & R1_CARD_IS_LOCKED)) { /* * Fetch SCR from card. */