Re: [PATCH 3/3] mtd: brcmnand: respect ECC algorithm set by NAND subsystem

From: RafaÅ MiÅecki
Date: Tue Apr 26 2016 - 14:38:15 EST


On 26 April 2016 at 07:53, Brian Norris <computersforpeace@xxxxxxxxx> wrote:
> From: Brian Norris <computersforpeace@xxxxxxxxx>
> Date: Mon, 25 Apr 2016 20:48:02 -0700
> Subject: [PATCH] mtd: brcmnand: respect ECC algorithm set by the NAND
> subsystem
>
> This is more obvious than guessing based on ECC strength. It allows
> using NAND on devices with BCH-1 (e.g. D-Link DIR-885L).
>
> This maintains DT backward compatibility by defaulting to Hamming if a
> 1-bit ECC algorithm is specified without a corresponding algorithm
> selection. i.e., to use BCH-1, you must specify:
>
> nand-ecc-strength = <1>;
> nand-ecc-step-size = <512>;
> nand-ecc-algo = "bch";
>
> Also adds a check to ensure we haven't allowed someone to get by with SW
> ECC. If we want to support SW ECC, we need to refactor some other pieces
> of this driver.
>
> Signed-off-by: Brian Norris <computersforpeace@xxxxxxxxx>

Tested-by: RafaÅ MiÅecki <zajec5@xxxxxxxxx>

I just needed to apply following patch first:
[PATCH] mtd: nand: fix NULL pointer dereference in of_get_nand_ecc_algo