Kconfig 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. menu "CAN Device Drivers"
  2. depends on CAN
  3. config CAN_VCAN
  4. tristate "Virtual Local CAN Interface (vcan)"
  5. depends on CAN
  6. default N
  7. ---help---
  8. Similar to the network loopback devices, vcan offers a
  9. virtual local CAN interface.
  10. This driver can also be built as a module. If so, the module
  11. will be called vcan.
  12. config CAN_SLCAN
  13. tristate "Serial / USB serial CAN Adaptors (slcan)"
  14. depends on CAN
  15. default N
  16. ---help---
  17. CAN driver for several 'low cost' CAN interfaces that are attached
  18. via serial lines or via USB-to-serial adapters using the LAWICEL
  19. ASCII protocol. The driver implements the tty linediscipline N_SLCAN.
  20. As only the sending and receiving of CAN frames is implemented, this
  21. driver should work with the (serial/USB) CAN hardware from:
  22. www.canusb.com / www.can232.com / www.mictronics.de / www.canhack.de
  23. Userspace tools to attach the SLCAN line discipline (slcan_attach,
  24. slcand) can be found in the can-utils at the SocketCAN SVN, see
  25. http://developer.berlios.de/projects/socketcan for details.
  26. The slcan driver supports up to 10 CAN netdevices by default which
  27. can be changed by the 'maxdev=xx' module option. This driver can
  28. also be built as a module. If so, the module will be called slcan.
  29. config CAN_DEV
  30. tristate "Platform CAN drivers with Netlink support"
  31. depends on CAN
  32. default Y
  33. ---help---
  34. Enables the common framework for platform CAN drivers with Netlink
  35. support. This is the standard library for CAN drivers.
  36. If unsure, say Y.
  37. config CAN_CALC_BITTIMING
  38. bool "CAN bit-timing calculation"
  39. depends on CAN_DEV
  40. default Y
  41. ---help---
  42. If enabled, CAN bit-timing parameters will be calculated for the
  43. bit-rate specified via Netlink argument "bitrate" when the device
  44. get started. This works fine for the most common CAN controllers
  45. with standard bit-rates but may fail for exotic bit-rates or CAN
  46. source clock frequencies. Disabling saves some space, but then the
  47. bit-timing parameters must be specified directly using the Netlink
  48. arguments "tq", "prop_seg", "phase_seg1", "phase_seg2" and "sjw".
  49. If unsure, say Y.
  50. config CAN_AT91
  51. tristate "Atmel AT91 onchip CAN controller"
  52. depends on CAN_DEV && (ARCH_AT91SAM9263 || ARCH_AT91SAM9X5)
  53. ---help---
  54. This is a driver for the SoC CAN controller in Atmel's AT91SAM9263
  55. and AT91SAM9X5 processors.
  56. config CAN_TI_HECC
  57. depends on CAN_DEV && ARCH_OMAP3
  58. tristate "TI High End CAN Controller"
  59. ---help---
  60. Driver for TI HECC (High End CAN Controller) module found on many
  61. TI devices. The device specifications are available from www.ti.com
  62. config CAN_MCP251X
  63. tristate "Microchip MCP251x SPI CAN controllers"
  64. depends on CAN_DEV && SPI && HAS_DMA
  65. ---help---
  66. Driver for the Microchip MCP251x SPI CAN controllers.
  67. config CAN_BFIN
  68. depends on CAN_DEV && (BF534 || BF536 || BF537 || BF538 || BF539 || BF54x)
  69. tristate "Analog Devices Blackfin on-chip CAN"
  70. ---help---
  71. Driver for the Analog Devices Blackfin on-chip CAN controllers
  72. To compile this driver as a module, choose M here: the
  73. module will be called bfin_can.
  74. config CAN_JANZ_ICAN3
  75. tristate "Janz VMOD-ICAN3 Intelligent CAN controller"
  76. depends on CAN_DEV && MFD_JANZ_CMODIO
  77. ---help---
  78. Driver for Janz VMOD-ICAN3 Intelligent CAN controller module, which
  79. connects to a MODULbus carrier board.
  80. This driver can also be built as a module. If so, the module will be
  81. called janz-ican3.ko.
  82. config HAVE_CAN_FLEXCAN
  83. bool
  84. config CAN_FLEXCAN
  85. tristate "Support for Freescale FLEXCAN based chips"
  86. depends on CAN_DEV && HAVE_CAN_FLEXCAN
  87. ---help---
  88. Say Y here if you want to support for Freescale FlexCAN.
  89. config PCH_CAN
  90. tristate "PCH CAN"
  91. depends on CAN_DEV && PCI
  92. ---help---
  93. This driver is for PCH CAN of Topcliff which is an IOH for x86
  94. embedded processor.
  95. This driver can access CAN bus.
  96. source "drivers/net/can/mscan/Kconfig"
  97. source "drivers/net/can/sja1000/Kconfig"
  98. source "drivers/net/can/c_can/Kconfig"
  99. source "drivers/net/can/usb/Kconfig"
  100. source "drivers/net/can/softing/Kconfig"
  101. config CAN_DEBUG_DEVICES
  102. bool "CAN devices debugging messages"
  103. depends on CAN
  104. default N
  105. ---help---
  106. Say Y here if you want the CAN device drivers to produce a bunch of
  107. debug messages to the system log. Select this if you are having
  108. a problem with CAN support and want to see more of what is going
  109. on.
  110. endmenu