Skip to content

Commit fd11593

Browse files
Sergei Shtylyovmarckleinebudde
authored andcommitted
can: add Renesas R-Car CAN driver
Add support for the CAN controller found in Renesas R-Car SoCs. Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
1 parent a9c6920 commit fd11593

File tree

4 files changed

+904
-0
lines changed

4 files changed

+904
-0
lines changed

drivers/net/can/Kconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,16 @@ config CAN_GRCAN
119119
endian syntheses of the cores would need some modifications on
120120
the hardware level to work.
121121

122+
config CAN_RCAR
123+
tristate "Renesas R-Car CAN controller"
124+
depends on ARM
125+
---help---
126+
Say Y here if you want to use CAN controller found on Renesas R-Car
127+
SoCs.
128+
129+
To compile this driver as a module, choose M here: the module will
130+
be called rcar_can.
131+
122132
source "drivers/net/can/mscan/Kconfig"
123133

124134
source "drivers/net/can/sja1000/Kconfig"

drivers/net/can/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,6 @@ obj-$(CONFIG_CAN_JANZ_ICAN3) += janz-ican3.o
2525
obj-$(CONFIG_CAN_FLEXCAN) += flexcan.o
2626
obj-$(CONFIG_PCH_CAN) += pch_can.o
2727
obj-$(CONFIG_CAN_GRCAN) += grcan.o
28+
obj-$(CONFIG_CAN_RCAR) += rcar_can.o
2829

2930
ccflags-$(CONFIG_CAN_DEBUG_DEVICES) := -DDEBUG

0 commit comments

Comments
 (0)