~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/spi/omap-spi.yaml

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2 %YAML 1.2
  3 ---
  4 $id: http://devicetree.org/schemas/spi/omap-spi.yaml#
  5 $schema: http://devicetree.org/meta-schemas/core.yaml#
  6 
  7 title: SPI Controller on OMAP and K3 SoCs
  8 
  9 maintainers:
 10   - Aswath Govindraju <a-govindraju@ti.com>
 11 
 12 allOf:
 13   - $ref: spi-controller.yaml#
 14 
 15 properties:
 16   compatible:
 17     oneOf:
 18       - items:
 19           - enum:
 20               - ti,am654-mcspi
 21               - ti,am4372-mcspi
 22           - const: ti,omap4-mcspi
 23       - items:
 24           - enum:
 25               - ti,omap2-mcspi
 26               - ti,omap4-mcspi
 27 
 28   reg:
 29     maxItems: 1
 30 
 31   interrupts:
 32     maxItems: 1
 33 
 34   clocks:
 35     maxItems: 1
 36 
 37   power-domains:
 38     maxItems: 1
 39 
 40   ti,spi-num-cs:
 41     $ref: /schemas/types.yaml#/definitions/uint32
 42     description: Number of chipselect supported  by the instance.
 43     minimum: 1
 44     maximum: 4
 45 
 46   ti,hwmods:
 47     $ref: /schemas/types.yaml#/definitions/string
 48     description:
 49       Must be "mcspi<n>", n being the instance number (1-based).
 50       This property is applicable only on legacy platforms mainly omap2/3
 51       and ti81xx and should not be used on other platforms.
 52     deprecated: true
 53 
 54   ti,pindir-d0-out-d1-in:
 55     description:
 56       Select the D0 pin as output and D1 as input. The default is D0
 57       as input and D1 as output.
 58     type: boolean
 59 
 60   dmas:
 61     description:
 62       List of DMA specifiers with the controller specific format as
 63       described in the generic DMA client binding. A tx and rx
 64       specifier is required for each chip select.
 65     minItems: 1
 66     maxItems: 8
 67 
 68   dma-names:
 69     description:
 70       List of DMA request names. These strings correspond 1:1 with
 71       the DMA specifiers listed in dmas. The string names is to be
 72       "rxN" and "txN" for RX and TX requests, respectively. Where N
 73       is the chip select number.
 74     minItems: 1
 75     maxItems: 8
 76 
 77 required:
 78   - compatible
 79   - reg
 80   - interrupts
 81 
 82 unevaluatedProperties: false
 83 
 84 if:
 85   properties:
 86     compatible:
 87       enum:
 88         - ti,omap2-mcspi
 89         - ti,omap4-mcspi
 90 
 91 then:
 92   properties:
 93     ti,hwmods:
 94       items:
 95         - pattern: "^mcspi([1-9])$"
 96 
 97 else:
 98   properties:
 99     ti,hwmods: false
100 
101 examples:
102   - |
103     #include <dt-bindings/interrupt-controller/irq.h>
104     #include <dt-bindings/interrupt-controller/arm-gic.h>
105     #include <dt-bindings/soc/ti,sci_pm_domain.h>
106 
107     spi@2100000 {
108       compatible = "ti,am654-mcspi","ti,omap4-mcspi";
109       reg = <0x2100000 0x400>;
110       interrupts = <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>;
111       clocks = <&k3_clks 137 1>;
112       power-domains = <&k3_pds 137 TI_SCI_PD_EXCLUSIVE>;
113       #address-cells = <1>;
114       #size-cells = <0>;
115       dmas = <&main_udmap 0xc500>, <&main_udmap 0x4500>;
116       dma-names = "tx0", "rx0";
117     };

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php