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/spi/nvidia,tegra20-sflash.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 NVIDIA Tegra20 SFLASH controller.
    2 
    3 Required properties:
    4 - compatible : should be "nvidia,tegra20-sflash".
    5 - reg: Should contain SFLASH registers location and length.
    6 - interrupts: Should contain SFLASH interrupts.
    7 - clocks : Must contain one entry, for the module clock.
    8   See ../clocks/clock-bindings.txt for details.
    9 - resets : Must contain an entry for each entry in reset-names.
   10   See ../reset/reset.txt for details.
   11 - reset-names : Must include the following entries:
   12   - spi
   13 - dmas : Must contain an entry for each entry in clock-names.
   14   See ../dma/dma.txt for details.
   15 - dma-names : Must include the following entries:
   16   - rx
   17   - tx
   18 
   19 Recommended properties:
   20 - spi-max-frequency: Definition as per
   21                      Documentation/devicetree/bindings/spi/spi-bus.txt
   22 
   23 Example:
   24 
   25 spi@7000c380 {
   26         compatible = "nvidia,tegra20-sflash";
   27         reg = <0x7000c380 0x80>;
   28         interrupts = <0 39 0x04>;
   29         spi-max-frequency = <25000000>;
   30         #address-cells = <1>;
   31         #size-cells = <0>;
   32         clocks = <&tegra_car 43>;
   33         resets = <&tegra_car 43>;
   34         reset-names = "spi";
   35         dmas = <&apbdma 11>, <&apbdma 11>;
   36         dma-names = "rx", "tx";
   37 };

Cache object: c233a2c4a01981359ef5411fdfd2704e


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