-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
spi: convert Xilinx Zynq UltraScale+ MPSoC GQSPI bindings to YAML
Convert spi for Xilinx Zynq UltraScale+ MPSoC GQSPI bindings documentation to YAML. Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> Reviewed-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20210613214317.296667-1-iwamatsu@nigauri.org Signed-off-by: Mark Brown <broonie@kernel.org>
- Loading branch information
Nobuhiro Iwamatsu
authored and
Mark Brown
committed
Jun 25, 2021
1 parent
b01d550
commit c58db2a
Showing
2 changed files
with
51 additions
and
25 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
51 changes: 51 additions & 0 deletions
51
Documentation/devicetree/bindings/spi/spi-zynqmp-qspi.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/spi/spi-zynqmp-qspi.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Xilinx Zynq UltraScale+ MPSoC GQSPI controller Device Tree Bindings | ||
|
||
maintainers: | ||
- Michal Simek <michal.simek@xilinx.com> | ||
|
||
allOf: | ||
- $ref: "spi-controller.yaml#" | ||
|
||
properties: | ||
compatible: | ||
const: xlnx,zynqmp-qspi-1.0 | ||
|
||
reg: | ||
maxItems: 2 | ||
|
||
interrupts: | ||
maxItems: 1 | ||
|
||
clock-names: | ||
items: | ||
- const: ref_clk | ||
- const: pclk | ||
|
||
clocks: | ||
maxItems: 2 | ||
|
||
unevaluatedProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/clock/xlnx-zynqmp-clk.h> | ||
soc { | ||
#address-cells = <2>; | ||
#size-cells = <2>; | ||
qspi: spi@ff0f0000 { | ||
compatible = "xlnx,zynqmp-qspi-1.0"; | ||
clocks = <&zynqmp_clk QSPI_REF>, <&zynqmp_clk LPD_LSBUS>; | ||
clock-names = "ref_clk", "pclk"; | ||
interrupts = <0 15 4>; | ||
interrupt-parent = <&gic>; | ||
reg = <0x0 0xff0f0000 0x0 0x1000>, | ||
<0x0 0xc0000000 0x0 0x8000000>; | ||
}; | ||
}; |