Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Feb 2023 03:51:41 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 0cec5b99b3c0 - main - usb/u3g: Add support for QUECTEL EP06-E 4G modem
Message-ID:  <202302050351.3153pfsw097775@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=0cec5b99b3c0484925f3cc0813040c160987bd45

commit 0cec5b99b3c0484925f3cc0813040c160987bd45
Author:     ev <evfbsd@yandex.ru>
AuthorDate: 2023-02-05 03:47:00 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-02-05 03:48:41 +0000

    usb/u3g: Add support for QUECTEL EP06-E 4G modem
    
    Add QUECTEL EP06-E modem support via USB for FreeBSD.
    Tested and works like a ppp on FreeBSD-13.
    
    Reviewed by: imp
    PR: 269326
---
 share/man/man4/u3g.4     | 2 +-
 sys/dev/usb/serial/u3g.c | 1 +
 sys/dev/usb/usbdevs      | 1 +
 3 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/share/man/man4/u3g.4 b/share/man/man4/u3g.4
index 0cc2f3ec7693..b5ad77d21c39 100644
--- a/share/man/man4/u3g.4
+++ b/share/man/man4/u3g.4
@@ -72,7 +72,7 @@ Qualcomm Inc. CDMA MSM
 .It
 Qualcomm Inc. GOBI 1000, 2000 and 3000 devices with MDM1000 or MDM2000 chipsets
 .It
-QUECTEL EC25, EM05, EM12-G.
+QUECTEL EC25, EM05, EM12-G, EP06-E.
 .It
 Huawei B190, E180v, E220, E3372, E3372v153, E5573Cs322, ('<Huawei Mobile>')
 .It
diff --git a/sys/dev/usb/serial/u3g.c b/sys/dev/usb/serial/u3g.c
index 868ed9a86f9b..9554f30fcfdf 100644
--- a/sys/dev/usb/serial/u3g.c
+++ b/sys/dev/usb/serial/u3g.c
@@ -515,6 +515,7 @@ static const STRUCT_USB_HOST_ID u3g_devs[] = {
 	U3G_DEV(QUECTEL, EC25, 0),
 	U3G_DEV(QUECTEL, EM05, 0),
 	U3G_DEV(QUECTEL, EM12_G, 0),
+	U3G_DEV(QUECTEL, EP06_E, 0),
 	U3G_DEV(SIERRA, AC402, 0),
 	U3G_DEV(SIERRA, AC595U, 0),
 	U3G_DEV(SIERRA, AC313U, 0),
diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs
index 01eb4d3b9a80..23fa56d4e338 100644
--- a/sys/dev/usb/usbdevs
+++ b/sys/dev/usb/usbdevs
@@ -3989,6 +3989,7 @@ product QUANTA RW6815R		0xf003	HP iPAQ rw6815 RNDIS
 /* Quectel products */
 product QUECTEL EC25		0x0125	LTE modem
 product QUECTEL EM05		0x0127	LTE modem
+product QUECTEL EP06_E		0x0306	LTE modem
 product QUECTEL EM12_G          0x0512  LTE modem
 
 /* Quickshot products */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202302050351.3153pfsw097775>