1 # SPDX-License-Identifier: GPL-2.0
4 $id: http://devicetree.org/schemas/spi/spi-controller.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: SPI Controller Generic Binding
10 - Mark Brown <broonie@kernel.org>
13 SPI busses can be described with a node for the SPI controller device
14 and a set of child nodes for each SPI slave on the bus. The system SPI
15 controller may be described for use in SPI master mode or in SPI slave mode,
16 but not for both at the same time.
20 pattern: "^spi(@.*|-[0-9a-f])*$"
30 GPIOs used as chip selects.
31 If that property is used, the number of chip selects will be
32 increased automatically with max(cs-gpios, hardware chip selects).
34 So if, for example, the controller has 4 CS lines, and the
35 cs-gpios looks like this
36 cs-gpios = <&gpio1 0 0>, <0>, <&gpio1 1 0>, <&gpio1 2 0>;
38 Then it should be configured so that num_chipselect = 4, with
45 The second flag of a gpio descriptor can be GPIO_ACTIVE_HIGH (0)
46 or GPIO_ACTIVE_LOW(1). Legacy device trees often use 0.
48 There is a special rule set for combining the second flag of an
49 cs-gpio with the optional spi-cs-high flag for SPI slaves.
51 Each table entry defines how the CS pin is to be physically
52 driven (not considering potential gpio inversions by pinmux):
54 device node | cs-gpio | CS pin state active | Note
55 ================+===============+=====================+=====
58 spi-cs-high | ACTIVE_HIGH | H |
59 - | ACTIVE_HIGH | L | 1
60 spi-cs-high | ACTIVE_LOW | H | 2
64 1) Should print a warning about polarity inversion.
65 Here it would be wise to avoid and define the gpio as
67 2) Should print a warning about polarity inversion
68 because ACTIVE_LOW is overridden by spi-cs-high.
69 Should be generally avoided and be replaced by
70 spi-cs-high + ACTIVE_HIGH.
73 $ref: /schemas/types.yaml#/definitions/uint32
75 Total number of chip selects.
78 $ref: /schemas/types.yaml#/definitions/flag
80 The SPI controller acts as a slave, instead of a master.
103 Compatible of the SPI device.
114 Compatible of the SPI device.
120 Chip select used by the device.
123 $ref: /schemas/types.yaml#/definitions/flag
125 The device requires 3-wire mode.
128 $ref: /schemas/types.yaml#/definitions/flag
130 The device requires shifted clock phase (CPHA) mode.
133 $ref: /schemas/types.yaml#/definitions/flag
135 The device requires inverse clock polarity (CPOL) mode.
138 $ref: /schemas/types.yaml#/definitions/flag
140 The device requires the chip select active high.
143 $ref: /schemas/types.yaml#/definitions/flag
145 The device requires the LSB first mode.
148 $ref: /schemas/types.yaml#/definitions/uint32
150 Maximum SPI clocking speed of the device in Hz.
154 Bus width to the SPI bus used for read transfers.
155 $ref: /schemas/types.yaml#/definitions/uint32
161 Delay, in microseconds, after a read transfer.
165 Bus width to the SPI bus used for write transfers.
166 $ref: /schemas/types.yaml#/definitions/uint32
172 Delay, in microseconds, after a write transfer.
178 additionalProperties: true
183 #address-cells = <1>;
185 compatible = "fsl,mpc5200b-spi","fsl,mpc5200-spi";
187 interrupts = <2 13 0 2 14 0>;
188 interrupt-parent = <&mpc5200_pic>;
191 compatible = "micrel,ks8995m";
192 spi-max-frequency = <1000000>;
197 compatible = "ti,tlv320aic26";
198 spi-max-frequency = <100000>;