cdns,cdns-pcie-ep.txt 978 B

123456789101112131415161718192021222324252627
  1. * Cadence PCIe endpoint controller
  2. Required properties:
  3. - compatible: Should contain "cdns,cdns-pcie-ep" to identify the IP used.
  4. - reg: Should contain the controller register base address and AXI interface
  5. region base address respectively.
  6. - reg-names: Must be "reg" and "mem" respectively.
  7. - cdns,max-outbound-regions: Set to maximum number of outbound regions
  8. Optional properties:
  9. - max-functions: Maximum number of functions that can be configured (default 1).
  10. - phys: From PHY bindings: List of Generic PHY phandles. One per lane if more
  11. than one in the list. If only one PHY listed it must manage all lanes.
  12. - phy-names: List of names to identify the PHY.
  13. Example:
  14. pcie@fc000000 {
  15. compatible = "cdns,cdns-pcie-ep";
  16. reg = <0x0 0xfc000000 0x0 0x01000000>,
  17. <0x0 0x80000000 0x0 0x40000000>;
  18. reg-names = "reg", "mem";
  19. cdns,max-outbound-regions = <16>;
  20. max-functions = /bits/ 8 <8>;
  21. phys = <&ep_phy0 &ep_phy1>;
  22. phy-names = "pcie-lane0","pcie-lane1";
  23. };