Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bb478555 authored by Stephane Grosjean's avatar Stephane Grosjean Committed by Marc Kleine-Budde
Browse files

can: usb: PEAK-System Technik USB adapters driver core



This patch adds the core of the peak_usb driver which handles PEAK-System
Technik PCAN USB adapters. It defines the parts which are common to the
PCAN-USB adapters: can network interfaces management, network-to/from-usb
data path interface, timestamps management...

Tested-by: default avatarOliver Hartkopp <socketcan@hartkopp.net>
Acked-by: default avatarWolfgang Grandegger <wg@grandegger.com>
Signed-off-by: default avatarStephane Grosjean <s.grosjean@peak-system.com>
Signed-off-by: default avatarMarc Kleine-Budde <mkl@pengutronix.de>
parent 2b61972b
Loading
Loading
Loading
Loading
+6 −0
Original line number Original line Diff line number Diff line
@@ -13,4 +13,10 @@ config CAN_ESD_USB2
          This driver supports the CAN-USB/2 interface
          This driver supports the CAN-USB/2 interface
          from esd electronic system design gmbh (http://www.esd.eu).
          from esd electronic system design gmbh (http://www.esd.eu).


config CAN_PEAK_USB
	tristate "PEAK PCAN-USB/USB Pro interfaces"
	---help---
	  This driver supports the PCAN-USB and PCAN-USB Pro adapters
	  from PEAK-System Technik (http://www.peak-system.com).

endmenu
endmenu
+1 −0
Original line number Original line Diff line number Diff line
@@ -4,5 +4,6 @@


obj-$(CONFIG_CAN_EMS_USB) += ems_usb.o
obj-$(CONFIG_CAN_EMS_USB) += ems_usb.o
obj-$(CONFIG_CAN_ESD_USB2) += esd_usb2.o
obj-$(CONFIG_CAN_ESD_USB2) += esd_usb2.o
obj-$(CONFIG_CAN_PEAK_USB) += peak_usb/


ccflags-$(CONFIG_CAN_DEBUG_DEVICES) := -DDEBUG
ccflags-$(CONFIG_CAN_DEBUG_DEVICES) := -DDEBUG
+2 −0
Original line number Original line Diff line number Diff line
obj-$(CONFIG_CAN_PEAK_USB) += peak_usb.o
peak_usb-y = pcan_usb_core.o
+951 −0

File added.

Preview size limit exceeded, changes collapsed.

+146 −0

File added.

Preview size limit exceeded, changes collapsed.