Lines Matching +full:0 +full:x00020001
23 #define EVTYP_OPCMD 0x01
24 #define EVTYP_MSG 0x02
25 #define EVTYP_CONFMGMDATA 0x04
26 #define EVTYP_DIAG_TEST 0x07
27 #define EVTYP_STATECHANGE 0x08
28 #define EVTYP_PMSGCMD 0x09
29 #define EVTYP_ASYNC 0x0A
30 #define EVTYP_CTLPROGIDENT 0x0B
31 #define EVTYP_STORE_DATA 0x0C
32 #define EVTYP_ERRNOTIFY 0x18
33 #define EVTYP_VT220MSG 0x1A
34 #define EVTYP_SDIAS 0x1C
35 #define EVTYP_SIGQUIESCE 0x1D
36 #define EVTYP_OCF 0x1E
53 #define GNRLMSGFLGS_DOM 0x8000
54 #define GNRLMSGFLGS_SNDALRM 0x4000
55 #define GNRLMSGFLGS_HOLDMSG 0x2000
57 #define LNTPFLGS_CNTLTEXT 0x8000
58 #define LNTPFLGS_LABELTEXT 0x4000
59 #define LNTPFLGS_DATATEXT 0x2000
60 #define LNTPFLGS_ENDTEXT 0x1000
61 #define LNTPFLGS_PROMPTTEXT 0x0800
65 #define SCLP_CMDW_READ_CPU_INFO 0x00010001
66 #define SCLP_CMDW_READ_SCP_INFO 0x00020001
67 #define SCLP_CMDW_READ_STORAGE_INFO 0x00040001
68 #define SCLP_CMDW_READ_SCP_INFO_FORCED 0x00120001
69 #define SCLP_CMDW_READ_EVENT_DATA 0x00770005
70 #define SCLP_CMDW_WRITE_EVENT_DATA 0x00760005
71 #define SCLP_CMDW_WRITE_EVENT_MASK 0x00780005
73 #define GDS_ID_MDSMU 0x1310
74 #define GDS_ID_MDSROUTEINFO 0x1311
75 #define GDS_ID_AGUNWRKCORR 0x1549
76 #define GDS_ID_SNACONDREPORT 0x1532
77 #define GDS_ID_CPMSU 0x1212
78 #define GDS_ID_ROUTTARGINSTR 0x154D
79 #define GDS_ID_OPREQ 0x8070
80 #define GDS_ID_TEXTCMD 0x1320
82 #define GDS_KEY_SELFDEFTEXTMSG 0x31
91 #define SCLP_PANIC_PRIO_CLIENT 0
119 sccb_mask_t res = 0; in sccb_get_mask()
127 memset(masks + i * len, 0, len); in sccb_set_mask()
137 #define sccb_get_recv_mask(sccb) sccb_get_generic_mask(sccb, 0)
148 #define sccb_set_recv_mask(sccb, val) sccb_set_generic_mask(sccb, 0, val)
163 struct sccb_header header; /* 0-7 */
211 u32 entries[0];
219 memset(info, 0, sizeof(*info)); in sclp_fill_core_info()
227 #define SCLP_HAS_CHP_INFO (sclp.facilities & 0x8000000000000000ULL)
228 #define SCLP_HAS_CHP_RECONFIG (sclp.facilities & 0x2000000000000000ULL)
229 #define SCLP_HAS_CPU_INFO (sclp.facilities & 0x0800000000000000ULL)
230 #define SCLP_HAS_CPU_RECONFIG (sclp.facilities & 0x0400000000000000ULL)
231 #define SCLP_HAS_PCI_RECONFIG (sclp.facilities & 0x0000000040000000ULL)
232 #define SCLP_HAS_AP_RECONFIG (sclp.facilities & 0x0000000100000000ULL)
267 #define SCLP_REQ_FILLED 0x00 /* request is ready to be processed */
268 #define SCLP_REQ_QUEUED 0x01 /* request is queued to be processed */
269 #define SCLP_REQ_RUNNING 0x02 /* request is currently running */
270 #define SCLP_REQ_DONE 0x03 /* request is completed successfully */
271 #define SCLP_REQ_FAILED 0x05 /* request is finally failed */
272 #define SCLP_REQ_QUEUED_TIMEOUT 0x06 /* request on queue timed out */
335 /* Perform service call. Return 0 on success, non-zero otherwise. */
341 "0: .insn rre,0xb2200000,%1,%2\n" /* servc %1,%2 */ in sclp_service_call()
342 "1: ipm %0\n" in sclp_service_call()
343 " srl %0,28\n" in sclp_service_call()
345 EX_TABLE(0b, 2b) in sclp_service_call()
355 return 0; in sclp_service_call()