mirror of
https://github.com/torvalds/linux.git
synced 2024-12-18 17:12:55 +00:00
7051924f77
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>
21 lines
631 B
Plaintext
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>;
|
|
} ;
|