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/mmc/synopsys-dw-mshc.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
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/mmc/synopsys-dw-mshc.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Synopsys Designware Mobile Storage Host Controller Binding
    8 
    9 allOf:
   10   - $ref: "synopsys-dw-mshc-common.yaml#"
   11 
   12 maintainers:
   13   - Ulf Hansson <ulf.hansson@linaro.org>
   14 
   15 # Everything else is described in the common file
   16 properties:
   17   compatible:
   18     enum:
   19       - altr,socfpga-dw-mshc
   20       - img,pistachio-dw-mshc
   21       - snps,dw-mshc
   22 
   23   reg:
   24     maxItems: 1
   25 
   26   interrupts:
   27     maxItems: 1
   28 
   29   clocks:
   30     minItems: 2
   31     maxItems: 2
   32     description:
   33       Handle to "biu" and "ciu" clocks for the
   34       bus interface unit clock and the card interface unit clock.
   35 
   36   clock-names:
   37     items:
   38       - const: biu
   39       - const: ciu
   40 
   41 required:
   42   - compatible
   43   - reg
   44   - interrupts
   45   - clocks
   46   - clock-names
   47 
   48 unevaluatedProperties: false
   49 
   50 examples:
   51   - |
   52     mmc@12200000 {
   53       compatible = "snps,dw-mshc";
   54       reg = <0x12200000 0x1000>;
   55       interrupts = <0 75 0>;
   56       clocks = <&clock 351>, <&clock 132>;
   57       clock-names = "biu", "ciu";
   58       dmas = <&pdma 12>;
   59       dma-names = "rx-tx";
   60       resets = <&rst 20>;
   61       reset-names = "reset";
   62       vmmc-supply = <&buck8>;
   63       #address-cells = <1>;
   64       #size-cells = <0>;
   65       broken-cd;
   66       bus-width = <8>;
   67       cap-mmc-highspeed;
   68       cap-sd-highspeed;
   69       card-detect-delay = <200>;
   70       max-frequency = <200000000>;
   71       clock-frequency = <400000000>;
   72       data-addr = <0x200>;
   73       fifo-depth = <0x80>;
   74       fifo-watermark-aligned;
   75     };

Cache object: e2bec10a283e21749f95cd1016d51935


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