Home
last modified time | relevance | path

Searched refs:ecc_code (Results 1 – 21 of 21) sorted by relevance

/linux/drivers/mtd/nand/raw/ingenic/
A Dingenic_ecc.h31 const u8 *buf, u8 *ecc_code);
34 u8 *ecc_code);
41 const u8 *buf, u8 *ecc_code) in ingenic_ecc_calculate() argument
48 u8 *ecc_code) in ingenic_ecc_correct() argument
67 const u8 *buf, u8 *ecc_code);
70 u8 *buf, u8 *ecc_code);
A Djz4740_ecc.c67 const u8 *buf, u8 *ecc_code) in jz4740_ecc_calculate() argument
87 ecc_code[i] = readb(ecc->base + JZ_REG_NAND_PAR0 + i); in jz4740_ecc_calculate()
93 if (memcmp(ecc_code, empty_block_ecc, sizeof(empty_block_ecc)) == 0) in jz4740_ecc_calculate()
94 memset(ecc_code, 0xff, sizeof(empty_block_ecc)); in jz4740_ecc_calculate()
119 u8 *buf, u8 *ecc_code) in jz4740_ecc_correct() argument
128 writeb(ecc_code[i], ecc->base + JZ_REG_NAND_PAR0 + i); in jz4740_ecc_correct()
A Dingenic_ecc.c29 const u8 *buf, u8 *ecc_code) in ingenic_ecc_calculate() argument
31 return ecc->ops->calculate(ecc, params, buf, ecc_code); in ingenic_ecc_calculate()
49 u8 *buf, u8 *ecc_code) in ingenic_ecc_correct() argument
51 return ecc->ops->correct(ecc, params, buf, ecc_code); in ingenic_ecc_correct()
A Djz4780_bch.c162 const u8 *buf, u8 *ecc_code) in jz4780_calculate() argument
172 jz4780_bch_read_parity(bch, ecc_code, params->bytes); in jz4780_calculate()
185 u8 *buf, u8 *ecc_code) in jz4780_correct() argument
194 jz4780_bch_write_data(bch, ecc_code, params->bytes); in jz4780_correct()
A Djz4725b_bch.c185 const u8 *buf, u8 *ecc_code) in jz4725b_calculate() argument
205 jz4725b_bch_read_parity(bch, ecc_code, params->bytes); in jz4725b_calculate()
216 u8 *buf, u8 *ecc_code) in jz4725b_correct() argument
231 jz4725b_bch_write_data(bch, ecc_code, params->bytes); in jz4725b_correct()
A Dingenic_nand_drv.c149 u8 *ecc_code) in ingenic_nand_ecc_calculate() argument
166 return ingenic_ecc_calculate(nfc->ecc, &params, dat, ecc_code); in ingenic_nand_ecc_calculate()
/linux/drivers/mtd/nand/raw/
A Domap2.c926 u_char *ecc_code) in omap_calculate_ecc() argument
1151 u8 *ecc_code; in _omap_calculate_ecc_bch() local
1156 ecc_code = ecc_calc; in _omap_calculate_ecc_bch()
1164 *ecc_code++ = (bch_val4 & 0xFF); in _omap_calculate_ecc_bch()
1168 *ecc_code++ = (bch_val3 & 0xFF); in _omap_calculate_ecc_bch()
1172 *ecc_code++ = (bch_val2 & 0xFF); in _omap_calculate_ecc_bch()
1176 *ecc_code++ = (bch_val1 & 0xFF); in _omap_calculate_ecc_bch()
1193 ecc_code[0] = ((val >> 8) & 0xFF); in _omap_calculate_ecc_bch()
1194 ecc_code[1] = ((val >> 0) & 0xFF); in _omap_calculate_ecc_bch()
1196 ecc_code[2] = ((val >> 24) & 0xFF); in _omap_calculate_ecc_bch()
[all …]
A Ddavinci_nand.c121 const u_char *dat, u_char *ecc_code) in nand_davinci_calculate_1bit() argument
128 ecc_code[0] = (u_char)(ecc24); in nand_davinci_calculate_1bit()
129 ecc_code[1] = (u_char)(ecc24 >> 8); in nand_davinci_calculate_1bit()
130 ecc_code[2] = (u_char)(ecc24 >> 16); in nand_davinci_calculate_1bit()
239 *ecc_code++ = p[0] & 0xff; in nand_davinci_calculate_4bit()
243 *ecc_code++ = (p[1] >> 18) & 0xff; in nand_davinci_calculate_4bit()
253 u_char *ecc_code, u_char *null) in nand_davinci_correct_4bit() argument
267 if (WARN_ON(0x01 & (uintptr_t)ecc_code)) in nand_davinci_correct_4bit()
269 ecc16 = (unsigned short *)ecc_code; in nand_davinci_correct_4bit()
396 uint8_t *ecc_code = chip->ecc.code_buf; in nand_davinci_read_page_hwecc_oob_first() local
[all …]
A Ds3c2410.c620 const u_char *dat, u_char *ecc_code) in s3c2410_nand_calculate_ecc() argument
625 ecc_code[0] = readb(info->regs + S3C2410_NFECC + 0); in s3c2410_nand_calculate_ecc()
626 ecc_code[1] = readb(info->regs + S3C2410_NFECC + 1); in s3c2410_nand_calculate_ecc()
635 const u_char *dat, u_char *ecc_code) in s3c2412_nand_calculate_ecc() argument
641 ecc_code[0] = ecc; in s3c2412_nand_calculate_ecc()
642 ecc_code[1] = ecc >> 8; in s3c2412_nand_calculate_ecc()
643 ecc_code[2] = ecc >> 16; in s3c2412_nand_calculate_ecc()
651 const u_char *dat, u_char *ecc_code) in s3c2440_nand_calculate_ecc() argument
657 ecc_code[0] = ecc; in s3c2440_nand_calculate_ecc()
658 ecc_code[1] = ecc >> 8; in s3c2440_nand_calculate_ecc()
[all …]
A Dtmio_nand.c267 u_char *ecc_code) in tmio_nand_calculate_ecc() argument
275 ecc_code[1] = ecc; /* 000-255 LP7-0 */ in tmio_nand_calculate_ecc()
276 ecc_code[0] = ecc >> 8; /* 000-255 LP15-8 */ in tmio_nand_calculate_ecc()
278 ecc_code[2] = ecc; /* 000-255 CP5-0,11b */ in tmio_nand_calculate_ecc()
279 ecc_code[4] = ecc >> 8; /* 256-511 LP7-0 */ in tmio_nand_calculate_ecc()
281 ecc_code[3] = ecc; /* 256-511 LP15-8 */ in tmio_nand_calculate_ecc()
282 ecc_code[5] = ecc >> 8; /* 256-511 CP5-0,11b */ in tmio_nand_calculate_ecc()
A Dsharpsl.c90 const u_char * dat, u_char * ecc_code) in sharpsl_nand_calculate_ecc() argument
93 ecc_code[0] = ~readb(sharpsl->io + ECCLPUB); in sharpsl_nand_calculate_ecc()
94 ecc_code[1] = ~readb(sharpsl->io + ECCLPLB); in sharpsl_nand_calculate_ecc()
95 ecc_code[2] = (~readb(sharpsl->io + ECCCP) << 2) | 0x03; in sharpsl_nand_calculate_ecc()
A Dndfc.c87 const u_char *dat, u_char *ecc_code) in ndfc_calculate_ecc() argument
96 ecc_code[0] = p[1]; in ndfc_calculate_ecc()
97 ecc_code[1] = p[2]; in ndfc_calculate_ecc()
98 ecc_code[2] = p[3]; in ndfc_calculate_ecc()
A Dtxx9ndfmc.c168 uint8_t *ecc_code) in txx9ndfmc_calculate_ecc() argument
178 ecc_code[1] = txx9ndfmc_read(dev, TXX9_NDFDTR); in txx9ndfmc_calculate_ecc()
179 ecc_code[0] = txx9ndfmc_read(dev, TXX9_NDFDTR); in txx9ndfmc_calculate_ecc()
180 ecc_code[2] = txx9ndfmc_read(dev, TXX9_NDFDTR); in txx9ndfmc_calculate_ecc()
181 ecc_code += 3; in txx9ndfmc_calculate_ecc()
A Dcs553x_nand.c230 u_char *ecc_code) in cs_calculate_ecc() argument
237 ecc_code[1] = ecc >> 8; in cs_calculate_ecc()
238 ecc_code[0] = ecc >> 16; in cs_calculate_ecc()
239 ecc_code[2] = ecc >> 24; in cs_calculate_ecc()
A Dstm32_fmc2_nand.c685 u8 *ecc_code = chip->ecc.code_buf; in stm32_fmc2_nfc_read_page() local
703 ret = nand_change_read_column_op(chip, i, ecc_code, in stm32_fmc2_nfc_read_page()
709 stat = chip->ecc.correct(chip, p, ecc_code, ecc_calc); in stm32_fmc2_nfc_read_page()
713 ecc_code, eccbytes, in stm32_fmc2_nfc_read_page()
1088 u8 *ecc_code = chip->ecc.code_buf; in stm32_fmc2_nfc_seq_read_page() local
1122 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0, in stm32_fmc2_nfc_seq_read_page()
1128 return chip->ecc.correct(chip, buf, ecc_code, ecc_calc); in stm32_fmc2_nfc_seq_read_page()
A Ddiskonchip.c701 unsigned char *ecc_code) in doc200x_calculate_ecc() argument
727 ecc_code[i] = ReadDOC_(docptr, DoC_Mplus_ECCSyndrome0 + i); in doc200x_calculate_ecc()
729 ecc_code[i] = ReadDOC_(docptr, DoC_ECCSyndrome0 + i); in doc200x_calculate_ecc()
730 if (ecc_code[i] != empty_write_ecc[i]) in doc200x_calculate_ecc()
754 memset(ecc_code, 0xff, 6); in doc200x_calculate_ecc()
A Dfsmc_nand.c714 u8 *ecc_code = chip->ecc.code_buf; in fsmc_read_page_hwecc() local
754 memcpy(&ecc_code[i], oob, chip->ecc.bytes); in fsmc_read_page_hwecc()
757 stat = chip->ecc.correct(chip, p, &ecc_code[i], &ecc_calc[i]); in fsmc_read_page_hwecc()
A Dr852.c431 uint8_t *ecc_code) in r852_ecc_calculate() argument
434 struct sm_oob *oob = (struct sm_oob *)ecc_code; in r852_ecc_calculate()
A Ddenali.c414 u8 *ecc_code = chip->oob_poi + denali->oob_skip_bytes; in denali_check_erased_page() local
421 stat = nand_check_erased_ecc_chunk(buf, ecc->size, ecc_code, in denali_check_erased_page()
432 ecc_code += ecc->bytes; in denali_check_erased_page()
A Dnand_base.c2951 uint8_t *ecc_code = chip->ecc.code_buf; in nand_read_page_swecc() local
2959 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0, in nand_read_page_swecc()
2970 stat = chip->ecc.correct(chip, p, &ecc_code[i], &ecc_calc[i]); in nand_read_page_swecc()
3110 uint8_t *ecc_code = chip->ecc.code_buf; in nand_read_page_hwecc() local
3132 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0, in nand_read_page_hwecc()
3143 stat = chip->ecc.correct(chip, p, &ecc_code[i], &ecc_calc[i]); in nand_read_page_hwecc()
3148 &ecc_code[i], eccbytes, in nand_read_page_hwecc()
/linux/include/linux/mtd/
A Drawnand.h361 uint8_t *ecc_code);

Completed in 52 milliseconds