Kconfig 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # Sun network device configuration
  4. #
  5. config NET_VENDOR_SUN
  6. bool "Sun devices"
  7. default y
  8. depends on SUN3 || SBUS || PCI || SUN_LDOMS
  9. ---help---
  10. If you have a network (Ethernet) card belonging to this class, say Y.
  11. Note that the answer to this question doesn't directly affect the
  12. kernel: saying N will just cause the configurator to skip all
  13. the questions about Sun network interfaces. If you say Y, you will be
  14. asked for your specific card in the following questions.
  15. if NET_VENDOR_SUN
  16. config HAPPYMEAL
  17. tristate "Sun Happy Meal 10/100baseT support"
  18. depends on (SBUS || PCI)
  19. select CRC32
  20. ---help---
  21. This driver supports the "hme" interface present on most Ultra
  22. systems and as an option on older Sbus systems. This driver supports
  23. both PCI and Sbus devices. This driver also supports the "qfe" quad
  24. 100baseT device available in both PCI and Sbus configurations.
  25. To compile this driver as a module, choose M here: the module
  26. will be called sunhme.
  27. config SUNBMAC
  28. tristate "Sun BigMAC 10/100baseT support"
  29. depends on SBUS
  30. select CRC32
  31. ---help---
  32. This driver supports the "be" interface available as an Sbus option.
  33. This is Sun's older 100baseT Ethernet device.
  34. To compile this driver as a module, choose M here: the module
  35. will be called sunbmac.
  36. config SUNQE
  37. tristate "Sun QuadEthernet support"
  38. depends on SBUS
  39. select CRC32
  40. ---help---
  41. This driver supports the "qe" 10baseT Ethernet device, available as
  42. an Sbus option. Note that this is not the same as Quad FastEthernet
  43. "qfe" which is supported by the Happy Meal driver instead.
  44. To compile this driver as a module, choose M here: the module
  45. will be called sunqe.
  46. config SUNGEM
  47. tristate "Sun GEM support"
  48. depends on PCI
  49. select CRC32
  50. select SUNGEM_PHY
  51. ---help---
  52. Support for the Sun GEM chip, aka Sun GigabitEthernet/P 2.0. See also
  53. <http://docs.oracle.com/cd/E19455-01/806-3985-10/806-3985-10.pdf>.
  54. config CASSINI
  55. tristate "Sun Cassini support"
  56. depends on PCI
  57. select CRC32
  58. ---help---
  59. Support for the Sun Cassini chip, aka Sun GigaSwift Ethernet. See also
  60. <http://docs.oracle.com/cd/E19113-01/giga.ether.pci/817-4341-10/817-4341-10.pdf>.
  61. config SUNVNET_COMMON
  62. tristate "Common routines to support Sun Virtual Networking"
  63. depends on SUN_LDOMS
  64. default m
  65. config SUNVNET
  66. tristate "Sun Virtual Network support"
  67. default m
  68. depends on SUN_LDOMS
  69. depends on SUNVNET_COMMON
  70. ---help---
  71. Support for virtual network devices under Sun Logical Domains.
  72. config LDMVSW
  73. tristate "Sun4v LDoms Virtual Switch support"
  74. default m
  75. depends on SUN_LDOMS
  76. depends on SUNVNET_COMMON
  77. ---help---
  78. Support for virtual switch devices under Sun4v Logical Domains.
  79. This driver adds a network interface for every vsw-port node
  80. found in the machine description of a service domain.
  81. Linux bridge/switch software can use these interfaces for
  82. guest domain network interconnectivity or guest domain
  83. connection to a physical network on a service domain.
  84. config NIU
  85. tristate "Sun Neptune 10Gbit Ethernet support"
  86. depends on PCI
  87. select CRC32
  88. ---help---
  89. This enables support for cards based upon Sun's
  90. Neptune chipset.
  91. endif # NET_VENDOR_SUN