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/jcore,spi.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 J-Core SPI master
    2 
    3 Required properties:
    4 
    5 - compatible: Must be "jcore,spi2".
    6 
    7 - reg: Memory region for registers.
    8 
    9 - #address-cells: Must be 1.
   10 
   11 - #size-cells: Must be 0.
   12 
   13 Optional properties:
   14 
   15 - clocks: If a phandle named "ref_clk" is present, SPI clock speed
   16   programming is relative to the frequency of the indicated clock.
   17   Necessary only if the input clock rate is something other than a
   18   fixed 50 MHz.
   19 
   20 - clock-names: Clock names, one for each phandle in clocks.
   21 
   22 See spi-bus.txt for additional properties not specific to this device.
   23 
   24 Example:
   25 
   26 spi@40 {
   27         compatible = "jcore,spi2";
   28         #address-cells = <1>;
   29         #size-cells = <0>;
   30         reg = <0x40 0x8>;
   31         spi-max-frequency = <25000000>;
   32         clocks = <&bus_clk>;
   33         clock-names = "ref_clk";
   34 }

Cache object: 13de89426a804975883dbdc8a92fd7b0


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