te
Copyright 2014 Garrett D'Amore <garrett@damore.org>
Copyright (c) 1994, Sun Microsystems, Inc.
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 usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. 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]
DDI_DMA_BURSTSIZES 9F "May 24, 2014"
NAME
ddi_dma_burstsizes - find out the allowed burst sizes for a DMA mapping
SYNOPSIS
#include <sys/conf.h>
#include <sys/ddi.h>
#include <sys/sunddi.h>



int ddi_dma_burstsizes(ddi_dma_handle_t handle);
INTERFACE LEVEL
illumos DDI specific (illumos DDI).
PARAMETERS
handle

A DMA handle.

DESCRIPTION
ddi_dma_burstsizes() returns the allowed burst sizes for a DMA mapping. This value is derived from the dma_attr_burstsizes member of the ddi_dma_attr(9S) structure, but it shows the allowable burstsizes after imposing on it the limitations of other device layers in addition to device's own limitations.
RETURN VALUES
ddi_dma_burstsizes() returns a binary encoded value of the allowable DMA burst sizes. See ddi_dma_attr(9S) for a discussion of DMA burst sizes.
CONTEXT
This function can be called from user or interrupt context.
SEE ALSO
ddi_dma_alloc_handle (9F), ddi_dma_attr (9S)

Writing Device Drivers