2023-02-14 23:18:32 -07:00
|
|
|
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
|
|
%YAML 1.2
|
|
|
|
---
|
|
|
|
$id: http://devicetree.org/schemas/pci/fsl,imx6q-pcie-ep.yaml#
|
|
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
|
|
|
|
title: Freescale i.MX6 PCIe Endpoint controller
|
|
|
|
|
|
|
|
maintainers:
|
|
|
|
- Lucas Stach <l.stach@pengutronix.de>
|
|
|
|
- Richard Zhu <hongxing.zhu@nxp.com>
|
|
|
|
|
|
|
|
description: |+
|
|
|
|
This PCIe controller is based on the Synopsys DesignWare PCIe IP and
|
|
|
|
thus inherits all the common properties defined in snps,dw-pcie-ep.yaml.
|
|
|
|
The controller instances are dual mode where in they can work either in
|
|
|
|
Root Port mode or Endpoint mode but one at a time.
|
|
|
|
|
|
|
|
properties:
|
|
|
|
compatible:
|
|
|
|
enum:
|
|
|
|
- fsl,imx8mm-pcie-ep
|
|
|
|
- fsl,imx8mq-pcie-ep
|
|
|
|
- fsl,imx8mp-pcie-ep
|
2024-02-20 09:19:23 -07:00
|
|
|
- fsl,imx95-pcie-ep
|
2023-02-14 23:18:32 -07:00
|
|
|
|
dt-bindings: PCI: fsl,imx6q: fix assigned-clocks warning
assigned-clocks are a dependency of clocks, however the dtschema has
limitation and expects clocks to be present in the binding using
assigned-clocks, not in other referenced bindings. The clocks were
defined in common fsl,imx6q-pcie-common.yaml, which is referenced by
fsl,imx6q-pcie-ep.yaml. The fsl,imx6q-pcie-ep.yaml used assigned-clocks
thus leading to warnings:
Documentation/devicetree/bindings/pci/fsl,imx6q-pcie-ep.example.dtb: pcie-ep@33800000:
Unevaluated properties are not allowed ('assigned-clock-parents', 'assigned-clock-rates', 'assigned-clocks' were unexpected)
From schema: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie-ep.yaml
Fix this by moving clocks to each specific schema from the common one
and narrowing them to strictly match what is expected for given device.
Fixes: b10f82380eeb ("dt-bindings: imx6q-pcie: Restruct i.MX PCIe schema")
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Reviewed-by: Richard Zhu <hongxing.zhu@nxp.com>
Link: https://lore.kernel.org/r/20230508071837.68552-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2023-05-08 00:18:37 -07:00
|
|
|
clocks:
|
|
|
|
minItems: 3
|
|
|
|
items:
|
|
|
|
- description: PCIe bridge clock.
|
|
|
|
- description: PCIe bus clock.
|
|
|
|
- description: PCIe PHY clock.
|
|
|
|
- description: Additional required clock entry for imx6sx-pcie,
|
|
|
|
imx6sx-pcie-ep, imx8mq-pcie, imx8mq-pcie-ep.
|
|
|
|
|
|
|
|
clock-names:
|
|
|
|
minItems: 3
|
|
|
|
maxItems: 4
|
|
|
|
|
2023-02-14 23:18:32 -07:00
|
|
|
interrupts:
|
|
|
|
items:
|
|
|
|
- description: builtin eDMA interrupter.
|
|
|
|
|
|
|
|
interrupt-names:
|
|
|
|
items:
|
|
|
|
- const: dma
|
|
|
|
|
|
|
|
required:
|
|
|
|
- compatible
|
|
|
|
- reg
|
|
|
|
- reg-names
|
|
|
|
- interrupts
|
|
|
|
- interrupt-names
|
|
|
|
|
|
|
|
allOf:
|
|
|
|
- $ref: /schemas/pci/snps,dw-pcie-ep.yaml#
|
|
|
|
- $ref: /schemas/pci/fsl,imx6q-pcie-common.yaml#
|
2024-02-20 09:19:23 -07:00
|
|
|
- if:
|
|
|
|
properties:
|
|
|
|
compatible:
|
|
|
|
enum:
|
|
|
|
- fsl,imx8mm-pcie-ep
|
|
|
|
- fsl,imx8mq-pcie-ep
|
|
|
|
- fsl,imx8mp-pcie-ep
|
|
|
|
then:
|
|
|
|
properties:
|
|
|
|
reg:
|
2024-08-13 00:42:20 -07:00
|
|
|
minItems: 4
|
|
|
|
maxItems: 4
|
2024-02-20 09:19:23 -07:00
|
|
|
reg-names:
|
|
|
|
items:
|
|
|
|
- const: dbi
|
|
|
|
- const: addr_space
|
2024-08-13 00:42:20 -07:00
|
|
|
- const: dbi2
|
|
|
|
- const: atu
|
2024-02-20 09:19:23 -07:00
|
|
|
|
|
|
|
- if:
|
|
|
|
properties:
|
|
|
|
compatible:
|
|
|
|
enum:
|
|
|
|
- fsl,imx95-pcie-ep
|
|
|
|
then:
|
|
|
|
properties:
|
|
|
|
reg:
|
|
|
|
minItems: 6
|
|
|
|
maxItems: 6
|
|
|
|
reg-names:
|
|
|
|
items:
|
|
|
|
- const: dbi
|
|
|
|
- const: atu
|
|
|
|
- const: dbi2
|
|
|
|
- const: app
|
|
|
|
- const: dma
|
|
|
|
- const: addr_space
|
|
|
|
|
dt-bindings: PCI: fsl,imx6q: fix assigned-clocks warning
assigned-clocks are a dependency of clocks, however the dtschema has
limitation and expects clocks to be present in the binding using
assigned-clocks, not in other referenced bindings. The clocks were
defined in common fsl,imx6q-pcie-common.yaml, which is referenced by
fsl,imx6q-pcie-ep.yaml. The fsl,imx6q-pcie-ep.yaml used assigned-clocks
thus leading to warnings:
Documentation/devicetree/bindings/pci/fsl,imx6q-pcie-ep.example.dtb: pcie-ep@33800000:
Unevaluated properties are not allowed ('assigned-clock-parents', 'assigned-clock-rates', 'assigned-clocks' were unexpected)
From schema: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie-ep.yaml
Fix this by moving clocks to each specific schema from the common one
and narrowing them to strictly match what is expected for given device.
Fixes: b10f82380eeb ("dt-bindings: imx6q-pcie: Restruct i.MX PCIe schema")
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Reviewed-by: Richard Zhu <hongxing.zhu@nxp.com>
Link: https://lore.kernel.org/r/20230508071837.68552-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2023-05-08 00:18:37 -07:00
|
|
|
- if:
|
|
|
|
properties:
|
|
|
|
compatible:
|
|
|
|
enum:
|
|
|
|
- fsl,imx8mq-pcie-ep
|
2024-02-20 09:19:23 -07:00
|
|
|
- fsl,imx95-pcie-ep
|
dt-bindings: PCI: fsl,imx6q: fix assigned-clocks warning
assigned-clocks are a dependency of clocks, however the dtschema has
limitation and expects clocks to be present in the binding using
assigned-clocks, not in other referenced bindings. The clocks were
defined in common fsl,imx6q-pcie-common.yaml, which is referenced by
fsl,imx6q-pcie-ep.yaml. The fsl,imx6q-pcie-ep.yaml used assigned-clocks
thus leading to warnings:
Documentation/devicetree/bindings/pci/fsl,imx6q-pcie-ep.example.dtb: pcie-ep@33800000:
Unevaluated properties are not allowed ('assigned-clock-parents', 'assigned-clock-rates', 'assigned-clocks' were unexpected)
From schema: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie-ep.yaml
Fix this by moving clocks to each specific schema from the common one
and narrowing them to strictly match what is expected for given device.
Fixes: b10f82380eeb ("dt-bindings: imx6q-pcie: Restruct i.MX PCIe schema")
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Reviewed-by: Richard Zhu <hongxing.zhu@nxp.com>
Link: https://lore.kernel.org/r/20230508071837.68552-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2023-05-08 00:18:37 -07:00
|
|
|
then:
|
|
|
|
properties:
|
|
|
|
clocks:
|
|
|
|
minItems: 4
|
|
|
|
clock-names:
|
|
|
|
items:
|
|
|
|
- const: pcie
|
|
|
|
- const: pcie_bus
|
|
|
|
- const: pcie_phy
|
|
|
|
- const: pcie_aux
|
|
|
|
else:
|
|
|
|
properties:
|
|
|
|
clocks:
|
|
|
|
maxItems: 3
|
|
|
|
clock-names:
|
|
|
|
items:
|
|
|
|
- const: pcie
|
|
|
|
- const: pcie_bus
|
|
|
|
- const: pcie_aux
|
|
|
|
|
2023-02-14 23:18:32 -07:00
|
|
|
|
|
|
|
unevaluatedProperties: false
|
|
|
|
|
|
|
|
examples:
|
|
|
|
- |
|
|
|
|
#include <dt-bindings/clock/imx8mp-clock.h>
|
|
|
|
#include <dt-bindings/power/imx8mp-power.h>
|
|
|
|
#include <dt-bindings/reset/imx8mp-reset.h>
|
|
|
|
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
|
|
|
|
|
|
|
pcie_ep: pcie-ep@33800000 {
|
|
|
|
compatible = "fsl,imx8mp-pcie-ep";
|
2024-08-13 00:42:20 -07:00
|
|
|
reg = <0x33800000 0x100000>,
|
|
|
|
<0x18000000 0x8000000>,
|
|
|
|
<0x33900000 0x100000>,
|
|
|
|
<0x33b00000 0x100000>;
|
|
|
|
reg-names = "dbi", "addr_space", "dbi2", "atu";
|
2023-02-14 23:18:32 -07:00
|
|
|
clocks = <&clk IMX8MP_CLK_HSIO_ROOT>,
|
|
|
|
<&clk IMX8MP_CLK_HSIO_AXI>,
|
|
|
|
<&clk IMX8MP_CLK_PCIE_ROOT>;
|
|
|
|
clock-names = "pcie", "pcie_bus", "pcie_aux";
|
|
|
|
assigned-clocks = <&clk IMX8MP_CLK_PCIE_AUX>;
|
|
|
|
assigned-clock-rates = <10000000>;
|
|
|
|
assigned-clock-parents = <&clk IMX8MP_SYS_PLL2_50M>;
|
|
|
|
num-lanes = <1>;
|
|
|
|
interrupts = <GIC_SPI 127 IRQ_TYPE_LEVEL_HIGH>; /* eDMA */
|
|
|
|
interrupt-names = "dma";
|
|
|
|
fsl,max-link-speed = <3>;
|
|
|
|
power-domains = <&hsio_blk_ctrl IMX8MP_HSIOBLK_PD_PCIE>;
|
|
|
|
resets = <&src IMX8MP_RESET_PCIE_CTRL_APPS_EN>,
|
|
|
|
<&src IMX8MP_RESET_PCIE_CTRL_APPS_TURNOFF>;
|
|
|
|
reset-names = "apps", "turnoff";
|
|
|
|
phys = <&pcie_phy>;
|
|
|
|
phy-names = "pcie-phy";
|
|
|
|
num-ib-windows = <4>;
|
|
|
|
num-ob-windows = <4>;
|
|
|
|
};
|