The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/mtd/tango-nand.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 Sigma Designs Tango4 NAND Flash Controller (NFC)
    2 
    3 Required properties:
    4 
    5 - compatible: "sigma,smp8758-nand"
    6 - reg: address/size of nfc_reg, nfc_mem, and pbus_reg
    7 - dmas: reference to the DMA channel used by the controller
    8 - dma-names: "rxtx"
    9 - clocks: reference to the system clock
   10 - #address-cells: <1>
   11 - #size-cells: <0>
   12 
   13 Children nodes represent the available NAND chips.
   14 See Documentation/devicetree/bindings/mtd/nand-controller.yaml for generic bindings.
   15 
   16 Example:
   17 
   18         nandc: nand-controller@2c000 {
   19                 compatible = "sigma,smp8758-nand";
   20                 reg = <0x2c000 0x30>, <0x2d000 0x800>, <0x20000 0x1000>;
   21                 dmas = <&dma0 3>;
   22                 dma-names = "rxtx";
   23                 clocks = <&clkgen SYS_CLK>;
   24                 #address-cells = <1>;
   25                 #size-cells = <0>;
   26 
   27                 nand@0 {
   28                         reg = <0>; /* CS0 */
   29                         nand-ecc-strength = <14>;
   30                         nand-ecc-step-size = <1024>;
   31                 };
   32 
   33                 nand@1 {
   34                         reg = <1>; /* CS1 */
   35                         nand-ecc-strength = <14>;
   36                         nand-ecc-step-size = <1024>;
   37                 };
   38         };

Cache object: 020b67cce601a30dc5431c1fadd9904d


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.