diff options
author | Tom Rini <trini@konsulko.com> | 2018-08-11 19:49:29 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-08-11 19:49:29 -0400 |
commit | 8fee226da36f799e69041b2ab381064693199c7f (patch) | |
tree | 8cf69d8d3cd8cca633c24b0f100c96e1fbd048f4 /Documentation/devicetree/bindings | |
parent | 282ce6454c45409805e2c470bbec170d21a4bd35 (diff) | |
parent | 7e86242b2bdb2983423a3a1f3ec375df56c7cac8 (diff) | |
download | u-boot-8fee226da36f799e69041b2ab381064693199c7f.tar.gz |
Merge branch 'agust@denx.de' of git://git.denx.de/u-boot-staging
Diffstat (limited to 'Documentation/devicetree/bindings')
-rw-r--r-- | Documentation/devicetree/bindings/misc/gdsys,io-endpoint.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/misc/gdsys,io-endpoint.txt b/Documentation/devicetree/bindings/misc/gdsys,io-endpoint.txt new file mode 100644 index 0000000000..db2ff8ca12 --- /dev/null +++ b/Documentation/devicetree/bindings/misc/gdsys,io-endpoint.txt @@ -0,0 +1,20 @@ +gdsys IO endpoint of IHS FPGA devices + +The IO endpoint of IHS FPGA devices is a packet-based transmission interface +that allows interconnected gdsys devices to send and receive data over the +FPGA's main ethernet connection. + +Required properties: +- compatible: must be "gdsys,io-endpoint" +- reg: describes the address and length of the endpoint's register map (within + the FPGA's register space) + +Example: + +fpga0_ep0 { + compatible = "gdsys,io-endpoint"; + reg = <0x020 0x10 + 0x320 0x10 + 0x340 0x10 + 0x360 0x10>; +}; |