Commit 29ec235b authored by Boris BREZILLON's avatar Boris BREZILLON Committed by Kamal Mostafa

mtd: nand: sunxi: fix OOB handling in ->write_xxx() functions

commit 03a0e8a7 upstream.

The USER_DATA register cannot be accessed using byte accessors on A13
SoCs, thus triggering a bug when using memcpy_toio on this register.
Declare an helper macros to convert an OOB buffer into a suitable
USER_DATA value and vice-versa.

This patch also fixes an error in the oob_required logic (some OOB data
are not written even if the user required it) by removing the
oob_required condition, which is perfectly valid since the core already
fill ->oob_poi with FFs when oob_required is false.
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@free-electrons.com>
Fixes: 1fef62c1 ("mtd: nand: add sunxi NAND flash controller support")
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
Signed-off-by: default avatarKamal Mostafa <kamal@canonical.com>
parent a99a400a
...@@ -138,6 +138,10 @@ ...@@ -138,6 +138,10 @@
#define NFC_ECC_MODE GENMASK(15, 12) #define NFC_ECC_MODE GENMASK(15, 12)
#define NFC_RANDOM_SEED GENMASK(30, 16) #define NFC_RANDOM_SEED GENMASK(30, 16)
/* NFC_USER_DATA helper macros */
#define NFC_BUF_TO_USER_DATA(buf) ((buf)[0] | ((buf)[1] << 8) | \
((buf)[2] << 16) | ((buf)[3] << 24))
#define NFC_DEFAULT_TIMEOUT_MS 1000 #define NFC_DEFAULT_TIMEOUT_MS 1000
#define NFC_SRAM_SIZE 1024 #define NFC_SRAM_SIZE 1024
...@@ -632,15 +636,9 @@ static int sunxi_nfc_hw_ecc_write_page(struct mtd_info *mtd, ...@@ -632,15 +636,9 @@ static int sunxi_nfc_hw_ecc_write_page(struct mtd_info *mtd,
offset = layout->eccpos[i * ecc->bytes] - 4 + mtd->writesize; offset = layout->eccpos[i * ecc->bytes] - 4 + mtd->writesize;
/* Fill OOB data in */ /* Fill OOB data in */
if (oob_required) { writel(NFC_BUF_TO_USER_DATA(chip->oob_poi +
tmp = 0xffffffff; layout->oobfree[i].offset),
memcpy_toio(nfc->regs + NFC_REG_USER_DATA_BASE, &tmp, nfc->regs + NFC_REG_USER_DATA_BASE);
4);
} else {
memcpy_toio(nfc->regs + NFC_REG_USER_DATA_BASE,
chip->oob_poi + offset - mtd->writesize,
4);
}
chip->cmdfunc(mtd, NAND_CMD_RNDIN, offset, -1); chip->cmdfunc(mtd, NAND_CMD_RNDIN, offset, -1);
...@@ -770,14 +768,8 @@ static int sunxi_nfc_hw_syndrome_ecc_write_page(struct mtd_info *mtd, ...@@ -770,14 +768,8 @@ static int sunxi_nfc_hw_syndrome_ecc_write_page(struct mtd_info *mtd,
offset += ecc->size; offset += ecc->size;
/* Fill OOB data in */ /* Fill OOB data in */
if (oob_required) { writel(NFC_BUF_TO_USER_DATA(oob),
tmp = 0xffffffff; nfc->regs + NFC_REG_USER_DATA_BASE);
memcpy_toio(nfc->regs + NFC_REG_USER_DATA_BASE, &tmp,
4);
} else {
memcpy_toio(nfc->regs + NFC_REG_USER_DATA_BASE, oob,
4);
}
tmp = NFC_DATA_TRANS | NFC_DATA_SWAP_METHOD | NFC_ACCESS_DIR | tmp = NFC_DATA_TRANS | NFC_DATA_SWAP_METHOD | NFC_ACCESS_DIR |
(1 << 30); (1 << 30);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment