Kconfig 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # Platform support for Mellanox hardware
  4. #
  5. menuconfig MELLANOX_PLATFORM
  6. bool "Platform support for Mellanox hardware"
  7. depends on X86 || ARM || ARM64 || COMPILE_TEST
  8. help
  9. Say Y here to get to see options for platform support for
  10. Mellanox systems. This option alone does not add any kernel code.
  11. If you say N, all options in this submenu will be skipped and disabled.
  12. if MELLANOX_PLATFORM
  13. config MLXREG_HOTPLUG
  14. tristate "Mellanox platform hotplug driver support"
  15. depends on HWMON
  16. depends on I2C
  17. select REGMAP
  18. help
  19. This driver handles hot-plug events for the power suppliers, power
  20. cables and fans on the wide range Mellanox IB and Ethernet systems.
  21. config MLXREG_IO
  22. tristate "Mellanox platform register access driver support"
  23. depends on HWMON
  24. select REGMAP
  25. help
  26. This driver allows access to Mellanox programmable device register
  27. space through sysfs interface. The sets of registers for sysfs access
  28. are defined per system type bases and include the registers related
  29. to system resets operation, system reset causes monitoring and some
  30. kinds of mux selection.
  31. config MLXREG_LC
  32. tristate "Mellanox line card platform driver support"
  33. depends on HWMON
  34. depends on I2C
  35. select REGMAP
  36. help
  37. This driver provides support for the Mellanox MSN4800-XX line cards,
  38. which are the part of MSN4800 Ethernet modular switch systems
  39. providing a high performance switching solution for Enterprise Data
  40. Centers (EDC) for building Ethernet based clusters, High-Performance
  41. Computing (HPC) and embedded environments.
  42. config MLXBF_TMFIFO
  43. tristate "Mellanox BlueField SoC TmFifo platform driver"
  44. depends on ARM64
  45. depends on ACPI
  46. depends on VIRTIO_CONSOLE && VIRTIO_NET
  47. help
  48. Say y here to enable TmFifo support. The TmFifo driver provides
  49. platform driver support for the TmFifo which supports console
  50. and networking based on the virtio framework.
  51. config MLXBF_BOOTCTL
  52. tristate "Mellanox BlueField Firmware Boot Control driver"
  53. depends on ARM64
  54. depends on ACPI
  55. depends on NET
  56. help
  57. The Mellanox BlueField firmware implements functionality to
  58. request swapping the primary and alternate eMMC boot partition,
  59. and to set up a watchdog that can undo that swap if the system
  60. does not boot up correctly. This driver provides sysfs access
  61. to the userspace tools, to be used in conjunction with the eMMC
  62. device driver to do necessary initial swap of the boot partition.
  63. config MLXBF_PMC
  64. tristate "Mellanox BlueField Performance Monitoring Counters driver"
  65. depends on ARM64
  66. depends on HWMON
  67. depends on ACPI
  68. help
  69. Say y here to enable PMC support. The PMC driver provides access
  70. to performance monitoring counters within various blocks in the
  71. Mellanox BlueField SoC via a sysfs interface.
  72. config NVSW_SN2201
  73. tristate "Nvidia SN2201 platform driver support"
  74. depends on HWMON && I2C
  75. depends on ACPI || COMPILE_TEST
  76. select REGMAP_I2C
  77. help
  78. This driver provides support for the Nvidia SN2201 platform.
  79. The SN2201 is a highly integrated for one rack unit system with
  80. L3 management switches. It has 48 x 1Gbps RJ45 + 4 x 100G QSFP28
  81. ports in a compact 1RU form factor. The system also including a
  82. serial port (RS-232 interface), an OOB port (1G/100M MDI interface)
  83. and USB ports for management functions.
  84. The processor used on SN2201 is Intel Atom®Processor C Series,
  85. C3338R which is one of the Denverton product families.
  86. System equipped with Nvidia®Spectrum-1 32x100GbE Ethernet switch.
  87. endif # MELLANOX_PLATFORM