xref: /freebsd/sys/contrib/device-tree/Bindings/pci/ti,j721e-pci-host.yaml (revision 5def4c47d4bd90b209b9b4a4ba9faec15846d8fd)
1c66ec88fSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2c66ec88fSEmmanuel Vadot# Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com/
3c66ec88fSEmmanuel Vadot%YAML 1.2
4c66ec88fSEmmanuel Vadot---
5c66ec88fSEmmanuel Vadot$id: "http://devicetree.org/schemas/pci/ti,j721e-pci-host.yaml#"
6c66ec88fSEmmanuel Vadot$schema: "http://devicetree.org/meta-schemas/core.yaml#"
7c66ec88fSEmmanuel Vadot
8c66ec88fSEmmanuel Vadottitle: TI J721E PCI Host (PCIe Wrapper)
9c66ec88fSEmmanuel Vadot
10c66ec88fSEmmanuel Vadotmaintainers:
11c66ec88fSEmmanuel Vadot  - Kishon Vijay Abraham I <kishon@ti.com>
12c66ec88fSEmmanuel Vadot
13c66ec88fSEmmanuel VadotallOf:
14c66ec88fSEmmanuel Vadot  - $ref: "cdns-pcie-host.yaml#"
15c66ec88fSEmmanuel Vadot
16c66ec88fSEmmanuel Vadotproperties:
17c66ec88fSEmmanuel Vadot  compatible:
18*5def4c47SEmmanuel Vadot    oneOf:
19*5def4c47SEmmanuel Vadot      - description: PCIe controller in J7200
20*5def4c47SEmmanuel Vadot        items:
21*5def4c47SEmmanuel Vadot          - const: ti,j7200-pcie-host
22*5def4c47SEmmanuel Vadot          - const: ti,j721e-pcie-host
23*5def4c47SEmmanuel Vadot      - description: PCIe controller in J721E
24*5def4c47SEmmanuel Vadot        items:
25*5def4c47SEmmanuel Vadot          - const: ti,j721e-pcie-host
26c66ec88fSEmmanuel Vadot
27c66ec88fSEmmanuel Vadot  reg:
28c66ec88fSEmmanuel Vadot    maxItems: 4
29c66ec88fSEmmanuel Vadot
30c66ec88fSEmmanuel Vadot  reg-names:
31c66ec88fSEmmanuel Vadot    items:
32c66ec88fSEmmanuel Vadot      - const: intd_cfg
33c66ec88fSEmmanuel Vadot      - const: user_cfg
34c66ec88fSEmmanuel Vadot      - const: reg
35c66ec88fSEmmanuel Vadot      - const: cfg
36c66ec88fSEmmanuel Vadot
37c66ec88fSEmmanuel Vadot  ti,syscon-pcie-ctrl:
38*5def4c47SEmmanuel Vadot    $ref: /schemas/types.yaml#/definitions/phandle-array
39*5def4c47SEmmanuel Vadot    items:
40*5def4c47SEmmanuel Vadot      - items:
41*5def4c47SEmmanuel Vadot          - description: Phandle to the SYSCON entry
42*5def4c47SEmmanuel Vadot          - description: pcie_ctrl register offset within SYSCON
43*5def4c47SEmmanuel Vadot    description: Specifier for configuring PCIe mode and link speed.
44c66ec88fSEmmanuel Vadot
45c66ec88fSEmmanuel Vadot  power-domains:
46c66ec88fSEmmanuel Vadot    maxItems: 1
47c66ec88fSEmmanuel Vadot
48c66ec88fSEmmanuel Vadot  clocks:
49c66ec88fSEmmanuel Vadot    maxItems: 1
50c66ec88fSEmmanuel Vadot    description: clock-specifier to represent input to the PCIe
51c66ec88fSEmmanuel Vadot
52c66ec88fSEmmanuel Vadot  clock-names:
53c66ec88fSEmmanuel Vadot    items:
54c66ec88fSEmmanuel Vadot      - const: fck
55c66ec88fSEmmanuel Vadot
56c66ec88fSEmmanuel Vadot  vendor-id:
57c66ec88fSEmmanuel Vadot    const: 0x104c
58c66ec88fSEmmanuel Vadot
59c66ec88fSEmmanuel Vadot  device-id:
60*5def4c47SEmmanuel Vadot    oneOf:
61*5def4c47SEmmanuel Vadot      - items:
62*5def4c47SEmmanuel Vadot          - const: 0xb00d
63*5def4c47SEmmanuel Vadot      - items:
64*5def4c47SEmmanuel Vadot          - const: 0xb00f
65c66ec88fSEmmanuel Vadot
66c66ec88fSEmmanuel Vadot  msi-map: true
67c66ec88fSEmmanuel Vadot
68c66ec88fSEmmanuel Vadotrequired:
69c66ec88fSEmmanuel Vadot  - compatible
70c66ec88fSEmmanuel Vadot  - reg
71c66ec88fSEmmanuel Vadot  - reg-names
72c66ec88fSEmmanuel Vadot  - ti,syscon-pcie-ctrl
73c66ec88fSEmmanuel Vadot  - max-link-speed
74c66ec88fSEmmanuel Vadot  - num-lanes
75c66ec88fSEmmanuel Vadot  - power-domains
76c66ec88fSEmmanuel Vadot  - clocks
77c66ec88fSEmmanuel Vadot  - clock-names
78c66ec88fSEmmanuel Vadot  - vendor-id
79c66ec88fSEmmanuel Vadot  - device-id
80c66ec88fSEmmanuel Vadot  - msi-map
81c66ec88fSEmmanuel Vadot  - dma-coherent
82c66ec88fSEmmanuel Vadot  - dma-ranges
83c66ec88fSEmmanuel Vadot  - ranges
84c66ec88fSEmmanuel Vadot  - reset-gpios
85c66ec88fSEmmanuel Vadot  - phys
86c66ec88fSEmmanuel Vadot  - phy-names
87c66ec88fSEmmanuel Vadot
886be33864SEmmanuel VadotunevaluatedProperties: false
896be33864SEmmanuel Vadot
90c66ec88fSEmmanuel Vadotexamples:
91c66ec88fSEmmanuel Vadot  - |
92c66ec88fSEmmanuel Vadot    #include <dt-bindings/soc/ti,sci_pm_domain.h>
93c66ec88fSEmmanuel Vadot    #include <dt-bindings/gpio/gpio.h>
94c66ec88fSEmmanuel Vadot
95c66ec88fSEmmanuel Vadot    bus {
96c66ec88fSEmmanuel Vadot        #address-cells = <2>;
97c66ec88fSEmmanuel Vadot        #size-cells = <2>;
98c66ec88fSEmmanuel Vadot
99c66ec88fSEmmanuel Vadot        pcie0_rc: pcie@2900000 {
100c66ec88fSEmmanuel Vadot            compatible = "ti,j721e-pcie-host";
101c66ec88fSEmmanuel Vadot            reg = <0x00 0x02900000 0x00 0x1000>,
102c66ec88fSEmmanuel Vadot                  <0x00 0x02907000 0x00 0x400>,
103c66ec88fSEmmanuel Vadot                  <0x00 0x0d000000 0x00 0x00800000>,
104c66ec88fSEmmanuel Vadot                  <0x00 0x10000000 0x00 0x00001000>;
105c66ec88fSEmmanuel Vadot            reg-names = "intd_cfg", "user_cfg", "reg", "cfg";
106*5def4c47SEmmanuel Vadot            ti,syscon-pcie-ctrl = <&pcie0_ctrl 0x4070>;
107c66ec88fSEmmanuel Vadot            max-link-speed = <3>;
108c66ec88fSEmmanuel Vadot            num-lanes = <2>;
109c66ec88fSEmmanuel Vadot            power-domains = <&k3_pds 239 TI_SCI_PD_EXCLUSIVE>;
110c66ec88fSEmmanuel Vadot            clocks = <&k3_clks 239 1>;
111c66ec88fSEmmanuel Vadot            clock-names = "fck";
112c66ec88fSEmmanuel Vadot            device_type = "pci";
113c66ec88fSEmmanuel Vadot            #address-cells = <3>;
114c66ec88fSEmmanuel Vadot            #size-cells = <2>;
115c66ec88fSEmmanuel Vadot            bus-range = <0x0 0xf>;
116c66ec88fSEmmanuel Vadot            vendor-id = <0x104c>;
117c66ec88fSEmmanuel Vadot            device-id = <0xb00d>;
118c66ec88fSEmmanuel Vadot            msi-map = <0x0 &gic_its 0x0 0x10000>;
119c66ec88fSEmmanuel Vadot            dma-coherent;
120c66ec88fSEmmanuel Vadot            reset-gpios = <&exp1 6 GPIO_ACTIVE_HIGH>;
121c66ec88fSEmmanuel Vadot            phys = <&serdes0_pcie_link>;
122c66ec88fSEmmanuel Vadot            phy-names = "pcie-phy";
123c66ec88fSEmmanuel Vadot            ranges = <0x01000000 0x0 0x10001000  0x00 0x10001000  0x0 0x0010000>,
124c66ec88fSEmmanuel Vadot                     <0x02000000 0x0 0x10011000  0x00 0x10011000  0x0 0x7fef000>;
125c66ec88fSEmmanuel Vadot            dma-ranges = <0x02000000 0x0 0x0 0x0 0x0 0x10000 0x0>;
126c66ec88fSEmmanuel Vadot        };
127c66ec88fSEmmanuel Vadot    };
128