aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/usb
diff options
context:
space:
mode:
authorAndrzej Pietrasiewicz <andrzej.p@samsung.com>2014-12-16 08:56:35 -0500
committerFelipe Balbi <balbi@ti.com>2015-01-12 13:13:25 -0500
commitd81b85dcf186f6fa4b59e5b8181e85366ebfdd61 (patch)
tree249e576bc290a69ad79915c29a2bb4f960c643f9 /Documentation/usb
parent4d0fa79e0ef78f516888068e240d38650eb404d2 (diff)
Documentation: usb: OBEX function testing
Summary of how to test OBEX function of USB gadget. Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'Documentation/usb')
-rw-r--r--Documentation/usb/gadget-testing.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/Documentation/usb/gadget-testing.txt b/Documentation/usb/gadget-testing.txt
index 493f79b96f91..c8ae54022ec8 100644
--- a/Documentation/usb/gadget-testing.txt
+++ b/Documentation/usb/gadget-testing.txt
@@ -11,6 +11,7 @@ provided by gadgets.
118. MASS STORAGE function 118. MASS STORAGE function
129. MIDI function 129. MIDI function
1310. NCM function 1310. NCM function
1411. OBEX function
14 15
15 16
161. ACM function 171. ACM function
@@ -400,3 +401,31 @@ Configure IP addresses of the device and the host. Then:
400 401
401On the device: ping <host's IP> 402On the device: ping <host's IP>
402On the host: ping <device's IP> 403On the host: ping <device's IP>
404
40511. OBEX function
406=================
407
408The function is provided by usb_f_obex.ko module.
409
410Function-specific configfs interface
411------------------------------------
412
413The function name to use when creating the function directory is "obex".
414The OBEX function provides just one attribute in its function directory:
415
416 port_num
417
418The attribute is read-only.
419
420There can be at most 4 ACM/generic serial/OBEX ports in the system.
421
422Testing the OBEX function
423-------------------------
424
425On device: seriald -f /dev/ttyGS<Y> -s 1024
426On host: serialc -v <vendorID> -p <productID> -i<interface#> -a1 -s1024 \
427 -t<out endpoint addr> -r<in endpoint addr>
428
429where seriald and serialc are Felipe's utilities found here:
430
431https://git.gitorious.org/usb/usb-tools.git master