mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-24 10:55:09 +00:00
656d8da9d2
Commit ad7061ed74
("doc: Move device tree bindings documentation to
doc/device-tree-bindings") moved all device tree binding documentation
to doc/device-tree-bindings directory.
The current U-Boot project still have two documentation directories:
- doc/
- Documentation/
Move all documentation and sphinx files to doc directory so all content
can be in a common place.
Signed-off-by: Breno Lima <breno.lima@nxp.com>
20 lines
544 B
Text
20 lines
544 B
Text
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>;
|
|
};
|