summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/io/sfxge/sfxge_dma.c
blob: 6715888eabc51c12d315283810b35b614d0b518c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/*
 * Copyright (c) 2008-2016 Solarflare Communications Inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * The views and conclusions contained in the software and documentation are
 * those of the authors and should not be interpreted as representing official
 * policies, either expressed or implied, of the FreeBSD Project.
 */

#include <sys/ddi.h>

#include "sfxge.h"
#include "efx.h"

static int
sfxge_dma_buffer_unbind_handle(efsys_mem_t *esmp)
{
	int rc;

	esmp->esm_addr = 0;
	rc = ddi_dma_unbind_handle(esmp->esm_dma_handle);
	if (rc != DDI_SUCCESS)
		goto fail1;

	return (0);

fail1:
	DTRACE_PROBE1(fail1, int, rc);

	return (rc);
}

static void
sfxge_dma_buffer_mem_free(efsys_mem_t *esmp)
{
	esmp->esm_base = NULL;
	ddi_dma_mem_free(&(esmp->esm_acc_handle));
	esmp->esm_acc_handle = NULL;
}

static void
sfxge_dma_buffer_handle_free(ddi_dma_handle_t *dhandlep)
{
	ddi_dma_free_handle(dhandlep);
	*dhandlep = NULL;
}

int
sfxge_dma_buffer_create(efsys_mem_t *esmp, const sfxge_dma_buffer_attr_t *sdbap)
{
	int err;
	int rc;
	size_t unit;
	ddi_dma_cookie_t dmac;
	unsigned int ncookies;

	/* Allocate a DMA handle */
	err = ddi_dma_alloc_handle(sdbap->sdba_dip, sdbap->sdba_dattrp,
	    sdbap->sdba_callback, NULL, &(esmp->esm_dma_handle));
	switch (err) {
	case DDI_SUCCESS:
		break;

	case DDI_DMA_BADATTR:
		rc = EINVAL;
		goto fail1;

	case DDI_DMA_NORESOURCES:
		rc = ENOMEM;
		goto fail1;

	default:
		rc = EFAULT;
		goto fail1;
	}

	/* Allocate some DMA memory */
	err = ddi_dma_mem_alloc(esmp->esm_dma_handle, sdbap->sdba_length,
	    sdbap->sdba_devaccp, sdbap->sdba_memflags,
	    sdbap->sdba_callback, NULL,
	    &(esmp->esm_base), &unit, &(esmp->esm_acc_handle));
	switch (err) {
	case DDI_SUCCESS:
		break;

	case DDI_FAILURE:
		/*FALLTHRU*/
	default:
		rc = EFAULT;
		goto fail2;
	}

	if (sdbap->sdba_zeroinit)
		bzero(esmp->esm_base, sdbap->sdba_length);

	/* Bind the DMA memory to the DMA handle */
	/* We aren't handling partial mappings */
	ASSERT3U(sdbap->sdba_bindflags & DDI_DMA_PARTIAL, !=, DDI_DMA_PARTIAL);
	err = ddi_dma_addr_bind_handle(esmp->esm_dma_handle, NULL,
	    esmp->esm_base, sdbap->sdba_length, sdbap->sdba_bindflags,
	    sdbap->sdba_callback, NULL, &dmac, &ncookies);
	switch (err) {
	case DDI_DMA_MAPPED:
		break;

	case DDI_DMA_INUSE:
		rc = EEXIST;
		goto fail3;

	case DDI_DMA_NORESOURCES:
		rc = ENOMEM;
		goto fail3;

	case DDI_DMA_NOMAPPING:
		rc = ENOTSUP;
		goto fail3;

	case DDI_DMA_TOOBIG:
		rc = EFBIG;
		goto fail3;

	default:
		rc = EFAULT;
		goto fail3;
	}
	ASSERT3U(ncookies, >=, 1);
	ASSERT3U(ncookies, <=, sdbap->sdba_maxcookies);

	esmp->esm_addr = dmac.dmac_laddress;
	esmp->esm_size = dmac.dmac_size;
	DTRACE_PROBE1(addr, efsys_dma_addr_t, esmp->esm_addr);

	return (0);

fail3:
	DTRACE_PROBE(fail3);

	sfxge_dma_buffer_mem_free(esmp);

fail2:
	DTRACE_PROBE(fail2);

	sfxge_dma_buffer_handle_free(&(esmp->esm_dma_handle));
	esmp->esm_dma_handle = NULL;

fail1:
	DTRACE_PROBE1(fail1, int, rc);

	return (-1);
}

void
sfxge_dma_buffer_destroy(efsys_mem_t *esmp)
{
	int rc;

	rc = sfxge_dma_buffer_unbind_handle(esmp);
	if (rc != 0) {
		cmn_err(CE_WARN, SFXGE_CMN_ERR "DMA Unbind failed rc=%d", rc);
	}
	sfxge_dma_buffer_mem_free(esmp);
	sfxge_dma_buffer_handle_free(&(esmp->esm_dma_handle));
}