1* Cadence PCIe endpoint controller 2 3Required properties: 4- compatible: Should contain "cdns,cdns-pcie-ep" to identify the IP used. 5- reg: Should contain the controller register base address. 6 7Optional properties: 8- max-functions: Maximum number of functions that can be configured (default 1). 9- cdns,max-outbound-regions: Set to maximum number of outbound regions (default 8) 10 11Example: 12 13pcie_ep@fc000000 { 14 compatible = "cdns,cdns-pcie-ep"; 15 reg = <0x0 0xfc000000 0x0 0x01000000>; 16 cdns,max-outbound-regions = <16>; 17 max-functions = /bits/ 8 <8>; 18}; 19