aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrzej Pietrasiewicz <andrzej.p@samsung.com>2014-12-16 08:56:26 -0500
committerFelipe Balbi <balbi@ti.com>2015-01-12 13:13:24 -0500
commitd5862ca6da545ec63ec2d2a8c687bf214c87e00e (patch)
tree5bdd92f7632814cb5aa90ec2f2743bd8dde0409c
parente38eb2c8cb435729579576b2b5bc5247ebcd6f5b (diff)
Documentation: usb: ECM function testing
Summary of how to test ECM function of USB gadget. Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
-rw-r--r--Documentation/usb/gadget-testing.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/Documentation/usb/gadget-testing.txt b/Documentation/usb/gadget-testing.txt
index 2a448f812f0e..7df8785fc70d 100644
--- a/Documentation/usb/gadget-testing.txt
+++ b/Documentation/usb/gadget-testing.txt
@@ -2,6 +2,7 @@ This file summarizes information on basic testing of USB functions
2provided by gadgets. 2provided by gadgets.
3 3
41. ACM function 41. ACM function
52. ECM function
5 6
6 7
71. ACM function 81. ACM function
@@ -32,3 +33,36 @@ then the other way round
32 33
33On the device: cat > /dev/ttyGS<Y> 34On the device: cat > /dev/ttyGS<Y>
34On the host: cat /dev/ttyACM<X> 35On the host: cat /dev/ttyACM<X>
36
372. ECM function
38===============
39
40The function is provided by usb_f_ecm.ko module.
41
42Function-specific configfs interface
43------------------------------------
44
45The function name to use when creating the function directory is "ecm".
46The ECM function provides these attributes in its function directory:
47
48 ifname - network device interface name associated with this
49 function instance
50 qmult - queue length multiplier for high and super speed
51 host_addr - MAC address of host's end of this
52 Ethernet over USB link
53 dev_addr - MAC address of device's end of this
54 Ethernet over USB link
55
56and after creating the functions/ecm.<instance name> they contain default
57values: qmult is 5, dev_addr and host_addr are randomly selected.
58Except for ifname they can be written to until the function is linked to a
59configuration. The ifname is read-only and contains the name of the interface
60which was assigned by the net core, e. g. usb0.
61
62Testing the ECM function
63------------------------
64
65Configure IP addresses of the device and the host. Then:
66
67On the device: ping <host's IP>
68On the host: ping <device's IP>