css_chars.h 904 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_CSS_CHARS_H
  3. #define _ASM_CSS_CHARS_H
  4. #include <linux/types.h>
  5. struct css_general_char {
  6. u64 : 12;
  7. u64 dynio : 1; /* bit 12 */
  8. u64 : 4;
  9. u64 eadm : 1; /* bit 17 */
  10. u64 : 23;
  11. u64 aif : 1; /* bit 41 */
  12. u64 : 3;
  13. u64 mcss : 1; /* bit 45 */
  14. u64 fcs : 1; /* bit 46 */
  15. u64 : 1;
  16. u64 ext_mb : 1; /* bit 48 */
  17. u64 : 7;
  18. u64 aif_tdd : 1; /* bit 56 */
  19. u64 : 1;
  20. u64 qebsm : 1; /* bit 58 */
  21. u64 : 2;
  22. u64 aiv : 1; /* bit 61 */
  23. u64 : 2;
  24. u64 : 3;
  25. u64 aif_osa : 1; /* bit 67 */
  26. u64 : 12;
  27. u64 eadm_rf : 1; /* bit 80 */
  28. u64 : 1;
  29. u64 cib : 1; /* bit 82 */
  30. u64 : 5;
  31. u64 fcx : 1; /* bit 88 */
  32. u64 : 19;
  33. u64 alt_ssi : 1; /* bit 108 */
  34. u64 : 1;
  35. u64 narf : 1; /* bit 110 */
  36. u64 : 5;
  37. u64 enarf: 1; /* bit 116 */
  38. u64 : 6;
  39. u64 util_str : 1;/* bit 123 */
  40. } __packed;
  41. extern struct css_general_char css_general_characteristics;
  42. #endif