linux/Documentation/devicetree/bindings/xillybus/xillybus.txt
Eli Billauer 7051924f77 xillybus: Move out of staging
This driver has been functional and stable throughout the year it has spent
in the staging area. It has been patched for minor bugs, coding style issues
and improvements during this period.

This is the second submission of this move-out, after making several style
improvements, as suggested by Dan Carpenter.

Signed-off-by: Eli Billauer <eli.billauer@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2014-09-23 23:44:16 -07:00

21 lines
631 B
Plaintext

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