]> rtime.felk.cvut.cz Git - socketcan-devel.git/blob - kernel/2.6/drivers/net/can/Kconfig
Added Softing driver contributed by Kurt Van Dijck (EIA Electronics).
[socketcan-devel.git] / kernel / 2.6 / drivers / net / can / Kconfig
1 menu "CAN Device Drivers"
2         depends on CAN
3
4 config CAN_VCAN
5         tristate "Virtual Local CAN Interface (vcan)"
6         depends on CAN
7         default N
8         ---help---
9           Similar to the network loopback devices, vcan offers a
10           virtual local CAN interface.
11
12           This driver can also be built as a module.  If so, the module
13           will be called vcan.
14
15 config CAN_SLCAN
16         tristate "Serial / USB serial CAN Adaptors (slcan)"
17         depends on CAN && EXPERIMENTAL
18         default N
19         ---help---
20           CAN driver for several 'low cost' CAN interfaces that are attached
21           via serial lines or via USB-to-serial adapters using the LAWICEL
22           ASCII protocol. The driver implements the tty linediscipline N_SLCAN.
23
24           This driver can also be built as a module.  If so, the module
25           will be called slcan.
26
27 config CAN_OLD_DRIVERS
28         tristate "Prompt for old CAN drivers (e.g. no sysfs support)"
29         depends on CAN
30         default N
31         ---help---
32           The old drivers do not support sysfs nor proper platform device
33           support. Some of the old drivers might only be configured by
34           module commandline options.
35
36 if CAN_OLD_DRIVERS
37 source "drivers/net/can/old/Kconfig"
38 endif
39
40 config CAN_DEV
41         tristate "Prompt for platform CAN drivers with sysfs support"
42         depends on CAN
43         default Y
44         ---help---
45           Enables the common framework for platform CAN drivers with sysfs
46           support. This is the standard library for CAN drivers.
47           If unsure, say Y.
48
49 config CAN_SJA1000
50         depends on CAN_DEV
51         tristate "Philips SJA1000"
52         ---help---
53           The SJA1000 is one of the top CAN controllers out there. As it
54           has a multiplexed interface it fits directly to 8051
55           microcontrollers or into the PC I/O port space. The SJA1000
56           is a full CAN controller, with shadow registers for RX and TX.
57           It can send and receive any kinds of CAN frames (SFF/EFF/RTR)
58           with a single (simple) filter setup.
59
60           This driver will use the new device interface.
61
62 config CAN_EMS_PCI
63         tristate "EMS CPC-PCI and CPC-PCIe Card"
64         depends on PCI && CAN_SJA1000
65         help
66
67         This driver is for the one or two channel CPC-PCI and CPC-PCIe
68         cards from EMS Dr. Thomas Wuensche (http://www.ems-wuensche.de).
69
70 config CAN_EMS_PCMCIA
71         tristate "EMS CPC-CARD Card"
72         depends on PCMCIA && CAN_SJA1000
73         help
74
75         This driver is for the one or two channel CPC-CARD cards from
76         EMS Dr. Thomas Wuensche (http://www.ems-wuensche.de).
77
78 config CAN_IXXAT_PCI
79         tristate "IXXAT PCI Card"
80         depends on PCI && CAN_SJA1000
81         help
82
83         This driver is for the IXXAT PC-I 04/PCI card (1 or 2 channel)
84         from the IXXAT Automation GmbH (http://www.ixxat.de).
85
86 config CAN_PEAK_PCI
87         tristate "PEAK PCAN PCI Card"
88         depends on PCI && CAN_SJA1000
89         help
90
91         This driver is for the PCAN PCI, the PC-PCI CAN plug-in card (1 or
92         2 channel) from PEAK Systems (http://www.peak-system.com).
93
94 config CAN_PCM027
95         depends on CAN_SJA1000 && MACH_PCM027
96         tristate "Phytec pcm027 can driver (SJA1000)"
97         help
98         This driver adds support for the SJA1000 chip on the PCM027 board
99         from Phytec (http://www.phytec.de).
100
101 config CAN_PIPCAN
102         depends on CAN_SJA1000
103         tristate "MPL PIPCAN CAN module driver (SJA1000)"
104         help
105         This driver adds support for the PIPCAN module used on some SBC boards
106         from MPL AG (http://www.mpl.ch).
107
108 config CAN_KVASER_PCI
109         tristate "Kvaser PCIcanx and Kvaser PCIcan PCI Cards"
110         depends on PCI && CAN_SJA1000
111         help
112
113         This driver is for the the PCIcanx and PCIcan cards (1, 2 or
114         4 channel) from Kvaser (http://www.kvaser.com).
115
116 config CAN_SOFTING
117         tristate "Softing Gmbh CAN generic support"
118         depends on CAN_DEV
119         ---help---
120           generic softing CAN cards
121
122 config CAN_SOFTING_CS
123         tristate "Softing CAN pcmcia cards"
124         depends on CAN_SOFTING && PCMCIA
125
126 config CAN_MSCAN
127         depends on CAN_DEV && (PPC || M68K || M68KNOMMU)
128         tristate "Support for a Freescale MSCAN based chips"
129         ---help---
130           The Motorola Scalable Controller Area Network (MSCAN) definition
131           is based on the MSCAN12 definition which is the specific
132           implementation of the Motorola Scalable CAN concept targeted for
133           the Motorola MC68HC12 Microcontroller Family.
134
135 config CAN_MPC52XX
136         tristate "Freescale MPC5200 onboard CAN controller"
137         depends on CAN_MSCAN && (PPC_MPC52xx || PPC_52xx)
138         default LITE5200
139         ---help---
140           If you say yes here you get support for Freescale MPC5200
141           onboard dualCAN controller.
142
143           This driver can also be built as a module.  If so, the module
144           will be called mpc52xx_can.
145
146 config CAN_DEBUG_DEVICES
147         bool "CAN devices debugging messages"
148         depends on CAN
149         default N
150         ---help---
151           Say Y here if you want the CAN device drivers to produce a bunch of
152           debug messages to the system log.  Select this if you are having
153           a problem with CAN support and want to see more of what is going
154           on.
155
156 endmenu