Searched +full:nand +full:- +full:use +full:- +full:soft +full:- +full:ecc +full:- +full:engine (Results 1 – 6 of 6) sorted by relevance
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)3 ---4 $id: http://devicetree.org/schemas/mtd/nand-chip.yaml#5 $schema: http://devicetree.org/meta-schemas/core.yaml#7 title: NAND Chip Common Properties10 - Miquel Raynal <miquel.raynal@bootlin.com>13 - $ref: mtd.yaml#16 This file covers the generic description of a NAND chip. It implies that the17 bus interface should not be taken into account: both raw NAND devices and18 SPI-NAND devices are concerned by this description.[all …]
1 Atmel NAND flash controller bindings3 The NAND flash controller node should be defined under the EBI bus (see4 Documentation/devicetree/bindings/memory-controllers/atmel,ebi.txt).5 One or several NAND devices can be defined under this NAND controller.6 The NAND controller might be connected to an ECC engine.8 * NAND controller bindings:11 - compatible: should be one of the following12 "atmel,at91rm9200-nand-controller"13 "atmel,at91sam9260-nand-controller"14 "atmel,at91sam9261-nand-controller"[all …]
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)3 ---4 $id: http://devicetree.org/schemas/mtd/raw-nand-chip.yaml#5 $schema: http://devicetree.org/meta-schemas/core.yaml#7 title: Raw NAND Chip Common Properties10 - Miquel Raynal <miquel.raynal@bootlin.com>13 - $ref: nand-chip.yaml#16 The ECC strength and ECC step size properties define the user18 they request the ECC engine to correct {strength} bit errors per19 {size} bytes for a particular raw NAND chip.[all …]
1 // SPDX-License-Identifier: GPL-2.0+3 * Generic Error-Correcting Code (ECC) engine10 * This file describes the abstraction of any NAND ECC engine. It has been11 * designed to fit most cases, including parallel NANDs and SPI-NANDs.13 * There are three main situations where instantiating this ECC engine makes15 * - external: The ECC engine is outside the NAND pipeline, typically this16 * is a software ECC engine, or an hardware engine that is17 * outside the NAND controller pipeline.18 * - pipelined: The ECC engine is inside the NAND pipeline, ie. on the19 * controller's side. This is the case of most of the raw NAND[all …]
1 // SPDX-License-Identifier: GPL-2.03 * Arasan NAND Flash Controller Driver5 * Copyright (C) 2014 - 2020 Xilinx, Inc.17 #include <linux/dma-mapping.h>114 #define ANFC_MAX_PKT_SIZE (SZ_2K - 1)124 * struct anfc_op - Defines how to execute an operation150 * struct anand - Defines the NAND chip related information151 * @node: Used to store NAND chips into a list152 * @chip: NAND chip information structure153 * @rb: Ready-busy line[all …]
1 // SPDX-License-Identifier: GPL-2.0-or-later3 * Copyright © 2004-2008 Simtec Electronics7 * Samsung S3C2410/S3C2440/S3C2412 NAND driver10 #define pr_fmt(fmt) "nand-s3c2410: " fmt34 #include <linux/platform_data/mtd-nand-s3c2410.h>71 /* new oob placement block for use with hardware ecc generation77 return -ERANGE; in s3c2410_ooblayout_ecc()79 oobregion->offset = 0; in s3c2410_ooblayout_ecc()80 oobregion->length = 3; in s3c2410_ooblayout_ecc()89 return -ERANGE; in s3c2410_ooblayout_free()[all …]