• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/cris/arch-v32/drivers/

Lines Matching refs:int_op

695 static int cryptocop_setup_dma_list(struct cryptocop_operation *operation, struct cryptocop_int_operation **int_op, int alloc_flag)
782 assert(int_op != NULL);
799 (*int_op) = (struct cryptocop_int_operation*)(((unsigned long int)(iop_alloc_ptr + DESCR_ALLOC_PAD + offsetof(struct cryptocop_int_operation, ctx_out)) & ~0x0000001F) - offsetof(struct cryptocop_int_operation, ctx_out));
800 DEBUG(memset((*int_op), 0xff, sizeof(struct cryptocop_int_operation)));
801 (*int_op)->alloc_ptr = iop_alloc_ptr;
802 DEBUG(printk("cryptocop_setup_dma_list: *int_op=0x%p, alloc_ptr=0x%p\n", *int_op, (*int_op)->alloc_ptr));
804 (*int_op)->sid = operation->sid;
805 (*int_op)->cdesc_out = NULL;
806 (*int_op)->cdesc_in = NULL;
807 (*int_op)->tdes_mode = cryptocop_3des_ede;
808 (*int_op)->csum_mode = cryptocop_csum_le;
809 (*int_op)->ddesc_out = NULL;
810 (*int_op)->ddesc_in = NULL;
892 (*int_op)->tdes_mode = tctx->init.tdes_mode;
927 (*int_op)->csum_mode = tctx->init.csum_mode;
1279 DEBUG(printk("cryptocop_setup_dma_list: int_op=0x%p, *int_op=0x%p\n", int_op, *int_op));
1280 (*int_op)->cdesc_out = out_cdesc_head.next;
1281 (*int_op)->cdesc_in = in_cdesc_head.next;
1282 DEBUG(printk("cryptocop_setup_dma_list: out_cdesc_head=0x%p in_cdesc_head=0x%p\n", (*int_op)->cdesc_out, (*int_op)->cdesc_in));
1295 (*int_op)->ctx_out.next = NULL;
1296 (*int_op)->ctx_out.eol = 1;
1297 (*int_op)->ctx_out.intr = 0;
1298 (*int_op)->ctx_out.store_mode = 0;
1299 (*int_op)->ctx_out.en = 0;
1300 (*int_op)->ctx_out.dis = 0;
1301 (*int_op)->ctx_out.md0 = 0;
1302 (*int_op)->ctx_out.md1 = 0;
1303 (*int_op)->ctx_out.md2 = 0;
1304 (*int_op)->ctx_out.md3 = 0;
1305 (*int_op)->ctx_out.md4 = 0;
1306 (*int_op)->ctx_out.saved_data = (dma_descr_data*)virt_to_phys((*int_op)->cdesc_out->dma_descr);
1307 (*int_op)->ctx_out.saved_data_buf = (*int_op)->cdesc_out->dma_descr->buf; /* Already physical address. */
1309 (*int_op)->ctx_in.next = NULL;
1310 (*int_op)->ctx_in.eol = 1;
1311 (*int_op)->ctx_in.intr = 0;
1312 (*int_op)->ctx_in.store_mode = 0;
1313 (*int_op)->ctx_in.en = 0;
1314 (*int_op)->ctx_in.dis = 0;
1315 (*int_op)->ctx_in.md0 = 0;
1316 (*int_op)->ctx_in.md1 = 0;
1317 (*int_op)->ctx_in.md2 = 0;
1318 (*int_op)->ctx_in.md3 = 0;
1319 (*int_op)->ctx_in.md4 = 0;
1321 (*int_op)->ctx_in.saved_data = (dma_descr_data*)virt_to_phys((*int_op)->cdesc_in->dma_descr);
1322 (*int_op)->ctx_in.saved_data_buf = (*int_op)->cdesc_in->dma_descr->buf; /* Already physical address. */
1343 if (*int_op != NULL) delete_internal_operation(*int_op);