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/spi-octeon.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 Cavium, Inc. OCTEON SOC SPI master controller.
    2 
    3 Required properties:
    4 - compatible : "cavium,octeon-3010-spi"
    5 - reg : The register base for the controller.
    6 - interrupts : One interrupt, used by the controller.
    7 - #address-cells : <1>, as required by generic SPI binding.
    8 - #size-cells : <0>, also as required by generic SPI binding.
    9 
   10 Child nodes as per the generic SPI binding.
   11 
   12 Example:
   13 
   14         spi@1070000001000 {
   15                 compatible = "cavium,octeon-3010-spi";
   16                 reg = <0x10700 0x00001000 0x0 0x100>;
   17                 interrupts = <0 58>;
   18                 #address-cells = <1>;
   19                 #size-cells = <0>;
   20 
   21                 eeprom@0 {
   22                         compatible = "st,m95256", "atmel,at25";
   23                         reg = <0>;
   24                         spi-max-frequency = <5000000>;
   25                         spi-cpha;
   26                         spi-cpol;
   27 
   28                         pagesize = <64>;
   29                         size = <32768>;
   30                         address-width = <16>;
   31                 };
   32         };
   33 

Cache object: a823b0d6d55a52bc42b0d9dfacfe9409


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