]> rtime.felk.cvut.cz Git - socketcan-devel.git/blob - kernel/2.6/drivers/net/can/Kconfig
Tiny enhancements in Kconfig and Makefile sugested by Sam Ravnborg.
[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_IXXAT_PCI
71         tristate "IXXAT PCI Card"
72         depends on PCI && CAN_SJA1000
73         help
74
75         This driver is for the IXXAT PC-I 04/PCI card (1 or 2 channel)
76         from the IXXAT Automation GmbH (http://www.ixxat.de).
77
78 config CAN_PEAK_PCI
79         tristate "PEAK PCAN PCI Card"
80         depends on PCI && CAN_SJA1000
81         help
82
83         This driver is for the PCAN PCI, the PC-PCI CAN plug-in card (1 or
84         2 channel) from PEAK Systems (http://www.peak-system.com).
85
86 config CAN_PCM027
87         depends on CAN_SJA1000 && MACH_PCM027
88         tristate "Phytec pcm027 can driver (SJA1000)"
89         help
90         This driver adds support for the SJA1000 chip on the PCM027 board
91         from Phytec (http://www.phytec.de).
92
93 config CAN_PIPCAN
94         depends on CAN_SJA1000
95         tristate "MPL PIPCAN CAN module driver (SJA1000)"
96         help
97         This driver adds support for the PIPCAN module used on some SBC boards
98         from MPL AG (http://www.mpl.ch).
99
100 config CAN_KVASER_PCI
101         tristate "Kvaser PCIcanx and Kvaser PCIcan PCI Cards"
102         depends on PCI && CAN_SJA1000
103         help
104
105         This driver is for the the PCIcanx and PCIcan cards (1, 2 or
106         4 channel) from Kvaser (http://www.kvaser.com).
107
108 config CAN_MSCAN
109         depends on CAN_DEV && (PPC || M68K || M68KNOMMU)
110         tristate "Support for a Freescale MSCAN based chips"
111         ---help---
112           The Motorola Scalable Controller Area Network (MSCAN) definition
113           is based on the MSCAN12 definition which is the specific
114           implementation of the Motorola Scalable CAN concept targeted for
115           the Motorola MC68HC12 Microcontroller Family.
116
117 config CAN_MPC52XX
118         tristate "Freescale MPC5200 onboard CAN controller"
119         depends on CAN_MSCAN && (PPC_MPC52xx || PPC_52xx)
120         default LITE5200
121         ---help---
122           If you say yes here you get support for Freescale MPC5200
123           onboard dualCAN controller.
124
125           This driver can also be built as a module.  If so, the module
126           will be called mpc52xx_can.
127
128 config CAN_DEBUG_DEVICES
129         bool "CAN devices debugging messages"
130         depends on CAN
131         default N
132         ---help---
133           Say Y here if you want the CAN device drivers to produce a bunch of
134           debug messages to the system log.  Select this if you are having
135           a problem with CAN support and want to see more of what is going
136           on.
137
138 endmenu