diff options
author | Andrzej Pietrasiewicz <andrzej.p@samsung.com> | 2014-12-16 08:56:26 -0500 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2015-01-12 13:13:24 -0500 |
commit | d5862ca6da545ec63ec2d2a8c687bf214c87e00e (patch) | |
tree | 5bdd92f7632814cb5aa90ec2f2743bd8dde0409c | |
parent | e38eb2c8cb435729579576b2b5bc5247ebcd6f5b (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.txt | 34 |
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 | |||
2 | provided by gadgets. | 2 | provided by gadgets. |
3 | 3 | ||
4 | 1. ACM function | 4 | 1. ACM function |
5 | 2. ECM function | ||
5 | 6 | ||
6 | 7 | ||
7 | 1. ACM function | 8 | 1. ACM function |
@@ -32,3 +33,36 @@ then the other way round | |||
32 | 33 | ||
33 | On the device: cat > /dev/ttyGS<Y> | 34 | On the device: cat > /dev/ttyGS<Y> |
34 | On the host: cat /dev/ttyACM<X> | 35 | On the host: cat /dev/ttyACM<X> |
36 | |||
37 | 2. ECM function | ||
38 | =============== | ||
39 | |||
40 | The function is provided by usb_f_ecm.ko module. | ||
41 | |||
42 | Function-specific configfs interface | ||
43 | ------------------------------------ | ||
44 | |||
45 | The function name to use when creating the function directory is "ecm". | ||
46 | The 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 | |||
56 | and after creating the functions/ecm.<instance name> they contain default | ||
57 | values: qmult is 5, dev_addr and host_addr are randomly selected. | ||
58 | Except for ifname they can be written to until the function is linked to a | ||
59 | configuration. The ifname is read-only and contains the name of the interface | ||
60 | which was assigned by the net core, e. g. usb0. | ||
61 | |||
62 | Testing the ECM function | ||
63 | ------------------------ | ||
64 | |||
65 | Configure IP addresses of the device and the host. Then: | ||
66 | |||
67 | On the device: ping <host's IP> | ||
68 | On the host: ping <device's IP> | ||