Skip to content

Commit bf3e762

Browse files
committed
Merge branch 'mtd/fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux
Pull mtd fixes from Miquel Raynal. * 'mtd/fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux: mtd: rawnand: stm32_fmc2: fix broken ECC mtd: spi-nor: Fix address width on flash chips > 16MB mtd: spi-nor: Don't copy self-pointing struct around mtd: rawnand: ifc: Move the ECC engine initialization to the right place mtd: rawnand: mxc: Move the ECC engine initialization to the right place
2 parents 44d8062 + 9efac6c commit bf3e762

File tree

4 files changed

+44
-44
lines changed

4 files changed

+44
-44
lines changed

drivers/mtd/nand/raw/fsl_ifc_nand.c

Lines changed: 24 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -707,6 +707,30 @@ static int fsl_ifc_attach_chip(struct nand_chip *chip)
707707
{
708708
struct mtd_info *mtd = nand_to_mtd(chip);
709709
struct fsl_ifc_mtd *priv = nand_get_controller_data(chip);
710+
struct fsl_ifc_ctrl *ctrl = priv->ctrl;
711+
struct fsl_ifc_global __iomem *ifc_global = ctrl->gregs;
712+
u32 csor;
713+
714+
csor = ifc_in32(&ifc_global->csor_cs[priv->bank].csor);
715+
716+
/* Must also set CSOR_NAND_ECC_ENC_EN if DEC_EN set */
717+
if (csor & CSOR_NAND_ECC_DEC_EN) {
718+
chip->ecc.engine_type = NAND_ECC_ENGINE_TYPE_ON_HOST;
719+
mtd_set_ooblayout(mtd, &fsl_ifc_ooblayout_ops);
720+
721+
/* Hardware generates ECC per 512 Bytes */
722+
chip->ecc.size = 512;
723+
if ((csor & CSOR_NAND_ECC_MODE_MASK) == CSOR_NAND_ECC_MODE_4) {
724+
chip->ecc.bytes = 8;
725+
chip->ecc.strength = 4;
726+
} else {
727+
chip->ecc.bytes = 16;
728+
chip->ecc.strength = 8;
729+
}
730+
} else {
731+
chip->ecc.engine_type = NAND_ECC_ENGINE_TYPE_SOFT;
732+
chip->ecc.algo = NAND_ECC_ALGO_HAMMING;
733+
}
710734

711735
dev_dbg(priv->dev, "%s: nand->numchips = %d\n", __func__,
712736
nanddev_ntargets(&chip->base));
@@ -910,25 +934,6 @@ static int fsl_ifc_chip_init(struct fsl_ifc_mtd *priv)
910934
return -ENODEV;
911935
}
912936

913-
/* Must also set CSOR_NAND_ECC_ENC_EN if DEC_EN set */
914-
if (csor & CSOR_NAND_ECC_DEC_EN) {
915-
chip->ecc.engine_type = NAND_ECC_ENGINE_TYPE_ON_HOST;
916-
mtd_set_ooblayout(mtd, &fsl_ifc_ooblayout_ops);
917-
918-
/* Hardware generates ECC per 512 Bytes */
919-
chip->ecc.size = 512;
920-
if ((csor & CSOR_NAND_ECC_MODE_MASK) == CSOR_NAND_ECC_MODE_4) {
921-
chip->ecc.bytes = 8;
922-
chip->ecc.strength = 4;
923-
} else {
924-
chip->ecc.bytes = 16;
925-
chip->ecc.strength = 8;
926-
}
927-
} else {
928-
chip->ecc.engine_type = NAND_ECC_ENGINE_TYPE_SOFT;
929-
chip->ecc.algo = NAND_ECC_ALGO_HAMMING;
930-
}
931-
932937
ret = fsl_ifc_sram_init(priv);
933938
if (ret)
934939
return ret;

drivers/mtd/nand/raw/mxc_nand.c

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1681,6 +1681,11 @@ static int mxcnd_attach_chip(struct nand_chip *chip)
16811681
struct mxc_nand_host *host = nand_get_controller_data(chip);
16821682
struct device *dev = mtd->dev.parent;
16831683

1684+
chip->ecc.bytes = host->devtype_data->eccbytes;
1685+
host->eccsize = host->devtype_data->eccsize;
1686+
chip->ecc.size = 512;
1687+
mtd_set_ooblayout(mtd, host->devtype_data->ooblayout);
1688+
16841689
switch (chip->ecc.engine_type) {
16851690
case NAND_ECC_ENGINE_TYPE_ON_HOST:
16861691
chip->ecc.read_page = mxc_nand_read_page;
@@ -1836,19 +1841,7 @@ static int mxcnd_probe(struct platform_device *pdev)
18361841
if (host->devtype_data->axi_offset)
18371842
host->regs_axi = host->base + host->devtype_data->axi_offset;
18381843

1839-
this->ecc.bytes = host->devtype_data->eccbytes;
1840-
host->eccsize = host->devtype_data->eccsize;
1841-
18421844
this->legacy.select_chip = host->devtype_data->select_chip;
1843-
this->ecc.size = 512;
1844-
mtd_set_ooblayout(mtd, host->devtype_data->ooblayout);
1845-
1846-
if (host->pdata.hw_ecc) {
1847-
this->ecc.engine_type = NAND_ECC_ENGINE_TYPE_ON_HOST;
1848-
} else {
1849-
this->ecc.engine_type = NAND_ECC_ENGINE_TYPE_SOFT;
1850-
this->ecc.algo = NAND_ECC_ALGO_HAMMING;
1851-
}
18521845

18531846
/* NAND bus width determines access functions used by upper layer */
18541847
if (host->pdata.width == 2)

drivers/mtd/nand/raw/stm32_fmc2_nand.c

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1708,6 +1708,13 @@ static int stm32_fmc2_nfc_attach_chip(struct nand_chip *chip)
17081708
return -EINVAL;
17091709
}
17101710

1711+
/* Default ECC settings in case they are not set in the device tree */
1712+
if (!chip->ecc.size)
1713+
chip->ecc.size = FMC2_ECC_STEP_SIZE;
1714+
1715+
if (!chip->ecc.strength)
1716+
chip->ecc.strength = FMC2_ECC_BCH8;
1717+
17111718
ret = nand_ecc_choose_conf(chip, &stm32_fmc2_nfc_ecc_caps,
17121719
mtd->oobsize - FMC2_BBM_LEN);
17131720
if (ret) {
@@ -1727,8 +1734,7 @@ static int stm32_fmc2_nfc_attach_chip(struct nand_chip *chip)
17271734

17281735
mtd_set_ooblayout(mtd, &stm32_fmc2_nfc_ooblayout_ops);
17291736

1730-
if (chip->options & NAND_BUSWIDTH_16)
1731-
stm32_fmc2_nfc_set_buswidth_16(nfc, true);
1737+
stm32_fmc2_nfc_setup(chip);
17321738

17331739
return 0;
17341740
}
@@ -1952,11 +1958,6 @@ static int stm32_fmc2_nfc_probe(struct platform_device *pdev)
19521958
chip->options |= NAND_BUSWIDTH_AUTO | NAND_NO_SUBPAGE_WRITE |
19531959
NAND_USES_DMA;
19541960

1955-
/* Default ECC settings */
1956-
chip->ecc.engine_type = NAND_ECC_ENGINE_TYPE_ON_HOST;
1957-
chip->ecc.size = FMC2_ECC_STEP_SIZE;
1958-
chip->ecc.strength = FMC2_ECC_BCH8;
1959-
19601961
/* Scan to find existence of the device */
19611962
ret = nand_scan(chip, nand->ncs);
19621963
if (ret)

drivers/mtd/spi-nor/core.c

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2701,11 +2701,10 @@ static void spi_nor_sfdp_init_params(struct spi_nor *nor)
27012701

27022702
memcpy(&sfdp_params, nor->params, sizeof(sfdp_params));
27032703

2704-
if (spi_nor_parse_sfdp(nor, &sfdp_params)) {
2704+
if (spi_nor_parse_sfdp(nor, nor->params)) {
2705+
memcpy(nor->params, &sfdp_params, sizeof(*nor->params));
27052706
nor->addr_width = 0;
27062707
nor->flags &= ~SNOR_F_4B_OPCODES;
2707-
} else {
2708-
memcpy(nor->params, &sfdp_params, sizeof(*nor->params));
27092708
}
27102709
}
27112710

@@ -3009,13 +3008,15 @@ static int spi_nor_set_addr_width(struct spi_nor *nor)
30093008
/* already configured from SFDP */
30103009
} else if (nor->info->addr_width) {
30113010
nor->addr_width = nor->info->addr_width;
3012-
} else if (nor->mtd.size > 0x1000000) {
3013-
/* enable 4-byte addressing if the device exceeds 16MiB */
3014-
nor->addr_width = 4;
30153011
} else {
30163012
nor->addr_width = 3;
30173013
}
30183014

3015+
if (nor->addr_width == 3 && nor->mtd.size > 0x1000000) {
3016+
/* enable 4-byte addressing if the device exceeds 16MiB */
3017+
nor->addr_width = 4;
3018+
}
3019+
30193020
if (nor->addr_width > SPI_NOR_MAX_ADDR_WIDTH) {
30203021
dev_dbg(nor->dev, "address width is too large: %u\n",
30213022
nor->addr_width);

0 commit comments

Comments
 (0)