Skip to content

Commit 29262e1

Browse files
thomastoyedavem330
authored andcommitted
rndis_host: support Hytera digital radios
Hytera makes a range of digital (DMR) radios. These radios can be programmed to a allow a computer to control them over Ethernet over USB, either using NCM or RNDIS. This commit adds support for RNDIS for Hytera radios. I tested with a Hytera PD785 and a Hytera MD785G. When these radios are programmed to set up a Radio to PC Network using RNDIS, an USB interface will be added with class 2 (Communications), subclass 2 (Abstract Modem Control) and an interface protocol of 255 ("vendor specific" - lsusb even hints "MSFT RNDIS?"). This patch is similar to the solution of this StackOverflow user, but that only works for the Hytera MD785: https://stackoverflow.com/a/53550858 To use the "Radio to PC Network" functionality of Hytera DMR radios, the radios need to be programmed correctly in CPS (Hytera's Customer Programming Software). "Forward to PC" should be checked in "Network" (under "General Setting" in "Conventional") and the "USB Network Communication Protocol" should be set to RNDIS. Signed-off-by: Thomas Toye <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent f9d31c4 commit 29262e1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

drivers/net/usb/rndis_host.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -608,6 +608,11 @@ static const struct usb_device_id products [] = {
608608
USB_DEVICE_AND_INTERFACE_INFO(0x1630, 0x0042,
609609
USB_CLASS_COMM, 2 /* ACM */, 0x0ff),
610610
.driver_info = (unsigned long) &rndis_poll_status_info,
611+
}, {
612+
/* Hytera Communications DMR radios' "Radio to PC Network" */
613+
USB_VENDOR_AND_INTERFACE_INFO(0x238b,
614+
USB_CLASS_COMM, 2 /* ACM */, 0x0ff),
615+
.driver_info = (unsigned long)&rndis_info,
611616
}, {
612617
/* RNDIS is MSFT's un-official variant of CDC ACM */
613618
USB_INTERFACE_INFO(USB_CLASS_COMM, 2 /* ACM */, 0x0ff),

0 commit comments

Comments
 (0)