xillybus.txt 631 B

1234567891011121314151617181920
  1. * Xillybus driver for generic FPGA interface
  2. Required properties:
  3. - compatible: Should be "xillybus,xillybus-1.00.a"
  4. - reg: Address and length of the register set for the device
  5. - interrupts: Contains one interrupt node, typically consisting of three cells.
  6. - interrupt-parent: the phandle for the interrupt controller that
  7. services interrupts for this device.
  8. Optional properties:
  9. - dma-coherent: Present if DMA operations are coherent
  10. Example:
  11. xillybus@ff200400 {
  12. compatible = "xillybus,xillybus-1.00.a";
  13. reg = < 0xff200400 0x00000080 >;
  14. interrupts = < 0 40 1 >;
  15. interrupt-parent = <&intc>;
  16. } ;