thermal: fix Mediatek thermal controller build
[linux/fpc-iii.git] / Documentation / usb / chipidea.txt
blob678741b0f213e5e93b7c7930a6f9b307300de3ac
1 1. How to test OTG FSM(HNP and SRP)
2 -----------------------------------
3 To show how to demo OTG HNP and SRP functions via sys input files
4 with 2 Freescale i.MX6Q sabre SD boards.
6 1.1 How to enable OTG FSM in menuconfig
7 ---------------------------------------
8 Select CONFIG_USB_OTG_FSM, rebuild kernel Image and modules.
9 If you want to check some internal variables for otg fsm,
10 mount debugfs, there are 2 files which can show otg fsm
11 variables and some controller registers value:
12 cat /sys/kernel/debug/ci_hdrc.0/otg
13 cat /sys/kernel/debug/ci_hdrc.0/registers
15 1.2 Test operations
16 -------------------
17 1) Power up 2 Freescale i.MX6Q sabre SD boards with gadget class driver loaded
18    (e.g. g_mass_storage).
20 2) Connect 2 boards with usb cable with one end is micro A plug, the other end
21    is micro B plug.
23    The A-device(with micro A plug inserted) should enumrate B-device.
25 3) Role switch
26    On B-device:
27    echo 1 > /sys/bus/platform/devices/ci_hdrc.0/inputs/b_bus_req
29    B-device should take host role and enumrate A-device.
31 4) A-device switch back to host.
32    On B-device:
33    echo 0 > /sys/bus/platform/devices/ci_hdrc.0/inputs/b_bus_req
35    or, by introducing HNP polling, B-Host can know when A-peripheral wish
36    to be host role, so this role switch also can be trigged in A-peripheral
37    side by answering the polling from B-Host, this can be done on A-device:
38    echo 1 > /sys/bus/platform/devices/ci_hdrc.0/inputs/a_bus_req
40    A-device should switch back to host and enumrate B-device.
42 5) Remove B-device(unplug micro B plug) and insert again in 10 seconds,
43    A-device should enumrate B-device again.
45 6) Remove B-device(unplug micro B plug) and insert again after 10 seconds,
46    A-device should NOT enumrate B-device.
48    if A-device wants to use bus:
49    On A-device:
50    echo 0 > /sys/bus/platform/devices/ci_hdrc.0/inputs/a_bus_drop
51    echo 1 > /sys/bus/platform/devices/ci_hdrc.0/inputs/a_bus_req
53    if B-device wants to use bus:
54    On B-device:
55    echo 1 > /sys/bus/platform/devices/ci_hdrc.0/inputs/b_bus_req
57 7) A-device power down the bus.
58    On A-device:
59    echo 1 > /sys/bus/platform/devices/ci_hdrc.0/inputs/a_bus_drop
61    A-device should disconnect with B-device and power down the bus.
63 8) B-device does data pulse for SRP.
64    On B-device:
65    echo 1 > /sys/bus/platform/devices/ci_hdrc.0/inputs/b_bus_req
67    A-device should resume usb bus and enumrate B-device.
69 1.3 Reference document
70 ----------------------
71 "On-The-Go and Embedded Host Supplement to the USB Revision 2.0 Specification
72 July 27, 2012 Revision 2.0 version 1.1a"
74 2. How to enable USB as system wakeup source
75 -----------------------------------
76 Below is the example for how to enable USB as system wakeup source
77 at imx6 platform.
79 2.1 Enable core's wakeup
80 echo enabled > /sys/bus/platform/devices/ci_hdrc.0/power/wakeup
81 2.2 Enable glue layer's wakeup
82 echo enabled > /sys/bus/platform/devices/2184000.usb/power/wakeup
83 2.3 Enable PHY's wakeup (optional)
84 echo enabled > /sys/bus/platform/devices/20c9000.usbphy/power/wakeup
85 2.4 Enable roothub's wakeup
86 echo enabled > /sys/bus/usb/devices/usb1/power/wakeup
87 2.5 Enable related device's wakeup
88 echo enabled > /sys/bus/usb/devices/1-1/power/wakeup
90 If the system has only one usb port, and you want usb wakeup at this port, you
91 can use below script to enable usb wakeup.
92 for i in $(find /sys -name wakeup | grep usb);do echo enabled > $i;done;