2 * s390 CLP instruction definitions
4 * Copyright 2019 IBM Corp.
5 * Author(s): Pierre Morel <pmorel@de.ibm.com>
7 * This work is licensed under the terms of the GNU GPL, version 2 or (at
8 * your option) any later version. See the COPYING file in the top-level
12 #ifndef HW_S390_PCI_CLP
13 #define HW_S390_PCI_CLP
15 /* CLP common request & response block size */
16 #define CLP_BLK_SIZE 4096
17 #define PCI_BAR_COUNT 6
18 #define PCI_MAX_FUNCTIONS 4096
20 typedef struct ClpReqHdr
{
23 } QEMU_PACKED ClpReqHdr
;
25 typedef struct ClpRspHdr
{
28 } QEMU_PACKED ClpRspHdr
;
30 /* CLP Response Codes */
31 #define CLP_RC_OK 0x0010 /* Command request successfully */
32 #define CLP_RC_CMD 0x0020 /* Command code not recognized */
33 #define CLP_RC_PERM 0x0030 /* Command not authorized */
34 #define CLP_RC_FMT 0x0040 /* Invalid command request format */
35 #define CLP_RC_LEN 0x0050 /* Invalid command request length */
36 #define CLP_RC_8K 0x0060 /* Command requires 8K LPCB */
37 #define CLP_RC_RESNOT0 0x0070 /* Reserved field not zero */
38 #define CLP_RC_NODATA 0x0080 /* No data available */
39 #define CLP_RC_FC_UNKNOWN 0x0100 /* Function code not recognized */
42 * Call Logical Processor - Command Codes
44 #define CLP_LIST_PCI 0x0002
45 #define CLP_QUERY_PCI_FN 0x0003
46 #define CLP_QUERY_PCI_FNGRP 0x0004
47 #define CLP_SET_PCI_FN 0x0005
49 /* PCI function handle list entry */
50 typedef struct ClpFhListEntry
{
53 #define CLP_FHLIST_MASK_CONFIG 0x80000000
57 } QEMU_PACKED ClpFhListEntry
;
59 #define CLP_RC_SETPCIFN_FH 0x0101 /* Invalid PCI fn handle */
60 #define CLP_RC_SETPCIFN_FHOP 0x0102 /* Fn handle not valid for op */
61 #define CLP_RC_SETPCIFN_DMAAS 0x0103 /* Invalid DMA addr space */
62 #define CLP_RC_SETPCIFN_RES 0x0104 /* Insufficient resources */
63 #define CLP_RC_SETPCIFN_ALRDY 0x0105 /* Fn already in requested state */
64 #define CLP_RC_SETPCIFN_ERR 0x0106 /* Fn in permanent error state */
65 #define CLP_RC_SETPCIFN_RECPND 0x0107 /* Error recovery pending */
66 #define CLP_RC_SETPCIFN_BUSY 0x0108 /* Fn busy */
67 #define CLP_RC_LISTPCI_BADRT 0x010a /* Resume token not recognized */
68 #define CLP_RC_QUERYPCIFG_PFGID 0x010b /* Unrecognized PFGID */
70 /* request or response block header length */
71 #define LIST_PCI_HDR_LEN 32
73 /* Number of function handles fitting in response block */
74 #define CLP_FH_LIST_NR_ENTRIES \
75 ((CLP_BLK_SIZE - 2 * LIST_PCI_HDR_LEN) \
76 / sizeof(ClpFhListEntry))
78 #define CLP_SET_ENABLE_PCI_FN 0 /* Yes, 0 enables it */
79 #define CLP_SET_DISABLE_PCI_FN 1 /* Yes, 1 disables it */
81 #define CLP_UTIL_STR_LEN 64
82 #define CLP_PFIP_NR_SEGMENTS 4
84 #define CLP_MASK_FMT 0xf0000000
86 /* List PCI functions request */
87 typedef struct ClpReqListPci
{
91 uint64_t resume_token
;
93 } QEMU_PACKED ClpReqListPci
;
95 /* List PCI functions response */
96 typedef struct ClpRspListPci
{
100 uint64_t resume_token
;
105 ClpFhListEntry fh_list
[CLP_FH_LIST_NR_ENTRIES
];
106 } QEMU_PACKED ClpRspListPci
;
108 /* Query PCI function request */
109 typedef struct ClpReqQueryPci
{
113 uint32_t fh
; /* function handle */
116 } QEMU_PACKED ClpReqQueryPci
;
118 /* Query PCI function response */
119 typedef struct ClpRspQueryPci
{
123 uint16_t vfn
; /* virtual fn number */
124 #define CLP_RSP_QPCI_MASK_UTIL 0x01
127 uint32_t fid
; /* pci function id */
128 uint8_t bar_size
[PCI_BAR_COUNT
];
130 uint32_t bar
[PCI_BAR_COUNT
];
131 uint8_t pfip
[CLP_PFIP_NR_SEGMENTS
];
135 uint64_t sdma
; /* start dma as */
136 uint64_t edma
; /* end dma as */
137 uint32_t reserved3
[11];
139 uint8_t util_str
[CLP_UTIL_STR_LEN
]; /* utility string */
140 } QEMU_PACKED ClpRspQueryPci
;
142 /* Query PCI function group request */
143 typedef struct ClpReqQueryPciGrp
{
147 uint8_t reserved2
[3];
151 } QEMU_PACKED ClpReqQueryPciGrp
;
153 /* Query PCI function group response */
154 typedef struct ClpRspQueryPciGrp
{
158 #define CLP_RSP_QPCIG_MASK_NOI 0xfff
161 #define CLP_RSP_QPCIG_MASK_FRAME 0x2
162 #define CLP_RSP_QPCIG_MASK_REFRESH 0x1
167 uint64_t dasm
; /* dma address space mask */
168 uint64_t msia
; /* MSI address */
171 } QEMU_PACKED ClpRspQueryPciGrp
;
173 /* Set PCI function request */
174 typedef struct ClpReqSetPci
{
178 uint32_t fh
; /* function handle */
180 uint8_t oc
; /* operation controls */
181 uint8_t ndas
; /* number of dma spaces */
183 } QEMU_PACKED ClpReqSetPci
;
185 /* Set PCI function response */
186 typedef struct ClpRspSetPci
{
190 uint32_t fh
; /* function handle */
193 } QEMU_PACKED ClpRspSetPci
;
195 typedef struct ClpReqRspListPci
{
196 ClpReqListPci request
;
197 ClpRspListPci response
;
198 } QEMU_PACKED ClpReqRspListPci
;
200 typedef struct ClpReqRspSetPci
{
201 ClpReqSetPci request
;
202 ClpRspSetPci response
;
203 } QEMU_PACKED ClpReqRspSetPci
;
205 typedef struct ClpReqRspQueryPci
{
206 ClpReqQueryPci request
;
207 ClpRspQueryPci response
;
208 } QEMU_PACKED ClpReqRspQueryPci
;
210 typedef struct ClpReqRspQueryPciGrp
{
211 ClpReqQueryPciGrp request
;
212 ClpRspQueryPciGrp response
;
213 } QEMU_PACKED ClpReqRspQueryPciGrp
;