features.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /* Copyright(c) 2024-2025 Intel Corporation. */
  3. #ifndef __CXL_FEATURES_H__
  4. #define __CXL_FEATURES_H__
  5. #include <linux/uuid.h>
  6. #include <linux/fwctl.h>
  7. #include <uapi/cxl/features.h>
  8. /* Feature UUIDs used by the kernel */
  9. #define CXL_FEAT_PATROL_SCRUB_UUID \
  10. UUID_INIT(0x96dad7d6, 0xfde8, 0x482b, 0xa7, 0x33, 0x75, 0x77, 0x4e, \
  11. 0x06, 0xdb, 0x8a)
  12. #define CXL_FEAT_ECS_UUID \
  13. UUID_INIT(0xe5b13f22, 0x2328, 0x4a14, 0xb8, 0xba, 0xb9, 0x69, 0x1e, \
  14. 0x89, 0x33, 0x86)
  15. #define CXL_FEAT_SPPR_UUID \
  16. UUID_INIT(0x892ba475, 0xfad8, 0x474e, 0x9d, 0x3e, 0x69, 0x2c, 0x91, \
  17. 0x75, 0x68, 0xbb)
  18. #define CXL_FEAT_HPPR_UUID \
  19. UUID_INIT(0x80ea4521, 0x786f, 0x4127, 0xaf, 0xb1, 0xec, 0x74, 0x59, \
  20. 0xfb, 0x0e, 0x24)
  21. #define CXL_FEAT_CACHELINE_SPARING_UUID \
  22. UUID_INIT(0x96C33386, 0x91dd, 0x44c7, 0x9e, 0xcb, 0xfd, 0xaf, 0x65, \
  23. 0x03, 0xba, 0xc4)
  24. #define CXL_FEAT_ROW_SPARING_UUID \
  25. UUID_INIT(0x450ebf67, 0xb135, 0x4f97, 0xa4, 0x98, 0xc2, 0xd5, 0x7f, \
  26. 0x27, 0x9b, 0xed)
  27. #define CXL_FEAT_BANK_SPARING_UUID \
  28. UUID_INIT(0x78b79636, 0x90ac, 0x4b64, 0xa4, 0xef, 0xfa, 0xac, 0x5d, \
  29. 0x18, 0xa8, 0x63)
  30. #define CXL_FEAT_RANK_SPARING_UUID \
  31. UUID_INIT(0x34dbaff5, 0x0552, 0x4281, 0x8f, 0x76, 0xda, 0x0b, 0x5e, \
  32. 0x7a, 0x76, 0xa7)
  33. /* Feature commands capability supported by a device */
  34. enum cxl_features_capability {
  35. CXL_FEATURES_NONE = 0,
  36. CXL_FEATURES_RO,
  37. CXL_FEATURES_RW,
  38. };
  39. /**
  40. * struct cxl_features_state - The Features state for the device
  41. * @cxlds: Pointer to CXL device state
  42. * @entries: CXl feature entry context
  43. */
  44. struct cxl_features_state {
  45. struct cxl_dev_state *cxlds;
  46. struct cxl_feat_entries {
  47. int num_features;
  48. int num_user_features;
  49. struct cxl_feat_entry ent[] __counted_by(num_features);
  50. } *entries;
  51. };
  52. struct cxl_mailbox;
  53. struct cxl_memdev;
  54. #ifdef CONFIG_CXL_FEATURES
  55. struct cxl_features_state *to_cxlfs(struct cxl_dev_state *cxlds);
  56. int devm_cxl_setup_features(struct cxl_dev_state *cxlds);
  57. int devm_cxl_setup_fwctl(struct device *host, struct cxl_memdev *cxlmd);
  58. #else
  59. static inline struct cxl_features_state *to_cxlfs(struct cxl_dev_state *cxlds)
  60. {
  61. return NULL;
  62. }
  63. static inline int devm_cxl_setup_features(struct cxl_dev_state *cxlds)
  64. {
  65. return -EOPNOTSUPP;
  66. }
  67. static inline int devm_cxl_setup_fwctl(struct device *host,
  68. struct cxl_memdev *cxlmd)
  69. {
  70. return -EOPNOTSUPP;
  71. }
  72. #endif
  73. #endif