Linux CAN drivers development
 help / color / mirror / Atom feed
* [PATCH 0/4] can: usb: Add driver for HMS IXXAT USB-to-CAN adapters
@ 2026-07-23  7:29 Stéphane Grosjean
  2026-07-23  7:29 ` [PATCH 1/4] can: usb: ixxat_usb: add shared header Stéphane Grosjean
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Stéphane Grosjean @ 2026-07-23  7:29 UTC (permalink / raw)
  To: linux-can Mailing List; +Cc: Stéphane Grosjean

From: Stéphane Grosjean <s.grosjean@peak-system.fr>

This series adds a SocketCAN driver for the HMS Networks IXXAT family of
USB-to-CAN and USB-to-CAN FD interface adapters.

The driver supports two USB communication layers:
- CL1: the protocol for classic CAN 2.0b devices with legacy firmware
- CL2: the newer protocol used by recent device firmware versions

Supported devices (VID 0x08d8 and 0x08db):
  USB-to-CAN Compact / Embedded / Professional / Automotive / Plugin (CL1)
  USB-to-CAN FD Compact / Professional / Automotive / MiniPCIe       (CL2)
  USB-to-CAN/FD Pro / Standard / Standard Card / Pro Module /
                      Standard Module                                (CL2)
  USB-to-CAR, CAN-IDM101, CAN-IDM200                                 (CL2)

Supported CAN control modes (device-dependent):
  listen-only, loopback, triple-sampling, bus-error reporting,
  CAN FD (ISO 11898-1:2015), non-ISO CAN FD, one-shot

Additional features:
  - Hardware receive timestamps propagated via skb_hwtstamps
  - Bus error counter (do_get_berr_counter)
  - TX echo via the SocketCAN echo skb mechanism (up to 32 in flight)
  - Up to 5 independent CAN channels per physical device
  - Automatic protocol layer selection based on firmware version

Signed-off-by: Stéphane Grosjean <s.grosjean@peak-system.fr>

Stéphane Grosjean (4):
  can: usb: ixxat_usb: add shared header
  can: usb: ixxat_usb: add CL1 legacy protocol layer
  can: usb: ixxat_usb: add CL2/V2 protocol layer with CAN
  can: usb: ixxat_usb: add core driver and Kconfig/Makefile

 drivers/net/can/usb/Kconfig                   |   17 +
 drivers/net/can/usb/Makefile                  |    1 +
 drivers/net/can/usb/ixxat_usb/Makefile        |    3 +
 drivers/net/can/usb/ixxat_usb/ixxat_usb_cl1.c |  188 ++
 drivers/net/can/usb/ixxat_usb/ixxat_usb_cl2.c |  347 +++
 .../net/can/usb/ixxat_usb/ixxat_usb_core.c    | 2567 +++++++++++++++++
 .../net/can/usb/ixxat_usb/ixxat_usb_core.h    |  862 ++++++
 7 files changed, 3985 insertions(+)
 create mode 100644 drivers/net/can/usb/ixxat_usb/Makefile
 create mode 100644 drivers/net/can/usb/ixxat_usb/ixxat_usb_cl1.c
 create mode 100644 drivers/net/can/usb/ixxat_usb/ixxat_usb_cl2.c
 create mode 100644 drivers/net/can/usb/ixxat_usb/ixxat_usb_core.c
 create mode 100644 drivers/net/can/usb/ixxat_usb/ixxat_usb_core.h

-- 
2.53.0


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2026-07-23  7:55 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-23  7:29 [PATCH 0/4] can: usb: Add driver for HMS IXXAT USB-to-CAN adapters Stéphane Grosjean
2026-07-23  7:29 ` [PATCH 1/4] can: usb: ixxat_usb: add shared header Stéphane Grosjean
2026-07-23  7:48   ` sashiko-bot
2026-07-23  7:29 ` [PATCH 2/4] can: usb: ixxat_usb: add CL1 legacy protocol layer Stéphane Grosjean
2026-07-23  7:51   ` sashiko-bot
2026-07-23  7:29 ` [PATCH 3/4] can: usb: ixxat_usb: add CL2/V2 protocol layer with CAN Stéphane Grosjean
2026-07-23  7:52   ` sashiko-bot
2026-07-23  7:29 ` [PATCH 4/4] can: usb: ixxat_usb: add core driver and Kconfig/Makefile Stéphane Grosjean
2026-07-23  7:55   ` sashiko-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox