Difference between revisions of "DESK-MX6UL-L/Peripherals/USB OTG"

From DAVE Developer's Wiki
Jump to: navigation, search
(Accessing the peripheral)
Line 16: Line 16:
 
==Peripheral USB OTG ==
 
==Peripheral USB OTG ==
  
The USB OTG ports can be configured as Host or Device mode depending on the device tree configuration.
+
The USB OTG ports can be configured as Host or Device mode depending on the device tree configuration. In OTG mode they can be easily tested using the Mass Storage Gadget, which lets the device export a file as a mass storage device to the connected PC.
  
In OTG mode they can be easily tested using the Mass Storage Gadget, which lets the device export a file as a mass storage device to the connected PC.
+
{{ImportantMessage|text=The USB OTG peripheral is not available - ''as default option'' - on [[AXEL_ULite_SOM/AXEL_ULite_Evaluation_Kit | AXEL ULite EVK]]. Please contact [mailto:sales@dave.eu Sales department] for this option}}
 +
This peripheral is available on the i.MX6UL standard product [[SBC_Lynx_SBC | SBCLynx]]}}
  
 
=== Device tree configuration ===
 
=== Device tree configuration ===
Line 24: Line 25:
 
Here below an example of device tree configuration used on standard DAVE's kit for the [[AXEL ULite SOM]] where USB OTG1 is configured as ''otg'' while the USB OTG2 port is configured in ''host'' mode:
 
Here below an example of device tree configuration used on standard DAVE's kit for the [[AXEL ULite SOM]] where USB OTG1 is configured as ''otg'' while the USB OTG2 port is configured in ''host'' mode:
  
From <code>imx6ul-lynx-som0013.dtsi</code>:
+
From <code>imx6ul-axelulite-cb003a.dts</code>:
  
 
<pre>
 
<pre>
&usbotg1 {
 
        pinctrl-names = "default";
 
        pinctrl-0 = <&pinctrl_usb_otg1_id>;
 
        vbus-supply = <&reg_usb_otg1_vbus>;
 
        dr_mode = "otg";
 
        srp-disable;
 
        hnp-disable;
 
        adp-disable;
 
        status = "disabled";
 
};
 
 
 
&usbotg2 {
 
&usbotg2 {
 
         vbus-supply = <&reg_usb_otg2_vbus>;
 
         vbus-supply = <&reg_usb_otg2_vbus>;
 +
        pinctrl-names = "default";
 +
        pinctrl-0 = <&pinctrl_usb_otg2_id>;
 +
        disable-over-current;
 
         dr_mode = "host";
 
         dr_mode = "host";
        status = "disabled";
 
};
 
...
 
...
 
&iomuxc {
 
...
 
...
 
pinctrl_usb_otg1_id: usbotg1idgrp {
 
fsl,pins = <
 
MX6UL_PAD_GPIO1_IO00__ANATOP_OTG1_ID    0x17059
 
>;
 
};
 
 
pinctrl_usb_otg1: usbotg1grp {
 
fsl,pins = <
 
MX6UL_PAD_ENET2_RX_DATA0__GPIO2_IO08    0x10b0 /* OTG1 PWR */
 
MX6UL_PAD_ENET2_RX_DATA1__GPIO2_IO09    0x17059 /* OTG1_OC */
 
>;
 
};
 
 
pinctrl_usb_otg1_oc: usbotg1grp1 {
 
fsl,pins = <
 
MX6UL_PAD_ENET2_RX_DATA0__GPIO2_IO08    0x10b0 /* OTG1 PWR */
 
MX6UL_PAD_ENET2_RX_DATA1__USB_OTG1_OC  0x17059 /* OTG1_OC */
 
>;
 
};
 
 
pinctrl_usb_otg2: usbotg2grp {
 
fsl,pins = <
 
MX6UL_PAD_ENET2_TX_DATA1__GPIO2_IO12    0x17059 /* OTG2_PWR */
 
MX6UL_PAD_ENET2_TX_EN__USB_OTG2_OC      0x17059 /* OTG2_OC */
 
>;
 
};
 
 
pinctrl_usb_otg2_1: usbotg2grp-1 {
 
fsl,pins = <
 
MX6UL_PAD_UART3_CTS_B__GPIO1_IO26      0x17059 /* OTG2_PWR */
 
MX6UL_PAD_UART3_RTS_B__GPIO1_IO27      0x17059 /* OTG2_OC */
 
>;
 
};
 
 
</pre>
 
 
From <code>imx6ul-lynx-som0013-cb002f.dts</code>:
 
 
<pre>
 
&reg_usb_otg1_vbus {
 
        pinctrl-0 = <&pinctrl_usb_otg1_oc>;
 
};
 
 
&usbotg1 {
 
        over-current-active-low;
 
 
         status = "okay";
 
         status = "okay";
 
};
 
};
 
&usbotg2 {
 
        over-current-active-low;
 
        status = "okay";
 
};
 
 
 
...
 
...
 
...
 
...
 
&iomuxc {
 
&iomuxc {
        pinctrl-names = "default";
 
        pinctrl-0 = <&pinctrl_hog_gpios>;
 
 
        imx6ul-lynx {
 
 
...
 
...
 
...
 
...
                 pinctrl_usb_otg1: usbotg1grp {
+
        usb {
 +
                 pinctrl_usb_otg2_id: usbotg2idgrp {
 
                         fsl,pins = <
 
                         fsl,pins = <
                                 MX6UL_PAD_ENET2_RX_DATA0__GPIO2_IO08    0x10b0 /* OTG1 PWR */
+
                                 MX6UL_PAD_ENET2_TX_CLK__ANATOP_OTG2_ID  0x17059         /* OTG ID */
                                MX6UL_PAD_ENET2_RX_DATA1__USB_OTG1_OC  0x17059 /* OTG1_OC */
 
 
                         >;
 
                         >;
 
                 };
 
                 };
 
 
                 pinctrl_usb_otg2: usbotg2grp {
 
                 pinctrl_usb_otg2: usbotg2grp {
 
                         fsl,pins = <
 
                         fsl,pins = <
                                 MX6UL_PAD_ENET2_TX_DATA1__GPIO2_IO12    0x17059 /* OTG2_PWR */
+
                                 MX6UL_PAD_GPIO1_IO02__GPIO1_IO02        0x17059         /* OTG PWR */
                                 MX6UL_PAD_ENET2_TX_EN__USB_OTG2_OC       0x17059 /* OTG2_OC */
+
                                 MX6UL_PAD_UART2_CTS_B__GPIO1_IO22       0x10b0          /* OTG OC */
 
                         >;
 
                         >;
 
                 };
 
                 };
 
+
        };
 
</pre>
 
</pre>
 
  
 
===Accessing the peripheral===
 
===Accessing the peripheral===
Line 133: Line 62:
 
...
 
...
 
...
 
...
[    3.387128] usb_otg1_vbus: supplied by SWBST
+
[    1.939073] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.418986] usb_otg2_vbus: supplied by SWBST
+
[    1.945990] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.245408] usb_otg1_vbus: disabling
+
[    1.953298] usb usb2: Product: EHCI Host Controller
 +
[    1.958211] usb usb2: Manufacturer: Linux 4.14.98-desk-mx6ul-l-1.0.1 ehci_hcd
 +
[    1.965426] usb usb2: SerialNumber: ci_hdrc.1
 +
[    3.667157] usbcore: registered new interface driver usbhid
 +
[    3.672771] usbhid: USB HID core driver
 
...
 
...
 
...
 
...
Line 145: Line 78:
  
 
<pre class="workstation-terminal">
 
<pre class="workstation-terminal">
root@desk-mx6ul-axelulite:~# [ 431.623145] usb 1-1: new high-speed USB device number 2 using ci_hdrc
+
root@desk-mx6ul-axelulite:~# [   40.533219] usb 2-1: new high-speed USB device number 2 using ci_hdrc
[ 431.865699] usb 1-1: New USB device found, idVendor=0951, idProduct=1665
+
[   40.775605] usb 2-1: New USB device found, idVendor=0951, idProduct=1665
[ 431.872537] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
+
[   40.782554] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 431.883302] usb 1-1: Product: DataTraveler 2.0
+
[   40.797569] usb 2-1: Product: DataTraveler 2.0
[ 431.887825] usb 1-1: Manufacturer: Kingston
+
[   40.802174] usb 2-1: Manufacturer: Kingston
[ 431.892114] usb 1-1: SerialNumber: 50E549C202681071F97202CB
+
[   40.813793] usb 2-1: SerialNumber: 50E549C202681071F97202CB
[ 431.910893] usb-storage 1-1:1.0: USB Mass Storage device detected
+
[   40.827294] usb-storage 2-1:1.0: USB Mass Storage device detected
[ 431.928942] scsi host0: usb-storage 1-1:1.0
+
[   40.850364] scsi host0: usb-storage 2-1:1.0
[ 432.966408] scsi 0:0:0:0: Direct-Access    Kingston DataTraveler 2.0 0000 PQ: 0 ANSI: 4
+
[   41.926319] scsi 0:0:0:0: Direct-Access    Kingston DataTraveler 2.0 0000 PQ: 0 ANSI: 4
[ 432.995263] sd 0:0:0:0: [sda] 15151168 512-byte logical blocks: (7.76 GB/7.22 GiB)
+
[   41.953445] sd 0:0:0:0: [sda] 15151168 512-byte logical blocks: (7.76 GB/7.22 GiB)
[ 433.015350] sd 0:0:0:0: [sda] Write Protect is off
+
[   41.976216] sd 0:0:0:0: [sda] Write Protect is off
[ 433.031915] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
+
[   41.981055] sd 0:0:0:0: [sda] Mode Sense: 23 00 00 00
[ 433.067380]  sda: sda1
+
[  42.003870] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[ 433.089246] sd 0:0:0:0: [sda] Attached SCSI removable disk
+
[   42.040175]  sda: sda1
 +
[   42.063618] sd 0:0:0:0: [sda] Attached SCSI removable disk
  
 
root@desk-mx6ul-axelulite:~#
 
root@desk-mx6ul-axelulite:~#

Revision as of 10:40, 16 July 2021

History
Version Issue Date Notes
1.0.0 Apr 2021 First DESK release


Peripheral USB OTG[edit | edit source]

The USB OTG ports can be configured as Host or Device mode depending on the device tree configuration. In OTG mode they can be easily tested using the Mass Storage Gadget, which lets the device export a file as a mass storage device to the connected PC.


200px-Emblem-important.svg.png

The USB OTG peripheral is not available - as default option - on AXEL ULite EVK. Please contact Sales department for this option

This peripheral is available on the i.MX6UL standard product SBCLynx}}

Device tree configuration[edit | edit source]

Here below an example of device tree configuration used on standard DAVE's kit for the AXEL ULite SOM where USB OTG1 is configured as otg while the USB OTG2 port is configured in host mode:

From imx6ul-axelulite-cb003a.dts:

&usbotg2 {
        vbus-supply = <&reg_usb_otg2_vbus>;
        pinctrl-names = "default";
        pinctrl-0 = <&pinctrl_usb_otg2_id>;
        disable-over-current;
        dr_mode = "host";
        status = "okay";
};
...
...
&iomuxc {
...
...
        usb {
                pinctrl_usb_otg2_id: usbotg2idgrp {
                        fsl,pins = <
                                MX6UL_PAD_ENET2_TX_CLK__ANATOP_OTG2_ID  0x17059         /* OTG ID */
                        >;
                };
                pinctrl_usb_otg2: usbotg2grp {
                        fsl,pins = <
                                MX6UL_PAD_GPIO1_IO02__GPIO1_IO02        0x17059         /* OTG PWR */
                                MX6UL_PAD_UART2_CTS_B__GPIO1_IO22       0x10b0          /* OTG OC */
                        >;
                };
        };

Accessing the peripheral[edit | edit source]

Linux messages at boot time[edit | edit source]

...
...
[    1.939073] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    1.945990] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.953298] usb usb2: Product: EHCI Host Controller
[    1.958211] usb usb2: Manufacturer: Linux 4.14.98-desk-mx6ul-l-1.0.1 ehci_hcd
[    1.965426] usb usb2: SerialNumber: ci_hdrc.1
[    3.667157] usbcore: registered new interface driver usbhid
[    3.672771] usbhid: USB HID core driver
...
...

Usage in Host mode[edit | edit source]

When a USB peripheral is inserted, in the following example a memory mass storage device, the kernel recognizes the device (i.e. class, vendor id, product id, etc.)

root@desk-mx6ul-axelulite:~# [   40.533219] usb 2-1: new high-speed USB device number 2 using ci_hdrc
[   40.775605] usb 2-1: New USB device found, idVendor=0951, idProduct=1665
[   40.782554] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   40.797569] usb 2-1: Product: DataTraveler 2.0
[   40.802174] usb 2-1: Manufacturer: Kingston
[   40.813793] usb 2-1: SerialNumber: 50E549C202681071F97202CB
[   40.827294] usb-storage 2-1:1.0: USB Mass Storage device detected
[   40.850364] scsi host0: usb-storage 2-1:1.0
[   41.926319] scsi 0:0:0:0: Direct-Access     Kingston DataTraveler 2.0 0000 PQ: 0 ANSI: 4
[   41.953445] sd 0:0:0:0: [sda] 15151168 512-byte logical blocks: (7.76 GB/7.22 GiB)
[   41.976216] sd 0:0:0:0: [sda] Write Protect is off
[   41.981055] sd 0:0:0:0: [sda] Mode Sense: 23 00 00 00
[   42.003870] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   42.040175]  sda: sda1
[   42.063618] sd 0:0:0:0: [sda] Attached SCSI removable disk

root@desk-mx6ul-axelulite:~#

Usage with mass-storage[edit | edit source]

root@desk-mx6ul-axelulite:~# dd if=/dev/zero of=mass_storage count=32 bs=1M
32+0 records in
32+0 records out
33554432 bytes (34 MB, 32 MiB) copied, 3.62181 s, 9.3 MB/s
root@desk-mx6ul-axelulite:~# mkfs.msdos mass_storage
mkfs.fat 4.1 (2017-01-24)
root@desk-mx6ul-axelulite:~# mkdir loop
root@desk-mx6ul-axelulite:~# mount -o loop mass_storage loop
root@desk-mx6ul-axelulite:~# echo "Test USB OTG with mass storage device" > loop/usb.txt
root@desk-mx6ul-axelulite:~# umount loop

then insert the g_mass_storage kernel module driver enabling an Windows PC to see it as a removable device

root@desk-mx6ul-axelulite:~# modprobe g_mass_storage removable=y file=mass_storage
[  137.706620] Mass Storage Function, version: 2009/09/11
[  137.711809] LUN: removable file: (no medium)
[  137.731390] LUN: removable file: /home/root/mass_storage
[  137.737101] Number of LUNs=1
[  137.740256] g_mass_storage gadget: Mass Storage Gadget, version: 2009/09/11
[  137.751272] g_mass_storage gadget: userspace failed to provide iSerialNumber
[  137.760299] g_mass_storage gadget: g_mass_storage ready
root@desk-mx6ul-axelulite:~#

Once the USB cable is connected to the PC, the kernel prints the following messages:

root@desk-mx6ul-axelulite:~# [  214.837430] g_mass_storage gadget: high-speed config #1: Linux File-Backed Storage

and the Windows PC activate the driver and the disk is available as a Drive Unit (with the usb.txt file available).

Additional information[edit | edit source]

More information about Mass Storage Gadget driver is given in the kernel tree under Documentation/usb/mass-storage.txt