Skip to content

Commit 6208274

Browse files
richard-bootlinmiquelraynal
authored andcommitted
mtd: rawnand: sunxi: introduce reg_spare_area in sunxi_nfc_caps
The H6/H616 spare area register is not at the same offset as the A10/A23 one, so move its offset into sunxi_nfc_caps. No functional change. Signed-off-by: Richard Genoud <richard.genoud@bootlin.com> Reviewed-by: Jernej Skrabec <jernej.skrabec@gmail.com> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
1 parent ee61bba commit 6208274

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

drivers/mtd/nand/raw/sunxi_nand.c

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@
5454
#define NFC_REG_ECC_ERR_CNT(nfc, x) ((nfc->caps->reg_ecc_err_cnt + (x)) & ~0x3)
5555
#define NFC_REG_A10_USER_DATA 0x0050
5656
#define NFC_REG_USER_DATA(nfc, x) (nfc->caps->reg_user_data + ((x) * 4))
57-
#define NFC_REG_SPARE_AREA 0x00A0
57+
#define NFC_REG_SPARE_AREA(nfc) (nfc->caps->reg_spare_area)
58+
#define NFC_REG_A10_SPARE_AREA 0x00A0
5859
#define NFC_REG_PAT_ID(nfc) (nfc->caps->reg_pat_id)
5960
#define NFC_REG_A10_PAT_ID 0x00A4
6061
#define NFC_REG_MDMA_ADDR 0x00C0
@@ -239,6 +240,7 @@ static inline struct sunxi_nand_chip *to_sunxi_nand(struct nand_chip *nand)
239240
* @reg_io_data: I/O data register
240241
* @reg_ecc_err_cnt: ECC error counter register
241242
* @reg_user_data: User data register
243+
* @reg_spare_area: Spare Area Register
242244
* @reg_pat_id: Pattern ID Register
243245
* @reg_pat_found: Data Pattern Status Register
244246
* @random_en_mask: RANDOM_EN mask in NFC_ECC_CTL register
@@ -255,6 +257,7 @@ struct sunxi_nfc_caps {
255257
unsigned int reg_io_data;
256258
unsigned int reg_ecc_err_cnt;
257259
unsigned int reg_user_data;
260+
unsigned int reg_spare_area;
258261
unsigned int reg_pat_id;
259262
unsigned int reg_pat_found;
260263
unsigned int random_en_mask;
@@ -477,7 +480,7 @@ static void sunxi_nfc_select_chip(struct nand_chip *nand, unsigned int cs)
477480
if (sel->rb >= 0)
478481
ctl |= NFC_RB_SEL(sel->rb);
479482

480-
writel(mtd->writesize, nfc->regs + NFC_REG_SPARE_AREA);
483+
writel(mtd->writesize, nfc->regs + NFC_REG_SPARE_AREA(nfc));
481484

482485
if (nfc->clk_rate != sunxi_nand->clk_rate) {
483486
clk_set_rate(nfc->mod_clk, sunxi_nand->clk_rate);
@@ -2236,6 +2239,7 @@ static const struct sunxi_nfc_caps sunxi_nfc_a10_caps = {
22362239
.reg_io_data = NFC_REG_A10_IO_DATA,
22372240
.reg_ecc_err_cnt = NFC_REG_A10_ECC_ERR_CNT,
22382241
.reg_user_data = NFC_REG_A10_USER_DATA,
2242+
.reg_spare_area = NFC_REG_A10_SPARE_AREA,
22392243
.reg_pat_id = NFC_REG_A10_PAT_ID,
22402244
.reg_pat_found = NFC_REG_ECC_ST,
22412245
.random_en_mask = BIT(9),
@@ -2253,6 +2257,7 @@ static const struct sunxi_nfc_caps sunxi_nfc_a23_caps = {
22532257
.reg_io_data = NFC_REG_A23_IO_DATA,
22542258
.reg_ecc_err_cnt = NFC_REG_A10_ECC_ERR_CNT,
22552259
.reg_user_data = NFC_REG_A10_USER_DATA,
2260+
.reg_spare_area = NFC_REG_A10_SPARE_AREA,
22562261
.reg_pat_id = NFC_REG_A10_PAT_ID,
22572262
.reg_pat_found = NFC_REG_ECC_ST,
22582263
.random_en_mask = BIT(9),

0 commit comments

Comments
 (0)