• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/s390/crypto/

Lines Matching refs:qid

169  * @qid: The AP queue number
176 ap_test_queue(ap_qid_t qid, int *queue_depth, int *device_type)
178 register unsigned long reg0 asm ("0") = qid;
191 * @qid: The AP queue number
195 static inline struct ap_queue_status ap_reset_queue(ap_qid_t qid)
197 register unsigned long reg0 asm ("0") = qid | 0x01000000UL;
210 * @qid: The AP queue number
216 ap_queue_interruption_control(ap_qid_t qid, void *ind)
218 register unsigned long reg0 asm ("0") = qid | 0x03000000UL;
233 * @qid: The AP queue number
240 static int ap_queue_enable_interruption(ap_qid_t qid, void *ind)
247 status = ap_queue_interruption_control(qid, ind);
272 status = ap_test_queue(qid, &t_depth, &t_device_type);
283 * @qid: The AP queue number
295 __ap_send(ap_qid_t qid, unsigned long long psmid, void *msg, size_t length,
299 register unsigned long reg0 asm ("0") = qid | 0x40000000UL;
318 int ap_send(ap_qid_t qid, unsigned long long psmid, void *msg, size_t length)
322 status = __ap_send(qid, psmid, msg, length, 0);
339 * @qid: The AP queue number
356 __ap_recv(ap_qid_t qid, unsigned long long *psmid, void *msg, size_t length)
359 register unsigned long reg0 asm("0") = qid | 0x80000000UL;
378 int ap_recv(ap_qid_t qid, unsigned long long *psmid, void *msg, size_t length)
382 status = __ap_recv(qid, psmid, msg, length);
400 * @qid: The AP queue number
406 static int ap_query_queue(ap_qid_t qid, int *queue_depth, int *device_type)
413 status = ap_test_queue(qid, &t_depth, &t_device_type);
451 * @qid: The AP queue number
455 static int ap_init_queue(ap_qid_t qid)
461 status = ap_reset_queue(qid);
483 status = ap_test_queue(qid, &dummy, &dummy);
487 rc = ap_queue_enable_interruption(qid, ap_interrupt_indicator);
493 "AP %d failed\n", AP_QID_DEVICE(qid));
707 if (AP_QID_QUEUE(ap_dev->qid) != ap_domain_index) {
709 ap_dev->qid = AP_MKQID(AP_QID_DEVICE(ap_dev->qid),
935 ap_qid_t qid = AP_MKQID(j, i);
936 rc = ap_query_queue(qid, &queue_depth, &device_type);
1019 status = __ap_send(ap_dev->qid, 0x0102030405060708ULL,
1029 status = __ap_recv(ap_dev->qid, &psmid, reply, 4096);
1064 return to_ap_dev(dev)->qid == (ap_qid_t)(unsigned long) data;
1078 ap_qid_t qid;
1085 qid = AP_MKQID(i, ap_domain_index);
1087 (void *)(unsigned long)qid,
1089 rc = ap_query_queue(qid, &queue_depth, &device_type);
1094 rc = ap_query_queue(qid, &queue_depth,
1113 rc = ap_init_queue(qid);
1119 ap_dev->qid = qid;
1136 AP_QID_DEVICE(ap_dev->qid))) {
1205 status = __ap_recv(ap_dev->qid, &ap_dev->reply->psmid,
1257 status = __ap_send(ap_dev->qid, ap_msg->psmid,
1317 status = __ap_send(ap_dev->qid, ap_msg->psmid,
1435 rc = ap_init_queue(ap_dev->qid);