2 * cxgb3i_ddp.c: Chelsio S3xx iSCSI DDP Manager.
4 * Copyright (c) 2008 Chelsio Communications, Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation.
10 * Written by: Karen Xie (kxie@chelsio.com)
13 #include <linux/skbuff.h>
14 #include <linux/scatterlist.h>
20 #include "cxgb3_ctl_defs.h"
21 #include "cxgb3_offload.h"
22 #include "firmware_exports.h"
24 #include "cxgb3i_ddp.h"
26 #define DRV_MODULE_NAME "cxgb3i_ddp"
27 #define DRV_MODULE_VERSION "1.0.0"
28 #define DRV_MODULE_RELDATE "Dec. 1, 2008"
30 static char version[] =
31 "Chelsio S3xx iSCSI DDP " DRV_MODULE_NAME
32 " v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
34 MODULE_AUTHOR("Karen Xie <kxie@chelsio.com>");
35 MODULE_DESCRIPTION("cxgb3i ddp pagepod manager");
36 MODULE_LICENSE("GPL");
37 MODULE_VERSION(DRV_MODULE_VERSION);
39 #define ddp_log_error(fmt...) printk(KERN_ERR "cxgb3i_ddp: ERR! " fmt)
40 #define ddp_log_warn(fmt...) printk(KERN_WARNING "cxgb3i_ddp: WARN! " fmt)
41 #define ddp_log_info(fmt...) printk(KERN_INFO "cxgb3i_ddp: " fmt)
43 #ifdef __DEBUG_CXGB3I_DDP__
44 #define ddp_log_debug(fmt, args...) \
45 printk(KERN_INFO "cxgb3i_ddp: %s - " fmt, __func__ , ## args)
47 #define ddp_log_debug(fmt...)
51 * iSCSI Direct Data Placement
53 * T3 h/w can directly place the iSCSI Data-In or Data-Out PDU's payload into
54 * pre-posted final destination host-memory buffers based on the Initiator
55 * Task Tag (ITT) in Data-In or Target Task Tag (TTT) in Data-Out PDUs.
57 * The host memory address is programmed into h/w in the format of pagepod
59 * The location of the pagepod entry is encoded into ddp tag which is used or
60 * is the base for ITT/TTT.
63 #define DDP_PGIDX_MAX 4
64 #define DDP_THRESHOLD 2048
65 static unsigned char ddp_page_order[DDP_PGIDX_MAX] = {0, 1, 2, 4};
66 static unsigned char ddp_page_shift[DDP_PGIDX_MAX] = {12, 13, 14, 16};
67 static unsigned char page_idx = DDP_PGIDX_MAX;
69 static LIST_HEAD(cxgb3i_ddp_list);
70 static DEFINE_RWLOCK(cxgb3i_ddp_rwlock);
73 * functions to program the pagepod in h/w
75 static inline void ulp_mem_io_set_hdr(struct sk_buff *skb, unsigned int addr)
77 struct ulp_mem_io *req = (struct ulp_mem_io *)skb->head;
80 req->wr.wr_hi = htonl(V_WR_OP(FW_WROPCODE_BYPASS));
81 req->cmd_lock_addr = htonl(V_ULP_MEMIO_ADDR(addr >> 5) |
82 V_ULPTX_CMD(ULP_MEM_WRITE));
83 req->len = htonl(V_ULP_MEMIO_DATA_LEN(PPOD_SIZE >> 5) |
84 V_ULPTX_NFLITS((PPOD_SIZE >> 3) + 1));
87 static int set_ddp_map(struct cxgb3i_ddp_info *ddp, struct pagepod_hdr *hdr,
88 unsigned int idx, unsigned int npods,
89 struct cxgb3i_gather_list *gl)
91 unsigned int pm_addr = (idx << PPOD_SIZE_SHIFT) + ddp->llimit;
94 for (i = 0; i < npods; i++, idx++, pm_addr += PPOD_SIZE) {
95 struct sk_buff *skb = ddp->gl_skb[idx];
99 /* hold on to the skb until we clear the ddp mapping */
102 ulp_mem_io_set_hdr(skb, pm_addr);
103 ppod = (struct pagepod *)
104 (skb->head + sizeof(struct ulp_mem_io));
105 memcpy(&(ppod->hdr), hdr, sizeof(struct pagepod));
106 for (pidx = 4 * i, j = 0; j < 5; ++j, ++pidx)
107 ppod->addr[j] = pidx < gl->nelem ?
108 cpu_to_be64(gl->phys_addr[pidx]) : 0UL;
110 skb->priority = CPL_PRIORITY_CONTROL;
111 cxgb3_ofld_send(ddp->tdev, skb);
116 static int clear_ddp_map(struct cxgb3i_ddp_info *ddp, unsigned int idx,
119 unsigned int pm_addr = (idx << PPOD_SIZE_SHIFT) + ddp->llimit;
122 for (i = 0; i < npods; i++, idx++, pm_addr += PPOD_SIZE) {
123 struct sk_buff *skb = ddp->gl_skb[idx];
125 ddp->gl_skb[idx] = NULL;
126 memset((skb->head + sizeof(struct ulp_mem_io)), 0, PPOD_SIZE);
127 ulp_mem_io_set_hdr(skb, pm_addr);
128 skb->priority = CPL_PRIORITY_CONTROL;
129 cxgb3_ofld_send(ddp->tdev, skb);
134 static inline int ddp_find_unused_entries(struct cxgb3i_ddp_info *ddp,
135 int start, int max, int count,
136 struct cxgb3i_gather_list *gl)
140 spin_lock(&ddp->map_lock);
141 for (i = start; i <= max;) {
142 for (j = 0; j < count; j++) {
143 if (ddp->gl_map[i + j])
147 for (j = 0; j < count; j++)
148 ddp->gl_map[i + j] = gl;
149 spin_unlock(&ddp->map_lock);
154 spin_unlock(&ddp->map_lock);
158 static inline void ddp_unmark_entries(struct cxgb3i_ddp_info *ddp,
159 int start, int count)
161 spin_lock(&ddp->map_lock);
162 memset(&ddp->gl_map[start], 0,
163 count * sizeof(struct cxgb3i_gather_list *));
164 spin_unlock(&ddp->map_lock);
167 static inline void ddp_free_gl_skb(struct cxgb3i_ddp_info *ddp,
172 for (i = 0; i < count; i++, idx++)
173 if (ddp->gl_skb[idx]) {
174 kfree_skb(ddp->gl_skb[idx]);
175 ddp->gl_skb[idx] = NULL;
179 static inline int ddp_alloc_gl_skb(struct cxgb3i_ddp_info *ddp, int idx,
180 int count, gfp_t gfp)
184 for (i = 0; i < count; i++) {
185 struct sk_buff *skb = alloc_skb(sizeof(struct ulp_mem_io) +
188 ddp->gl_skb[idx + i] = skb;
189 skb_put(skb, sizeof(struct ulp_mem_io) + PPOD_SIZE);
191 ddp_free_gl_skb(ddp, idx, i);
199 * cxgb3i_ddp_find_page_index - return ddp page index for a given page size
201 * return the ddp page index, if no match is found return DDP_PGIDX_MAX.
203 int cxgb3i_ddp_find_page_index(unsigned long pgsz)
207 for (i = 0; i < DDP_PGIDX_MAX; i++) {
208 if (pgsz == (1UL << ddp_page_shift[i]))
211 ddp_log_debug("ddp page size 0x%lx not supported.\n", pgsz);
212 return DDP_PGIDX_MAX;
214 EXPORT_SYMBOL_GPL(cxgb3i_ddp_find_page_index);
216 static inline void ddp_gl_unmap(struct pci_dev *pdev,
217 struct cxgb3i_gather_list *gl)
221 for (i = 0; i < gl->nelem; i++)
222 pci_unmap_page(pdev, gl->phys_addr[i], PAGE_SIZE,
226 static inline int ddp_gl_map(struct pci_dev *pdev,
227 struct cxgb3i_gather_list *gl)
231 for (i = 0; i < gl->nelem; i++) {
232 gl->phys_addr[i] = pci_map_page(pdev, gl->pages[i], 0,
235 if (unlikely(pci_dma_mapping_error(pdev, gl->phys_addr[i])))
243 unsigned int nelem = gl->nelem;
246 ddp_gl_unmap(pdev, gl);
253 * cxgb3i_ddp_make_gl - build ddp page buffer list
254 * @xferlen: total buffer length
255 * @sgl: page buffer scatter-gather list
256 * @sgcnt: # of page buffers
257 * @pdev: pci_dev, used for pci map
258 * @gfp: allocation mode
260 * construct a ddp page buffer list from the scsi scattergather list.
261 * coalesce buffers as much as possible, and obtain dma addresses for
264 * Return the cxgb3i_gather_list constructed from the page buffers if the
265 * memory can be used for ddp. Return NULL otherwise.
267 struct cxgb3i_gather_list *cxgb3i_ddp_make_gl(unsigned int xferlen,
268 struct scatterlist *sgl,
270 struct pci_dev *pdev,
273 struct cxgb3i_gather_list *gl;
274 struct scatterlist *sg = sgl;
275 struct page *sgpage = sg_page(sg);
276 unsigned int sglen = sg->length;
277 unsigned int sgoffset = sg->offset;
278 unsigned int npages = (xferlen + sgoffset + PAGE_SIZE - 1) >>
282 if (xferlen < DDP_THRESHOLD) {
283 ddp_log_debug("xfer %u < threshold %u, no ddp.\n",
284 xferlen, DDP_THRESHOLD);
288 gl = kzalloc(sizeof(struct cxgb3i_gather_list) +
289 npages * (sizeof(dma_addr_t) + sizeof(struct page *)),
294 gl->pages = (struct page **)&gl->phys_addr[npages];
295 gl->length = xferlen;
296 gl->offset = sgoffset;
297 gl->pages[0] = sgpage;
301 struct page *page = sg_page(sg);
303 if (sgpage == page && sg->offset == sgoffset + sglen)
306 /* make sure the sgl is fit for ddp:
307 * each has the same page size, and
308 * all of the middle pages are used completely
310 if ((j && sgoffset) ||
312 ((sglen + sgoffset) & ~PAGE_MASK)))
316 if (j == gl->nelem || sg->offset)
320 sgoffset = sg->offset;
328 if (ddp_gl_map(pdev, gl) < 0)
337 EXPORT_SYMBOL_GPL(cxgb3i_ddp_make_gl);
340 * cxgb3i_ddp_release_gl - release a page buffer list
341 * @gl: a ddp page buffer list
342 * @pdev: pci_dev used for pci_unmap
343 * free a ddp page buffer list resulted from cxgb3i_ddp_make_gl().
345 void cxgb3i_ddp_release_gl(struct cxgb3i_gather_list *gl,
346 struct pci_dev *pdev)
348 ddp_gl_unmap(pdev, gl);
351 EXPORT_SYMBOL_GPL(cxgb3i_ddp_release_gl);
354 * cxgb3i_ddp_tag_reserve - set up ddp for a data transfer
355 * @tdev: t3cdev adapter
356 * @tid: connection id
357 * @tformat: tag format
358 * @tagp: contains s/w tag initially, will be updated with ddp/hw tag
359 * @gl: the page momory list
360 * @gfp: allocation mode
362 * ddp setup for a given page buffer list and construct the ddp tag.
363 * return 0 if success, < 0 otherwise.
365 int cxgb3i_ddp_tag_reserve(struct t3cdev *tdev, unsigned int tid,
366 struct cxgb3i_tag_format *tformat, u32 *tagp,
367 struct cxgb3i_gather_list *gl, gfp_t gfp)
369 struct cxgb3i_ddp_info *ddp = tdev->ulp_iscsi;
370 struct pagepod_hdr hdr;
372 int idx = -1, idx_max;
377 if (page_idx >= DDP_PGIDX_MAX || !ddp || !gl || !gl->nelem ||
378 gl->length < DDP_THRESHOLD) {
379 ddp_log_debug("pgidx %u, xfer %u/%u, NO ddp.\n",
380 page_idx, gl->length, DDP_THRESHOLD);
384 npods = (gl->nelem + PPOD_PAGES_MAX - 1) >> PPOD_PAGES_SHIFT;
385 idx_max = ddp->nppods - npods + 1;
387 if (ddp->idx_last == ddp->nppods)
388 idx = ddp_find_unused_entries(ddp, 0, idx_max, npods, gl);
390 idx = ddp_find_unused_entries(ddp, ddp->idx_last + 1,
392 if (idx < 0 && ddp->idx_last >= npods)
393 idx = ddp_find_unused_entries(ddp, 0,
394 ddp->idx_last - npods + 1,
398 ddp_log_debug("xferlen %u, gl %u, npods %u NO DDP.\n",
399 gl->length, gl->nelem, npods);
403 err = ddp_alloc_gl_skb(ddp, idx, npods, gfp);
407 tag = cxgb3i_ddp_tag_base(tformat, sw_tag);
408 tag |= idx << PPOD_IDX_SHIFT;
411 hdr.vld_tid = htonl(F_PPOD_VALID | V_PPOD_TID(tid));
412 hdr.pgsz_tag_clr = htonl(tag & ddp->rsvd_tag_mask);
413 hdr.maxoffset = htonl(gl->length);
414 hdr.pgoffset = htonl(gl->offset);
416 err = set_ddp_map(ddp, &hdr, idx, npods, gl);
421 ddp_log_debug("xfer %u, gl %u,%u, tid 0x%x, 0x%x -> 0x%x(%u,%u).\n",
422 gl->length, gl->nelem, gl->offset, tid, sw_tag, tag,
428 ddp_free_gl_skb(ddp, idx, npods);
430 ddp_unmark_entries(ddp, idx, npods);
433 EXPORT_SYMBOL_GPL(cxgb3i_ddp_tag_reserve);
436 * cxgb3i_ddp_tag_release - release a ddp tag
437 * @tdev: t3cdev adapter
439 * ddp cleanup for a given ddp tag and release all the resources held
441 void cxgb3i_ddp_tag_release(struct t3cdev *tdev, u32 tag)
443 struct cxgb3i_ddp_info *ddp = tdev->ulp_iscsi;
447 ddp_log_error("release ddp tag 0x%x, ddp NULL.\n", tag);
451 idx = (tag >> PPOD_IDX_SHIFT) & ddp->idx_mask;
452 if (idx < ddp->nppods) {
453 struct cxgb3i_gather_list *gl = ddp->gl_map[idx];
457 ddp_log_error("release ddp 0x%x, idx 0x%x, gl NULL.\n",
461 npods = (gl->nelem + PPOD_PAGES_MAX - 1) >> PPOD_PAGES_SHIFT;
462 ddp_log_debug("ddp tag 0x%x, release idx 0x%x, npods %u.\n",
464 clear_ddp_map(ddp, idx, npods);
465 ddp_unmark_entries(ddp, idx, npods);
466 cxgb3i_ddp_release_gl(gl, ddp->pdev);
468 ddp_log_error("ddp tag 0x%x, idx 0x%x > max 0x%x.\n",
469 tag, idx, ddp->nppods);
471 EXPORT_SYMBOL_GPL(cxgb3i_ddp_tag_release);
473 static int setup_conn_pgidx(struct t3cdev *tdev, unsigned int tid, int pg_idx,
476 struct sk_buff *skb = alloc_skb(sizeof(struct cpl_set_tcb_field),
478 struct cpl_set_tcb_field *req;
479 u64 val = pg_idx < DDP_PGIDX_MAX ? pg_idx : 0;
484 /* set up ulp submode and page size */
485 req = (struct cpl_set_tcb_field *)skb_put(skb, sizeof(*req));
486 req->wr.wr_hi = htonl(V_WR_OP(FW_WROPCODE_FORWARD));
487 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_SET_TCB_FIELD, tid));
488 req->reply = V_NO_REPLY(reply ? 0 : 1);
490 req->word = htons(31);
491 req->mask = cpu_to_be64(0xF0000000);
492 req->val = cpu_to_be64(val << 28);
493 skb->priority = CPL_PRIORITY_CONTROL;
495 cxgb3_ofld_send(tdev, skb);
500 * cxgb3i_setup_conn_host_pagesize - setup the conn.'s ddp page size
501 * @tdev: t3cdev adapter
502 * @tid: connection id
503 * @reply: request reply from h/w
504 * set up the ddp page size based on the host PAGE_SIZE for a connection
507 int cxgb3i_setup_conn_host_pagesize(struct t3cdev *tdev, unsigned int tid,
510 return setup_conn_pgidx(tdev, tid, page_idx, reply);
512 EXPORT_SYMBOL_GPL(cxgb3i_setup_conn_host_pagesize);
515 * cxgb3i_setup_conn_pagesize - setup the conn.'s ddp page size
516 * @tdev: t3cdev adapter
517 * @tid: connection id
518 * @reply: request reply from h/w
519 * @pgsz: ddp page size
520 * set up the ddp page size for a connection identified by tid
522 int cxgb3i_setup_conn_pagesize(struct t3cdev *tdev, unsigned int tid,
523 int reply, unsigned long pgsz)
525 int pgidx = cxgb3i_ddp_find_page_index(pgsz);
527 return setup_conn_pgidx(tdev, tid, pgidx, reply);
529 EXPORT_SYMBOL_GPL(cxgb3i_setup_conn_pagesize);
532 * cxgb3i_setup_conn_digest - setup conn. digest setting
533 * @tdev: t3cdev adapter
534 * @tid: connection id
535 * @hcrc: header digest enabled
536 * @dcrc: data digest enabled
537 * @reply: request reply from h/w
538 * set up the iscsi digest settings for a connection identified by tid
540 int cxgb3i_setup_conn_digest(struct t3cdev *tdev, unsigned int tid,
541 int hcrc, int dcrc, int reply)
543 struct sk_buff *skb = alloc_skb(sizeof(struct cpl_set_tcb_field),
545 struct cpl_set_tcb_field *req;
546 u64 val = (hcrc ? 1 : 0) | (dcrc ? 2 : 0);
551 /* set up ulp submode and page size */
552 req = (struct cpl_set_tcb_field *)skb_put(skb, sizeof(*req));
553 req->wr.wr_hi = htonl(V_WR_OP(FW_WROPCODE_FORWARD));
554 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_SET_TCB_FIELD, tid));
555 req->reply = V_NO_REPLY(reply ? 0 : 1);
557 req->word = htons(31);
558 req->mask = cpu_to_be64(0x0F000000);
559 req->val = cpu_to_be64(val << 24);
560 skb->priority = CPL_PRIORITY_CONTROL;
562 cxgb3_ofld_send(tdev, skb);
565 EXPORT_SYMBOL_GPL(cxgb3i_setup_conn_digest);
567 static int ddp_init(struct t3cdev *tdev)
569 struct cxgb3i_ddp_info *ddp;
570 struct ulp_iscsi_info uinfo;
571 unsigned int ppmax, bits;
573 static int vers_printed;
576 printk(KERN_INFO "%s", version);
580 err = tdev->ctl(tdev, ULP_ISCSI_GET_PARAMS, &uinfo);
582 ddp_log_error("%s, failed to get iscsi param err=%d.\n",
587 ppmax = (uinfo.ulimit - uinfo.llimit + 1) >> PPOD_SIZE_SHIFT;
588 bits = __ilog2_u32(ppmax) + 1;
589 if (bits > PPOD_IDX_MAX_SIZE)
590 bits = PPOD_IDX_MAX_SIZE;
591 ppmax = (1 << (bits - 1)) - 1;
593 ddp = cxgb3i_alloc_big_mem(sizeof(struct cxgb3i_ddp_info) +
595 (sizeof(struct cxgb3i_gather_list *) +
596 sizeof(struct sk_buff *)),
599 ddp_log_warn("%s unable to alloc ddp 0x%d, ddp disabled.\n",
603 ddp->gl_map = (struct cxgb3i_gather_list **)(ddp + 1);
604 ddp->gl_skb = (struct sk_buff **)(((char *)ddp->gl_map) +
606 sizeof(struct cxgb3i_gather_list *));
607 spin_lock_init(&ddp->map_lock);
610 ddp->pdev = uinfo.pdev;
611 ddp->max_txsz = min_t(unsigned int, uinfo.max_txsz, ULP2_MAX_PKT_SIZE);
612 ddp->max_rxsz = min_t(unsigned int, uinfo.max_rxsz, ULP2_MAX_PKT_SIZE);
613 ddp->llimit = uinfo.llimit;
614 ddp->ulimit = uinfo.ulimit;
616 ddp->idx_last = ppmax;
617 ddp->idx_bits = bits;
618 ddp->idx_mask = (1 << bits) - 1;
619 ddp->rsvd_tag_mask = (1 << (bits + PPOD_IDX_SHIFT)) - 1;
621 uinfo.tagmask = ddp->idx_mask << PPOD_IDX_SHIFT;
622 for (i = 0; i < DDP_PGIDX_MAX; i++)
623 uinfo.pgsz_factor[i] = ddp_page_order[i];
624 uinfo.ulimit = uinfo.llimit + (ppmax << PPOD_SIZE_SHIFT);
626 err = tdev->ctl(tdev, ULP_ISCSI_SET_PARAMS, &uinfo);
628 ddp_log_warn("%s unable to set iscsi param err=%d, "
629 "ddp disabled.\n", tdev->name, err);
633 tdev->ulp_iscsi = ddp;
635 /* add to the list */
636 write_lock(&cxgb3i_ddp_rwlock);
637 list_add_tail(&ddp->list, &cxgb3i_ddp_list);
638 write_unlock(&cxgb3i_ddp_rwlock);
640 ddp_log_info("nppods %u (0x%x ~ 0x%x), bits %u, mask 0x%x,0x%x "
641 "pkt %u/%u, %u/%u.\n",
642 ppmax, ddp->llimit, ddp->ulimit, ddp->idx_bits,
643 ddp->idx_mask, ddp->rsvd_tag_mask,
644 ddp->max_txsz, uinfo.max_txsz,
645 ddp->max_rxsz, uinfo.max_rxsz);
649 cxgb3i_free_big_mem(ddp);
654 * cxgb3i_adapter_ddp_init - initialize the adapter's ddp resource
655 * @tdev: t3cdev adapter
656 * @tformat: tag format
657 * @txsz: max tx pdu payload size, filled in by this func.
658 * @rxsz: max rx pdu payload size, filled in by this func.
659 * initialize the ddp pagepod manager for a given adapter if needed and
660 * setup the tag format for a given iscsi entity
662 int cxgb3i_adapter_ddp_init(struct t3cdev *tdev,
663 struct cxgb3i_tag_format *tformat,
664 unsigned int *txsz, unsigned int *rxsz)
666 struct cxgb3i_ddp_info *ddp;
667 unsigned char idx_bits;
672 if (!tdev->ulp_iscsi) {
673 int err = ddp_init(tdev);
677 ddp = (struct cxgb3i_ddp_info *)tdev->ulp_iscsi;
679 idx_bits = 32 - tformat->sw_bits;
680 tformat->rsvd_bits = ddp->idx_bits;
681 tformat->rsvd_shift = PPOD_IDX_SHIFT;
682 tformat->rsvd_mask = (1 << tformat->rsvd_bits) - 1;
684 ddp_log_info("tag format: sw %u, rsvd %u,%u, mask 0x%x.\n",
685 tformat->sw_bits, tformat->rsvd_bits,
686 tformat->rsvd_shift, tformat->rsvd_mask);
688 *txsz = min_t(unsigned int, ULP2_MAX_PDU_PAYLOAD,
689 ddp->max_txsz - ISCSI_PDU_NONPAYLOAD_LEN);
690 *rxsz = min_t(unsigned int, ULP2_MAX_PDU_PAYLOAD,
691 ddp->max_rxsz - ISCSI_PDU_NONPAYLOAD_LEN);
692 ddp_log_info("max payload size: %u/%u, %u/%u.\n",
693 *txsz, ddp->max_txsz, *rxsz, ddp->max_rxsz);
696 EXPORT_SYMBOL_GPL(cxgb3i_adapter_ddp_init);
698 static void ddp_release(struct cxgb3i_ddp_info *ddp)
701 struct t3cdev *tdev = ddp->tdev;
703 tdev->ulp_iscsi = NULL;
704 while (i < ddp->nppods) {
705 struct cxgb3i_gather_list *gl = ddp->gl_map[i];
707 int npods = (gl->nelem + PPOD_PAGES_MAX - 1)
711 ddp_free_gl_skb(ddp, i, npods);
715 cxgb3i_free_big_mem(ddp);
719 * cxgb3i_adapter_ddp_cleanup - release the adapter's ddp resource
720 * @tdev: t3cdev adapter
721 * release all the resource held by the ddp pagepod manager for a given
724 void cxgb3i_adapter_ddp_cleanup(struct t3cdev *tdev)
726 struct cxgb3i_ddp_info *ddp;
728 /* remove from the list */
729 write_lock(&cxgb3i_ddp_rwlock);
730 list_for_each_entry(ddp, &cxgb3i_ddp_list, list) {
731 if (ddp->tdev == tdev) {
732 list_del(&ddp->list);
736 write_unlock(&cxgb3i_ddp_rwlock);
741 EXPORT_SYMBOL_GPL(cxgb3i_adapter_ddp_cleanup);
744 * cxgb3i_ddp_init_module - module init entry point
745 * initialize any driver wide global data structures
747 static int __init cxgb3i_ddp_init_module(void)
749 page_idx = cxgb3i_ddp_find_page_index(PAGE_SIZE);
750 ddp_log_info("system PAGE_SIZE %lu, ddp idx %u.\n",
751 PAGE_SIZE, page_idx);
756 * cxgb3i_ddp_exit_module - module cleanup/exit entry point
757 * go through the ddp list and release any resource held.
759 static void __exit cxgb3i_ddp_exit_module(void)
761 struct cxgb3i_ddp_info *ddp;
763 /* release all ddp manager if there is any */
764 write_lock(&cxgb3i_ddp_rwlock);
765 list_for_each_entry(ddp, &cxgb3i_ddp_list, list) {
766 list_del(&ddp->list);
769 write_unlock(&cxgb3i_ddp_rwlock);
772 module_init(cxgb3i_ddp_init_module);
773 module_exit(cxgb3i_ddp_exit_module);