mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-15 00:46:16 +07:00
4da722ca19
Pretty much any node can have a status property, so it doesn't need to be in examples. Converted with the following command and removed examples with SoC and board specific splits: git grep -l -E 'status.*=.*' Documentation/devicetree/ | xargs sed -i -E '/\sstatus.*=.*"(disabled|ok|okay)/d' Acked-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Rob Herring <robh@kernel.org>
29 lines
865 B
Plaintext
29 lines
865 B
Plaintext
Renesas HSPI.
|
|
|
|
Required properties:
|
|
- compatible : "renesas,hspi-<soctype>", "renesas,hspi" as fallback.
|
|
Examples with soctypes are:
|
|
- "renesas,hspi-r8a7778" (R-Car M1)
|
|
- "renesas,hspi-r8a7779" (R-Car H1)
|
|
- reg : Offset and length of the register set for the device
|
|
- interrupt-parent : The phandle for the interrupt controller that
|
|
services interrupts for this device
|
|
- interrupts : Interrupt specifier
|
|
- #address-cells : Must be <1>
|
|
- #size-cells : Must be <0>
|
|
|
|
Pinctrl properties might be needed, too. See
|
|
Documentation/devicetree/bindings/pinctrl/renesas,*.
|
|
|
|
Example:
|
|
|
|
hspi0: spi@fffc7000 {
|
|
compatible = "renesas,hspi-r8a7778", "renesas,hspi";
|
|
reg = <0xfffc7000 0x18>;
|
|
interrupt-parent = <&gic>;
|
|
interrupts = <0 63 IRQ_TYPE_LEVEL_HIGH>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
};
|
|
|