mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-30 21:52:21 +00:00

@xilinx.com is still working but better to switch to new amd.com after AMD/Xilinx acquisition. Acked-by: Sebastian Reichel <sebastian.reichel@collabora.com> Acked-by: Wolfram Sang <wsa@kernel.org> # for I2C Acked-by: Mark Brown <broonie@kernel.org> Acked-by: Jassi Brar <jassisinghbrar@gmail.com> Acked-by: Damien Le Moal <dlemoal@kernel.org> Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Acked-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Michal Simek <michal.simek@amd.com> Link: https://lore.kernel.org/r/f5b2bd1e78407e4128fc8f0b5874ba723e710a88.1684245058.git.michal.simek@amd.com
117 lines
2.0 KiB
YAML
117 lines
2.0 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/gpio/gpio-zynq.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Xilinx Zynq GPIO controller
|
|
|
|
maintainers:
|
|
- Michal Simek <michal.simek@amd.com>
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- xlnx,zynq-gpio-1.0
|
|
- xlnx,zynqmp-gpio-1.0
|
|
- xlnx,versal-gpio-1.0
|
|
- xlnx,pmc-gpio-1.0
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
"#gpio-cells":
|
|
const: 2
|
|
|
|
interrupts:
|
|
maxItems: 1
|
|
|
|
gpio-controller: true
|
|
|
|
gpio-line-names:
|
|
description: strings describing the names of each gpio line
|
|
minItems: 58
|
|
maxItems: 174
|
|
|
|
interrupt-controller: true
|
|
|
|
"#interrupt-cells":
|
|
const: 2
|
|
|
|
clocks:
|
|
maxItems: 1
|
|
|
|
power-domains:
|
|
maxItems: 1
|
|
|
|
allOf:
|
|
- if:
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- xlnx,zynqmp-gpio-1.0
|
|
then:
|
|
properties:
|
|
gpio-line-names:
|
|
minItems: 174
|
|
maxItems: 174
|
|
|
|
- if:
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- xlnx,zynq-gpio-1.0
|
|
then:
|
|
properties:
|
|
gpio-line-names:
|
|
minItems: 118
|
|
maxItems: 118
|
|
|
|
- if:
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- xlnx,versal-gpio-1.0
|
|
then:
|
|
properties:
|
|
gpio-line-names:
|
|
minItems: 58
|
|
maxItems: 58
|
|
|
|
- if:
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- xlnx,pmc-gpio-1.0
|
|
then:
|
|
properties:
|
|
gpio-line-names:
|
|
minItems: 116
|
|
maxItems: 116
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- "#gpio-cells"
|
|
- interrupts
|
|
- gpio-controller
|
|
- interrupt-controller
|
|
- "#interrupt-cells"
|
|
- clocks
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
gpio@e000a000 {
|
|
#gpio-cells = <2>;
|
|
compatible = "xlnx,zynq-gpio-1.0";
|
|
clocks = <&clkc 42>;
|
|
gpio-controller;
|
|
interrupt-parent = <&intc>;
|
|
interrupts = <0 20 4>;
|
|
interrupt-controller;
|
|
#interrupt-cells = <2>;
|
|
reg = <0xe000a000 0x1000>;
|
|
};
|