xilinx-pr-decoupler.txt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. Xilinx LogiCORE Partial Reconfig Decoupler Softcore
  2. The Xilinx LogiCORE Partial Reconfig Decoupler manages one or more
  3. decouplers / fpga bridges.
  4. The controller can decouple/disable the bridges which prevents signal
  5. changes from passing through the bridge. The controller can also
  6. couple / enable the bridges which allows traffic to pass through the
  7. bridge normally.
  8. The Driver supports only MMIO handling. A PR region can have multiple
  9. PR Decouplers which can be handled independently or chained via decouple/
  10. decouple_status signals.
  11. Required properties:
  12. - compatible : Should contain "xlnx,pr-decoupler-1.00" followed by
  13. "xlnx,pr-decoupler"
  14. - regs : base address and size for decoupler module
  15. - clocks : input clock to IP
  16. - clock-names : should contain "aclk"
  17. Optional properties:
  18. - bridge-enable : 0 if driver should disable bridge at startup
  19. 1 if driver should enable bridge at startup
  20. Default is to leave bridge in current state.
  21. See Documentation/devicetree/bindings/fpga/fpga-region.txt for generic bindings.
  22. Example:
  23. fpga-bridge@100000450 {
  24. compatible = "xlnx,pr-decoupler-1.00",
  25. "xlnx-pr-decoupler";
  26. regs = <0x10000045 0x10>;
  27. clocks = <&clkc 15>;
  28. clock-names = "aclk";
  29. bridge-enable = <0>;
  30. };