Home
last modified time | relevance | path

Searched refs:ecc_bytes (Results 1 – 8 of 8) sorted by relevance

/openbmc/u-boot/drivers/mtd/nand/raw/
H A Ddenali.c315 int ecc_bytes = chip->ecc.bytes; in denali_check_erased_page() local
328 ecc_code, ecc_bytes, in denali_check_erased_page()
339 ecc_code += ecc_bytes; in denali_check_erased_page()
640 int ecc_bytes = chip->ecc.bytes; in denali_oob_xfer() local
655 pos = ecc_size + i * (ecc_size + ecc_bytes); in denali_oob_xfer()
656 len = ecc_bytes; in denali_oob_xfer()
669 if (len < ecc_bytes) { in denali_oob_xfer()
670 len = ecc_bytes - len; in denali_oob_xfer()
697 int ecc_bytes = chip->ecc.bytes; in denali_read_page_raw() local
710 pos = i * (ecc_size + ecc_bytes); in denali_read_page_raw()
[all …]
H A Dsunxi_nand_spl.c252 static const int ecc_bytes[] = {32, 46, 54, 60, 74, 88, 102, 110, 116}; variable
259 int oob_chunk_sz = ecc_bytes[conf->ecc_strength]; in nand_read_page()
356 for (i = 0; i < ARRAY_SIZE(ecc_bytes); i++) { in nand_max_ecc_strength()
357 if (ecc_bytes[i] > max_ecc_bytes) in nand_max_ecc_strength()
H A Dnand_bch.c143 if (nbc->bch->ecc_bytes != eccbytes) { in nand_bch_init()
145 eccbytes, nbc->bch->ecc_bytes); in nand_bch_init()
H A Dnand_base.c2289 int ecc_bytes = chip->ecc.bytes; in nand_write_subpage_hwecc() local
2306 memset(ecc_calc, 0xff, ecc_bytes); in nand_write_subpage_hwecc()
2316 ecc_calc += ecc_bytes; in nand_write_subpage_hwecc()
4047 int nsteps, ecc_bytes; in nand_check_ecc_caps() local
4068 ecc_bytes = caps->calc_ecc_bytes(preset_step, in nand_check_ecc_caps()
4070 if (WARN_ON_ONCE(ecc_bytes < 0)) in nand_check_ecc_caps()
4071 return ecc_bytes; in nand_check_ecc_caps()
4073 if (ecc_bytes * nsteps > oobavail) { in nand_check_ecc_caps()
4079 chip->ecc.bytes = ecc_bytes; in nand_check_ecc_caps()
4109 int req_corr, step_size, strength, nsteps, ecc_bytes, ecc_bytes_total; in nand_match_ecc_req() local
[all …]
/openbmc/u-boot/include/linux/
H A Dbch.h42 unsigned int ecc_bytes; member
/openbmc/u-boot/include/
H A Data.h153 unsigned short ecc_bytes; /* for r/w long cmds; 0 = not_specified */ member
/openbmc/u-boot/board/ge/common/
H A Dvpd_reader.c60 if (bch->ecc_bytes != ecc_length) { in verify_bch()
/openbmc/u-boot/lib/
H A Dbch.c1343 bch->ecc_bytes = DIV_ROUND_UP(m*t, 8); in init_bch()