[PATCH v2 08/10] mtd: nand: raw: rockchip_nfc: add layout structure
Michael Nazzareno Trimarchi
michael at amarulasolutions.com
Thu Feb 16 08:26:52 CET 2023
Hi
On Tue, Feb 7, 2023 at 3:55 PM Johan Jonker <jbx6244 at gmail.com> wrote:
>
> The MTD framework in U-boot is not identical for drivers ported
> from Linux. The rockchip_nfc driver was ported with OOB ops functions
> while the framework expects a layout structure per chip.
> Fix by adding a structure with OOB data and remove unused functions.
>
> Signed-off-by: Johan Jonker <jbx6244 at gmail.com>
> ---
> drivers/mtd/nand/raw/rockchip_nfc.c | 61 ++++++++++-------------------
> 1 file changed, 20 insertions(+), 41 deletions(-)
>
> diff --git a/drivers/mtd/nand/raw/rockchip_nfc.c b/drivers/mtd/nand/raw/rockchip_nfc.c
> index 3809702e..5e2b8346 100644
> --- a/drivers/mtd/nand/raw/rockchip_nfc.c
> +++ b/drivers/mtd/nand/raw/rockchip_nfc.c
> @@ -814,47 +814,9 @@ static void rk_nfc_disable_clks(struct rk_nfc *nfc)
> clk_disable_unprepare(nfc->ahb_clk);
> }
>
> -static int rk_nfc_ooblayout_free(struct mtd_info *mtd, int section,
> - struct mtd_oob_region *oob_region)
> -{
> - struct nand_chip *chip = mtd_to_nand(mtd);
> - struct rk_nfc_nand_chip *rknand = rk_nfc_to_rknand(chip);
> -
> - if (section)
> - return -ERANGE;
> -
> - /*
> - * The beginning of the OOB area stores the reserved data for the NFC,
> - * the size of the reserved data is NFC_SYS_DATA_SIZE bytes.
> - */
> - oob_region->length = rknand->metadata_size - NFC_SYS_DATA_SIZE - 2;
> - oob_region->offset = NFC_SYS_DATA_SIZE + 2;
> -
> - return 0;
> -}
> -
> -static int rk_nfc_ooblayout_ecc(struct mtd_info *mtd, int section,
> - struct mtd_oob_region *oob_region)
> -{
> - struct nand_chip *chip = mtd_to_nand(mtd);
> - struct rk_nfc_nand_chip *rknand = rk_nfc_to_rknand(chip);
> -
> - if (section)
> - return -ERANGE;
> -
> - oob_region->length = mtd->oobsize - rknand->metadata_size;
> - oob_region->offset = rknand->metadata_size;
> -
> - return 0;
> -}
> -
> -static const struct mtd_ooblayout_ops rk_nfc_ooblayout_ops = {
> - .rfree = rk_nfc_ooblayout_free,
> - .ecc = rk_nfc_ooblayout_ecc,
> -};
> -
> static int rk_nfc_ecc_init(struct rk_nfc *nfc, struct nand_chip *chip)
> {
> + struct rk_nfc_nand_chip *rknand = rk_nfc_to_rknand(chip);
> const u8 *strengths = nfc->cfg->ecc_strengths;
> struct mtd_info *mtd = nand_to_mtd(chip);
> struct nand_ecc_ctrl *ecc = &chip->ecc;
> @@ -892,6 +854,21 @@ static int rk_nfc_ecc_init(struct rk_nfc *nfc, struct nand_chip *chip)
> ecc->steps = mtd->writesize / ecc->size;
> ecc->bytes = DIV_ROUND_UP(ecc->strength * fls(8 * chip->ecc.size), 8);
>
> + if (ecc->bytes * ecc->steps > mtd->oobsize - rknand->metadata_size)
> + return -EINVAL;
> +
> + ecc->layout = kzalloc(sizeof(*ecc->layout), GFP_KERNEL);
> + if (!ecc->layout)
> + return -ENOMEM;
> +
> + ecc->layout->eccbytes = ecc->bytes * ecc->steps;
> +
> + for (i = 0; i < ecc->layout->eccbytes; i++)
> + ecc->layout->eccpos[i] = rknand->metadata_size + i;
> +
> + ecc->layout->oobfree[0].length = rknand->metadata_size - NFC_SYS_DATA_SIZE - 2;
> + ecc->layout->oobfree[0].offset = NFC_SYS_DATA_SIZE + 2;
> +
> return 0;
> }
>
> @@ -969,7 +946,6 @@ static int rk_nfc_nand_chip_init(ofnode node, struct rk_nfc *nfc, int devnum)
> chip->bbt_options = NAND_BBT_USE_FLASH | NAND_BBT_NO_OOB;
> chip->options |= NAND_NO_SUBPAGE_WRITE | NAND_USE_BOUNCE_BUFFER;
>
> - mtd_set_ooblayout(mtd, &rk_nfc_ooblayout_ops);
> rk_nfc_hw_init(nfc);
> ret = nand_scan_ident(mtd, nsels, NULL);
> if (ret)
> @@ -998,13 +974,16 @@ static int rk_nfc_nand_chip_init(ofnode node, struct rk_nfc *nfc, int devnum)
>
> if (!nfc->page_buf) {
> nfc->page_buf = kzalloc(NFC_MAX_PAGE_SIZE, GFP_KERNEL);
> - if (!nfc->page_buf)
> + if (!nfc->page_buf) {
> + kfree(ecc->layout);
> return -ENOMEM;
> + }
> }
>
> if (!nfc->oob_buf) {
> nfc->oob_buf = kzalloc(NFC_MAX_OOB_SIZE, GFP_KERNEL);
> if (!nfc->oob_buf) {
> + kfree(ecc->layout);
> kfree(nfc->page_buf);
> nfc->page_buf = NULL;
> return -ENOMEM;
> --
> 2.20.1
>
Reviewed-by: Michael Trimarchi <michael at amarulasolutions.com>
--
Michael Nazzareno Trimarchi
Co-Founder & Chief Executive Officer
M. +39 347 913 2170
michael at amarulasolutions.com
__________________________________
Amarula Solutions BV
Joop Geesinkweg 125, 1114 AB, Amsterdam, NL
T. +31 (0)85 111 9172
info at amarulasolutions.com
www.amarulasolutions.com
More information about the U-Boot
mailing list