/* * CDDL HEADER START * * Copyright(c) 2007-2009 Intel Corporation. All rights reserved. * The contents of this file are subject to the terms of the * Common Development and Distribution License (the "License"). * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at: * http://www.opensolaris.org/os/licensing. * See the License for the specific language governing permissions * and limitations under the License. * * When using or redistributing this file, you may do so under the * License only. No other modification of this header is permitted. * * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ /* * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms of the CDDL. */ #include "igb_sw.h" static int igb_alloc_tbd_ring(igb_tx_ring_t *); static void igb_free_tbd_ring(igb_tx_ring_t *); static int igb_alloc_rbd_ring(igb_rx_ring_t *); static void igb_free_rbd_ring(igb_rx_ring_t *); static int igb_alloc_dma_buffer(igb_t *, dma_buffer_t *, size_t); static void igb_free_dma_buffer(dma_buffer_t *); static int igb_alloc_tcb_lists(igb_tx_ring_t *); static void igb_free_tcb_lists(igb_tx_ring_t *); static int igb_alloc_rcb_lists(igb_rx_ring_t *); static void igb_free_rcb_lists(igb_rx_ring_t *); #ifdef __sparc #define IGB_DMA_ALIGNMENT 0x0000000000002000ull #else #define IGB_DMA_ALIGNMENT 0x0000000000001000ull #endif /* * DMA attributes for tx/rx descriptors */ static ddi_dma_attr_t igb_desc_dma_attr = { DMA_ATTR_V0, /* version number */ 0x0000000000000000ull, /* low address */ 0xFFFFFFFFFFFFFFFFull, /* high address */ 0x00000000FFFFFFFFull, /* dma counter max */ IGB_DMA_ALIGNMENT, /* alignment */ 0x00000FFF, /* burst sizes */ 0x00000001, /* minimum transfer size */ 0x00000000FFFFFFFFull, /* maximum transfer size */ 0xFFFFFFFFFFFFFFFFull, /* maximum segment size */ 1, /* scatter/gather list length */ 0x00000001, /* granularity */ DDI_DMA_FLAGERR, /* DMA flags */ }; /* * DMA attributes for tx/rx buffers */ static ddi_dma_attr_t igb_buf_dma_attr = { DMA_ATTR_V0, /* version number */ 0x0000000000000000ull, /* low address */ 0xFFFFFFFFFFFFFFFFull, /* high address */ 0x00000000FFFFFFFFull, /* dma counter max */ IGB_DMA_ALIGNMENT, /* alignment */ 0x00000FFF, /* burst sizes */ 0x00000001, /* minimum transfer size */ 0x00000000FFFFFFFFull, /* maximum transfer size */ 0xFFFFFFFFFFFFFFFFull, /* maximum segment size */ 1, /* scatter/gather list length */ 0x00000001, /* granularity */ DDI_DMA_FLAGERR, /* DMA flags */ }; /* * DMA attributes for transmit */ static ddi_dma_attr_t igb_tx_dma_attr = { DMA_ATTR_V0, /* version number */ 0x0000000000000000ull, /* low address */ 0xFFFFFFFFFFFFFFFFull, /* high address */ 0x00000000FFFFFFFFull, /* dma counter max */ 1, /* alignment */ 0x00000FFF, /* burst sizes */ 0x00000001, /* minimum transfer size */ 0x00000000FFFFFFFFull, /* maximum transfer size */ 0xFFFFFFFFFFFFFFFFull, /* maximum segment size */ MAX_COOKIE, /* scatter/gather list length */ 0x00000001, /* granularity */ DDI_DMA_FLAGERR, /* DMA flags */ }; /* * DMA access attributes for descriptors. */ static ddi_device_acc_attr_t igb_desc_acc_attr = { DDI_DEVICE_ATTR_V0, DDI_STRUCTURE_LE_ACC, DDI_STRICTORDER_ACC, DDI_FLAGERR_ACC }; /* * DMA access attributes for buffers. */ static ddi_device_acc_attr_t igb_buf_acc_attr = { DDI_DEVICE_ATTR_V0, DDI_NEVERSWAP_ACC, DDI_STRICTORDER_ACC }; /* * igb_alloc_dma - Allocate DMA resources for all rx/tx rings */ int igb_alloc_dma(igb_t *igb) { igb_rx_ring_t *rx_ring; igb_tx_ring_t *tx_ring; int i; for (i = 0; i < igb->num_rx_rings; i++) { /* * Allocate receive desciptor ring and control block lists */ rx_ring = &igb->rx_rings[i]; if (igb_alloc_rbd_ring(rx_ring) != IGB_SUCCESS) goto alloc_dma_failure; if (igb_alloc_rcb_lists(rx_ring) != IGB_SUCCESS) goto alloc_dma_failure; } for (i = 0; i < igb->num_tx_rings; i++) { /* * Allocate transmit desciptor ring and control block lists */ tx_ring = &igb->tx_rings[i]; if (igb_alloc_tbd_ring(tx_ring) != IGB_SUCCESS) goto alloc_dma_failure; if (igb_alloc_tcb_lists(tx_ring) != IGB_SUCCESS) goto alloc_dma_failure; } return (IGB_SUCCESS); alloc_dma_failure: igb_free_dma(igb); return (IGB_FAILURE); } /* * igb_free_dma - Free all the DMA resources of all rx/tx rings */ void igb_free_dma(igb_t *igb) { igb_rx_ring_t *rx_ring; igb_tx_ring_t *tx_ring; int i; /* * Free DMA resources of rx rings */ for (i = 0; i < igb->num_rx_rings; i++) { rx_ring = &igb->rx_rings[i]; igb_free_rbd_ring(rx_ring); igb_free_rcb_lists(rx_ring); } /* * Free DMA resources of tx rings */ for (i = 0; i < igb->num_tx_rings; i++) { tx_ring = &igb->tx_rings[i]; igb_free_tbd_ring(tx_ring); igb_free_tcb_lists(tx_ring); } } /* * igb_alloc_tbd_ring - Memory allocation for the tx descriptors of one ring. */ static int igb_alloc_tbd_ring(igb_tx_ring_t *tx_ring) { int ret; size_t size; size_t len; uint_t cookie_num; dev_info_t *devinfo; ddi_dma_cookie_t cookie; igb_t *igb = tx_ring->igb; devinfo = igb->dip; size = sizeof (union e1000_adv_tx_desc) * tx_ring->ring_size; /* * If tx head write-back is enabled, an extra tbd is allocated * to save the head write-back value */ if (igb->tx_head_wb_enable) { size += sizeof (union e1000_adv_tx_desc); } /* * Allocate a DMA handle for the transmit descriptor * memory area. */ ret = ddi_dma_alloc_handle(devinfo, &igb_desc_dma_attr, DDI_DMA_DONTWAIT, NULL, &tx_ring->tbd_area.dma_handle); if (ret != DDI_SUCCESS) { igb_error(igb, "Could not allocate tbd dma handle: %x", ret); tx_ring->tbd_area.dma_handle = NULL; return (IGB_FAILURE); } /* * Allocate memory to DMA data to and from the transmit * descriptors. */ ret = ddi_dma_mem_alloc(tx_ring->tbd_area.dma_handle, size, &igb_desc_acc_attr, DDI_DMA_CONSISTENT, DDI_DMA_DONTWAIT, NULL, (caddr_t *)&tx_ring->tbd_area.address, &len, &tx_ring->tbd_area.acc_handle); if (ret != DDI_SUCCESS) { igb_error(igb, "Could not allocate tbd dma memory: %x", ret); tx_ring->tbd_area.acc_handle = NULL; tx_ring->tbd_area.address = NULL; if (tx_ring->tbd_area.dma_handle != NULL) { ddi_dma_free_handle(&tx_ring->tbd_area.dma_handle); tx_ring->tbd_area.dma_handle = NULL; } return (IGB_FAILURE); } /* * Initialize the entire transmit buffer descriptor area to zero */ bzero(tx_ring->tbd_area.address, len); /* * Allocates DMA resources for the memory that was allocated by * the ddi_dma_mem_alloc call. The DMA resources then get bound to the * the memory address */ ret = ddi_dma_addr_bind_handle(tx_ring->tbd_area.dma_handle, NULL, (caddr_t)tx_ring->tbd_area.address, len, DDI_DMA_RDWR | DDI_DMA_CONSISTENT, DDI_DMA_DONTWAIT, NULL, &cookie, &cookie_num); if (ret != DDI_DMA_MAPPED) { igb_error(igb, "Could not bind tbd dma resource: %x", ret); tx_ring->tbd_area.dma_address = NULL; if (tx_ring->tbd_area.acc_handle != NULL) { ddi_dma_mem_free(&tx_ring->tbd_area.acc_handle); tx_ring->tbd_area.acc_handle = NULL; tx_ring->tbd_area.address = NULL; } if (tx_ring->tbd_area.dma_handle != NULL) { ddi_dma_free_handle(&tx_ring->tbd_area.dma_handle); tx_ring->tbd_area.dma_handle = NULL; } return (IGB_FAILURE); } ASSERT(cookie_num == 1); tx_ring->tbd_area.dma_address = cookie.dmac_laddress; tx_ring->tbd_area.size = len; tx_ring->tbd_ring = (union e1000_adv_tx_desc *)(uintptr_t) tx_ring->tbd_area.address; return (IGB_SUCCESS); } /* * igb_free_tbd_ring - Free the tx descriptors of one ring. */ static void igb_free_tbd_ring(igb_tx_ring_t *tx_ring) { if (tx_ring->tbd_area.dma_handle != NULL) { (void) ddi_dma_unbind_handle(tx_ring->tbd_area.dma_handle); } if (tx_ring->tbd_area.acc_handle != NULL) { ddi_dma_mem_free(&tx_ring->tbd_area.acc_handle); tx_ring->tbd_area.acc_handle = NULL; } if (tx_ring->tbd_area.dma_handle != NULL) { ddi_dma_free_handle(&tx_ring->tbd_area.dma_handle); tx_ring->tbd_area.dma_handle = NULL; } tx_ring->tbd_area.address = NULL; tx_ring->tbd_area.dma_address = NULL; tx_ring->tbd_area.size = 0; tx_ring->tbd_ring = NULL; } /* * igb_alloc_rbd_ring - Memory allocation for the rx descriptors of one ring. */ static int igb_alloc_rbd_ring(igb_rx_ring_t *rx_ring) { int ret; size_t size; size_t len; uint_t cookie_num; dev_info_t *devinfo; ddi_dma_cookie_t cookie; igb_t *igb = rx_ring->igb; devinfo = igb->dip; size = sizeof (union e1000_adv_rx_desc) * rx_ring->ring_size; /* * Allocate a new DMA handle for the receive descriptor * memory area. */ ret = ddi_dma_alloc_handle(devinfo, &igb_desc_dma_attr, DDI_DMA_DONTWAIT, NULL, &rx_ring->rbd_area.dma_handle); if (ret != DDI_SUCCESS) { igb_error(igb, "Could not allocate rbd dma handle: %x", ret); rx_ring->rbd_area.dma_handle = NULL; return (IGB_FAILURE); } /* * Allocate memory to DMA data to and from the receive * descriptors. */ ret = ddi_dma_mem_alloc(rx_ring->rbd_area.dma_handle, size, &igb_desc_acc_attr, DDI_DMA_CONSISTENT, DDI_DMA_DONTWAIT, NULL, (caddr_t *)&rx_ring->rbd_area.address, &len, &rx_ring->rbd_area.acc_handle); if (ret != DDI_SUCCESS) { igb_error(igb, "Could not allocate rbd dma memory: %x", ret); rx_ring->rbd_area.acc_handle = NULL; rx_ring->rbd_area.address = NULL; if (rx_ring->rbd_area.dma_handle != NULL) { ddi_dma_free_handle(&rx_ring->rbd_area.dma_handle); rx_ring->rbd_area.dma_handle = NULL; } return (IGB_FAILURE); } /* * Initialize the entire transmit buffer descriptor area to zero */ bzero(rx_ring->rbd_area.address, len); /* * Allocates DMA resources for the memory that was allocated by * the ddi_dma_mem_alloc call. */ ret = ddi_dma_addr_bind_handle(rx_ring->rbd_area.dma_handle, NULL, (caddr_t)rx_ring->rbd_area.address, len, DDI_DMA_RDWR | DDI_DMA_CONSISTENT, DDI_DMA_DONTWAIT, NULL, &cookie, &cookie_num); if (ret != DDI_DMA_MAPPED) { igb_error(igb, "Could not bind rbd dma resource: %x", ret); rx_ring->rbd_area.dma_address = NULL; if (rx_ring->rbd_area.acc_handle != NULL) { ddi_dma_mem_free(&rx_ring->rbd_area.acc_handle); rx_ring->rbd_area.acc_handle = NULL; rx_ring->rbd_area.address = NULL; } if (rx_ring->rbd_area.dma_handle != NULL) { ddi_dma_free_handle(&rx_ring->rbd_area.dma_handle); rx_ring->rbd_area.dma_handle = NULL; } return (IGB_FAILURE); } ASSERT(cookie_num == 1); rx_ring->rbd_area.dma_address = cookie.dmac_laddress; rx_ring->rbd_area.size = len; rx_ring->rbd_ring = (union e1000_adv_rx_desc *)(uintptr_t) rx_ring->rbd_area.address; return (IGB_SUCCESS); } /* * igb_free_rbd_ring - Free the rx descriptors of one ring. */ static void igb_free_rbd_ring(igb_rx_ring_t *rx_ring) { if (rx_ring->rbd_area.dma_handle != NULL) { (void) ddi_dma_unbind_handle(rx_ring->rbd_area.dma_handle); } if (rx_ring->rbd_area.acc_handle != NULL) { ddi_dma_mem_free(&rx_ring->rbd_area.acc_handle); rx_ring->rbd_area.acc_handle = NULL; } if (rx_ring->rbd_area.dma_handle != NULL) { ddi_dma_free_handle(&rx_ring->rbd_area.dma_handle); rx_ring->rbd_area.dma_handle = NULL; } rx_ring->rbd_area.address = NULL; rx_ring->rbd_area.dma_address = NULL; rx_ring->rbd_area.size = 0; rx_ring->rbd_ring = NULL; } /* * igb_alloc_dma_buffer - Allocate DMA resources for a DMA buffer */ static int igb_alloc_dma_buffer(igb_t *igb, dma_buffer_t *buf, size_t size) { int ret; dev_info_t *devinfo = igb->dip; ddi_dma_cookie_t cookie; size_t len; uint_t cookie_num; ret = ddi_dma_alloc_handle(devinfo, &igb_buf_dma_attr, DDI_DMA_DONTWAIT, NULL, &buf->dma_handle); if (ret != DDI_SUCCESS) { buf->dma_handle = NULL; igb_error(igb, "Could not allocate dma buffer handle: %x", ret); return (IGB_FAILURE); } ret = ddi_dma_mem_alloc(buf->dma_handle, size, &igb_buf_acc_attr, DDI_DMA_STREAMING, DDI_DMA_DONTWAIT, NULL, &buf->address, &len, &buf->acc_handle); if (ret != DDI_SUCCESS) { buf->acc_handle = NULL; buf->address = NULL; if (buf->dma_handle != NULL) { ddi_dma_free_handle(&buf->dma_handle); buf->dma_handle = NULL; } igb_error(igb, "Could not allocate dma buffer memory: %x", ret); return (IGB_FAILURE); } ret = ddi_dma_addr_bind_handle(buf->dma_handle, NULL, buf->address, len, DDI_DMA_RDWR | DDI_DMA_STREAMING, DDI_DMA_DONTWAIT, NULL, &cookie, &cookie_num); if (ret != DDI_DMA_MAPPED) { buf->dma_address = NULL; if (buf->acc_handle != NULL) { ddi_dma_mem_free(&buf->acc_handle); buf->acc_handle = NULL; buf->address = NULL; } if (buf->dma_handle != NULL) { ddi_dma_free_handle(&buf->dma_handle); buf->dma_handle = NULL; } igb_error(igb, "Could not bind dma buffer handle: %x", ret); return (IGB_FAILURE); } ASSERT(cookie_num == 1); buf->dma_address = cookie.dmac_laddress; buf->size = len; buf->len = 0; return (IGB_SUCCESS); } /* * igb_free_dma_buffer - Free one allocated area of dma memory and handle */ static void igb_free_dma_buffer(dma_buffer_t *buf) { if (buf->dma_handle != NULL) { (void) ddi_dma_unbind_handle(buf->dma_handle); buf->dma_address = NULL; } else { return; } if (buf->acc_handle != NULL) { ddi_dma_mem_free(&buf->acc_handle); buf->acc_handle = NULL; buf->address = NULL; } if (buf->dma_handle != NULL) { ddi_dma_free_handle(&buf->dma_handle); buf->dma_handle = NULL; } buf->size = 0; buf->len = 0; } /* * igb_alloc_tcb_lists - Memory allocation for the transmit control bolcks * of one ring. */ static int igb_alloc_tcb_lists(igb_tx_ring_t *tx_ring) { int i; int ret; tx_control_block_t *tcb; dma_buffer_t *tx_buf; igb_t *igb = tx_ring->igb; dev_info_t *devinfo = igb->dip; /* * Allocate memory for the work list. */ tx_ring->work_list = kmem_zalloc(sizeof (tx_control_block_t *) * tx_ring->ring_size, KM_NOSLEEP); if (tx_ring->work_list == NULL) { igb_error(igb, "Cound not allocate memory for tx work list"); return (IGB_FAILURE); } /* * Allocate memory for the free list. */ tx_ring->free_list = kmem_zalloc(sizeof (tx_control_block_t *) * tx_ring->free_list_size, KM_NOSLEEP); if (tx_ring->free_list == NULL) { kmem_free(tx_ring->work_list, sizeof (tx_control_block_t *) * tx_ring->ring_size); tx_ring->work_list = NULL; igb_error(igb, "Cound not allocate memory for tx free list"); return (IGB_FAILURE); } /* * Allocate memory for the tx control blocks of free list. */ tx_ring->tcb_area = kmem_zalloc(sizeof (tx_control_block_t) * tx_ring->free_list_size, KM_NOSLEEP); if (tx_ring->tcb_area == NULL) { kmem_free(tx_ring->work_list, sizeof (tx_control_block_t *) * tx_ring->ring_size); tx_ring->work_list = NULL; kmem_free(tx_ring->free_list, sizeof (tx_control_block_t *) * tx_ring->free_list_size); tx_ring->free_list = NULL; igb_error(igb, "Cound not allocate memory for tx control blocks"); return (IGB_FAILURE); } /* * Allocate dma memory for the tx control block of free list. */ tcb = tx_ring->tcb_area; for (i = 0; i < tx_ring->free_list_size; i++, tcb++) { ASSERT(tcb != NULL); tx_ring->free_list[i] = tcb; /* * Pre-allocate dma handles for transmit. These dma handles * will be dynamically bound to the data buffers passed down * from the upper layers at the time of transmitting. */ ret = ddi_dma_alloc_handle(devinfo, &igb_tx_dma_attr, DDI_DMA_DONTWAIT, NULL, &tcb->tx_dma_handle); if (ret != DDI_SUCCESS) { tcb->tx_dma_handle = NULL; igb_error(igb, "Could not allocate tx dma handle: %x", ret); goto alloc_tcb_lists_fail; } /* * Pre-allocate transmit buffers for packets that the * size is less than bcopy_thresh. */ tx_buf = &tcb->tx_buf; ret = igb_alloc_dma_buffer(igb, tx_buf, igb->tx_buf_size); if (ret != IGB_SUCCESS) { ASSERT(tcb->tx_dma_handle != NULL); ddi_dma_free_handle(&tcb->tx_dma_handle); tcb->tx_dma_handle = NULL; igb_error(igb, "Allocate tx dma buffer failed"); goto alloc_tcb_lists_fail; } } return (IGB_SUCCESS); alloc_tcb_lists_fail: igb_free_tcb_lists(tx_ring); return (IGB_FAILURE); } /* * igb_free_tcb_lists - Release the memory allocated for * the transmit control bolcks of one ring. */ static void igb_free_tcb_lists(igb_tx_ring_t *tx_ring) { int i; tx_control_block_t *tcb; tcb = tx_ring->tcb_area; if (tcb == NULL) return; for (i = 0; i < tx_ring->free_list_size; i++, tcb++) { ASSERT(tcb != NULL); /* Free the tx dma handle for dynamical binding */ if (tcb->tx_dma_handle != NULL) { ddi_dma_free_handle(&tcb->tx_dma_handle); tcb->tx_dma_handle = NULL; } else { /* * If the dma handle is NULL, then we don't * have to check the remaining. */ break; } igb_free_dma_buffer(&tcb->tx_buf); } if (tx_ring->tcb_area != NULL) { kmem_free(tx_ring->tcb_area, sizeof (tx_control_block_t) * tx_ring->free_list_size); tx_ring->tcb_area = NULL; } if (tx_ring->work_list != NULL) { kmem_free(tx_ring->work_list, sizeof (tx_control_block_t *) * tx_ring->ring_size); tx_ring->work_list = NULL; } if (tx_ring->free_list != NULL) { kmem_free(tx_ring->free_list, sizeof (tx_control_block_t *) * tx_ring->free_list_size); tx_ring->free_list = NULL; } } /* * igb_alloc_rcb_lists - Memory allocation for the receive control blocks * of one ring. */ static int igb_alloc_rcb_lists(igb_rx_ring_t *rx_ring) { int i; int ret; rx_control_block_t *rcb; igb_t *igb = rx_ring->igb; dma_buffer_t *rx_buf; uint32_t rcb_count; /* * Allocate memory for the work list. */ rx_ring->work_list = kmem_zalloc(sizeof (rx_control_block_t *) * rx_ring->ring_size, KM_NOSLEEP); if (rx_ring->work_list == NULL) { igb_error(igb, "Could not allocate memory for rx work list"); return (IGB_FAILURE); } /* * Allocate memory for the free list. */ rx_ring->free_list = kmem_zalloc(sizeof (rx_control_block_t *) * rx_ring->free_list_size, KM_NOSLEEP); if (rx_ring->free_list == NULL) { kmem_free(rx_ring->work_list, sizeof (rx_control_block_t *) * rx_ring->ring_size); rx_ring->work_list = NULL; igb_error(igb, "Cound not allocate memory for rx free list"); return (IGB_FAILURE); } /* * Allocate memory for the rx control blocks for work list and * free list. */ rcb_count = rx_ring->ring_size + rx_ring->free_list_size; rx_ring->rcb_area = kmem_zalloc(sizeof (rx_control_block_t) * rcb_count, KM_NOSLEEP); if (rx_ring->rcb_area == NULL) { kmem_free(rx_ring->work_list, sizeof (rx_control_block_t *) * rx_ring->ring_size); rx_ring->work_list = NULL; kmem_free(rx_ring->free_list, sizeof (rx_control_block_t *) * rx_ring->free_list_size); rx_ring->free_list = NULL; igb_error(igb, "Cound not allocate memory for rx control blocks"); return (IGB_FAILURE); } /* * Allocate dma memory for the rx control blocks */ rcb = rx_ring->rcb_area; for (i = 0; i < rcb_count; i++, rcb++) { ASSERT(rcb != NULL); if (i < rx_ring->ring_size) { /* Attach the rx control block to the work list */ rx_ring->work_list[i] = rcb; } else { /* Attach the rx control block to the free list */ rx_ring->free_list[i - rx_ring->ring_size] = rcb; } rx_buf = &rcb->rx_buf; ret = igb_alloc_dma_buffer(igb, rx_buf, igb->rx_buf_size); if (ret != IGB_SUCCESS) { igb_error(igb, "Allocate rx dma buffer failed"); goto alloc_rcb_lists_fail; } rx_buf->size -= IPHDR_ALIGN_ROOM; rx_buf->address += IPHDR_ALIGN_ROOM; rx_buf->dma_address += IPHDR_ALIGN_ROOM; rcb->state = RCB_FREE; rcb->rx_ring = (igb_rx_ring_t *)rx_ring; rcb->free_rtn.free_func = igb_rx_recycle; rcb->free_rtn.free_arg = (char *)rcb; rcb->mp = desballoc((unsigned char *) rx_buf->address, rx_buf->size, 0, &rcb->free_rtn); } return (IGB_SUCCESS); alloc_rcb_lists_fail: igb_free_rcb_lists(rx_ring); return (IGB_FAILURE); } /* * igb_free_rcb_lists - Free the receive control blocks of one ring. */ static void igb_free_rcb_lists(igb_rx_ring_t *rx_ring) { int i; rx_control_block_t *rcb; uint32_t rcb_count; rcb = rx_ring->rcb_area; if (rcb == NULL) return; rcb_count = rx_ring->ring_size + rx_ring->free_list_size; for (i = 0; i < rcb_count; i++, rcb++) { ASSERT(rcb != NULL); ASSERT(rcb->state == RCB_FREE); if (rcb->mp != NULL) { freemsg(rcb->mp); rcb->mp = NULL; } igb_free_dma_buffer(&rcb->rx_buf); } if (rx_ring->rcb_area != NULL) { kmem_free(rx_ring->rcb_area, sizeof (rx_control_block_t) * rcb_count); rx_ring->rcb_area = NULL; } if (rx_ring->work_list != NULL) { kmem_free(rx_ring->work_list, sizeof (rx_control_block_t *) * rx_ring->ring_size); rx_ring->work_list = NULL; } if (rx_ring->free_list != NULL) { kmem_free(rx_ring->free_list, sizeof (rx_control_block_t *) * rx_ring->free_list_size); rx_ring->free_list = NULL; } } void igb_set_fma_flags(int acc_flag, int dma_flag) { if (acc_flag) { igb_desc_acc_attr.devacc_attr_access = DDI_FLAGERR_ACC; } else { igb_desc_acc_attr.devacc_attr_access = DDI_DEFAULT_ACC; } if (dma_flag) { igb_tx_dma_attr.dma_attr_flags = DDI_DMA_FLAGERR; igb_buf_dma_attr.dma_attr_flags = DDI_DMA_FLAGERR; igb_desc_dma_attr.dma_attr_flags = DDI_DMA_FLAGERR; } else { igb_tx_dma_attr.dma_attr_flags = 0; igb_buf_dma_attr.dma_attr_flags = 0; igb_desc_dma_attr.dma_attr_flags = 0; } }