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/oxnas-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 * Oxford Semiconductor OXNAS NAND Controller
    2 
    3 Please refer to nand-controller.yaml for generic information regarding MTD NAND bindings.
    4 
    5 Required properties:
    6  - compatible: "oxsemi,ox820-nand"
    7  - reg: Base address and length for NAND mapped memory.
    8 
    9 Optional Properties:
   10  - clocks: phandle to the NAND gate clock if needed.
   11  - resets: phandle to the NAND reset control if needed.
   12 
   13 Example:
   14 
   15 nandc: nand-controller@41000000 {
   16         compatible = "oxsemi,ox820-nand";
   17         reg = <0x41000000 0x100000>;
   18         clocks = <&stdclk CLK_820_NAND>;
   19         resets = <&reset RESET_NAND>;
   20         #address-cells = <1>;
   21         #size-cells = <0>;
   22 
   23         nand@0 {
   24                 reg = <0>;
   25                 #address-cells = <1>;
   26                 #size-cells = <1>;
   27                 nand-ecc-mode = "soft";
   28                 nand-ecc-algo = "hamming";
   29 
   30                 partition@0 {
   31                         label = "boot";
   32                         reg = <0x00000000 0x00e00000>;
   33                         read-only;
   34                 };
   35 
   36                 partition@e00000 {
   37                         label = "ubi";
   38                         reg = <0x00e00000 0x07200000>;
   39                 };
   40         };
   41 };

Cache object: 0e299c938f415c1672381c2190a2e9c5


[ 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.