mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-23 22:34:21 +08:00
6ad8838de4
Clean-up incorrect indentation, extra spaces, and missing EOF newline in schema files. Most of the clean-ups are for list indentation which should always be 2 spaces more than the preceding keyword. Found with yamllint (now integrated into the checks). Cc: linux-arm-kernel@lists.infradead.org Cc: dri-devel@lists.freedesktop.org Cc: linux-gpio@vger.kernel.org Cc: linux-i2c@vger.kernel.org Cc: linux-iio@vger.kernel.org Cc: linux-pm@vger.kernel.org Cc: alsa-devel@alsa-project.org Cc: linux-mmc@vger.kernel.org Cc: linux-mtd@lists.infradead.org Cc: linux-serial@vger.kernel.org Cc: linux-usb@vger.kernel.org Acked-by: Wolfram Sang <wsa@kernel.org> # for I2C Acked-by: Sam Ravnborg <sam@ravnborg.org> # for display Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> #for-iio Signed-off-by: Rob Herring <robh@kernel.org>
101 lines
2.0 KiB
YAML
101 lines
2.0 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/pci/socionext,uniphier-pcie-ep.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Socionext UniPhier PCIe endpoint controller
|
|
|
|
description: |
|
|
UniPhier PCIe endpoint controller is based on the Synopsys DesignWare
|
|
PCI core. It shares common features with the PCIe DesignWare core and
|
|
inherits common properties defined in
|
|
Documentation/devicetree/bindings/pci/designware-pcie.txt.
|
|
|
|
maintainers:
|
|
- Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
|
|
|
|
allOf:
|
|
- $ref: "pci-ep.yaml#"
|
|
|
|
properties:
|
|
compatible:
|
|
const: socionext,uniphier-pro5-pcie-ep
|
|
|
|
reg:
|
|
minItems: 4
|
|
maxItems: 5
|
|
|
|
reg-names:
|
|
oneOf:
|
|
- items:
|
|
- const: dbi
|
|
- const: dbi2
|
|
- const: link
|
|
- const: addr_space
|
|
- items:
|
|
- const: dbi
|
|
- const: dbi2
|
|
- const: link
|
|
- const: addr_space
|
|
- const: atu
|
|
|
|
clocks:
|
|
maxItems: 2
|
|
|
|
clock-names:
|
|
items:
|
|
- const: gio
|
|
- const: link
|
|
|
|
resets:
|
|
maxItems: 2
|
|
|
|
reset-names:
|
|
items:
|
|
- const: gio
|
|
- const: link
|
|
|
|
num-ib-windows:
|
|
const: 16
|
|
|
|
num-ob-windows:
|
|
const: 16
|
|
|
|
num-lanes: true
|
|
|
|
phys:
|
|
maxItems: 1
|
|
|
|
phy-names:
|
|
const: pcie-phy
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- reg-names
|
|
- clocks
|
|
- clock-names
|
|
- resets
|
|
- reset-names
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
pcie_ep: pcie-ep@66000000 {
|
|
compatible = "socionext,uniphier-pro5-pcie-ep";
|
|
reg-names = "dbi", "dbi2", "link", "addr_space";
|
|
reg = <0x66000000 0x1000>, <0x66001000 0x1000>,
|
|
<0x66010000 0x10000>, <0x67000000 0x400000>;
|
|
clock-names = "gio", "link";
|
|
clocks = <&sys_clk 12>, <&sys_clk 24>;
|
|
reset-names = "gio", "link";
|
|
resets = <&sys_rst 12>, <&sys_rst 24>;
|
|
num-ib-windows = <16>;
|
|
num-ob-windows = <16>;
|
|
num-lanes = <4>;
|
|
phy-names = "pcie-phy";
|
|
phys = <&pcie_phy>;
|
|
};
|