Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: xillybus: Added documentation on device tree bindings

Signed-off-by: Eli Billauer <eli.billauer@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Eli Billauer and committed by
Greg Kroah-Hartman
35afa9fc 4b266e5f

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