From patchwork Wed Sep 18 21:42:25 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Brian Norris X-Patchwork-Id: 275823 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from casper.infradead.org (unknown [IPv6:2001:770:15f::2]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 4A7C92C00EB for ; Thu, 19 Sep 2013 07:43:26 +1000 (EST) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1VMPWX-0002VN-D3; Wed, 18 Sep 2013 21:43:01 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1VMPWV-0007vS-P4; Wed, 18 Sep 2013 21:42:59 +0000 Received: from mail-vb0-f45.google.com ([209.85.212.45]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1VMPWS-0007un-BA; Wed, 18 Sep 2013 21:42:57 +0000 Received: by mail-vb0-f45.google.com with SMTP id e15so5886625vbg.32 for ; Wed, 18 Sep 2013 14:42:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=HLnXRC0/nbEXVF0wGdzxPzAgE0hq1gcVmMHFSE4xmp8=; b=sdbivJbLLmMot+t+mblZr5L+vKGH+83h7wuTDc51iaWjZd0x7NKiLCJBF3Sntsy4gT FJoolOcAAajtbzsXS/mgvFn1nfEjhaDahYsV6iuEJPFzZOulNuqI6ECIVnvPNilR0nN9 Ik4dvrLpSizRqcl0gN0Lvw9m4B9YCeEgQc7u5zmZFHs9laP7nAsI/FSeFRScqiCD+Sy/ B+5RAoKrO1Pca45m4lL+LiwXz+z/CADOYFqXxRxHY90XXwKyEkS/VnR4ppGI0nbwrLRn hkrM9BQJFiy5eV5c0WzUB1wPBoRUEYA+ADLBgKA1EdoGoNGhcvd7lIAiVKn0QF1jwKlL S2tg== X-Received: by 10.220.237.208 with SMTP id kp16mr39489162vcb.4.1379540549843; Wed, 18 Sep 2013 14:42:29 -0700 (PDT) Received: from ld-irv-0074.broadcom.com (5520-maca-inet1-outside.broadcom.com. [216.31.211.11]) by mx.google.com with ESMTPSA id ww6sm3821163vec.5.1969.12.31.16.00.00 (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 18 Sep 2013 14:42:29 -0700 (PDT) Date: Wed, 18 Sep 2013 14:42:25 -0700 From: Brian Norris To: Josh Wu Subject: Re: [PATCH v3] mtd: atmel_nand: use minimum ecc requirements of nand: ecc_{strength,step}_ds Message-ID: <20130918214225.GP4550@ld-irv-0074.broadcom.com> References: <1379483928-18253-1-git-send-email-josh.wu@atmel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1379483928-18253-1-git-send-email-josh.wu@atmel.com> User-Agent: Mutt/1.5.20 (2009-06-14) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130918_174256_532161_CB218247 X-CRM114-Status: GOOD ( 26.24 ) X-Spam-Score: -2.7 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.7 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (computersforpeace[at]gmail.com) -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.212.45 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: nicolas.ferre@atmel.com, plagnioj@jcrosoft.com, linux-mtd@lists.infradead.org, linux-arm-kernel@lists.infradead.org, dedekind1@gmail.com X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-mtd" Errors-To: linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org On Wed, Sep 18, 2013 at 01:58:48PM +0800, Josh Wu wrote: > Since ecc_{strength,step}_ds is introduced in nand_chip structure for > minimum ecc requirements. So we can use them directly and remove our > own get_onfi_ecc_param function. > > Signed-off-by: Josh Wu > --- > v2 --> v3: > 1. since ecc_{strength,step}_ds is non ONFI specific remove the check code: > 'if (host->nand_chip.onfi_version)' > use 'if (host->nand_chip.ecc_strength_ds)' instead. > 2. refined the commit message and change the comment since now we are not > ONFI specific. > > v1 --> v2: > 1. updated the refered commit id as it is changed when merged in mainline. > 2. refined the commit message > > drivers/mtd/nand/atmel_nand.c | 46 ++++++++--------------------------------- > 1 file changed, 9 insertions(+), 37 deletions(-) > > diff --git a/drivers/mtd/nand/atmel_nand.c b/drivers/mtd/nand/atmel_nand.c > index 5a5d457..46e8794 100644 > --- a/drivers/mtd/nand/atmel_nand.c > +++ b/drivers/mtd/nand/atmel_nand.c > @@ -1062,56 +1062,28 @@ static void atmel_pmecc_core_init(struct mtd_info *mtd) > } > > /* > - * Get ECC requirement in ONFI parameters, returns -1 if ONFI > - * parameters is not supported. > - * return 0 if success to get the ECC requirement. > - */ > -static int get_onfi_ecc_param(struct nand_chip *chip, > - int *ecc_bits, int *sector_size) > -{ > - *ecc_bits = *sector_size = 0; > - > - if (chip->onfi_params.ecc_bits == 0xff) > - /* TODO: the sector_size and ecc_bits need to be find in > - * extended ecc parameter, currently we don't support it. > - */ > - return -1; > - > - *ecc_bits = chip->onfi_params.ecc_bits; > - > - /* The default sector size (ecc codeword size) is 512 */ > - *sector_size = 512; > - > - return 0; > -} > - > -/* > - * Get ecc requirement from ONFI parameters ecc requirement. > + * Get minimum ecc requirements from NAND. > * If pmecc-cap, pmecc-sector-size in DTS are not specified, this function > - * will set them according to ONFI ecc requirement. Otherwise, use the > + * will set them according to minimum ecc requirement. Otherwise, use the > * value in DTS file. > * return 0 if success. otherwise return error code. > */ > static int pmecc_choose_ecc(struct atmel_nand_host *host, > int *cap, int *sector_size) > { > - /* Get ECC requirement from ONFI parameters */ > - *cap = *sector_size = 0; > - if (host->nand_chip.onfi_version) { > - if (!get_onfi_ecc_param(&host->nand_chip, cap, sector_size)) > - dev_info(host->dev, "ONFI params, minimum required ECC: %d bits in %d bytes\n", > + /* Get minimum ECC requirements */ > + if (host->nand_chip.ecc_strength_ds) { > + *cap = host->nand_chip.ecc_strength_ds; > + *sector_size = host->nand_chip.ecc_step_ds; > + dev_info(host->dev, "minimum ECC requirements: %d bits in %d bytes\n", > *cap, *sector_size); > - else > - dev_info(host->dev, "NAND chip ECC reqirement is in Extended ONFI parameter, we don't support yet.\n"); > } else { > - dev_info(host->dev, "NAND chip is not ONFI compliant, assume ecc_bits is 2 in 512 bytes"); > - } > - if (*cap == 0 && *sector_size == 0) { > *cap = 2; > *sector_size = 512; > + dev_info(host->dev, "cannot detect minimum ECC requirements, assume 2-bit correction per 512 bytes"); Missing '\n' at the end of the string. > } > > - /* If dts file doesn't specify then use the one in ONFI parameters */ > + /* If dts file doesn't specify then use the NAND's minimum ecc parameters */ This code is not interested in a "dts file", it is interested in the device tree. > if (host->pmecc_corr_cap == 0) { > /* use the most fitable ecc bits (the near bigger one ) */ > if (*cap <= 2) I'll just apply the appended diff, to address these small comments and to shorten the messages a little (they are a bit verbose and are over 80 characters). It's still not under 80, but it's more reasonable. Let me know if you have any objections, or else I'll push this to l2-mtd.git. Thanks, Brian diff --git a/drivers/mtd/nand/atmel_nand.c b/drivers/mtd/nand/atmel_nand.c index 46e8794..ef9c9f5 100644 --- a/drivers/mtd/nand/atmel_nand.c +++ b/drivers/mtd/nand/atmel_nand.c @@ -1075,15 +1075,15 @@ static int pmecc_choose_ecc(struct atmel_nand_host *host, if (host->nand_chip.ecc_strength_ds) { *cap = host->nand_chip.ecc_strength_ds; *sector_size = host->nand_chip.ecc_step_ds; - dev_info(host->dev, "minimum ECC requirements: %d bits in %d bytes\n", + dev_info(host->dev, "minimum ECC: %d bits in %d bytes\n", *cap, *sector_size); } else { *cap = 2; *sector_size = 512; - dev_info(host->dev, "cannot detect minimum ECC requirements, assume 2-bit correction per 512 bytes"); + dev_info(host->dev, "can't detect min. ECC, assume 2 bits in 512 bytes\n"); } - /* If dts file doesn't specify then use the NAND's minimum ecc parameters */ + /* If device tree doesn't specify, use NAND's minimum ECC parameters */ if (host->pmecc_corr_cap == 0) { /* use the most fitable ecc bits (the near bigger one ) */ if (*cap <= 2)