Changes between Version 85 and Version 86 of wireless/modem
- Timestamp:
- 03/28/2022 11:18:59 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
wireless/modem
v85 v86 1795 1795 * PCIe on the Qualcomm X55 chipset require a new MHI driver which is expected to be only ready in 5.13 kernels or newer 1796 1796 * PCIe ID: 17cb:0306 1797 * Requires USB 2.0 to switch modem to PCIe mode with the following AT command: AT#USBPCISWITCH=1,<GPIO>,2 where GPIO is the GPIO assigned active low (tied to ground) pin used to select PCI Express enable.1798 1797 * Theoretical throughput 5G up to 5.5 DL/1.5 UL Gbps 1799 1798 * Temperature -40 °C to +85 °C … … 1801 1800 * Uses QTY 4 MHP4 IPEX antenna ports. Can be used with [https://shop.gateworks.com/index.php?route=product/product&product_id=89 GW16065] 1802 1801 * No pinout concerns when using Gateworks GW16140/GW16141 M.2 adapters 1802 * Pin 20 for enabling PCIe mode is not connected because it is not in the M.2 spec. It is considered a reserved pin, and Gateworks is working to mitigate this in future hardware revisions. 1803 1803 * Ports: cdc-wdm0 (qmi), ttyUSB0 (unknown), ttyUSB1 (unknown), ttyUSB2 (at), ttyUSB3 (at), ttyUSB4 (unknown), wwan0 (net) 1804 1804 * Drivers: … … 1929 1929 * Venice 1930 1930 * Latest 5.15 kernel or newer from Gateworks 1931 * Modem hardware revision 1.2 with an adapter that pulls pin 20 low to enable PCIe mode. 1931 1932 1932 1933 Install udhcpc … … 1934 1935 apt-get update 1935 1936 apt-get install udhcpc 1936 }}}1937 1938 You need to switch the modem into PCIe mode with the AT command:1939 {{{1940 AT#USBPCISWITCH=1,5,01941 AT#REBOOT1942 }}}1943 1944 To issue the AT command without opening the serial console of the modem, use the code below (assuming modem AT port is ttyUSB2:1945 {{{1946 echo -n -e "AT#USBPCISWITCH=1,5,0\r" > /dev/ttyUSB21947 echo -n -e "AT#REBOOT\r" > /dev/ttyUSB21948 1937 }}} 1949 1938