Kconfig 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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_DEV
  13. tristate "Platform CAN drivers with Netlink support"
  14. depends on CAN
  15. default Y
  16. ---help---
  17. Enables the common framework for platform CAN drivers with Netlink
  18. support. This is the standard library for CAN drivers.
  19. If unsure, say Y.
  20. config CAN_CALC_BITTIMING
  21. bool "CAN bit-timing calculation"
  22. depends on CAN_DEV
  23. default Y
  24. ---help---
  25. If enabled, CAN bit-timing parameters will be calculated for the
  26. bit-rate specified via Netlink argument "bitrate" when the device
  27. get started. This works fine for the most common CAN controllers
  28. with standard bit-rates but may fail for exotic bit-rates or CAN
  29. source clock frequencies. Disabling saves some space, but then the
  30. bit-timing parameters must be specified directly using the Netlink
  31. arguments "tq", "prop_seg", "phase_seg1", "phase_seg2" and "sjw".
  32. If unsure, say Y.
  33. config CAN_SJA1000
  34. depends on CAN_DEV && HAS_IOMEM
  35. tristate "Philips SJA1000"
  36. ---help---
  37. Driver for the SJA1000 CAN controllers from Philips or NXP
  38. config CAN_SJA1000_ISA
  39. depends on CAN_SJA1000 && ISA
  40. tristate "ISA Bus based legacy SJA1000 driver"
  41. ---help---
  42. This driver adds legacy support for SJA1000 chips connected to
  43. the ISA bus using I/O port, memory mapped or indirect access.
  44. config CAN_SJA1000_PLATFORM
  45. depends on CAN_SJA1000
  46. tristate "Generic Platform Bus based SJA1000 driver"
  47. ---help---
  48. This driver adds support for the SJA1000 chips connected to
  49. the "platform bus" (Linux abstraction for directly to the
  50. processor attached devices). Which can be found on various
  51. boards from Phytec (http://www.phytec.de) like the PCM027,
  52. PCM038.
  53. config CAN_SJA1000_OF_PLATFORM
  54. depends on CAN_SJA1000 && PPC_OF
  55. tristate "Generic OF Platform Bus based SJA1000 driver"
  56. ---help---
  57. This driver adds support for the SJA1000 chips connected to
  58. the OpenFirmware "platform bus" found on embedded systems with
  59. OpenFirmware bindings, e.g. if you have a PowerPC based system
  60. you may want to enable this option.
  61. config CAN_EMS_PCI
  62. tristate "EMS CPC-PCI, CPC-PCIe and CPC-104P Card"
  63. depends on PCI && CAN_SJA1000
  64. ---help---
  65. This driver is for the one, two or four channel CPC-PCI,
  66. CPC-PCIe and CPC-104P cards from EMS Dr. Thomas Wuensche
  67. (http://www.ems-wuensche.de).
  68. config CAN_EMS_USB
  69. tristate "EMS CPC-USB/ARM7 CAN/USB interface"
  70. depends on USB && CAN_DEV
  71. ---help---
  72. This driver is for the one channel CPC-USB/ARM7 CAN/USB interface
  73. from from EMS Dr. Thomas Wuensche (http://www.ems-wuensche.de).
  74. config CAN_KVASER_PCI
  75. tristate "Kvaser PCIcanx and Kvaser PCIcan PCI Cards"
  76. depends on PCI && CAN_SJA1000
  77. ---help---
  78. This driver is for the the PCIcanx and PCIcan cards (1, 2 or
  79. 4 channel) from Kvaser (http://www.kvaser.com).
  80. config CAN_AT91
  81. tristate "Atmel AT91 onchip CAN controller"
  82. depends on CAN && CAN_DEV && ARCH_AT91SAM9263
  83. ---help---
  84. This is a driver for the SoC CAN controller in Atmel's AT91SAM9263.
  85. config CAN_DEBUG_DEVICES
  86. bool "CAN devices debugging messages"
  87. depends on CAN
  88. default N
  89. ---help---
  90. Say Y here if you want the CAN device drivers to produce a bunch of
  91. debug messages to the system log. Select this if you are having
  92. a problem with CAN support and want to see more of what is going
  93. on.
  94. endmenu