mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-16 23:45:31 +08:00
e06596d500
To support system suspend/resume or runtime suspend/resume, need to use the function pci_set_power_state() to change the power state which requires at least method _PS0 or _PR0 be filled by platform for v3 hw. So check whether the method is supported, if not, print a warning. A Kconfig dependency is added as there is no stub for acpi_device_power_manageable(). Link: https://lore.kernel.org/r/1601649038-25534-5-git-send-email-john.garry@huawei.com Signed-off-by: Xiang Chen <chenxiang66@hisilicon.com> Signed-off-by: John Garry <john.garry@huawei.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
21 lines
513 B
Plaintext
21 lines
513 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config SCSI_HISI_SAS
|
|
tristate "HiSilicon SAS"
|
|
depends on HAS_IOMEM
|
|
depends on ARM64 || COMPILE_TEST
|
|
select SCSI_SAS_LIBSAS
|
|
select BLK_DEV_INTEGRITY
|
|
depends on ATA
|
|
select SATA_HOST
|
|
help
|
|
This driver supports HiSilicon's SAS HBA, including support based
|
|
on platform device
|
|
|
|
config SCSI_HISI_SAS_PCI
|
|
tristate "HiSilicon SAS on PCI bus"
|
|
depends on SCSI_HISI_SAS
|
|
depends on PCI
|
|
depends on ACPI
|
|
help
|
|
This driver supports HiSilicon's SAS HBA based on PCI device
|