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

Commit 0738eff1 authored by Gerhard Bertelsmann's avatar Gerhard Bertelsmann Committed by Marc Kleine-Budde
Browse files

can: Allwinner A10/A20 CAN Controller support - Kernel module



Kernel module for Allwinner A10/A20 CAN controller.

Signed-off-by: default avatarGerhard Bertelsmann <info@gerhard-bertelsmann.de>
Acked-by: default avatarMaxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: default avatarMarc Kleine-Budde <mkl@pengutronix.de>
parent 4366bd4f
Loading
Loading
Loading
Loading
+10 −0
Original line number Original line Diff line number Diff line
@@ -129,6 +129,16 @@ config CAN_RCAR
	  To compile this driver as a module, choose M here: the module will
	  To compile this driver as a module, choose M here: the module will
	  be called rcar_can.
	  be called rcar_can.


config CAN_SUN4I
	tristate "Allwinner A10 CAN controller"
	depends on MACH_SUN4I || MACH_SUN7I || COMPILE_TEST
	---help---
	  Say Y here if you want to use CAN controller found on Allwinner
	  A10/A20 SoCs.

	  To compile this driver as a module, choose M here: the module will
	  be called sun4i_can.

config CAN_XILINXCAN
config CAN_XILINXCAN
	tristate "Xilinx CAN"
	tristate "Xilinx CAN"
	depends on ARCH_ZYNQ || ARM64 || MICROBLAZE || COMPILE_TEST
	depends on ARCH_ZYNQ || ARM64 || MICROBLAZE || COMPILE_TEST
+1 −0
Original line number Original line Diff line number Diff line
@@ -27,6 +27,7 @@ obj-$(CONFIG_CAN_FLEXCAN) += flexcan.o
obj-$(CONFIG_PCH_CAN)		+= pch_can.o
obj-$(CONFIG_PCH_CAN)		+= pch_can.o
obj-$(CONFIG_CAN_GRCAN)		+= grcan.o
obj-$(CONFIG_CAN_GRCAN)		+= grcan.o
obj-$(CONFIG_CAN_RCAR)		+= rcar_can.o
obj-$(CONFIG_CAN_RCAR)		+= rcar_can.o
obj-$(CONFIG_CAN_SUN4I)		+= sun4i_can.o
obj-$(CONFIG_CAN_XILINXCAN)	+= xilinx_can.o
obj-$(CONFIG_CAN_XILINXCAN)	+= xilinx_can.o


subdir-ccflags-y += -D__CHECK_ENDIAN__
subdir-ccflags-y += -D__CHECK_ENDIAN__
+857 −0

File added.

Preview size limit exceeded, changes collapsed.