diff options
author | Boris Brezillon <boris.brezillon@bootlin.com> | 2018-03-02 22:57:43 +0100 |
---|---|---|
committer | Boris Brezillon <boris.brezillon@bootlin.com> | 2018-03-02 22:57:43 +0100 |
commit | 3383fb35c9b886e54d04796964cae2cd757a11d8 (patch) | |
tree | 2bc1037a5767fdd34b703d0d6a689709e8b1d4a8 /Documentation | |
parent | d8757f4c59c9fafe5a1ce75a237164f268904b18 (diff) | |
parent | 048a4663a2a4b1b784f1c284d30873901148f009 (diff) | |
download | linux-3383fb35c9b886e54d04796964cae2cd757a11d8.tar.gz linux-3383fb35c9b886e54d04796964cae2cd757a11d8.tar.bz2 linux-3383fb35c9b886e54d04796964cae2cd757a11d8.zip |
Merge tag 'nand/pxa3xx-removal' of git://git.infradead.org/linux-mtd into nand/next
Remove the pxa3xx_nand driver (replaced by marvell_nand).
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/mtd/pxa3xx-nand.txt | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/Documentation/devicetree/bindings/mtd/pxa3xx-nand.txt b/Documentation/devicetree/bindings/mtd/pxa3xx-nand.txt deleted file mode 100644 index d4ee4da58463..000000000000 --- a/Documentation/devicetree/bindings/mtd/pxa3xx-nand.txt +++ /dev/null @@ -1,50 +0,0 @@ -PXA3xx NAND DT bindings - -Required properties: - - - compatible: Should be set to one of the following: - marvell,pxa3xx-nand - marvell,armada370-nand - marvell,armada-8k-nand - - reg: The register base for the controller - - interrupts: The interrupt to map - - #address-cells: Set to <1> if the node includes partitions - - marvell,system-controller: Set to retrieve the syscon node that handles - NAND controller related registers (only required - with marvell,armada-8k-nand compatible). - -Optional properties: - - - dmas: dma data channel, see dma.txt binding doc - - marvell,nand-enable-arbiter: Set to enable the bus arbiter - - marvell,nand-keep-config: Set to keep the NAND controller config as set - by the bootloader - - num-cs: Number of chipselect lines to use - - nand-on-flash-bbt: boolean to enable on flash bbt option if - not present false - - nand-ecc-strength: number of bits to correct per ECC step - - nand-ecc-step-size: number of data bytes covered by a single ECC step - -The following ECC strength and step size are currently supported: - - - nand-ecc-strength = <1>, nand-ecc-step-size = <512> - - nand-ecc-strength = <4>, nand-ecc-step-size = <512> - - nand-ecc-strength = <8>, nand-ecc-step-size = <512> - -Example: - - nand0: nand@43100000 { - compatible = "marvell,pxa3xx-nand"; - reg = <0x43100000 90>; - interrupts = <45>; - dmas = <&pdma 97 0>; - dma-names = "data"; - #address-cells = <1>; - - marvell,nand-enable-arbiter; - marvell,nand-keep-config; - num-cs = <1>; - - /* partitions (optional) */ - }; - |