css_chars.h 737 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #ifndef _ASM_CSS_CHARS_H
  2. #define _ASM_CSS_CHARS_H
  3. #include <linux/types.h>
  4. #ifdef __KERNEL__
  5. struct css_general_char {
  6. u64 : 12;
  7. u32 dynio : 1; /* bit 12 */
  8. u32 : 4;
  9. u32 eadm : 1; /* bit 17 */
  10. u32 : 23;
  11. u32 aif : 1; /* bit 41 */
  12. u32 : 3;
  13. u32 mcss : 1; /* bit 45 */
  14. u32 fcs : 1; /* bit 46 */
  15. u32 : 1;
  16. u32 ext_mb : 1; /* bit 48 */
  17. u32 : 7;
  18. u32 aif_tdd : 1; /* bit 56 */
  19. u32 : 1;
  20. u32 qebsm : 1; /* bit 58 */
  21. u32 : 8;
  22. u32 aif_osa : 1; /* bit 67 */
  23. u32 : 12;
  24. u32 eadm_rf : 1; /* bit 80 */
  25. u32 : 1;
  26. u32 cib : 1; /* bit 82 */
  27. u32 : 5;
  28. u32 fcx : 1; /* bit 88 */
  29. u32 : 19;
  30. u32 alt_ssi : 1; /* bit 108 */
  31. } __packed;
  32. extern struct css_general_char css_general_characteristics;
  33. #endif /* __KERNEL__ */
  34. #endif