Commit 7854d3f7 authored by Brian Norris's avatar Brian Norris Committed by Artem Bityutskiy

mtd: spelling, capitalization, uniformity

Therefor -> Therefore
[Intern], [Internal] -> [INTERN]
[REPLACABLE] -> [REPLACEABLE]
syndrom, syndom -> syndrome
ecc -> ECC
buswith -> buswidth
endianess -> endianness
dont -> don't
occures -> occurs
independend -> independent
wihin -> within
erease -> erase
blockes -> blocks
...
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
parent 15c60a50
...@@ -1914,7 +1914,7 @@ static void jedec_reset(u32 base, struct map_info *map, struct cfi_private *cfi) ...@@ -1914,7 +1914,7 @@ static void jedec_reset(u32 base, struct map_info *map, struct cfi_private *cfi)
* (oh and incidentaly the jedec spec - 3.5.3.3) the reset * (oh and incidentaly the jedec spec - 3.5.3.3) the reset
* sequence is *supposed* to be 0xaa at 0x5555, 0x55 at * sequence is *supposed* to be 0xaa at 0x5555, 0x55 at
* 0x2aaa, 0xF0 at 0x5555 this will not affect the AMD chips * 0x2aaa, 0xF0 at 0x5555 this will not affect the AMD chips
* as they will ignore the writes and dont care what address * as they will ignore the writes and don't care what address
* the F0 is written to */ * the F0 is written to */
if (cfi->addr_unlock1) { if (cfi->addr_unlock1) {
DEBUG( MTD_DEBUG_LEVEL3, DEBUG( MTD_DEBUG_LEVEL3,
......
...@@ -699,7 +699,7 @@ static int doc_read(struct mtd_info *mtd, loff_t from, size_t len, ...@@ -699,7 +699,7 @@ static int doc_read(struct mtd_info *mtd, loff_t from, size_t len,
#ifdef ECC_DEBUG #ifdef ECC_DEBUG
printk(KERN_ERR "DiskOnChip ECC Error: Read at %lx\n", (long)from); printk(KERN_ERR "DiskOnChip ECC Error: Read at %lx\n", (long)from);
#endif #endif
/* Read the ECC syndrom through the DiskOnChip ECC /* Read the ECC syndrome through the DiskOnChip ECC
logic. These syndrome will be all ZERO when there logic. These syndrome will be all ZERO when there
is no error */ is no error */
for (i = 0; i < 6; i++) { for (i = 0; i < 6; i++) {
......
...@@ -464,7 +464,7 @@ static int doc_read (struct mtd_info *mtd, loff_t from, size_t len, ...@@ -464,7 +464,7 @@ static int doc_read (struct mtd_info *mtd, loff_t from, size_t len,
#ifdef ECC_DEBUG #ifdef ECC_DEBUG
printk("DiskOnChip ECC Error: Read at %lx\n", (long)from); printk("DiskOnChip ECC Error: Read at %lx\n", (long)from);
#endif #endif
/* Read the ECC syndrom through the DiskOnChip ECC logic. /* Read the ECC syndrome through the DiskOnChip ECC logic.
These syndrome will be all ZERO when there is no error */ These syndrome will be all ZERO when there is no error */
for (i = 0; i < 6; i++) { for (i = 0; i < 6; i++) {
syndrome[i] = ReadDOC(docptr, ECCSyndrome0 + i); syndrome[i] = ReadDOC(docptr, ECCSyndrome0 + i);
......
...@@ -655,7 +655,7 @@ static int doc_read(struct mtd_info *mtd, loff_t from, size_t len, ...@@ -655,7 +655,7 @@ static int doc_read(struct mtd_info *mtd, loff_t from, size_t len,
#ifdef ECC_DEBUG #ifdef ECC_DEBUG
printk("DiskOnChip ECC Error: Read at %lx\n", (long)from); printk("DiskOnChip ECC Error: Read at %lx\n", (long)from);
#endif #endif
/* Read the ECC syndrom through the DiskOnChip ECC logic. /* Read the ECC syndrome through the DiskOnChip ECC logic.
These syndrome will be all ZERO when there is no error */ These syndrome will be all ZERO when there is no error */
for (i = 0; i < 6; i++) for (i = 0; i < 6; i++)
syndrome[i] = ReadDOC(docptr, Mplus_ECCSyndrome0 + i); syndrome[i] = ReadDOC(docptr, Mplus_ECCSyndrome0 + i);
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* ECC algorithm for M-systems disk on chip. We use the excellent Reed * ECC algorithm for M-systems disk on chip. We use the excellent Reed
* Solmon code of Phil Karn (karn@ka9q.ampr.org) available under the * Solmon code of Phil Karn (karn@ka9q.ampr.org) available under the
* GNU GPL License. The rest is simply to convert the disk on chip * GNU GPL License. The rest is simply to convert the disk on chip
* syndrom into a standard syndom. * syndrome into a standard syndome.
* *
* Author: Fabrice Bellard (fabrice.bellard@netgem.com) * Author: Fabrice Bellard (fabrice.bellard@netgem.com)
* Copyright (C) 2000 Netgem S.A. * Copyright (C) 2000 Netgem S.A.
......
...@@ -233,9 +233,9 @@ static ssize_t mtd_read(struct file *file, char __user *buf, size_t count,loff_t ...@@ -233,9 +233,9 @@ static ssize_t mtd_read(struct file *file, char __user *buf, size_t count,loff_t
default: default:
ret = mtd->read(mtd, *ppos, len, &retlen, kbuf); ret = mtd->read(mtd, *ppos, len, &retlen, kbuf);
} }
/* Nand returns -EBADMSG on ecc errors, but it returns /* Nand returns -EBADMSG on ECC errors, but it returns
* the data. For our userspace tools it is important * the data. For our userspace tools it is important
* to dump areas with ecc errors ! * to dump areas with ECC errors!
* For kernel internal usage it also might return -EUCLEAN * For kernel internal usage it also might return -EUCLEAN
* to signal the caller that a bitflip has occurred and has * to signal the caller that a bitflip has occurred and has
* been corrected by the ECC algorithm. * been corrected by the ECC algorithm.
...@@ -883,7 +883,7 @@ static int mtd_ioctl(struct file *file, u_int cmd, u_long arg) ...@@ -883,7 +883,7 @@ static int mtd_ioctl(struct file *file, u_int cmd, u_long arg)
} }
#endif #endif
/* This ioctl is being deprecated - it truncates the ecc layout */ /* This ioctl is being deprecated - it truncates the ECC layout */
case ECCGETLAYOUT: case ECCGETLAYOUT:
{ {
struct nand_ecclayout_user *usrlay; struct nand_ecclayout_user *usrlay;
......
...@@ -48,7 +48,7 @@ static const struct mtd_partition partition_info[] = { ...@@ -48,7 +48,7 @@ static const struct mtd_partition partition_info[] = {
* au_read_byte - read one byte from the chip * au_read_byte - read one byte from the chip
* @mtd: MTD device structure * @mtd: MTD device structure
* *
* read function for 8bit buswith * read function for 8bit buswidth
*/ */
static u_char au_read_byte(struct mtd_info *mtd) static u_char au_read_byte(struct mtd_info *mtd)
{ {
...@@ -63,7 +63,7 @@ static u_char au_read_byte(struct mtd_info *mtd) ...@@ -63,7 +63,7 @@ static u_char au_read_byte(struct mtd_info *mtd)
* @mtd: MTD device structure * @mtd: MTD device structure
* @byte: pointer to data byte to write * @byte: pointer to data byte to write
* *
* write function for 8it buswith * write function for 8it buswidth
*/ */
static void au_write_byte(struct mtd_info *mtd, u_char byte) static void au_write_byte(struct mtd_info *mtd, u_char byte)
{ {
...@@ -73,11 +73,10 @@ static void au_write_byte(struct mtd_info *mtd, u_char byte) ...@@ -73,11 +73,10 @@ static void au_write_byte(struct mtd_info *mtd, u_char byte)
} }
/** /**
* au_read_byte16 - read one byte endianess aware from the chip * au_read_byte16 - read one byte endianness aware from the chip
* @mtd: MTD device structure * @mtd: MTD device structure
* *
* read function for 16bit buswith with * read function for 16bit buswidth with endianness conversion
* endianess conversion
*/ */
static u_char au_read_byte16(struct mtd_info *mtd) static u_char au_read_byte16(struct mtd_info *mtd)
{ {
...@@ -88,12 +87,11 @@ static u_char au_read_byte16(struct mtd_info *mtd) ...@@ -88,12 +87,11 @@ static u_char au_read_byte16(struct mtd_info *mtd)
} }
/** /**
* au_write_byte16 - write one byte endianess aware to the chip * au_write_byte16 - write one byte endianness aware to the chip
* @mtd: MTD device structure * @mtd: MTD device structure
* @byte: pointer to data byte to write * @byte: pointer to data byte to write
* *
* write function for 16bit buswith with * write function for 16bit buswidth with endianness conversion
* endianess conversion
*/ */
static void au_write_byte16(struct mtd_info *mtd, u_char byte) static void au_write_byte16(struct mtd_info *mtd, u_char byte)
{ {
...@@ -106,8 +104,7 @@ static void au_write_byte16(struct mtd_info *mtd, u_char byte) ...@@ -106,8 +104,7 @@ static void au_write_byte16(struct mtd_info *mtd, u_char byte)
* au_read_word - read one word from the chip * au_read_word - read one word from the chip
* @mtd: MTD device structure * @mtd: MTD device structure
* *
* read function for 16bit buswith without * read function for 16bit buswidth without endianness conversion
* endianess conversion
*/ */
static u16 au_read_word(struct mtd_info *mtd) static u16 au_read_word(struct mtd_info *mtd)
{ {
...@@ -123,7 +120,7 @@ static u16 au_read_word(struct mtd_info *mtd) ...@@ -123,7 +120,7 @@ static u16 au_read_word(struct mtd_info *mtd)
* @buf: data buffer * @buf: data buffer
* @len: number of bytes to write * @len: number of bytes to write
* *
* write function for 8bit buswith * write function for 8bit buswidth
*/ */
static void au_write_buf(struct mtd_info *mtd, const u_char *buf, int len) static void au_write_buf(struct mtd_info *mtd, const u_char *buf, int len)
{ {
...@@ -142,7 +139,7 @@ static void au_write_buf(struct mtd_info *mtd, const u_char *buf, int len) ...@@ -142,7 +139,7 @@ static void au_write_buf(struct mtd_info *mtd, const u_char *buf, int len)
* @buf: buffer to store date * @buf: buffer to store date
* @len: number of bytes to read * @len: number of bytes to read
* *
* read function for 8bit buswith * read function for 8bit buswidth
*/ */
static void au_read_buf(struct mtd_info *mtd, u_char *buf, int len) static void au_read_buf(struct mtd_info *mtd, u_char *buf, int len)
{ {
...@@ -161,7 +158,7 @@ static void au_read_buf(struct mtd_info *mtd, u_char *buf, int len) ...@@ -161,7 +158,7 @@ static void au_read_buf(struct mtd_info *mtd, u_char *buf, int len)
* @buf: buffer containing the data to compare * @buf: buffer containing the data to compare
* @len: number of bytes to compare * @len: number of bytes to compare
* *
* verify function for 8bit buswith * verify function for 8bit buswidth
*/ */
static int au_verify_buf(struct mtd_info *mtd, const u_char *buf, int len) static int au_verify_buf(struct mtd_info *mtd, const u_char *buf, int len)
{ {
...@@ -183,7 +180,7 @@ static int au_verify_buf(struct mtd_info *mtd, const u_char *buf, int len) ...@@ -183,7 +180,7 @@ static int au_verify_buf(struct mtd_info *mtd, const u_char *buf, int len)
* @buf: data buffer * @buf: data buffer
* @len: number of bytes to write * @len: number of bytes to write
* *
* write function for 16bit buswith * write function for 16bit buswidth
*/ */
static void au_write_buf16(struct mtd_info *mtd, const u_char *buf, int len) static void au_write_buf16(struct mtd_info *mtd, const u_char *buf, int len)
{ {
...@@ -205,7 +202,7 @@ static void au_write_buf16(struct mtd_info *mtd, const u_char *buf, int len) ...@@ -205,7 +202,7 @@ static void au_write_buf16(struct mtd_info *mtd, const u_char *buf, int len)
* @buf: buffer to store date * @buf: buffer to store date
* @len: number of bytes to read * @len: number of bytes to read
* *
* read function for 16bit buswith * read function for 16bit buswidth
*/ */
static void au_read_buf16(struct mtd_info *mtd, u_char *buf, int len) static void au_read_buf16(struct mtd_info *mtd, u_char *buf, int len)
{ {
...@@ -226,7 +223,7 @@ static void au_read_buf16(struct mtd_info *mtd, u_char *buf, int len) ...@@ -226,7 +223,7 @@ static void au_read_buf16(struct mtd_info *mtd, u_char *buf, int len)
* @buf: buffer containing the data to compare * @buf: buffer containing the data to compare
* @len: number of bytes to compare * @len: number of bytes to compare
* *
* verify function for 16bit buswith * verify function for 16bit buswidth
*/ */
static int au_verify_buf16(struct mtd_info *mtd, const u_char *buf, int len) static int au_verify_buf16(struct mtd_info *mtd, const u_char *buf, int len)
{ {
......
...@@ -370,7 +370,7 @@ static int cafe_nand_read_oob(struct mtd_info *mtd, struct nand_chip *chip, ...@@ -370,7 +370,7 @@ static int cafe_nand_read_oob(struct mtd_info *mtd, struct nand_chip *chip,
return 1; return 1;
} }
/** /**
* cafe_nand_read_page_syndrome - {REPLACABLE] hardware ecc syndrom based page read * cafe_nand_read_page_syndrome - [REPLACEABLE] hardware ecc syndrome based page read
* @mtd: mtd info structure * @mtd: mtd info structure
* @chip: nand chip info structure * @chip: nand chip info structure
* @buf: buffer to store read data * @buf: buffer to store read data
......
...@@ -132,7 +132,7 @@ static struct rs_control *rs_decoder; ...@@ -132,7 +132,7 @@ static struct rs_control *rs_decoder;
/* /*
* The HW decoder in the DoC ASIC's provides us a error syndrome, * The HW decoder in the DoC ASIC's provides us a error syndrome,
* which we must convert to a standard syndrom usable by the generic * which we must convert to a standard syndrome usable by the generic
* Reed-Solomon library code. * Reed-Solomon library code.
* *
* Fabrice Bellard figured this out in the old docecc code. I added * Fabrice Bellard figured this out in the old docecc code. I added
...@@ -153,7 +153,7 @@ static int doc_ecc_decode(struct rs_control *rs, uint8_t *data, uint8_t *ecc) ...@@ -153,7 +153,7 @@ static int doc_ecc_decode(struct rs_control *rs, uint8_t *data, uint8_t *ecc)
ds[3] = ((ecc[3] & 0xc0) >> 6) | ((ecc[0] & 0xff) << 2); ds[3] = ((ecc[3] & 0xc0) >> 6) | ((ecc[0] & 0xff) << 2);
parity = ecc[1]; parity = ecc[1];
/* Initialize the syndrom buffer */ /* Initialize the syndrome buffer */
for (i = 0; i < NROOTS; i++) for (i = 0; i < NROOTS; i++)
s[i] = ds[0]; s[i] = ds[0];
/* /*
......
This diff is collapsed.
...@@ -149,7 +149,7 @@ static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td) ...@@ -149,7 +149,7 @@ static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
* add_marker_len - compute the length of the marker in data area * add_marker_len - compute the length of the marker in data area
* @td: BBT descriptor used for computation * @td: BBT descriptor used for computation
* *
* The length will be 0 if the markeris located in OOB area. * The length will be 0 if the marker is located in OOB area.
*/ */
static u32 add_marker_len(struct nand_bbt_descr *td) static u32 add_marker_len(struct nand_bbt_descr *td)
{ {
...@@ -170,7 +170,7 @@ static u32 add_marker_len(struct nand_bbt_descr *td) ...@@ -170,7 +170,7 @@ static u32 add_marker_len(struct nand_bbt_descr *td)
* @buf: temporary buffer * @buf: temporary buffer
* @page: the starting page * @page: the starting page
* @num: the number of bbt descriptors to read * @num: the number of bbt descriptors to read
* @td: the bbt describtion table * @td: the bbt describtion table
* @offs: offset in the memory table * @offs: offset in the memory table
* *
* Read the bad block table starting from page. * Read the bad block table starting from page.
...@@ -1241,7 +1241,7 @@ static struct nand_bbt_descr agand_flashbased = { ...@@ -1241,7 +1241,7 @@ static struct nand_bbt_descr agand_flashbased = {
.pattern = scan_agand_pattern .pattern = scan_agand_pattern
}; };
/* Generic flash bbt decriptors */ /* Generic flash bbt descriptors */
static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' }; static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' }; static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
...@@ -1286,7 +1286,7 @@ static struct nand_bbt_descr bbt_mirror_no_bbt_descr = { ...@@ -1286,7 +1286,7 @@ static struct nand_bbt_descr bbt_mirror_no_bbt_descr = {
}; };
/** /**
* nand_create_default_bbt_descr - [Internal] Creates a BBT descriptor structure * nand_create_default_bbt_descr - [INTERN] Creates a BBT descriptor structure
* @this: NAND chip to create descriptor for * @this: NAND chip to create descriptor for
* *
* This function allocates and initializes a nand_bbt_descr for BBM detection * This function allocates and initializes a nand_bbt_descr for BBM detection
......
...@@ -110,7 +110,7 @@ static const char bitsperbyte[256] = { ...@@ -110,7 +110,7 @@ static const char bitsperbyte[256] = {
/* /*
* addressbits is a lookup table to filter out the bits from the xor-ed * addressbits is a lookup table to filter out the bits from the xor-ed
* ecc data that identify the faulty location. * ECC data that identify the faulty location.
* this is only used for repairing parity * this is only used for repairing parity
* see the comments in nand_correct_data for more details * see the comments in nand_correct_data for more details
*/ */
...@@ -153,7 +153,7 @@ static const char addressbits[256] = { ...@@ -153,7 +153,7 @@ static const char addressbits[256] = {
* __nand_calculate_ecc - [NAND Interface] Calculate 3-byte ECC for 256/512-byte * __nand_calculate_ecc - [NAND Interface] Calculate 3-byte ECC for 256/512-byte
* block * block
* @buf: input buffer with raw data * @buf: input buffer with raw data
* @eccsize: data bytes per ecc step (256 or 512) * @eccsize: data bytes per ECC step (256 or 512)
* @code: output buffer with ECC * @code: output buffer with ECC
*/ */
void __nand_calculate_ecc(const unsigned char *buf, unsigned int eccsize, void __nand_calculate_ecc(const unsigned char *buf, unsigned int eccsize,
...@@ -348,7 +348,7 @@ void __nand_calculate_ecc(const unsigned char *buf, unsigned int eccsize, ...@@ -348,7 +348,7 @@ void __nand_calculate_ecc(const unsigned char *buf, unsigned int eccsize,
rp17 = (par ^ rp16) & 0xff; rp17 = (par ^ rp16) & 0xff;
/* /*
* Finally calculate the ecc bits. * Finally calculate the ECC bits.
* Again here it might seem that there are performance optimisations * Again here it might seem that there are performance optimisations
* possible, but benchmarks showed that on the system this is developed * possible, but benchmarks showed that on the system this is developed
* the code below is the fastest * the code below is the fastest
...@@ -436,7 +436,7 @@ EXPORT_SYMBOL(nand_calculate_ecc); ...@@ -436,7 +436,7 @@ EXPORT_SYMBOL(nand_calculate_ecc);
* @buf: raw data read from the chip * @buf: raw data read from the chip
* @read_ecc: ECC from the chip * @read_ecc: ECC from the chip
* @calc_ecc: the ECC calculated from raw data * @calc_ecc: the ECC calculated from raw data
* @eccsize: data bytes per ecc step (256 or 512) * @eccsize: data bytes per ECC step (256 or 512)
* *
* Detect and correct a 1 bit error for eccsize byte block * Detect and correct a 1 bit error for eccsize byte block
*/ */
...@@ -505,7 +505,7 @@ int __nand_correct_data(unsigned char *buf, ...@@ -505,7 +505,7 @@ int __nand_correct_data(unsigned char *buf,
} }
/* count nr of bits; use table lookup, faster than calculating it */ /* count nr of bits; use table lookup, faster than calculating it */
if ((bitsperbyte[b0] + bitsperbyte[b1] + bitsperbyte[b2]) == 1) if ((bitsperbyte[b0] + bitsperbyte[b1] + bitsperbyte[b2]) == 1)
return 1; /* error in ecc data; no action needed */ return 1; /* error in ECC data; no action needed */
printk(KERN_ERR "uncorrectable error : "); printk(KERN_ERR "uncorrectable error : ");
return -1; return -1;
......
...@@ -351,7 +351,7 @@ static int rtc_from4_correct_data(struct mtd_info *mtd, const u_char *buf, u_cha ...@@ -351,7 +351,7 @@ static int rtc_from4_correct_data(struct mtd_info *mtd, const u_char *buf, u_cha
return 0; return 0;
} }
/* Read the syndrom pattern from the FPGA and correct the bitorder */ /* Read the syndrome pattern from the FPGA and correct the bitorder */
rs_ecc = (volatile unsigned short *)(rtc_from4_fio_base + RTC_FROM4_RS_ECC); rs_ecc = (volatile unsigned short *)(rtc_from4_fio_base + RTC_FROM4_RS_ECC);
for (i = 0; i < 8; i++) { for (i = 0; i < 8; i++) {
ecc[i] = bitrev8(*rs_ecc); ecc[i] = bitrev8(*rs_ecc);
......
...@@ -1015,7 +1015,7 @@ static void onenand_release_device(struct mtd_info *mtd) ...@@ -1015,7 +1015,7 @@ static void onenand_release_device(struct mtd_info *mtd)
} }
/** /**
* onenand_transfer_auto_oob - [Internal] oob auto-placement transfer * onenand_transfer_auto_oob - [INTERN] oob auto-placement transfer
* @param mtd MTD device structure * @param mtd MTD device structure
* @param buf destination address * @param buf destination address
* @param column oob offset to read from * @param column oob offset to read from
...@@ -1821,7 +1821,7 @@ static int onenand_panic_write(struct mtd_info *mtd, loff_t to, size_t len, ...@@ -1821,7 +1821,7 @@ static int onenand_panic_write(struct mtd_info *mtd, loff_t to, size_t len,
} }
/** /**
* onenand_fill_auto_oob - [Internal] oob auto-placement transfer * onenand_fill_auto_oob - [INTERN] oob auto-placement transfer
* @param mtd MTD device structure * @param mtd MTD device structure
* @param oob_buf oob buffer * @param oob_buf oob buffer
* @param buf source address * @param buf source address
...@@ -2055,7 +2055,7 @@ static int onenand_write_ops_nolock(struct mtd_info *mtd, loff_t to, ...@@ -2055,7 +2055,7 @@ static int onenand_write_ops_nolock(struct mtd_info *mtd, loff_t to,
/** /**
* onenand_write_oob_nolock - [Internal] OneNAND write out-of-band * onenand_write_oob_nolock - [INTERN] OneNAND write out-of-band
* @param mtd MTD device structure * @param mtd MTD device structure
* @param to offset to write to * @param to offset to write to
* @param len number of bytes to write * @param len number of bytes to write
...@@ -2281,7 +2281,7 @@ static int onenand_multiblock_erase_verify(struct mtd_info *mtd, ...@@ -2281,7 +2281,7 @@ static int onenand_multiblock_erase_verify(struct mtd_info *mtd,
} }
/** /**
* onenand_multiblock_erase - [Internal] erase block(s) using multiblock erase * onenand_multiblock_erase - [INTERN] erase block(s) using multiblock erase
* @param mtd MTD device structure * @param mtd MTD device structure
* @param instr erase instruction * @param instr erase instruction
* @param region erase region * @param region erase region
...@@ -2397,7 +2397,7 @@ static int onenand_multiblock_erase(struct mtd_info *mtd, ...@@ -2397,7 +2397,7 @@ static int onenand_multiblock_erase(struct mtd_info *mtd,
/** /**
* onenand_block_by_block_erase - [Internal] erase block(s) using regular erase * onenand_block_by_block_erase - [INTERN] erase block(s) using regular erase
* @param mtd MTD device structure * @param mtd MTD device structure
* @param instr erase instruction * @param instr erase instruction
* @param region erase region * @param region erase region
...@@ -2922,7 +2922,7 @@ static int onenand_otp_command(struct mtd_info *mtd, int cmd, loff_t addr, ...@@ -2922,7 +2922,7 @@ static int onenand_otp_command(struct mtd_info *mtd, int cmd, loff_t addr,
} }
/** /**
* onenand_otp_write_oob_nolock - [Internal] OneNAND write out-of-band, specific to OTP * onenand_otp_write_oob_nolock - [INTERN] OneNAND write out-of-band, specific to OTP
* @param mtd MTD device structure * @param mtd MTD device structure
* @param to offset to write to * @param to offset to write to
* @param len number of bytes to write * @param len number of bytes to write
......
...@@ -138,7 +138,7 @@ static int sm_get_lba(uint8_t *lba) ...@@ -138,7 +138,7 @@ static int sm_get_lba(uint8_t *lba)
if ((lba[0] & 0xF8) != 0x10) if ((lba[0] & 0xF8) != 0x10)
return -2; return -2;
/* check parity - endianess doesn't matter */ /* check parity - endianness doesn't matter */
if (hweight16(*(uint16_t *)lba) & 1) if (hweight16(*(uint16_t *)lba) & 1)
return -2; return -2;
......
...@@ -172,7 +172,7 @@ struct mtd_info { ...@@ -172,7 +172,7 @@ struct mtd_info {
const char *name; const char *name;
int index; int index;
/* ecc layout structure pointer - read only ! */ /* ECC layout structure pointer - read only! */
struct nand_ecclayout *ecclayout; struct nand_ecclayout *ecclayout;
/* Data for variable erase regions. If numeraseregions is zero, /* Data for variable erase regions. If numeraseregions is zero,
......
...@@ -42,10 +42,10 @@ extern void nand_release(struct mtd_info *mtd); ...@@ -42,10 +42,10 @@ extern void nand_release(struct mtd_info *mtd);
/* Internal helper for board drivers which need to override command function */ /* Internal helper for board drivers which need to override command function */
extern void nand_wait_ready(struct mtd_info *mtd); extern void nand_wait_ready(struct mtd_info *mtd);
/* locks all blockes present in the device */ /* locks all blocks present in the device */
extern int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len); extern int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
/* unlocks specified locked blockes */ /* unlocks specified locked blocks */
extern int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len); extern int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
/* The maximum number of NAND chips in an array */ /* The maximum number of NAND chips in an array */
...@@ -150,7 +150,7 @@ typedef enum { ...@@ -150,7 +150,7 @@ typedef enum {
#define NAND_ECC_READ 0 #define NAND_ECC_READ 0
/* Reset Hardware ECC for write */ /* Reset Hardware ECC for write */
#define NAND_ECC_WRITE 1 #define NAND_ECC_WRITE 1
/* Enable Hardware ECC before syndrom is read back from flash */ /* Enable Hardware ECC before syndrome is read back from flash */
#define NAND_ECC_READSYN 2 #define NAND_ECC_READSYN 2
/* Bit mask for flags passed to do_nand_read_ecc */ /* Bit mask for flags passed to do_nand_read_ecc */
...@@ -163,7 +163,7 @@ typedef enum { ...@@ -163,7 +163,7 @@ typedef enum {
*/ */
/* Chip can not auto increment pages */ /* Chip can not auto increment pages */
#define NAND_NO_AUTOINCR 0x00000001 #define NAND_NO_AUTOINCR 0x00000001
/* Buswitdh is 16 bit */ /* Buswidth is 16 bit */
#define NAND_BUSWIDTH_16 0x00000002 #define NAND_BUSWIDTH_16 0x00000002
/* Device supports partial programming without padding */ /* Device supports partial programming without padding */
#define NAND_NO_PADDING 0x00000004 #define NAND_NO_PADDING 0x00000004
...@@ -319,26 +319,26 @@ struct nand_hw_control { ...@@ -319,26 +319,26 @@ struct nand_hw_control {
}; };
/** /**
* struct nand_ecc_ctrl - Control structure for ecc * struct nand_ecc_ctrl - Control structure for ECC
* @mode: ecc mode * @mode: ECC mode
* @steps: number of ecc steps per page * @steps: number of ECC steps per page
* @size: data bytes per ecc step * @size: data bytes per ECC step
* @bytes: ecc bytes per step * @bytes: ECC bytes per step
* @total: total number of ecc bytes per page * @total: total number of ECC bytes per page
* @prepad: padding information for syndrome based ecc generators * @prepad: padding information for syndrome based ECC generators
* @postpad: padding information for syndrome based ecc generators * @postpad: padding information for syndrome based ECC generators
* @layout: ECC layout control struct pointer * @layout: ECC layout control struct pointer
* @priv: pointer to private ecc control data * @priv: pointer to private ECC control data
* @hwctl: function to control hardware ecc generator. Must only * @hwctl: function to control hardware ECC generator. Must only
* be provided if an hardware ECC is available * be provided if an hardware ECC is available
* @calculate: function for ecc calculation or readback from ecc hardware * @calculate: function for ECC calculation or readback from ECC hardware
* @correct: function for ecc correction, matching to ecc generator (sw/hw) * @correct: function for ECC correction, matching to ECC generator (sw/hw)
* @read_page_raw: function to read a raw page without ECC * @read_page_raw: function to read a raw page without ECC
* @write_page_raw: function to write a raw page without ECC * @write_page_raw: function to write a raw page without ECC
* @read_page: function to read a page according to the ecc generator * @read_page: function to read a page according to the ECC generator
* requirements. * requirements.
* @read_subpage: function to read parts of the page covered by ECC. * @read_subpage: function to read parts of the page covered by ECC.
* @write_page: function to write a page according to the ecc generator * @write_page: function to write a page according to the ECC generator
* requirements. * requirements.
* @read_oob: function to read chip OOB data * @read_oob: function to read chip OOB data
* @write_oob: function to write chip OOB data * @write_oob: function to write chip OOB data
...@@ -376,8 +376,8 @@ struct nand_ecc_ctrl { ...@@ -376,8 +376,8 @@ struct nand_ecc_ctrl {
/** /**
* struct nand_buffers - buffer structure for read/write * struct nand_buffers - buffer structure for read/write
* @ecccalc: buffer for calculated ecc * @ecccalc: buffer for calculated ECC
* @ecccode: buffer for ecc read from flash * @ecccode: buffer for ECC read from flash
* @databuf: buffer for data - dynamically sized * @databuf: buffer for data - dynamically sized
* *
* Do not change the order of buffers. databuf and oobrbuf must be in * Do not change the order of buffers. databuf and oobrbuf must be in
...@@ -410,7 +410,7 @@ struct nand_buffers { ...@@ -410,7 +410,7 @@ struct nand_buffers {
* mtd->oobsize, mtd->writesize and so on. * mtd->oobsize, mtd->writesize and so on.
* @id_data contains the 8 bytes values of NAND_CMD_READID. * @id_data contains the 8 bytes values of NAND_CMD_READID.
* Return with the bus width. * Return with the bus width.
* @dev_ready: [BOARDSPECIFIC] hardwarespecific function for accesing * @dev_ready: [BOARDSPECIFIC] hardwarespecific function for accessing
* device ready/busy line. If set to NULL no access to * device ready/busy line. If set to NULL no access to
* ready/busy is available and the ready/busy information * ready/busy is available and the ready/busy information
* is read from the chip status register. * is read from the chip status register.
...@@ -418,7 +418,7 @@ struct nand_buffers { ...@@ -418,7 +418,7 @@ struct nand_buffers {
* commands to the chip. * commands to the chip.
* @waitfunc: [REPLACEABLE] hardwarespecific function for wait on * @waitfunc: [REPLACEABLE] hardwarespecific function for wait on
* ready. * ready.
* @ecc: [BOARDSPECIFIC] ecc control ctructure * @ecc: [BOARDSPECIFIC] ECC control structure
* @buffers: buffer structure for read/write * @buffers: buffer structure for read/write
* @hwcontrol: platform-specific hardware control structure * @hwcontrol: platform-specific hardware control structure
* @ops: oob operation operands * @ops: oob operation operands
...@@ -455,7 +455,7 @@ struct nand_buffers { ...@@ -455,7 +455,7 @@ struct nand_buffers {
* non 0 if ONFI supported. * non 0 if ONFI supported.
* @onfi_params: [INTERN] holds the ONFI page parameter when ONFI is * @onfi_params: [INTERN] holds the ONFI page parameter when ONFI is
* supported, 0 otherwise. * supported, 0 otherwise.
* @ecclayout: [REPLACEABLE] the default ecc placement scheme * @ecclayout: [REPLACEABLE] the default ECC placement scheme
* @bbt: [INTERN] bad block table pointer * @bbt: [INTERN] bad block table pointer
* @bbt_td: [REPLACEABLE] bad block table descriptor for flash * @bbt_td: [REPLACEABLE] bad block table descriptor for flash
* lookup. * lookup.
...@@ -463,7 +463,7 @@ struct nand_buffers { ...@@ -463,7 +463,7 @@ struct nand_buffers {
* @badblock_pattern: [REPLACEABLE] bad block scan pattern used for initial * @badblock_pattern: [REPLACEABLE] bad block scan pattern used for initial
* bad block scan. * bad block scan.
* @controller: [REPLACEABLE] a pointer to a hardware controller * @controller: [REPLACEABLE] a pointer to a hardware controller
* structure which is shared among multiple independend * structure which is shared among multiple independent
* devices. * devices.
* @priv: [OPTIONAL] pointer to private chip date * @priv: [OPTIONAL] pointer to private chip date
* @errstat: [OPTIONAL] hardware specific function to perform * @errstat: [OPTIONAL] hardware specific function to perform
...@@ -604,7 +604,7 @@ extern int nand_do_read(struct mtd_info *mtd, loff_t from, size_t len, ...@@ -604,7 +604,7 @@ extern int nand_do_read(struct mtd_info *mtd, loff_t from, size_t len,
* @chip_delay: R/B delay value in us * @chip_delay: R/B delay value in us
* @options: Option flags, e.g. 16bit buswidth * @options: Option flags, e.g. 16bit buswidth
* @bbt_options: BBT option flags, e.g. NAND_BBT_USE_FLASH * @bbt_options: BBT option flags, e.g. NAND_BBT_USE_FLASH
* @ecclayout: ecc layout info structure * @ecclayout: ECC layout info structure
* @part_probe_types: NULL-terminated array of probe types * @part_probe_types: NULL-terminated array of probe types
* @set_parts: platform specific function to set partitions * @set_parts: platform specific function to set partitions
* @priv: hardware controller specific settings * @priv: hardware controller specific settings
......
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