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 89D03C761A6 for ; Mon, 20 Mar 2023 11:01:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229838AbjCTLBM (ORCPT ); Mon, 20 Mar 2023 07:01:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41516 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229715AbjCTLAr (ORCPT ); Mon, 20 Mar 2023 07:00:47 -0400 Received: from relay11.mail.gandi.net (relay11.mail.gandi.net [217.70.178.231]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0F954D32A for ; Mon, 20 Mar 2023 03:56:28 -0700 (PDT) Received: (Authenticated sender: miquel.raynal@bootlin.com) by mail.gandi.net (Postfix) with ESMTPSA id F32F2100005; Mon, 20 Mar 2023 10:55:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1679309768; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=AQZBTxR72v88DWqOkd9Sluoui0Bao8eYZDsZXQxqA28=; b=VxYTLGInkJvfjeaj7Neytsu8uNvRUIiE49gqXD4G7IYzp69lGacCJleDaRjf7cGURQHX63 8Un188hKrfxfLJ2cZZszeDSGpLeKBECGJu+riu1j7buowBSSeXyA+EJfkN6ANpbm55ePU1 e3ToqRPBbQIs8aGm0fLNtTclxaCP0sP/oQsas0NeZfDCZ4k/jmRotlcohNosd7/JvNlUEf 6UAKzSwKyUR0N+kFIwWlmuhIWc8/K7QWlHqNOaoAUwTeaR+94HTFa//gcNGWIb8JUq3/ld 0wxRt52adHTkvCq/NJClDHVTXDtXM/9Ko1MeNt19jwh+U5GVlDZezCBfv5sPfw== Date: Mon, 20 Mar 2023 11:55:58 +0100 From: Miquel Raynal To: Dmitry Rokosov Cc: Neil Armstrong , Arseniy Krasnov , Liang Yang , Richard Weinberger , Vignesh Raghavendra , Kevin Hilman , Jerome Brunet , Martin Blumenstingl , Jianxin Pan , , , , , , Subject: Re: [RFC PATCH v1] mtd: rawnand: meson: invalidate cache on polling ECC bit Message-ID: <20230320115558.49c5a062@xps-13> In-Reply-To: <20230320104314.i2stk665xbrleb53@CAB-WSD-L081021> References: <20f7f1f8-e8f8-b3e1-251e-27db71ab6840@sberdevices.ru> <20230313121808.27170d1b@xps-13> <20230320104314.i2stk665xbrleb53@CAB-WSD-L081021> Organization: Bootlin X-Mailer: Claws Mail 4.0.0 (GTK+ 3.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Dmitry, ddrokosov@sberdevices.ru wrote on Mon, 20 Mar 2023 13:43:14 +0300: > Hello guys! >=20 > Was it applied to some nand 'prepare-for-merge' release branch? Not yet, I'll apply it this week in mtd/fixes, you'll be noticed. Thanks, Miqu=C3=A8l > On Mon, Mar 13, 2023 at 12:23:12PM +0100, Neil Armstrong wrote: > > On 13/03/2023 12:18, Miquel Raynal wrote: =20 > > > Hi Arseniy, > > >=20 > > > avkrasnov@sberdevices.ru wrote on Mon, 13 Mar 2023 10:36:11 +0300: > > > =20 > > > > Hello, > > > >=20 > > > > we reproduced this problem on one of our boards. It triggers very r= are > > > > when 'usleep_range()' is present, but when sleeping is removed - it= fires > > > > always. I suppose problem is with caching, as 'info_buf' memory is = mapped by > > > > 'dma_map_single()'. =20 > > >=20 > > > The fix looks really legitimate, indeed I get that the usleep_range() > > > might make it work most of the time but not always. Having this bit in > > > a DMA buf area is a bit strange. Well, the fix LGTM anyway. =20 > >=20 > > Yep it looks legitimate! > >=20 > > LGTM > >=20 > >=20 > > Reviewed-by: Neil Armstrong > > =20 > > > =20 > > > >=20 > > > > Thanks, Arseniy > > > >=20 > > > > On 13.03.2023 10:32, Arseniy Krasnov wrote: =20 > > > > > 'info_buf' memory is cached and driver polls ECC bit in it. This = bit > > > > > is set by the NAND controller. If 'usleep_range()' returns before= device > > > > > sets this bit, 'info_buf' will be cached and driver won't see upd= ate of > > > > > this bit and will loop forever. > > > > >=20 > > > > > Fixes: 8fae856c5350 ("mtd: rawnand: meson: add support for Amlogi= c NAND flash controller") > > > > > Signed-off-by: Arseniy Krasnov > > > > > --- > > > > > drivers/mtd/nand/raw/meson_nand.c | 8 +++++++- > > > > > 1 file changed, 7 insertions(+), 1 deletion(-) > > > > >=20 > > > > > diff --git a/drivers/mtd/nand/raw/meson_nand.c b/drivers/mtd/nand= /raw/meson_nand.c > > > > > index 5ee01231ac4c..2c05c08a0eaf 100644 > > > > > --- a/drivers/mtd/nand/raw/meson_nand.c > > > > > +++ b/drivers/mtd/nand/raw/meson_nand.c > > > > > @@ -176,6 +176,7 @@ struct meson_nfc { > > > > > dma_addr_t daddr; > > > > > dma_addr_t iaddr; > > > > > + u32 info_bytes; > > > > > unsigned long assigned_cs; > > > > > }; > > > > > @@ -503,6 +504,7 @@ static int meson_nfc_dma_buffer_setup(struct = nand_chip *nand, void *databuf, > > > > > nfc->daddr, datalen, dir); > > > > > return ret; > > > > > } > > > > > + nfc->info_bytes =3D infolen; > > > > > cmd =3D GENCMDIADDRL(NFC_CMD_AIL, nfc->iaddr); > > > > > writel(cmd, nfc->reg_base + NFC_REG_CMD); > > > > > @@ -520,8 +522,10 @@ static void meson_nfc_dma_buffer_release(str= uct nand_chip *nand, > > > > > struct meson_nfc *nfc =3D nand_get_controller_data(nand); > > > > > dma_unmap_single(nfc->dev, nfc->daddr, datalen, dir); > > > > > - if (infolen) > > > > > + if (infolen) { > > > > > dma_unmap_single(nfc->dev, nfc->iaddr, infolen, dir); > > > > > + nfc->info_bytes =3D 0; > > > > > + } > > > > > } > > > > > static int meson_nfc_read_buf(struct nand_chip *nand, u8 *buf, = int len) > > > > > @@ -710,6 +714,8 @@ static void meson_nfc_check_ecc_pages_valid(s= truct meson_nfc *nfc, > > > > > usleep_range(10, 15); > > > > > /* info is updated by nfc dma engine*/ > > > > > smp_rmb(); > > > > > + dma_sync_single_for_cpu(nfc->dev, nfc->iaddr, nfc->info_bytes, > > > > > + DMA_FROM_DEVICE); > > > > > ret =3D *info & ECC_COMPLETE; > > > > > } while (!ret); > > > > > } =20 > > >=20 > > >=20 > > > Thanks, > > > Miqu=C3=A8l =20 > > =20 >=20