sclp.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright IBM Corp. 2007
  4. */
  5. #ifndef _ASM_S390_SCLP_H
  6. #define _ASM_S390_SCLP_H
  7. #include <linux/types.h>
  8. #define SCLP_CHP_INFO_MASK_SIZE 32
  9. #define EARLY_SCCB_SIZE PAGE_SIZE
  10. #define SCLP_MAX_CORES 512
  11. /* 144 + 16 * SCLP_MAX_CORES + 2 * (SCLP_MAX_CORES - 1) */
  12. #define EXT_SCCB_READ_SCP (3 * PAGE_SIZE)
  13. /* 24 + 16 * SCLP_MAX_CORES */
  14. #define EXT_SCCB_READ_CPU (3 * PAGE_SIZE)
  15. #ifndef __ASSEMBLY__
  16. #include <linux/uio.h>
  17. #include <asm/chpid.h>
  18. #include <asm/cpu.h>
  19. struct sclp_chp_info {
  20. u8 recognized[SCLP_CHP_INFO_MASK_SIZE];
  21. u8 standby[SCLP_CHP_INFO_MASK_SIZE];
  22. u8 configured[SCLP_CHP_INFO_MASK_SIZE];
  23. };
  24. #define LOADPARM_LEN 8
  25. struct sclp_ipl_info {
  26. int is_valid;
  27. int has_dump;
  28. char loadparm[LOADPARM_LEN];
  29. };
  30. struct sclp_core_entry {
  31. u8 core_id;
  32. u8 reserved0;
  33. u8 : 4;
  34. u8 sief2 : 1;
  35. u8 skey : 1;
  36. u8 : 2;
  37. u8 : 2;
  38. u8 gpere : 1;
  39. u8 siif : 1;
  40. u8 sigpif : 1;
  41. u8 : 3;
  42. u8 reserved2[3];
  43. u8 : 2;
  44. u8 ib : 1;
  45. u8 cei : 1;
  46. u8 : 4;
  47. u8 reserved3[6];
  48. u8 type;
  49. u8 reserved1;
  50. } __attribute__((packed));
  51. struct sclp_core_info {
  52. unsigned int configured;
  53. unsigned int standby;
  54. unsigned int combined;
  55. struct sclp_core_entry core[SCLP_MAX_CORES];
  56. };
  57. struct sclp_info {
  58. unsigned char has_linemode : 1;
  59. unsigned char has_vt220 : 1;
  60. unsigned char has_siif : 1;
  61. unsigned char has_sigpif : 1;
  62. unsigned char has_core_type : 1;
  63. unsigned char has_sprp : 1;
  64. unsigned char has_hvs : 1;
  65. unsigned char has_esca : 1;
  66. unsigned char has_sief2 : 1;
  67. unsigned char has_64bscao : 1;
  68. unsigned char has_gpere : 1;
  69. unsigned char has_cmma : 1;
  70. unsigned char has_gsls : 1;
  71. unsigned char has_ib : 1;
  72. unsigned char has_cei : 1;
  73. unsigned char has_pfmfi : 1;
  74. unsigned char has_ibs : 1;
  75. unsigned char has_skey : 1;
  76. unsigned char has_kss : 1;
  77. unsigned char has_gisaf : 1;
  78. unsigned char has_diag318 : 1;
  79. unsigned char has_sipl : 1;
  80. unsigned char has_dirq : 1;
  81. unsigned char has_iplcc : 1;
  82. unsigned char has_zpci_lsi : 1;
  83. unsigned char has_aisii : 1;
  84. unsigned char has_aeni : 1;
  85. unsigned char has_aisi : 1;
  86. unsigned int ibc;
  87. unsigned int mtid;
  88. unsigned int mtid_cp;
  89. unsigned int mtid_prev;
  90. unsigned long rzm;
  91. unsigned long rnmax;
  92. unsigned long hamax;
  93. unsigned int max_cores;
  94. unsigned long hsa_size;
  95. unsigned long facilities;
  96. unsigned int hmfai;
  97. };
  98. extern struct sclp_info sclp;
  99. struct zpci_report_error_header {
  100. u8 version; /* Interface version byte */
  101. u8 action; /* Action qualifier byte
  102. * 0: Adapter Reset Request
  103. * 1: Deconfigure and repair action requested
  104. * (OpenCrypto Problem Call Home)
  105. * 2: Informational Report
  106. * (OpenCrypto Successful Diagnostics Execution)
  107. */
  108. u16 length; /* Length of Subsequent Data (up to 4K – SCLP header */
  109. u8 data[]; /* Subsequent Data passed verbatim to SCLP ET 24 */
  110. } __packed;
  111. extern char *sclp_early_sccb;
  112. void sclp_early_adjust_va(void);
  113. void sclp_early_set_buffer(void *sccb);
  114. int sclp_early_read_info(void);
  115. int sclp_early_read_storage_info(void);
  116. int sclp_early_get_core_info(struct sclp_core_info *info);
  117. void sclp_early_get_ipl_info(struct sclp_ipl_info *info);
  118. void sclp_early_detect(void);
  119. void sclp_early_printk(const char *s);
  120. void __sclp_early_printk(const char *s, unsigned int len);
  121. int sclp_early_get_memsize(unsigned long *mem);
  122. int sclp_early_get_hsa_size(unsigned long *hsa_size);
  123. int _sclp_get_core_info(struct sclp_core_info *info);
  124. int sclp_core_configure(u8 core);
  125. int sclp_core_deconfigure(u8 core);
  126. int sclp_sdias_blk_count(void);
  127. int sclp_sdias_copy(void *dest, int blk_num, int nr_blks);
  128. int sclp_chp_configure(struct chp_id chpid);
  129. int sclp_chp_deconfigure(struct chp_id chpid);
  130. int sclp_chp_read_info(struct sclp_chp_info *info);
  131. int sclp_pci_configure(u32 fid);
  132. int sclp_pci_deconfigure(u32 fid);
  133. int sclp_ap_configure(u32 apid);
  134. int sclp_ap_deconfigure(u32 apid);
  135. int sclp_pci_report(struct zpci_report_error_header *report, u32 fh, u32 fid);
  136. size_t memcpy_hsa_iter(struct iov_iter *iter, unsigned long src, size_t count);
  137. void sclp_ocf_cpc_name_copy(char *dst);
  138. static inline int sclp_get_core_info(struct sclp_core_info *info, int early)
  139. {
  140. if (early)
  141. return sclp_early_get_core_info(info);
  142. return _sclp_get_core_info(info);
  143. }
  144. #endif /* __ASSEMBLY__ */
  145. #endif /* _ASM_S390_SCLP_H */