1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright IBM Corp. 2000, 2008
4 * Author(s): Utz Bacher <utz.bacher@de.ibm.com>
5 * Jan Glauber <jang@linux.vnet.ibm.com>
11 #include <linux/interrupt.h>
13 #include <asm/ccwdev.h>
15 /* only use 4 queues to save some cachelines */
16 #define QDIO_MAX_QUEUES_PER_IRQ 4
17 #define QDIO_MAX_BUFFERS_PER_Q 128
18 #define QDIO_MAX_BUFFERS_MASK (QDIO_MAX_BUFFERS_PER_Q - 1)
19 #define QDIO_BUFNR(num) ((num) & QDIO_MAX_BUFFERS_MASK)
20 #define QDIO_MAX_ELEMENTS_PER_BUFFER 16
21 #define QDIO_SBAL_SIZE 256
23 #define QDIO_QETH_QFMT 0
24 #define QDIO_ZFCP_QFMT 1
25 #define QDIO_IQDIO_QFMT 2
28 * struct qdesfmt0 - queue descriptor, format 0
29 * @sliba: absolute address of storage list information block
30 * @sla: absolute address of storage list
31 * @slsba: absolute address of storage list state block
32 * @akey: access key for SLIB
33 * @bkey: access key for SL
34 * @ckey: access key for SBALs
35 * @dkey: access key for SLSB
47 } __attribute__ ((packed
));
49 #define QDR_AC_MULTI_BUFFER_ENABLE 0x01
52 * struct qdr - queue description record (QDR)
54 * @ac: adapter characteristics
55 * @iqdcnt: input queue descriptor count
56 * @oqdcnt: output queue descriptor count
57 * @iqdsz: input queue descriptor size
58 * @oqdsz: output queue descriptor size
59 * @qiba: absolute address of queue information block
60 * @qkey: queue information block key
61 * @qdf0: queue descriptions
82 struct qdesfmt0 qdf0
[126];
83 } __packed
__aligned(PAGE_SIZE
);
85 #define QIB_AC_OUTBOUND_PCI_SUPPORTED 0x40
86 #define QIB_RFLAGS_ENABLE_QEBSM 0x80
87 #define QIB_RFLAGS_ENABLE_DATA_DIV 0x02
90 * struct qib - queue information block (QIB)
92 * @pfmt: implementation dependent parameter format
94 * @ac: adapter characteristics
95 * @isliba: absolute address of first input SLIB
96 * @osliba: absolute address of first output SLIB
97 * @ebcnam: adapter identifier in EBCDIC
98 * @parm: implementation dependent parameters
115 } __attribute__ ((packed
, aligned(256)));
118 * struct slibe - storage list information block element (SLIBE)
119 * @parms: implementation dependent parameters
126 * struct qaob - queue asynchronous operation block
127 * @res0: reserved parameters
128 * @res1: reserved parameter
129 * @res2: reserved parameter
130 * @res3: reserved parameter
131 * @aorc: asynchronous operation return code
132 * @flags: internal flags
133 * @cbtbs: control block type
134 * @sb_count: number of storage blocks
135 * @sba: storage block element addresses
136 * @dcount: size of storage block elements
137 * @user0: user defineable value
138 * @res4: reserved paramater
139 * @user1: user defineable value
140 * @user2: user defineable value
151 u64 sba
[QDIO_MAX_ELEMENTS_PER_BUFFER
];
152 u16 dcount
[QDIO_MAX_ELEMENTS_PER_BUFFER
];
157 } __attribute__ ((packed
, aligned(256)));
160 * struct slib - storage list information block (SLIB)
161 * @nsliba: next SLIB address (if any)
163 * @slsba: SLSB address
164 * @slibe: SLIB elements
173 struct slibe slibe
[QDIO_MAX_BUFFERS_PER_Q
];
174 } __attribute__ ((packed
, aligned(2048)));
176 #define SBAL_EFLAGS_LAST_ENTRY 0x40
177 #define SBAL_EFLAGS_CONTIGUOUS 0x20
178 #define SBAL_EFLAGS_FIRST_FRAG 0x04
179 #define SBAL_EFLAGS_MIDDLE_FRAG 0x08
180 #define SBAL_EFLAGS_LAST_FRAG 0x0c
181 #define SBAL_EFLAGS_MASK 0x6f
183 #define SBAL_SFLAGS0_PCI_REQ 0x40
184 #define SBAL_SFLAGS0_DATA_CONTINUATION 0x20
186 /* Awesome OpenFCP extensions */
187 #define SBAL_SFLAGS0_TYPE_STATUS 0x00
188 #define SBAL_SFLAGS0_TYPE_WRITE 0x08
189 #define SBAL_SFLAGS0_TYPE_READ 0x10
190 #define SBAL_SFLAGS0_TYPE_WRITE_READ 0x18
191 #define SBAL_SFLAGS0_MORE_SBALS 0x04
192 #define SBAL_SFLAGS0_COMMAND 0x02
193 #define SBAL_SFLAGS0_LAST_SBAL 0x00
194 #define SBAL_SFLAGS0_ONLY_SBAL SBAL_SFLAGS0_COMMAND
195 #define SBAL_SFLAGS0_MIDDLE_SBAL SBAL_SFLAGS0_MORE_SBALS
196 #define SBAL_SFLAGS0_FIRST_SBAL (SBAL_SFLAGS0_MORE_SBALS | SBAL_SFLAGS0_COMMAND)
199 * struct qdio_buffer_element - SBAL entry
200 * @eflags: SBAL entry flags
201 * @scount: SBAL count
202 * @sflags: whole SBAL flags
204 * @addr: absolute data address
206 struct qdio_buffer_element
{
215 } __attribute__ ((packed
, aligned(16)));
218 * struct qdio_buffer - storage block address list (SBAL)
219 * @element: SBAL entries
222 struct qdio_buffer_element element
[QDIO_MAX_ELEMENTS_PER_BUFFER
];
223 } __attribute__ ((packed
, aligned(256)));
226 * struct sl_element - storage list entry
227 * @sbal: absolute SBAL address
231 } __attribute__ ((packed
));
234 * struct sl - storage list (SL)
235 * @element: SL entries
238 struct sl_element element
[QDIO_MAX_BUFFERS_PER_Q
];
239 } __attribute__ ((packed
, aligned(1024)));
242 * struct slsb - storage list state block (SLSB)
243 * @val: state per buffer
246 u8 val
[QDIO_MAX_BUFFERS_PER_Q
];
247 } __attribute__ ((packed
, aligned(256)));
250 * struct qdio_outbuf_state - SBAL related asynchronous operation information
251 * (for communication with upper layer programs)
252 * (only required for use with completion queues)
253 * @flags: flags indicating state of buffer
254 * @user: pointer to upper layer program's state information related to SBAL
255 * (stored in user1 data of QAOB)
257 struct qdio_outbuf_state
{
262 #define QDIO_OUTBUF_STATE_FLAG_PENDING 0x01
264 #define CHSC_AC1_INITIATE_INPUTQ 0x80
267 /* qdio adapter-characteristics-1 flag */
268 #define AC1_SIGA_INPUT_NEEDED 0x40 /* process input queues */
269 #define AC1_SIGA_OUTPUT_NEEDED 0x20 /* process output queues */
270 #define AC1_SIGA_SYNC_NEEDED 0x10 /* ask hypervisor to sync */
271 #define AC1_AUTOMATIC_SYNC_ON_THININT 0x08 /* set by hypervisor */
272 #define AC1_AUTOMATIC_SYNC_ON_OUT_PCI 0x04 /* set by hypervisor */
273 #define AC1_SC_QEBSM_AVAILABLE 0x02 /* available for subchannel */
274 #define AC1_SC_QEBSM_ENABLED 0x01 /* enabled for subchannel */
276 #define CHSC_AC2_MULTI_BUFFER_AVAILABLE 0x0080
277 #define CHSC_AC2_MULTI_BUFFER_ENABLED 0x0040
278 #define CHSC_AC2_DATA_DIV_AVAILABLE 0x0010
279 #define CHSC_AC2_SNIFFER_AVAILABLE 0x0008
280 #define CHSC_AC2_DATA_DIV_ENABLED 0x0002
282 #define CHSC_AC3_FORMAT2_CQ_AVAILABLE 0x8000
284 struct qdio_ssqd_desc
{
306 } __attribute__ ((packed
));
308 /* params are: ccw_device, qdio_error, queue_number,
309 first element processed, number of elements processed, int_parm */
310 typedef void qdio_handler_t(struct ccw_device
*, unsigned int, int,
311 int, int, unsigned long);
313 /* qdio errors reported to the upper-layer program */
314 #define QDIO_ERROR_ACTIVATE 0x0001
315 #define QDIO_ERROR_GET_BUF_STATE 0x0002
316 #define QDIO_ERROR_SET_BUF_STATE 0x0004
317 #define QDIO_ERROR_SLSB_STATE 0x0100
319 #define QDIO_ERROR_FATAL 0x00ff
320 #define QDIO_ERROR_TEMPORARY 0xff00
322 /* for qdio_cleanup */
323 #define QDIO_FLAG_CLEANUP_USING_CLEAR 0x01
324 #define QDIO_FLAG_CLEANUP_USING_HALT 0x02
327 * struct qdio_initialize - qdio initialization data
328 * @q_format: queue format
329 * @qdr_ac: feature flags to set
330 * @qib_param_field_format: format for qib_parm_field
331 * @qib_param_field: pointer to 128 bytes or NULL, if no param field
332 * @qib_rflags: rflags to set
333 * @input_slib_elements: pointer to no_input_qs * 128 words of data or NULL
334 * @output_slib_elements: pointer to no_output_qs * 128 words of data or NULL
335 * @no_input_qs: number of input queues
336 * @no_output_qs: number of output queues
337 * @input_handler: handler to be called for input queues
338 * @output_handler: handler to be called for output queues
339 * @irq_poll: Data IRQ polling handler (NULL when not supported)
340 * @scan_threshold: # of in-use buffers that triggers scan on output queue
341 * @int_parm: interruption parameter
342 * @input_sbal_addr_array: per-queue array, each element points to 128 SBALs
343 * @output_sbal_addr_array: per-queue array, each element points to 128 SBALs
344 * @output_sbal_state_array: no_output_qs * 128 state info (for CQ or NULL)
346 struct qdio_initialize
{
347 unsigned char q_format
;
348 unsigned char qdr_ac
;
349 unsigned int qib_param_field_format
;
350 unsigned char *qib_param_field
;
351 unsigned char qib_rflags
;
352 unsigned long *input_slib_elements
;
353 unsigned long *output_slib_elements
;
354 unsigned int no_input_qs
;
355 unsigned int no_output_qs
;
356 qdio_handler_t
*input_handler
;
357 qdio_handler_t
*output_handler
;
358 void (*irq_poll
)(struct ccw_device
*cdev
, unsigned long data
);
359 unsigned int scan_threshold
;
360 unsigned long int_parm
;
361 struct qdio_buffer
***input_sbal_addr_array
;
362 struct qdio_buffer
***output_sbal_addr_array
;
363 struct qdio_outbuf_state
*output_sbal_state_array
;
366 #define QDIO_STATE_INACTIVE 0x00000002 /* after qdio_cleanup */
367 #define QDIO_STATE_ESTABLISHED 0x00000004 /* after qdio_establish */
368 #define QDIO_STATE_ACTIVE 0x00000008 /* after qdio_activate */
369 #define QDIO_STATE_STOPPED 0x00000010 /* after queues went down */
371 #define QDIO_FLAG_SYNC_INPUT 0x01
372 #define QDIO_FLAG_SYNC_OUTPUT 0x02
373 #define QDIO_FLAG_PCI_OUT 0x10
375 int qdio_alloc_buffers(struct qdio_buffer
**buf
, unsigned int count
);
376 void qdio_free_buffers(struct qdio_buffer
**buf
, unsigned int count
);
377 void qdio_reset_buffers(struct qdio_buffer
**buf
, unsigned int count
);
379 extern int qdio_allocate(struct ccw_device
*cdev
, unsigned int no_input_qs
,
380 unsigned int no_output_qs
);
381 extern int qdio_establish(struct ccw_device
*cdev
,
382 struct qdio_initialize
*init_data
);
383 extern int qdio_activate(struct ccw_device
*);
384 extern void qdio_release_aob(struct qaob
*);
385 extern int do_QDIO(struct ccw_device
*, unsigned int, int, unsigned int,
387 extern int qdio_start_irq(struct ccw_device
*cdev
);
388 extern int qdio_stop_irq(struct ccw_device
*cdev
);
389 extern int qdio_get_next_buffers(struct ccw_device
*, int, int *, int *);
390 extern int qdio_inspect_queue(struct ccw_device
*cdev
, unsigned int nr
,
391 bool is_input
, unsigned int *bufnr
,
392 unsigned int *error
);
393 extern int qdio_shutdown(struct ccw_device
*, int);
394 extern int qdio_free(struct ccw_device
*);
395 extern int qdio_get_ssqd_desc(struct ccw_device
*, struct qdio_ssqd_desc
*);
397 #endif /* __QDIO_H__ */