Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 1 | ============== |
| 2 | Gadget Testing |
| 3 | ============== |
| 4 | |
Andrzej Pietrasiewicz | e38eb2c | 2014-12-16 14:56:25 +0100 | [diff] [blame] | 5 | This file summarizes information on basic testing of USB functions |
| 6 | provided by gadgets. |
| 7 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 8 | .. contents |
| 9 | |
| 10 | 1. ACM function |
| 11 | 2. ECM function |
| 12 | 3. ECM subset function |
| 13 | 4. EEM function |
| 14 | 5. FFS function |
| 15 | 6. HID function |
| 16 | 7. LOOPBACK function |
| 17 | 8. MASS STORAGE function |
| 18 | 9. MIDI function |
| 19 | 10. NCM function |
| 20 | 11. OBEX function |
| 21 | 12. PHONET function |
| 22 | 13. RNDIS function |
| 23 | 14. SERIAL function |
| 24 | 15. SOURCESINK function |
| 25 | 16. UAC1 function (legacy implementation) |
| 26 | 17. UAC2 function |
| 27 | 18. UVC function |
| 28 | 19. PRINTER function |
| 29 | 20. UAC1 function (new API) |
Andrzej Pietrasiewicz | e38eb2c | 2014-12-16 14:56:25 +0100 | [diff] [blame] | 30 | |
| 31 | |
| 32 | 1. ACM function |
| 33 | =============== |
| 34 | |
| 35 | The function is provided by usb_f_acm.ko module. |
| 36 | |
| 37 | Function-specific configfs interface |
| 38 | ------------------------------------ |
| 39 | |
| 40 | The function name to use when creating the function directory is "acm". |
| 41 | The ACM function provides just one attribute in its function directory: |
| 42 | |
| 43 | port_num |
| 44 | |
| 45 | The attribute is read-only. |
| 46 | |
| 47 | There can be at most 4 ACM/generic serial/OBEX ports in the system. |
| 48 | |
| 49 | |
| 50 | Testing the ACM function |
| 51 | ------------------------ |
| 52 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 53 | On the host:: |
| 54 | |
| 55 | cat > /dev/ttyACM<X> |
| 56 | |
| 57 | On the device:: |
| 58 | |
| 59 | cat /dev/ttyGS<Y> |
Andrzej Pietrasiewicz | e38eb2c | 2014-12-16 14:56:25 +0100 | [diff] [blame] | 60 | |
| 61 | then the other way round |
| 62 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 63 | On the device:: |
| 64 | |
| 65 | cat > /dev/ttyGS<Y> |
| 66 | |
| 67 | On the host:: |
| 68 | |
| 69 | cat /dev/ttyACM<X> |
Andrzej Pietrasiewicz | d5862ca | 2014-12-16 14:56:26 +0100 | [diff] [blame] | 70 | |
| 71 | 2. ECM function |
| 72 | =============== |
| 73 | |
| 74 | The function is provided by usb_f_ecm.ko module. |
| 75 | |
| 76 | Function-specific configfs interface |
| 77 | ------------------------------------ |
| 78 | |
| 79 | The function name to use when creating the function directory is "ecm". |
| 80 | The ECM function provides these attributes in its function directory: |
| 81 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 82 | =============== ================================================== |
| 83 | ifname network device interface name associated with this |
Andrzej Pietrasiewicz | d5862ca | 2014-12-16 14:56:26 +0100 | [diff] [blame] | 84 | function instance |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 85 | qmult queue length multiplier for high and super speed |
| 86 | host_addr MAC address of host's end of this |
Andrzej Pietrasiewicz | d5862ca | 2014-12-16 14:56:26 +0100 | [diff] [blame] | 87 | Ethernet over USB link |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 88 | dev_addr MAC address of device's end of this |
Andrzej Pietrasiewicz | d5862ca | 2014-12-16 14:56:26 +0100 | [diff] [blame] | 89 | Ethernet over USB link |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 90 | =============== ================================================== |
Andrzej Pietrasiewicz | d5862ca | 2014-12-16 14:56:26 +0100 | [diff] [blame] | 91 | |
| 92 | and after creating the functions/ecm.<instance name> they contain default |
| 93 | values: qmult is 5, dev_addr and host_addr are randomly selected. |
Lorenzo Colitti | 63d1521 | 2021-01-14 08:42:22 +0900 | [diff] [blame] | 94 | The ifname can be written to if the function is not bound. A write must be an |
| 95 | interface pattern such as "usb%d", which will cause the net core to choose the |
| 96 | next free usbX interface. By default, it is set to "usb%d". |
Andrzej Pietrasiewicz | d5862ca | 2014-12-16 14:56:26 +0100 | [diff] [blame] | 97 | |
| 98 | Testing the ECM function |
| 99 | ------------------------ |
| 100 | |
| 101 | Configure IP addresses of the device and the host. Then: |
| 102 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 103 | On the device:: |
| 104 | |
| 105 | ping <host's IP> |
| 106 | |
| 107 | On the host:: |
| 108 | |
| 109 | ping <device's IP> |
Andrzej Pietrasiewicz | 7bfbc6e | 2014-12-16 14:56:27 +0100 | [diff] [blame] | 110 | |
| 111 | 3. ECM subset function |
| 112 | ====================== |
| 113 | |
| 114 | The function is provided by usb_f_ecm_subset.ko module. |
| 115 | |
| 116 | Function-specific configfs interface |
| 117 | ------------------------------------ |
| 118 | |
| 119 | The function name to use when creating the function directory is "geth". |
| 120 | The ECM subset function provides these attributes in its function directory: |
| 121 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 122 | =============== ================================================== |
| 123 | ifname network device interface name associated with this |
Andrzej Pietrasiewicz | 7bfbc6e | 2014-12-16 14:56:27 +0100 | [diff] [blame] | 124 | function instance |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 125 | qmult queue length multiplier for high and super speed |
| 126 | host_addr MAC address of host's end of this |
Andrzej Pietrasiewicz | 7bfbc6e | 2014-12-16 14:56:27 +0100 | [diff] [blame] | 127 | Ethernet over USB link |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 128 | dev_addr MAC address of device's end of this |
Andrzej Pietrasiewicz | 7bfbc6e | 2014-12-16 14:56:27 +0100 | [diff] [blame] | 129 | Ethernet over USB link |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 130 | =============== ================================================== |
Andrzej Pietrasiewicz | 7bfbc6e | 2014-12-16 14:56:27 +0100 | [diff] [blame] | 131 | |
| 132 | and after creating the functions/ecm.<instance name> they contain default |
| 133 | values: qmult is 5, dev_addr and host_addr are randomly selected. |
Lorenzo Colitti | 63d1521 | 2021-01-14 08:42:22 +0900 | [diff] [blame] | 134 | The ifname can be written to if the function is not bound. A write must be an |
| 135 | interface pattern such as "usb%d", which will cause the net core to choose the |
| 136 | next free usbX interface. By default, it is set to "usb%d". |
Andrzej Pietrasiewicz | 7bfbc6e | 2014-12-16 14:56:27 +0100 | [diff] [blame] | 137 | |
| 138 | Testing the ECM subset function |
| 139 | ------------------------------- |
| 140 | |
| 141 | Configure IP addresses of the device and the host. Then: |
| 142 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 143 | On the device:: |
| 144 | |
| 145 | ping <host's IP> |
| 146 | |
| 147 | On the host:: |
| 148 | |
| 149 | ping <device's IP> |
Andrzej Pietrasiewicz | 4ca560a | 2014-12-16 14:56:28 +0100 | [diff] [blame] | 150 | |
| 151 | 4. EEM function |
| 152 | =============== |
| 153 | |
| 154 | The function is provided by usb_f_eem.ko module. |
| 155 | |
| 156 | Function-specific configfs interface |
| 157 | ------------------------------------ |
| 158 | |
| 159 | The function name to use when creating the function directory is "eem". |
| 160 | The EEM function provides these attributes in its function directory: |
| 161 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 162 | =============== ================================================== |
| 163 | ifname network device interface name associated with this |
Andrzej Pietrasiewicz | 4ca560a | 2014-12-16 14:56:28 +0100 | [diff] [blame] | 164 | function instance |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 165 | qmult queue length multiplier for high and super speed |
| 166 | host_addr MAC address of host's end of this |
Andrzej Pietrasiewicz | 4ca560a | 2014-12-16 14:56:28 +0100 | [diff] [blame] | 167 | Ethernet over USB link |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 168 | dev_addr MAC address of device's end of this |
Andrzej Pietrasiewicz | 4ca560a | 2014-12-16 14:56:28 +0100 | [diff] [blame] | 169 | Ethernet over USB link |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 170 | =============== ================================================== |
Andrzej Pietrasiewicz | 4ca560a | 2014-12-16 14:56:28 +0100 | [diff] [blame] | 171 | |
| 172 | and after creating the functions/eem.<instance name> they contain default |
| 173 | values: qmult is 5, dev_addr and host_addr are randomly selected. |
Lorenzo Colitti | 63d1521 | 2021-01-14 08:42:22 +0900 | [diff] [blame] | 174 | The ifname can be written to if the function is not bound. A write must be an |
| 175 | interface pattern such as "usb%d", which will cause the net core to choose the |
| 176 | next free usbX interface. By default, it is set to "usb%d". |
Andrzej Pietrasiewicz | 4ca560a | 2014-12-16 14:56:28 +0100 | [diff] [blame] | 177 | |
| 178 | Testing the EEM function |
| 179 | ------------------------ |
| 180 | |
| 181 | Configure IP addresses of the device and the host. Then: |
| 182 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 183 | On the device:: |
| 184 | |
| 185 | ping <host's IP> |
| 186 | |
| 187 | On the host:: |
| 188 | |
| 189 | ping <device's IP> |
Andrzej Pietrasiewicz | 2c0f62f | 2014-12-16 14:56:29 +0100 | [diff] [blame] | 190 | |
| 191 | 5. FFS function |
| 192 | =============== |
| 193 | |
| 194 | The function is provided by usb_f_fs.ko module. |
| 195 | |
| 196 | Function-specific configfs interface |
| 197 | ------------------------------------ |
| 198 | |
| 199 | The function name to use when creating the function directory is "ffs". |
| 200 | The function directory is intentionally empty and not modifiable. |
| 201 | |
| 202 | After creating the directory there is a new instance (a "device") of FunctionFS |
| 203 | available in the system. Once a "device" is available, the user should follow |
| 204 | the standard procedure for using FunctionFS (mount it, run the userspace |
| 205 | process which implements the function proper). The gadget should be enabled |
| 206 | by writing a suitable string to usb_gadget/<gadget>/UDC. |
| 207 | |
| 208 | Testing the FFS function |
| 209 | ------------------------ |
| 210 | |
| 211 | On the device: start the function's userspace daemon, enable the gadget |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 212 | |
Andrzej Pietrasiewicz | 2c0f62f | 2014-12-16 14:56:29 +0100 | [diff] [blame] | 213 | On the host: use the USB function provided by the device |
Andrzej Pietrasiewicz | f7e3c3c | 2014-12-16 14:56:30 +0100 | [diff] [blame] | 214 | |
| 215 | 6. HID function |
| 216 | =============== |
| 217 | |
| 218 | The function is provided by usb_f_hid.ko module. |
| 219 | |
| 220 | Function-specific configfs interface |
| 221 | ------------------------------------ |
| 222 | |
| 223 | The function name to use when creating the function directory is "hid". |
| 224 | The HID function provides these attributes in its function directory: |
| 225 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 226 | =============== =========================================== |
| 227 | protocol HID protocol to use |
| 228 | report_desc data to be used in HID reports, except data |
Andrzej Pietrasiewicz | f7e3c3c | 2014-12-16 14:56:30 +0100 | [diff] [blame] | 229 | passed with /dev/hidg<X> |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 230 | report_length HID report length |
| 231 | subclass HID subclass to use |
| 232 | =============== =========================================== |
Andrzej Pietrasiewicz | f7e3c3c | 2014-12-16 14:56:30 +0100 | [diff] [blame] | 233 | |
| 234 | For a keyboard the protocol and the subclass are 1, the report_length is 8, |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 235 | while the report_desc is:: |
Andrzej Pietrasiewicz | f7e3c3c | 2014-12-16 14:56:30 +0100 | [diff] [blame] | 236 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 237 | $ hd my_report_desc |
| 238 | 00000000 05 01 09 06 a1 01 05 07 19 e0 29 e7 15 00 25 01 |..........)...%.| |
| 239 | 00000010 75 01 95 08 81 02 95 01 75 08 81 03 95 05 75 01 |u.......u.....u.| |
| 240 | 00000020 05 08 19 01 29 05 91 02 95 01 75 03 91 03 95 06 |....).....u.....| |
| 241 | 00000030 75 08 15 00 25 65 05 07 19 00 29 65 81 00 c0 |u...%e....)e...| |
| 242 | 0000003f |
Andrzej Pietrasiewicz | f7e3c3c | 2014-12-16 14:56:30 +0100 | [diff] [blame] | 243 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 244 | Such a sequence of bytes can be stored to the attribute with echo:: |
Andrzej Pietrasiewicz | f7e3c3c | 2014-12-16 14:56:30 +0100 | [diff] [blame] | 245 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 246 | $ echo -ne \\x05\\x01\\x09\\x06\\xa1..... |
Andrzej Pietrasiewicz | f7e3c3c | 2014-12-16 14:56:30 +0100 | [diff] [blame] | 247 | |
| 248 | Testing the HID function |
| 249 | ------------------------ |
| 250 | |
| 251 | Device: |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 252 | |
Andrzej Pietrasiewicz | f7e3c3c | 2014-12-16 14:56:30 +0100 | [diff] [blame] | 253 | - create the gadget |
| 254 | - connect the gadget to a host, preferably not the one used |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 255 | to control the gadget |
Andrzej Pietrasiewicz | f7e3c3c | 2014-12-16 14:56:30 +0100 | [diff] [blame] | 256 | - run a program which writes to /dev/hidg<N>, e.g. |
Mauro Carvalho Chehab | ecefae6 | 2019-06-18 18:05:38 -0300 | [diff] [blame] | 257 | a userspace program found in Documentation/usb/gadget_hid.rst:: |
Andrzej Pietrasiewicz | f7e3c3c | 2014-12-16 14:56:30 +0100 | [diff] [blame] | 258 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 259 | $ ./hid_gadget_test /dev/hidg0 keyboard |
Andrzej Pietrasiewicz | f7e3c3c | 2014-12-16 14:56:30 +0100 | [diff] [blame] | 260 | |
| 261 | Host: |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 262 | |
Andrzej Pietrasiewicz | f7e3c3c | 2014-12-16 14:56:30 +0100 | [diff] [blame] | 263 | - observe the keystrokes from the gadget |
Andrzej Pietrasiewicz | ec91aff | 2014-12-16 14:56:31 +0100 | [diff] [blame] | 264 | |
| 265 | 7. LOOPBACK function |
| 266 | ==================== |
| 267 | |
| 268 | The function is provided by usb_f_ss_lb.ko module. |
| 269 | |
| 270 | Function-specific configfs interface |
| 271 | ------------------------------------ |
| 272 | |
| 273 | The function name to use when creating the function directory is "Loopback". |
| 274 | The LOOPBACK function provides these attributes in its function directory: |
| 275 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 276 | =============== ======================= |
| 277 | qlen depth of loopback queue |
| 278 | bulk_buflen buffer length |
| 279 | =============== ======================= |
Andrzej Pietrasiewicz | ec91aff | 2014-12-16 14:56:31 +0100 | [diff] [blame] | 280 | |
| 281 | Testing the LOOPBACK function |
| 282 | ----------------------------- |
| 283 | |
| 284 | device: run the gadget |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 285 | |
Peter Chen | f811a38 | 2015-07-31 16:36:30 +0800 | [diff] [blame] | 286 | host: test-usb (tools/usb/testusb.c) |
Andrzej Pietrasiewicz | cdbe287 | 2014-12-16 14:56:32 +0100 | [diff] [blame] | 287 | |
| 288 | 8. MASS STORAGE function |
| 289 | ======================== |
| 290 | |
| 291 | The function is provided by usb_f_mass_storage.ko module. |
| 292 | |
| 293 | Function-specific configfs interface |
| 294 | ------------------------------------ |
| 295 | |
| 296 | The function name to use when creating the function directory is "mass_storage". |
| 297 | The MASS STORAGE function provides these attributes in its directory: |
| 298 | files: |
| 299 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 300 | =============== ============================================== |
| 301 | stall Set to permit function to halt bulk endpoints. |
Andrzej Pietrasiewicz | cdbe287 | 2014-12-16 14:56:32 +0100 | [diff] [blame] | 302 | Disabled on some USB devices known not to work |
| 303 | correctly. You should set it to true. |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 304 | num_buffers Number of pipeline buffers. Valid numbers |
Andrzej Pietrasiewicz | cdbe287 | 2014-12-16 14:56:32 +0100 | [diff] [blame] | 305 | are 2..4. Available only if |
| 306 | CONFIG_USB_GADGET_DEBUG_FILES is set. |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 307 | =============== ============================================== |
Andrzej Pietrasiewicz | cdbe287 | 2014-12-16 14:56:32 +0100 | [diff] [blame] | 308 | |
| 309 | and a default lun.0 directory corresponding to SCSI LUN #0. |
| 310 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 311 | A new lun can be added with mkdir:: |
Andrzej Pietrasiewicz | cdbe287 | 2014-12-16 14:56:32 +0100 | [diff] [blame] | 312 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 313 | $ mkdir functions/mass_storage.0/partition.5 |
Andrzej Pietrasiewicz | cdbe287 | 2014-12-16 14:56:32 +0100 | [diff] [blame] | 314 | |
| 315 | Lun numbering does not have to be continuous, except for lun #0 which is |
| 316 | created by default. A maximum of 8 luns can be specified and they all must be |
| 317 | named following the <name>.<number> scheme. The numbers can be 0..8. |
| 318 | Probably a good convention is to name the luns "lun.<number>", |
| 319 | although it is not mandatory. |
| 320 | |
| 321 | In each lun directory there are the following attribute files: |
| 322 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 323 | =============== ============================================== |
| 324 | file The path to the backing file for the LUN. |
Andrzej Pietrasiewicz | cdbe287 | 2014-12-16 14:56:32 +0100 | [diff] [blame] | 325 | Required if LUN is not marked as removable. |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 326 | ro Flag specifying access to the LUN shall be |
Andrzej Pietrasiewicz | cdbe287 | 2014-12-16 14:56:32 +0100 | [diff] [blame] | 327 | read-only. This is implied if CD-ROM emulation |
| 328 | is enabled as well as when it was impossible |
| 329 | to open "filename" in R/W mode. |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 330 | removable Flag specifying that LUN shall be indicated as |
Andrzej Pietrasiewicz | cdbe287 | 2014-12-16 14:56:32 +0100 | [diff] [blame] | 331 | being removable. |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 332 | cdrom Flag specifying that LUN shall be reported as |
Andrzej Pietrasiewicz | cdbe287 | 2014-12-16 14:56:32 +0100 | [diff] [blame] | 333 | being a CD-ROM. |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 334 | nofua Flag specifying that FUA flag |
Andrzej Pietrasiewicz | cdbe287 | 2014-12-16 14:56:32 +0100 | [diff] [blame] | 335 | in SCSI WRITE(10,12) |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 336 | =============== ============================================== |
Andrzej Pietrasiewicz | cdbe287 | 2014-12-16 14:56:32 +0100 | [diff] [blame] | 337 | |
| 338 | Testing the MASS STORAGE function |
| 339 | --------------------------------- |
| 340 | |
| 341 | device: connect the gadget, enable it |
| 342 | host: dmesg, see the USB drives appear (if system configured to automatically |
| 343 | mount) |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 344 | |
| 345 | 9. MIDI function |
| 346 | ================ |
| 347 | |
| 348 | The function is provided by usb_f_midi.ko module. |
| 349 | |
| 350 | Function-specific configfs interface |
| 351 | ------------------------------------ |
| 352 | |
| 353 | The function name to use when creating the function directory is "midi". |
| 354 | The MIDI function provides these attributes in its function directory: |
| 355 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 356 | =============== ==================================== |
| 357 | buflen MIDI buffer length |
| 358 | id ID string for the USB MIDI adapter |
| 359 | in_ports number of MIDI input ports |
| 360 | index index value for the USB MIDI adapter |
| 361 | out_ports number of MIDI output ports |
| 362 | qlen USB read request queue length |
| 363 | =============== ==================================== |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 364 | |
| 365 | Testing the MIDI function |
| 366 | ------------------------- |
| 367 | |
| 368 | There are two cases: playing a mid from the gadget to |
| 369 | the host and playing a mid from the host to the gadget. |
| 370 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 371 | 1) Playing a mid from the gadget to the host: |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 372 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 373 | host:: |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 374 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 375 | $ arecordmidi -l |
| 376 | Port Client name Port name |
| 377 | 14:0 Midi Through Midi Through Port-0 |
| 378 | 24:0 MIDI Gadget MIDI Gadget MIDI 1 |
| 379 | $ arecordmidi -p 24:0 from_gadget.mid |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 380 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 381 | gadget:: |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 382 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 383 | $ aplaymidi -l |
| 384 | Port Client name Port name |
| 385 | 20:0 f_midi f_midi |
| 386 | |
| 387 | $ aplaymidi -p 20:0 to_host.mid |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 388 | |
| 389 | 2) Playing a mid from the host to the gadget |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 390 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 391 | gadget:: |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 392 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 393 | $ arecordmidi -l |
| 394 | Port Client name Port name |
| 395 | 20:0 f_midi f_midi |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 396 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 397 | $ arecordmidi -p 20:0 from_host.mid |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 398 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 399 | host:: |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 400 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 401 | $ aplaymidi -l |
| 402 | Port Client name Port name |
| 403 | 14:0 Midi Through Midi Through Port-0 |
| 404 | 24:0 MIDI Gadget MIDI Gadget MIDI 1 |
| 405 | |
| 406 | $ aplaymidi -p24:0 to_gadget.mid |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 407 | |
| 408 | The from_gadget.mid should sound identical to the to_host.mid. |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 409 | |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 410 | The from_host.id should sound identical to the to_gadget.mid. |
| 411 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 412 | MIDI files can be played to speakers/headphones with e.g. timidity installed:: |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 413 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 414 | $ aplaymidi -l |
| 415 | Port Client name Port name |
| 416 | 14:0 Midi Through Midi Through Port-0 |
| 417 | 24:0 MIDI Gadget MIDI Gadget MIDI 1 |
| 418 | 128:0 TiMidity TiMidity port 0 |
| 419 | 128:1 TiMidity TiMidity port 1 |
| 420 | 128:2 TiMidity TiMidity port 2 |
| 421 | 128:3 TiMidity TiMidity port 3 |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 422 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 423 | $ aplaymidi -p 128:0 file.mid |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 424 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 425 | MIDI ports can be logically connected using the aconnect utility, e.g.:: |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 426 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 427 | $ aconnect 24:0 128:0 # try it on the host |
Andrzej Pietrasiewicz | 0d6be59 | 2014-12-16 14:56:33 +0100 | [diff] [blame] | 428 | |
| 429 | After the gadget's MIDI port is connected to timidity's MIDI port, |
| 430 | whatever is played at the gadget side with aplaymidi -l is audible |
| 431 | in host's speakers/headphones. |
Andrzej Pietrasiewicz | 4d0fa79 | 2014-12-16 14:56:34 +0100 | [diff] [blame] | 432 | |
| 433 | 10. NCM function |
| 434 | ================ |
| 435 | |
| 436 | The function is provided by usb_f_ncm.ko module. |
| 437 | |
| 438 | Function-specific configfs interface |
| 439 | ------------------------------------ |
| 440 | |
| 441 | The function name to use when creating the function directory is "ncm". |
| 442 | The NCM function provides these attributes in its function directory: |
| 443 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 444 | =============== ================================================== |
| 445 | ifname network device interface name associated with this |
Andrzej Pietrasiewicz | 4d0fa79 | 2014-12-16 14:56:34 +0100 | [diff] [blame] | 446 | function instance |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 447 | qmult queue length multiplier for high and super speed |
| 448 | host_addr MAC address of host's end of this |
Andrzej Pietrasiewicz | 4d0fa79 | 2014-12-16 14:56:34 +0100 | [diff] [blame] | 449 | Ethernet over USB link |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 450 | dev_addr MAC address of device's end of this |
Andrzej Pietrasiewicz | 4d0fa79 | 2014-12-16 14:56:34 +0100 | [diff] [blame] | 451 | Ethernet over USB link |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 452 | =============== ================================================== |
Andrzej Pietrasiewicz | 4d0fa79 | 2014-12-16 14:56:34 +0100 | [diff] [blame] | 453 | |
| 454 | and after creating the functions/ncm.<instance name> they contain default |
| 455 | values: qmult is 5, dev_addr and host_addr are randomly selected. |
Lorenzo Colitti | 63d1521 | 2021-01-14 08:42:22 +0900 | [diff] [blame] | 456 | The ifname can be written to if the function is not bound. A write must be an |
| 457 | interface pattern such as "usb%d", which will cause the net core to choose the |
| 458 | next free usbX interface. By default, it is set to "usb%d". |
Andrzej Pietrasiewicz | 4d0fa79 | 2014-12-16 14:56:34 +0100 | [diff] [blame] | 459 | |
| 460 | Testing the NCM function |
| 461 | ------------------------ |
| 462 | |
| 463 | Configure IP addresses of the device and the host. Then: |
| 464 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 465 | On the device:: |
| 466 | |
| 467 | ping <host's IP> |
| 468 | |
| 469 | On the host:: |
| 470 | |
| 471 | ping <device's IP> |
Andrzej Pietrasiewicz | d81b85d | 2014-12-16 14:56:35 +0100 | [diff] [blame] | 472 | |
| 473 | 11. OBEX function |
| 474 | ================= |
| 475 | |
| 476 | The function is provided by usb_f_obex.ko module. |
| 477 | |
| 478 | Function-specific configfs interface |
| 479 | ------------------------------------ |
| 480 | |
| 481 | The function name to use when creating the function directory is "obex". |
| 482 | The OBEX function provides just one attribute in its function directory: |
| 483 | |
| 484 | port_num |
| 485 | |
| 486 | The attribute is read-only. |
| 487 | |
| 488 | There can be at most 4 ACM/generic serial/OBEX ports in the system. |
| 489 | |
| 490 | Testing the OBEX function |
| 491 | ------------------------- |
| 492 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 493 | On device:: |
| 494 | |
| 495 | seriald -f /dev/ttyGS<Y> -s 1024 |
| 496 | |
| 497 | On host:: |
| 498 | |
| 499 | serialc -v <vendorID> -p <productID> -i<interface#> -a1 -s1024 \ |
| 500 | -t<out endpoint addr> -r<in endpoint addr> |
Andrzej Pietrasiewicz | d81b85d | 2014-12-16 14:56:35 +0100 | [diff] [blame] | 501 | |
| 502 | where seriald and serialc are Felipe's utilities found here: |
| 503 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 504 | https://github.com/felipebalbi/usb-tools.git master |
Andrzej Pietrasiewicz | da2907d | 2014-12-16 14:56:36 +0100 | [diff] [blame] | 505 | |
| 506 | 12. PHONET function |
| 507 | =================== |
| 508 | |
| 509 | The function is provided by usb_f_phonet.ko module. |
| 510 | |
| 511 | Function-specific configfs interface |
| 512 | ------------------------------------ |
| 513 | |
| 514 | The function name to use when creating the function directory is "phonet". |
| 515 | The PHONET function provides just one attribute in its function directory: |
| 516 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 517 | =============== ================================================== |
| 518 | ifname network device interface name associated with this |
Andrzej Pietrasiewicz | da2907d | 2014-12-16 14:56:36 +0100 | [diff] [blame] | 519 | function instance |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 520 | =============== ================================================== |
Andrzej Pietrasiewicz | da2907d | 2014-12-16 14:56:36 +0100 | [diff] [blame] | 521 | |
| 522 | Testing the PHONET function |
| 523 | --------------------------- |
| 524 | |
| 525 | It is not possible to test the SOCK_STREAM protocol without a specific piece |
| 526 | of hardware, so only SOCK_DGRAM has been tested. For the latter to work, |
| 527 | in the past I had to apply the patch mentioned here: |
| 528 | |
| 529 | http://www.spinics.net/lists/linux-usb/msg85689.html |
| 530 | |
| 531 | These tools are required: |
| 532 | |
| 533 | git://git.gitorious.org/meego-cellular/phonet-utils.git |
| 534 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 535 | On the host:: |
Andrzej Pietrasiewicz | da2907d | 2014-12-16 14:56:36 +0100 | [diff] [blame] | 536 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 537 | $ ./phonet -a 0x10 -i usbpn0 |
| 538 | $ ./pnroute add 0x6c usbpn0 |
| 539 | $./pnroute add 0x10 usbpn0 |
| 540 | $ ifconfig usbpn0 up |
Andrzej Pietrasiewicz | da2907d | 2014-12-16 14:56:36 +0100 | [diff] [blame] | 541 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 542 | On the device:: |
Andrzej Pietrasiewicz | da2907d | 2014-12-16 14:56:36 +0100 | [diff] [blame] | 543 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 544 | $ ./phonet -a 0x6c -i upnlink0 |
| 545 | $ ./pnroute add 0x10 upnlink0 |
| 546 | $ ifconfig upnlink0 up |
Andrzej Pietrasiewicz | da2907d | 2014-12-16 14:56:36 +0100 | [diff] [blame] | 547 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 548 | Then a test program can be used:: |
Andrzej Pietrasiewicz | da2907d | 2014-12-16 14:56:36 +0100 | [diff] [blame] | 549 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 550 | http://www.spinics.net/lists/linux-usb/msg85690.html |
Andrzej Pietrasiewicz | da2907d | 2014-12-16 14:56:36 +0100 | [diff] [blame] | 551 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 552 | On the device:: |
Andrzej Pietrasiewicz | da2907d | 2014-12-16 14:56:36 +0100 | [diff] [blame] | 553 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 554 | $ ./pnxmit -a 0x6c -r |
Andrzej Pietrasiewicz | da2907d | 2014-12-16 14:56:36 +0100 | [diff] [blame] | 555 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 556 | On the host:: |
Andrzej Pietrasiewicz | da2907d | 2014-12-16 14:56:36 +0100 | [diff] [blame] | 557 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 558 | $ ./pnxmit -a 0x10 -s 0x6c |
Andrzej Pietrasiewicz | da2907d | 2014-12-16 14:56:36 +0100 | [diff] [blame] | 559 | |
| 560 | As a result some data should be sent from host to device. |
| 561 | Then the other way round: |
| 562 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 563 | On the host:: |
Andrzej Pietrasiewicz | da2907d | 2014-12-16 14:56:36 +0100 | [diff] [blame] | 564 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 565 | $ ./pnxmit -a 0x10 -r |
Andrzej Pietrasiewicz | da2907d | 2014-12-16 14:56:36 +0100 | [diff] [blame] | 566 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 567 | On the device:: |
Andrzej Pietrasiewicz | da2907d | 2014-12-16 14:56:36 +0100 | [diff] [blame] | 568 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 569 | $ ./pnxmit -a 0x6c -s 0x10 |
Andrzej Pietrasiewicz | ddb7224 | 2014-12-16 14:56:37 +0100 | [diff] [blame] | 570 | |
| 571 | 13. RNDIS function |
| 572 | ================== |
| 573 | |
| 574 | The function is provided by usb_f_rndis.ko module. |
| 575 | |
| 576 | Function-specific configfs interface |
| 577 | ------------------------------------ |
| 578 | |
| 579 | The function name to use when creating the function directory is "rndis". |
| 580 | The RNDIS function provides these attributes in its function directory: |
| 581 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 582 | =============== ================================================== |
| 583 | ifname network device interface name associated with this |
Andrzej Pietrasiewicz | ddb7224 | 2014-12-16 14:56:37 +0100 | [diff] [blame] | 584 | function instance |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 585 | qmult queue length multiplier for high and super speed |
| 586 | host_addr MAC address of host's end of this |
Andrzej Pietrasiewicz | ddb7224 | 2014-12-16 14:56:37 +0100 | [diff] [blame] | 587 | Ethernet over USB link |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 588 | dev_addr MAC address of device's end of this |
Andrzej Pietrasiewicz | ddb7224 | 2014-12-16 14:56:37 +0100 | [diff] [blame] | 589 | Ethernet over USB link |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 590 | =============== ================================================== |
Andrzej Pietrasiewicz | ddb7224 | 2014-12-16 14:56:37 +0100 | [diff] [blame] | 591 | |
| 592 | and after creating the functions/rndis.<instance name> they contain default |
| 593 | values: qmult is 5, dev_addr and host_addr are randomly selected. |
Lorenzo Colitti | 63d1521 | 2021-01-14 08:42:22 +0900 | [diff] [blame] | 594 | The ifname can be written to if the function is not bound. A write must be an |
| 595 | interface pattern such as "usb%d", which will cause the net core to choose the |
| 596 | next free usbX interface. By default, it is set to "usb%d". |
Andrzej Pietrasiewicz | ddb7224 | 2014-12-16 14:56:37 +0100 | [diff] [blame] | 597 | |
Andrzej Pietrasiewicz | ddb7224 | 2014-12-16 14:56:37 +0100 | [diff] [blame] | 598 | Testing the RNDIS function |
| 599 | -------------------------- |
| 600 | |
| 601 | Configure IP addresses of the device and the host. Then: |
| 602 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 603 | On the device:: |
| 604 | |
| 605 | ping <host's IP> |
| 606 | |
| 607 | On the host:: |
| 608 | |
| 609 | ping <device's IP> |
Andrzej Pietrasiewicz | 4dfcec8 | 2014-12-16 14:56:38 +0100 | [diff] [blame] | 610 | |
| 611 | 14. SERIAL function |
| 612 | =================== |
| 613 | |
| 614 | The function is provided by usb_f_gser.ko module. |
| 615 | |
| 616 | Function-specific configfs interface |
| 617 | ------------------------------------ |
| 618 | |
| 619 | The function name to use when creating the function directory is "gser". |
| 620 | The SERIAL function provides just one attribute in its function directory: |
| 621 | |
| 622 | port_num |
| 623 | |
| 624 | The attribute is read-only. |
| 625 | |
| 626 | There can be at most 4 ACM/generic serial/OBEX ports in the system. |
| 627 | |
| 628 | Testing the SERIAL function |
| 629 | --------------------------- |
| 630 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 631 | On host:: |
| 632 | |
| 633 | insmod usbserial |
| 634 | echo VID PID >/sys/bus/usb-serial/drivers/generic/new_id |
| 635 | |
| 636 | On host:: |
| 637 | |
| 638 | cat > /dev/ttyUSB<X> |
| 639 | |
| 640 | On target:: |
| 641 | |
| 642 | cat /dev/ttyGS<Y> |
Andrzej Pietrasiewicz | 4dfcec8 | 2014-12-16 14:56:38 +0100 | [diff] [blame] | 643 | |
| 644 | then the other way round |
| 645 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 646 | On target:: |
| 647 | |
| 648 | cat > /dev/ttyGS<Y> |
| 649 | |
| 650 | On host:: |
| 651 | |
| 652 | cat /dev/ttyUSB<X> |
Andrzej Pietrasiewicz | 480a912 | 2014-12-16 14:56:39 +0100 | [diff] [blame] | 653 | |
| 654 | 15. SOURCESINK function |
| 655 | ======================= |
| 656 | |
| 657 | The function is provided by usb_f_ss_lb.ko module. |
| 658 | |
| 659 | Function-specific configfs interface |
| 660 | ------------------------------------ |
| 661 | |
| 662 | The function name to use when creating the function directory is "SourceSink". |
| 663 | The SOURCESINK function provides these attributes in its function directory: |
| 664 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 665 | =============== ================================== |
| 666 | pattern 0 (all zeros), 1 (mod63), 2 (none) |
| 667 | isoc_interval 1..16 |
| 668 | isoc_maxpacket 0 - 1023 (fs), 0 - 1024 (hs/ss) |
| 669 | isoc_mult 0..2 (hs/ss only) |
| 670 | isoc_maxburst 0..15 (ss only) |
| 671 | bulk_buflen buffer length |
| 672 | bulk_qlen depth of queue for bulk |
| 673 | iso_qlen depth of queue for iso |
| 674 | =============== ================================== |
Andrzej Pietrasiewicz | 480a912 | 2014-12-16 14:56:39 +0100 | [diff] [blame] | 675 | |
| 676 | Testing the SOURCESINK function |
| 677 | ------------------------------- |
| 678 | |
| 679 | device: run the gadget |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 680 | |
Peter Chen | f811a38 | 2015-07-31 16:36:30 +0800 | [diff] [blame] | 681 | host: test-usb (tools/usb/testusb.c) |
Andrzej Pietrasiewicz | 480a912 | 2014-12-16 14:56:39 +0100 | [diff] [blame] | 682 | |
Andrzej Pietrasiewicz | dae0358 | 2014-12-16 14:56:40 +0100 | [diff] [blame] | 683 | |
Ruslan Bilovol | d355339 | 2017-06-18 16:23:53 +0300 | [diff] [blame] | 684 | 16. UAC1 function (legacy implementation) |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 685 | ========================================= |
Andrzej Pietrasiewicz | dae0358 | 2014-12-16 14:56:40 +0100 | [diff] [blame] | 686 | |
Ruslan Bilovol | d355339 | 2017-06-18 16:23:53 +0300 | [diff] [blame] | 687 | The function is provided by usb_f_uac1_legacy.ko module. |
Andrzej Pietrasiewicz | dae0358 | 2014-12-16 14:56:40 +0100 | [diff] [blame] | 688 | |
| 689 | Function-specific configfs interface |
| 690 | ------------------------------------ |
| 691 | |
Ruslan Bilovol | d355339 | 2017-06-18 16:23:53 +0300 | [diff] [blame] | 692 | The function name to use when creating the function directory |
| 693 | is "uac1_legacy". |
Andrzej Pietrasiewicz | dae0358 | 2014-12-16 14:56:40 +0100 | [diff] [blame] | 694 | The uac1 function provides these attributes in its function directory: |
| 695 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 696 | =============== ==================================== |
| 697 | audio_buf_size audio buffer size |
| 698 | fn_cap capture pcm device file name |
| 699 | fn_cntl control device file name |
| 700 | fn_play playback pcm device file name |
| 701 | req_buf_size ISO OUT endpoint request buffer size |
| 702 | req_count ISO OUT endpoint request count |
| 703 | =============== ==================================== |
Andrzej Pietrasiewicz | dae0358 | 2014-12-16 14:56:40 +0100 | [diff] [blame] | 704 | |
| 705 | The attributes have sane default values. |
| 706 | |
| 707 | Testing the UAC1 function |
| 708 | ------------------------- |
| 709 | |
| 710 | device: run the gadget |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 711 | |
| 712 | host:: |
| 713 | |
| 714 | aplay -l # should list our USB Audio Gadget |
Andrzej Pietrasiewicz | 020c6f9 | 2014-12-16 14:56:41 +0100 | [diff] [blame] | 715 | |
| 716 | 17. UAC2 function |
| 717 | ================= |
| 718 | |
| 719 | The function is provided by usb_f_uac2.ko module. |
| 720 | |
| 721 | Function-specific configfs interface |
| 722 | ------------------------------------ |
| 723 | |
| 724 | The function name to use when creating the function directory is "uac2". |
| 725 | The uac2 function provides these attributes in its function directory: |
| 726 | |
Hu Haowen | 9c0edd5 | 2021-08-05 12:01:46 +0800 | [diff] [blame] | 727 | ================ ==================================================== |
| 728 | c_chmask capture channel mask |
| 729 | c_srate capture sampling rate |
| 730 | c_ssize capture sample size (bytes) |
| 731 | c_sync capture synchronization type (async/adaptive) |
| 732 | c_mute_present capture mute control enable |
| 733 | c_volume_present capture volume control enable |
| 734 | c_volume_min capture volume control min value (in 1/256 dB) |
| 735 | c_volume_max capture volume control max value (in 1/256 dB) |
| 736 | c_volume_res capture volume control resolution (in 1/256 dB) |
| 737 | fb_max maximum extra bandwidth in async mode |
| 738 | p_chmask playback channel mask |
| 739 | p_srate playback sampling rate |
| 740 | p_ssize playback sample size (bytes) |
| 741 | p_mute_present playback mute control enable |
| 742 | p_volume_present playback volume control enable |
| 743 | p_volume_min playback volume control min value (in 1/256 dB) |
| 744 | p_volume_max playback volume control max value (in 1/256 dB) |
| 745 | p_volume_res playback volume control resolution (in 1/256 dB) |
| 746 | req_number the number of pre-allocated request for both capture |
| 747 | and playback |
| 748 | ================ ==================================================== |
Andrzej Pietrasiewicz | 020c6f9 | 2014-12-16 14:56:41 +0100 | [diff] [blame] | 749 | |
| 750 | The attributes have sane default values. |
| 751 | |
| 752 | Testing the UAC2 function |
| 753 | ------------------------- |
| 754 | |
| 755 | device: run the gadget |
| 756 | host: aplay -l # should list our USB Audio Gadget |
| 757 | |
| 758 | This function does not require real hardware support, it just |
| 759 | sends a stream of audio data to/from the host. In order to |
| 760 | actually hear something at the device side, a command similar |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 761 | to this must be used at the device side:: |
Andrzej Pietrasiewicz | 020c6f9 | 2014-12-16 14:56:41 +0100 | [diff] [blame] | 762 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 763 | $ arecord -f dat -t wav -D hw:2,0 | aplay -D hw:0,0 & |
Andrzej Pietrasiewicz | 020c6f9 | 2014-12-16 14:56:41 +0100 | [diff] [blame] | 764 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 765 | e.g.:: |
Andrzej Pietrasiewicz | 020c6f9 | 2014-12-16 14:56:41 +0100 | [diff] [blame] | 766 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 767 | $ arecord -f dat -t wav -D hw:CARD=UAC2Gadget,DEV=0 | \ |
| 768 | aplay -D default:CARD=OdroidU3 |
Andrzej Pietrasiewicz | 9c4f538 | 2014-12-16 14:56:42 +0100 | [diff] [blame] | 769 | |
| 770 | 18. UVC function |
| 771 | ================ |
| 772 | |
| 773 | The function is provided by usb_f_uvc.ko module. |
| 774 | |
| 775 | Function-specific configfs interface |
| 776 | ------------------------------------ |
| 777 | |
| 778 | The function name to use when creating the function directory is "uvc". |
| 779 | The uvc function provides these attributes in its function directory: |
| 780 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 781 | =================== ================================================ |
| 782 | streaming_interval interval for polling endpoint for data transfers |
| 783 | streaming_maxburst bMaxBurst for super speed companion descriptor |
| 784 | streaming_maxpacket maximum packet size this endpoint is capable of |
| 785 | sending or receiving when this configuration is |
| 786 | selected |
| 787 | =================== ================================================ |
Andrzej Pietrasiewicz | 9c4f538 | 2014-12-16 14:56:42 +0100 | [diff] [blame] | 788 | |
| 789 | There are also "control" and "streaming" subdirectories, each of which contain |
| 790 | a number of their subdirectories. There are some sane defaults provided, but |
| 791 | the user must provide the following: |
| 792 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 793 | ================== ==================================================== |
| 794 | control header create in control/header, link from control/class/fs |
| 795 | and/or control/class/ss |
| 796 | streaming header create in streaming/header, link from |
| 797 | streaming/class/fs and/or streaming/class/hs and/or |
| 798 | streaming/class/ss |
| 799 | format description create in streaming/mjpeg and/or |
| 800 | streaming/uncompressed |
| 801 | frame description create in streaming/mjpeg/<format> and/or in |
| 802 | streaming/uncompressed/<format> |
| 803 | ================== ==================================================== |
Andrzej Pietrasiewicz | 9c4f538 | 2014-12-16 14:56:42 +0100 | [diff] [blame] | 804 | |
| 805 | Each frame description contains frame interval specification, and each |
| 806 | such specification consists of a number of lines with an inverval value |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 807 | in each line. The rules stated above are best illustrated with an example:: |
Andrzej Pietrasiewicz | 9c4f538 | 2014-12-16 14:56:42 +0100 | [diff] [blame] | 808 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 809 | # mkdir functions/uvc.usb0/control/header/h |
| 810 | # cd functions/uvc.usb0/control/ |
| 811 | # ln -s header/h class/fs |
| 812 | # ln -s header/h class/ss |
| 813 | # mkdir -p functions/uvc.usb0/streaming/uncompressed/u/360p |
| 814 | # cat <<EOF > functions/uvc.usb0/streaming/uncompressed/u/360p/dwFrameInterval |
| 815 | 666666 |
| 816 | 1000000 |
| 817 | 5000000 |
| 818 | EOF |
| 819 | # cd $GADGET_CONFIGFS_ROOT |
| 820 | # mkdir functions/uvc.usb0/streaming/header/h |
| 821 | # cd functions/uvc.usb0/streaming/header/h |
| 822 | # ln -s ../../uncompressed/u |
| 823 | # cd ../../class/fs |
| 824 | # ln -s ../../header/h |
| 825 | # cd ../../class/hs |
| 826 | # ln -s ../../header/h |
| 827 | # cd ../../class/ss |
| 828 | # ln -s ../../header/h |
Andrzej Pietrasiewicz | 9c4f538 | 2014-12-16 14:56:42 +0100 | [diff] [blame] | 829 | |
| 830 | |
| 831 | Testing the UVC function |
| 832 | ------------------------ |
| 833 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 834 | device: run the gadget, modprobe vivid:: |
Andrzej Pietrasiewicz | 9c4f538 | 2014-12-16 14:56:42 +0100 | [diff] [blame] | 835 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 836 | # uvc-gadget -u /dev/video<uvc video node #> -v /dev/video<vivid video node #> |
Andrzej Pietrasiewicz | 9c4f538 | 2014-12-16 14:56:42 +0100 | [diff] [blame] | 837 | |
| 838 | where uvc-gadget is this program: |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 839 | http://git.ideasonboard.org/uvc-gadget.git |
Andrzej Pietrasiewicz | 9c4f538 | 2014-12-16 14:56:42 +0100 | [diff] [blame] | 840 | |
| 841 | with these patches: |
Andrzej Pietrasiewicz | 9c4f538 | 2014-12-16 14:56:42 +0100 | [diff] [blame] | 842 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 843 | http://www.spinics.net/lists/linux-usb/msg99220.html |
| 844 | |
| 845 | host:: |
| 846 | |
| 847 | luvcview -f yuv |
Andrzej Pietrasiewicz | ee1cd51 | 2015-03-03 10:52:32 +0100 | [diff] [blame] | 848 | |
| 849 | 19. PRINTER function |
| 850 | ==================== |
| 851 | |
| 852 | The function is provided by usb_f_printer.ko module. |
| 853 | |
| 854 | Function-specific configfs interface |
| 855 | ------------------------------------ |
| 856 | |
| 857 | The function name to use when creating the function directory is "printer". |
| 858 | The printer function provides these attributes in its function directory: |
| 859 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 860 | ========== =========================================== |
| 861 | pnp_string Data to be passed to the host in pnp string |
| 862 | q_len Number of requests per endpoint |
| 863 | ========== =========================================== |
Andrzej Pietrasiewicz | ee1cd51 | 2015-03-03 10:52:32 +0100 | [diff] [blame] | 864 | |
| 865 | Testing the PRINTER function |
| 866 | ---------------------------- |
| 867 | |
| 868 | The most basic testing: |
| 869 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 870 | device: run the gadget:: |
| 871 | |
| 872 | # ls -l /devices/virtual/usb_printer_gadget/ |
Andrzej Pietrasiewicz | ee1cd51 | 2015-03-03 10:52:32 +0100 | [diff] [blame] | 873 | |
| 874 | should show g_printer<number>. |
| 875 | |
| 876 | If udev is active, then /dev/g_printer<number> should appear automatically. |
| 877 | |
| 878 | host: |
| 879 | |
| 880 | If udev is active, then e.g. /dev/usb/lp0 should appear. |
| 881 | |
| 882 | host->device transmission: |
| 883 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 884 | device:: |
Andrzej Pietrasiewicz | ee1cd51 | 2015-03-03 10:52:32 +0100 | [diff] [blame] | 885 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 886 | # cat /dev/g_printer<number> |
Andrzej Pietrasiewicz | ee1cd51 | 2015-03-03 10:52:32 +0100 | [diff] [blame] | 887 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 888 | host:: |
| 889 | |
| 890 | # cat > /dev/usb/lp0 |
| 891 | |
| 892 | device->host transmission:: |
| 893 | |
| 894 | # cat > /dev/g_printer<number> |
| 895 | |
| 896 | host:: |
| 897 | |
| 898 | # cat /dev/usb/lp0 |
Andrzej Pietrasiewicz | ee1cd51 | 2015-03-03 10:52:32 +0100 | [diff] [blame] | 899 | |
| 900 | More advanced testing can be done with the prn_example |
Mauro Carvalho Chehab | ecefae6 | 2019-06-18 18:05:38 -0300 | [diff] [blame] | 901 | described in Documentation/usb/gadget_printer.rst. |
Ruslan Bilovol | 0591bc2 | 2017-06-18 16:23:54 +0300 | [diff] [blame] | 902 | |
| 903 | |
| 904 | 20. UAC1 function (virtual ALSA card, using u_audio API) |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 905 | ======================================================== |
Ruslan Bilovol | 0591bc2 | 2017-06-18 16:23:54 +0300 | [diff] [blame] | 906 | |
| 907 | The function is provided by usb_f_uac1.ko module. |
| 908 | It will create a virtual ALSA card and the audio streams are simply |
| 909 | sinked to and sourced from it. |
| 910 | |
| 911 | Function-specific configfs interface |
| 912 | ------------------------------------ |
| 913 | |
| 914 | The function name to use when creating the function directory is "uac1". |
| 915 | The uac1 function provides these attributes in its function directory: |
| 916 | |
Hu Haowen | 9c0edd5 | 2021-08-05 12:01:46 +0800 | [diff] [blame] | 917 | ================ ==================================================== |
| 918 | c_chmask capture channel mask |
| 919 | c_srate capture sampling rate |
| 920 | c_ssize capture sample size (bytes) |
| 921 | c_mute_present capture mute control enable |
| 922 | c_volume_present capture volume control enable |
| 923 | c_volume_min capture volume control min value (in 1/256 dB) |
| 924 | c_volume_max capture volume control max value (in 1/256 dB) |
| 925 | c_volume_res capture volume control resolution (in 1/256 dB) |
| 926 | p_chmask playback channel mask |
| 927 | p_srate playback sampling rate |
| 928 | p_ssize playback sample size (bytes) |
| 929 | p_mute_present playback mute control enable |
| 930 | p_volume_present playback volume control enable |
| 931 | p_volume_min playback volume control min value (in 1/256 dB) |
| 932 | p_volume_max playback volume control max value (in 1/256 dB) |
| 933 | p_volume_res playback volume control resolution (in 1/256 dB) |
| 934 | req_number the number of pre-allocated request for both capture |
| 935 | and playback |
| 936 | ================ ==================================================== |
Ruslan Bilovol | 0591bc2 | 2017-06-18 16:23:54 +0300 | [diff] [blame] | 937 | |
| 938 | The attributes have sane default values. |
| 939 | |
| 940 | Testing the UAC1 function |
| 941 | ------------------------- |
| 942 | |
| 943 | device: run the gadget |
| 944 | host: aplay -l # should list our USB Audio Gadget |
| 945 | |
| 946 | This function does not require real hardware support, it just |
| 947 | sends a stream of audio data to/from the host. In order to |
| 948 | actually hear something at the device side, a command similar |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 949 | to this must be used at the device side:: |
Ruslan Bilovol | 0591bc2 | 2017-06-18 16:23:54 +0300 | [diff] [blame] | 950 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 951 | $ arecord -f dat -t wav -D hw:2,0 | aplay -D hw:0,0 & |
Ruslan Bilovol | 0591bc2 | 2017-06-18 16:23:54 +0300 | [diff] [blame] | 952 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 953 | e.g.:: |
Ruslan Bilovol | 0591bc2 | 2017-06-18 16:23:54 +0300 | [diff] [blame] | 954 | |
Mauro Carvalho Chehab | d80b500 | 2019-04-15 23:56:01 -0300 | [diff] [blame] | 955 | $ arecord -f dat -t wav -D hw:CARD=UAC1Gadget,DEV=0 | \ |
| 956 | aplay -D default:CARD=OdroidU3 |