Kconfig 1001 B

123456789101112131415161718192021222324252627282930313233
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Kernel configuration file for the SAS Class
  4. #
  5. # Copyright (C) 2005 Adaptec, Inc. All rights reserved.
  6. # Copyright (C) 2005 Luben Tuikov <[email protected]>
  7. #
  8. config SCSI_SAS_LIBSAS
  9. tristate "SAS Domain Transport Attributes"
  10. depends on SCSI
  11. select SCSI_SAS_ATTRS
  12. help
  13. This provides transport specific helpers for SAS drivers which
  14. use the domain device construct (like the aic94xxx).
  15. config SCSI_SAS_ATA
  16. bool "ATA support for libsas (requires libata)"
  17. depends on SCSI_SAS_LIBSAS
  18. depends on ATA = y || ATA = SCSI_SAS_LIBSAS
  19. select SATA_HOST
  20. help
  21. Builds in ATA support into libsas. Will necessitate
  22. the loading of libata along with libsas.
  23. config SCSI_SAS_HOST_SMP
  24. bool "Support for SMP interpretation for SAS hosts"
  25. default y
  26. depends on SCSI_SAS_LIBSAS
  27. help
  28. Allows sas hosts to receive SMP frames. Selecting this
  29. option builds an SMP interpreter into libsas. Say
  30. N here if you want to save the few kb this consumes.