ahci.h 525 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0-only or BSD-2-Clause */
  2. /*
  3. * This header provides constants for most AHCI bindings.
  4. */
  5. #ifndef _DT_BINDINGS_ATA_AHCI_H
  6. #define _DT_BINDINGS_ATA_AHCI_H
  7. /* Host Bus Adapter generic platform capabilities */
  8. #define HBA_SSS (1 << 27)
  9. #define HBA_SMPS (1 << 28)
  10. /* Host Bus Adapter port-specific platform capabilities */
  11. #define HBA_PORT_HPCP (1 << 18)
  12. #define HBA_PORT_MPSP (1 << 19)
  13. #define HBA_PORT_CPD (1 << 20)
  14. #define HBA_PORT_ESP (1 << 21)
  15. #define HBA_PORT_FBSCP (1 << 22)
  16. #endif