Kconfig 777 B

123456789101112131415161718192021222324
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. menuconfig CAN_C_CAN
  3. tristate "Bosch C_CAN/D_CAN devices"
  4. depends on HAS_IOMEM
  5. if CAN_C_CAN
  6. config CAN_C_CAN_PLATFORM
  7. tristate "Generic Platform Bus based C_CAN/D_CAN driver"
  8. help
  9. This driver adds support for the C_CAN/D_CAN chips connected
  10. to the "platform bus" (Linux abstraction for directly to the
  11. processor attached devices) which can be found on various
  12. boards from ST Microelectronics (http://www.st.com) like the
  13. SPEAr1310 and SPEAr320 evaluation boards & TI (www.ti.com)
  14. boards like am335x, dm814x, dm813x and dm811x.
  15. config CAN_C_CAN_PCI
  16. tristate "Generic PCI Bus based C_CAN/D_CAN driver"
  17. depends on PCI
  18. help
  19. This driver adds support for the C_CAN/D_CAN chips connected
  20. to the PCI bus.
  21. endif