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/renesas-nandc.yaml

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 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/mtd/renesas-nandc.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Renesas R-Car Gen3 & RZ/N1x NAND flash controller device tree bindings
    8 
    9 maintainers:
   10   - Miquel Raynal <miquel.raynal@bootlin.com>
   11 
   12 allOf:
   13   - $ref: "nand-controller.yaml"
   14 
   15 properties:
   16   compatible:
   17     oneOf:
   18       - items:
   19           - enum:
   20               - renesas,r9a06g032-nandc
   21           - const: renesas,rzn1-nandc
   22 
   23   reg:
   24     maxItems: 1
   25 
   26   interrupts:
   27     maxItems: 1
   28 
   29   clocks:
   30     items:
   31       - description: APB host controller clock
   32       - description: External NAND bus clock
   33 
   34   clock-names:
   35     items:
   36       - const: hclk
   37       - const: eclk
   38 
   39   power-domains:
   40     maxItems: 1
   41 
   42 required:
   43   - compatible
   44   - reg
   45   - clocks
   46   - clock-names
   47   - power-domains
   48   - interrupts
   49 
   50 unevaluatedProperties: false
   51 
   52 examples:
   53   - |
   54     #include <dt-bindings/interrupt-controller/arm-gic.h>
   55     #include <dt-bindings/clock/r9a06g032-sysctrl.h>
   56 
   57     nand-controller@40102000 {
   58         compatible = "renesas,r9a06g032-nandc", "renesas,rzn1-nandc";
   59         reg = <0x40102000 0x2000>;
   60         interrupts = <GIC_SPI 58 IRQ_TYPE_LEVEL_HIGH>;
   61         clocks = <&sysctrl R9A06G032_HCLK_NAND>, <&sysctrl R9A06G032_CLK_NAND>;
   62         clock-names = "hclk", "eclk";
   63         power-domains = <&sysctrl>;
   64         #address-cells = <1>;
   65         #size-cells = <0>;
   66     };

Cache object: 7584c08f93bf48654948d21bb60a1f8c


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