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/atmel-quadspi.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 * Atmel Quad Serial Peripheral Interface (QSPI)
    2 
    3 Required properties:
    4 - compatible:     Should be one of the following:
    5                   - "atmel,sama5d2-qspi"
    6                   - "microchip,sam9x60-qspi"
    7 - reg:            Should contain the locations and lengths of the base registers
    8                   and the mapped memory.
    9 - reg-names:      Should contain the resource reg names:
   10                   - qspi_base: configuration register address space
   11                   - qspi_mmap: memory mapped address space
   12 - interrupts:     Should contain the interrupt for the device.
   13 - clocks:         Should reference the peripheral clock and the QSPI system
   14                   clock if available.
   15 - clock-names:    Should contain "pclk" for the peripheral clock and "qspick"
   16                   for the system clock when available.
   17 - #address-cells: Should be <1>.
   18 - #size-cells:    Should be <0>.
   19 
   20 Example:
   21 
   22 spi@f0020000 {
   23         compatible = "atmel,sama5d2-qspi";
   24         reg = <0xf0020000 0x100>, <0xd0000000 0x8000000>;
   25         reg-names = "qspi_base", "qspi_mmap";
   26         interrupts = <52 IRQ_TYPE_LEVEL_HIGH 7>;
   27         clocks = <&pmc PMC_TYPE_PERIPHERAL 52>;
   28         clock-names = "pclk";
   29         #address-cells = <1>;
   30         #size-cells = <0>;
   31         pinctrl-names = "default";
   32         pinctrl-0 = <&pinctrl_spi0_default>;
   33 
   34         m25p80@0 {
   35                 ...
   36         };
   37 };

Cache object: 8532443d71da2e31fecb586caa18b6b4


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