aboutsummaryrefslogtreecommitdiff
path: root/include/linux/mtd/nand.h
AgeCommit message (Expand)AuthorFilesLines
2021-03-11mtd: nand: Add a helper to retrieve the number of ECC bytes per stepGravatar Miquel Raynal 1-0/+10
2021-03-11mtd: nand: Add a helper to retrieve the number of ECC stepsGravatar Miquel Raynal 1-0/+10
2021-03-11mtd: nand: Let ECC engines advertize the exact number of stepsGravatar Miquel Raynal 1-0/+2
2020-12-10mtd: nand: Add helpers to manage ECC engines and configurationsGravatar Miquel Raynal 1-0/+4
2020-12-10mtd: nand: Let on-die ECC engines be retrieved from the NAND coreGravatar Miquel Raynal 1-0/+1
2020-12-10mtd: nand: Let software ECC engines be retrieved from the NAND coreGravatar Miquel Raynal 1-0/+1
2020-12-10mtd: nand: ecc-hamming: Create the software Hamming engineGravatar Miquel Raynal 1-0/+9
2020-12-10mtd: nand: ecc-bch: Create the software BCH engineGravatar Miquel Raynal 1-0/+9
2020-11-30mtd: nand: ecc: Add an I/O request tweaking mechanismGravatar Miquel Raynal 1-0/+32
2020-09-28mtd: nand: Use the new generic ECC objectGravatar Miquel Raynal 1-7/+7
2020-09-28mtd: nand: Create helpers to set/extract the ECC requirementsGravatar Miquel Raynal 1-0/+24
2020-09-28mtd: nand: Create a helper to extract the ECC configurationGravatar Miquel Raynal 1-0/+10
2020-09-02mtd: nand: Introduce the ECC engine frameworkGravatar Miquel Raynal 1-0/+114
2020-08-27mtd: nand: Add a NAND page I/O request typeGravatar Miquel Raynal 1-2/+16
2020-08-27mtd: rawnand: Move the nand_ecc_algo enum to the generic NAND layerGravatar Miquel Raynal 1-0/+14
2020-06-26mtd: nand: Rename a core structureGravatar Miquel Raynal 1-4/+4
2020-06-26mtd: nand: Move nand_device forward declaration to the topGravatar Miquel Raynal 1-2/+2
2019-08-26mtd: nand: fix typo, s/erasablocks/eraseblocksGravatar Tudor Ambarus 1-1/+1
2019-04-08mtd: nand: Add a helper to retrieve the number of pages per targetGravatar Boris Brezillon 1-0/+14
2019-04-08mtd: nand: Add a helper returning the number of eraseblocks per targetGravatar Boris Brezillon 1-0/+12
2019-04-08mtd: nand: Add max_bad_eraseblocks_per_lun info to memorgGravatar Boris Brezillon 1-1/+5
2018-11-06mtd: nand: Fix nanddev_pos_next_page() kernel-doc headerGravatar Boris Brezillon 1-1/+1
2018-11-05mtd: nand: Fix nanddev_neraseblocks()Gravatar Boris Brezillon 1-3/+2
2018-06-01mtd: nand: Pass mode information to nand_page_io_reqGravatar Boris Brezillon 1-0/+3
2018-02-16mtd: nand: Add core infrastructure to deal with NAND devicesGravatar Boris Brezillon 1-0/+731
2017-08-13mtd: nand: Rename nand.h into rawnand.hGravatar Boris Brezillon 1-1331/+0
2017-07-13Merge tag 'for-linus-20170713' of git://git.infradead.org/linux-mtdGravatar Linus Torvalds 1-9/+71
2017-06-10mtd: nand: add a shorthand to generate nand_ecc_caps structureGravatar Masahiro Yamada 1-0/+14
2017-06-10mtd: nand: add generic helpers to check, match, maximize ECC settingsGravatar Masahiro Yamada 1-0/+33
2017-06-01mtd: nand: Drop the ->errstat() hookGravatar Boris Brezillon 1-5/+0
2017-06-01mtd: nand: Pass the CS line to ->setup_data_interface()Gravatar Boris Brezillon 1-4/+8
2017-06-01mtd: nand: add support for Micron on-die ECCGravatar Thomas Petazzoni 1-0/+2
2017-05-30mtd: nand: Make sure drivers not supporting SET/GET_FEATURES return -ENOTSUPPGravatar Boris Brezillon 1-0/+5
2017-05-18Merge remote-tracking branch 'mauro-exp/docbook3' into death-to-docbookGravatar Jonathan Corbet 1-1/+1
2017-05-16mtd: adjust kernel-docs to avoid Sphinx/kerneldoc warningsGravatar Mauro Carvalho Chehab 1-1/+1
2017-05-15mtd: nand: export nand_{read,write}_page_raw()Gravatar Thomas Petazzoni 1-0/+8
2017-05-15mtd: nand: add core support for on-die ECCGravatar Thomas Petazzoni 1-0/+1
2017-04-25mtd: nand: allow drivers to request minimum alignment for passed bufferGravatar Masahiro Yamada 1-0/+2
2017-04-25mtd: nand: relax ecc.read_page() return value for uncorrectable ECCGravatar Masahiro Yamada 1-1/+1
2017-04-25mtd: nand: Remove unused chip->write_page() hookGravatar Boris Brezillon 1-4/+0
2017-03-08mtd: nand: Move Macronix specific initialization in nand_macronix.cGravatar Boris Brezillon 1-0/+1
2017-03-08mtd: nand: Move AMD/Spansion specific init/detection logic in nand_amd.cGravatar Boris Brezillon 1-0/+1
2017-03-08mtd: nand: Move Micron specific init logic in nand_micron.cGravatar Boris Brezillon 1-20/+1
2017-03-08mtd: nand: Move Toshiba specific init/detection logic in nand_toshiba.cGravatar Boris Brezillon 1-0/+1
2017-03-08mtd: nand: Move Hynix specific init/detection logic in nand_hynix.cGravatar Boris Brezillon 1-0/+1
2017-03-08mtd: nand: Move Samsung specific init/detection logic in nand_samsung.cGravatar Boris Brezillon 1-0/+2
2017-03-08mtd: nand: Add manufacturer specific initialization/detection stepsGravatar Boris Brezillon 1-0/+35
2017-03-08mtd: nand: Do not expose the NAND manufacturer table directlyGravatar Boris Brezillon 1-1/+8
2017-03-08mtd: nand: Rename the nand_manufacturers structGravatar Boris Brezillon 1-3/+3
2017-03-08mtd: nand: Store nand ID in struct nand_chipGravatar Boris Brezillon 1-0/+13