2 * linux/include/asm-s390/qdio.h
4 * Copyright 2000,2008 IBM Corp.
5 * Author(s): Utz Bacher <utz.bacher@de.ibm.com>
6 * Jan Glauber <jang@linux.vnet.ibm.com>
12 #include <linux/interrupt.h>
14 #include <asm/ccwdev.h>
16 /* only use 4 queues to save some cachelines */
17 #define QDIO_MAX_QUEUES_PER_IRQ 4
18 #define QDIO_MAX_BUFFERS_PER_Q 128
19 #define QDIO_MAX_BUFFERS_MASK (QDIO_MAX_BUFFERS_PER_Q - 1)
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: storage list information block address
30 * @sla: storage list address
31 * @slsba: storage list state block address
32 * @akey: access key for DLIB
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 * @pfmt: implementation dependent parameter format
55 * @ac: adapter characteristics
56 * @iqdcnt: input queue descriptor count
57 * @oqdcnt: output queue descriptor count
58 * @iqdsz: inpout queue descriptor size
59 * @oqdsz: output queue descriptor size
60 * @qiba: queue information block address
61 * @qkey: queue information block key
62 * @qdf0: queue descriptions
84 struct qdesfmt0 qdf0
[126];
85 } __attribute__ ((packed
, aligned(4096)));
87 #define QIB_AC_OUTBOUND_PCI_SUPPORTED 0x40
88 #define QIB_RFLAGS_ENABLE_QEBSM 0x80
89 #define QIB_RFLAGS_ENABLE_DATA_DIV 0x02
92 * struct qib - queue information block (QIB)
94 * @pfmt: implementation dependent parameter format
96 * @ac: adapter characteristics
97 * @isliba: absolute address of first input SLIB
98 * @osliba: absolute address of first output SLIB
99 * @ebcnam: adapter identifier in EBCDIC
100 * @parm: implementation dependent parameters
116 u8 parm
[QDIO_MAX_BUFFERS_PER_Q
];
117 } __attribute__ ((packed
, aligned(256)));
120 * struct slibe - storage list information block element (SLIBE)
121 * @parms: implementation dependent parameters
128 * struct qaob - queue asynchronous operation block
129 * @res0: reserved parameters
130 * @res1: reserved parameter
131 * @res2: reserved parameter
132 * @res3: reserved parameter
133 * @aorc: asynchronous operation return code
134 * @flags: internal flags
135 * @cbtbs: control block type
136 * @sb_count: number of storage blocks
137 * @sba: storage block element addresses
138 * @dcount: size of storage block elements
139 * @user0: user defineable value
140 * @res4: reserved paramater
141 * @user1: user defineable value
142 * @user2: user defineable value
153 u64 sba
[QDIO_MAX_ELEMENTS_PER_BUFFER
];
154 u16 dcount
[QDIO_MAX_ELEMENTS_PER_BUFFER
];
159 } __attribute__ ((packed
, aligned(256)));
162 * struct slib - storage list information block (SLIB)
163 * @nsliba: next SLIB address (if any)
165 * @slsba: SLSB address
166 * @slibe: SLIB elements
175 struct slibe slibe
[QDIO_MAX_BUFFERS_PER_Q
];
176 } __attribute__ ((packed
, aligned(2048)));
178 #define SBAL_EFLAGS_LAST_ENTRY 0x40
179 #define SBAL_EFLAGS_CONTIGUOUS 0x20
180 #define SBAL_EFLAGS_FIRST_FRAG 0x04
181 #define SBAL_EFLAGS_MIDDLE_FRAG 0x08
182 #define SBAL_EFLAGS_LAST_FRAG 0x0c
183 #define SBAL_EFLAGS_MASK 0x6f
185 #define SBAL_SFLAGS0_PCI_REQ 0x40
186 #define SBAL_SFLAGS0_DATA_CONTINUATION 0x20
188 /* Awesome OpenFCP extensions */
189 #define SBAL_SFLAGS0_TYPE_STATUS 0x00
190 #define SBAL_SFLAGS0_TYPE_WRITE 0x08
191 #define SBAL_SFLAGS0_TYPE_READ 0x10
192 #define SBAL_SFLAGS0_TYPE_WRITE_READ 0x18
193 #define SBAL_SFLAGS0_MORE_SBALS 0x04
194 #define SBAL_SFLAGS0_COMMAND 0x02
195 #define SBAL_SFLAGS0_LAST_SBAL 0x00
196 #define SBAL_SFLAGS0_ONLY_SBAL SBAL_SFLAGS0_COMMAND
197 #define SBAL_SFLAGS0_MIDDLE_SBAL SBAL_SFLAGS0_MORE_SBALS
198 #define SBAL_SFLAGS0_FIRST_SBAL (SBAL_SFLAGS0_MORE_SBALS | SBAL_SFLAGS0_COMMAND)
201 * struct qdio_buffer_element - SBAL entry
202 * @eflags: SBAL entry flags
203 * @scount: SBAL count
204 * @sflags: whole SBAL flags
208 struct qdio_buffer_element
{
222 } __attribute__ ((packed
, aligned(16)));
225 * struct qdio_buffer - storage block address list (SBAL)
226 * @element: SBAL entries
229 struct qdio_buffer_element element
[QDIO_MAX_ELEMENTS_PER_BUFFER
];
230 } __attribute__ ((packed
, aligned(256)));
233 * struct sl_element - storage list entry
234 * @sbal: absolute SBAL address
239 unsigned long reserved
;
243 } __attribute__ ((packed
));
246 * struct sl - storage list (SL)
247 * @element: SL entries
250 struct sl_element element
[QDIO_MAX_BUFFERS_PER_Q
];
251 } __attribute__ ((packed
, aligned(1024)));
254 * struct slsb - storage list state block (SLSB)
255 * @val: state per buffer
258 u8 val
[QDIO_MAX_BUFFERS_PER_Q
];
259 } __attribute__ ((packed
, aligned(256)));
261 #define CHSC_AC2_MULTI_BUFFER_AVAILABLE 0x0080
262 #define CHSC_AC2_MULTI_BUFFER_ENABLED 0x0040
263 #define CHSC_AC2_DATA_DIV_AVAILABLE 0x0010
264 #define CHSC_AC2_DATA_DIV_ENABLED 0x0002
267 * struct qdio_outbuf_state - SBAL related asynchronous operation information
268 * (for communication with upper layer programs)
269 * (only required for use with completion queues)
270 * @flags: flags indicating state of buffer
271 * @aob: pointer to QAOB used for the particular SBAL
272 * @user: pointer to upper layer program's state information related to SBAL
273 * (stored in user1 data of QAOB)
275 struct qdio_outbuf_state
{
281 #define QDIO_OUTBUF_STATE_FLAG_NONE 0x00
282 #define QDIO_OUTBUF_STATE_FLAG_PENDING 0x01
284 #define CHSC_AC1_INITIATE_INPUTQ 0x80
287 /* qdio adapter-characteristics-1 flag */
288 #define AC1_SIGA_INPUT_NEEDED 0x40 /* process input queues */
289 #define AC1_SIGA_OUTPUT_NEEDED 0x20 /* process output queues */
290 #define AC1_SIGA_SYNC_NEEDED 0x10 /* ask hypervisor to sync */
291 #define AC1_AUTOMATIC_SYNC_ON_THININT 0x08 /* set by hypervisor */
292 #define AC1_AUTOMATIC_SYNC_ON_OUT_PCI 0x04 /* set by hypervisor */
293 #define AC1_SC_QEBSM_AVAILABLE 0x02 /* available for subchannel */
294 #define AC1_SC_QEBSM_ENABLED 0x01 /* enabled for subchannel */
296 #define CHSC_AC2_DATA_DIV_AVAILABLE 0x0010
297 #define CHSC_AC2_DATA_DIV_ENABLED 0x0002
299 #define CHSC_AC3_FORMAT2_CQ_AVAILABLE 0x8000
301 struct qdio_ssqd_desc
{
323 } __attribute__ ((packed
));
325 /* params are: ccw_device, qdio_error, queue_number,
326 first element processed, number of elements processed, int_parm */
327 typedef void qdio_handler_t(struct ccw_device
*, unsigned int, int,
328 int, int, unsigned long);
330 /* qdio errors reported to the upper-layer program */
331 #define QDIO_ERROR_SIGA_TARGET 0x02
332 #define QDIO_ERROR_SIGA_ACCESS_EXCEPTION 0x10
333 #define QDIO_ERROR_SIGA_BUSY 0x20
334 #define QDIO_ERROR_ACTIVATE_CHECK_CONDITION 0x40
335 #define QDIO_ERROR_SLSB_STATE 0x80
337 /* for qdio_cleanup */
338 #define QDIO_FLAG_CLEANUP_USING_CLEAR 0x01
339 #define QDIO_FLAG_CLEANUP_USING_HALT 0x02
342 * struct qdio_initialize - qdio initalization data
343 * @cdev: associated ccw device
344 * @q_format: queue format
345 * @adapter_name: name for the adapter
346 * @qib_param_field_format: format for qib_parm_field
347 * @qib_param_field: pointer to 128 bytes or NULL, if no param field
348 * @qib_rflags: rflags to set
349 * @input_slib_elements: pointer to no_input_qs * 128 words of data or NULL
350 * @output_slib_elements: pointer to no_output_qs * 128 words of data or NULL
351 * @no_input_qs: number of input queues
352 * @no_output_qs: number of output queues
353 * @input_handler: handler to be called for input queues
354 * @output_handler: handler to be called for output queues
355 * @queue_start_poll: polling handlers (one per input queue or NULL)
356 * @int_parm: interruption parameter
357 * @input_sbal_addr_array: address of no_input_qs * 128 pointers
358 * @output_sbal_addr_array: address of no_output_qs * 128 pointers
359 * @output_sbal_state_array: no_output_qs * 128 state info (for CQ or NULL)
361 struct qdio_initialize
{
362 struct ccw_device
*cdev
;
363 unsigned char q_format
;
364 unsigned char qdr_ac
;
365 unsigned char adapter_name
[8];
366 unsigned int qib_param_field_format
;
367 unsigned char *qib_param_field
;
368 unsigned char qib_rflags
;
369 unsigned long *input_slib_elements
;
370 unsigned long *output_slib_elements
;
371 unsigned int no_input_qs
;
372 unsigned int no_output_qs
;
373 qdio_handler_t
*input_handler
;
374 qdio_handler_t
*output_handler
;
375 void (**queue_start_poll
) (struct ccw_device
*, int, unsigned long);
377 unsigned long int_parm
;
378 void **input_sbal_addr_array
;
379 void **output_sbal_addr_array
;
380 struct qdio_outbuf_state
*output_sbal_state_array
;
383 #define QDIO_STATE_INACTIVE 0x00000002 /* after qdio_cleanup */
384 #define QDIO_STATE_ESTABLISHED 0x00000004 /* after qdio_establish */
385 #define QDIO_STATE_ACTIVE 0x00000008 /* after qdio_activate */
386 #define QDIO_STATE_STOPPED 0x00000010 /* after queues went down */
388 #define QDIO_FLAG_SYNC_INPUT 0x01
389 #define QDIO_FLAG_SYNC_OUTPUT 0x02
390 #define QDIO_FLAG_PCI_OUT 0x10
392 extern int qdio_allocate(struct qdio_initialize
*);
393 extern int qdio_establish(struct qdio_initialize
*);
394 extern int qdio_activate(struct ccw_device
*);
395 extern void qdio_release_aob(struct qaob
*);
396 extern int do_QDIO(struct ccw_device
*, unsigned int, int, unsigned int,
398 extern int qdio_start_irq(struct ccw_device
*, int);
399 extern int qdio_stop_irq(struct ccw_device
*, int);
400 extern int qdio_get_next_buffers(struct ccw_device
*, int, int *, int *);
401 extern int qdio_shutdown(struct ccw_device
*, int);
402 extern int qdio_free(struct ccw_device
*);
403 extern int qdio_get_ssqd_desc(struct ccw_device
*, struct qdio_ssqd_desc
*);
405 #endif /* __QDIO_H__ */