xref: /freebsd/sys/x86/x86/busdma_machdep.c (revision 681ce946)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 1997, 1998 Justin T. Gibbs.
5  * Copyright (c) 2013 The FreeBSD Foundation
6  * All rights reserved.
7  *
8  * This software was developed by Konstantin Belousov <kib@FreeBSD.org>
9  * under sponsorship from the FreeBSD Foundation.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions, and the following disclaimer,
16  *    without modification, immediately at the beginning of the file.
17  * 2. The name of the author may not be used to endorse or promote products
18  *    derived from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
24  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32 
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35 
36 #include "opt_acpi.h"
37 
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/malloc.h>
41 #include <sys/bus.h>
42 #include <sys/kernel.h>
43 #include <sys/ktr.h>
44 #include <sys/lock.h>
45 #include <sys/memdesc.h>
46 #include <sys/mutex.h>
47 #include <sys/uio.h>
48 #include <sys/vmmeter.h>
49 #include <vm/vm.h>
50 #include <vm/vm_extern.h>
51 #include <vm/vm_param.h>
52 #include <vm/vm_page.h>
53 #include <vm/vm_phys.h>
54 #include <vm/pmap.h>
55 #include <machine/bus.h>
56 #include <x86/include/busdma_impl.h>
57 
58 /*
59  * Convenience function for manipulating driver locks from busdma (during
60  * busdma_swi, for example).
61  */
62 void
63 busdma_lock_mutex(void *arg, bus_dma_lock_op_t op)
64 {
65 	struct mtx *dmtx;
66 
67 	dmtx = (struct mtx *)arg;
68 	switch (op) {
69 	case BUS_DMA_LOCK:
70 		mtx_lock(dmtx);
71 		break;
72 	case BUS_DMA_UNLOCK:
73 		mtx_unlock(dmtx);
74 		break;
75 	default:
76 		panic("Unknown operation 0x%x for busdma_lock_mutex!", op);
77 	}
78 }
79 
80 /*
81  * dflt_lock should never get called.  It gets put into the dma tag when
82  * lockfunc == NULL, which is only valid if the maps that are associated
83  * with the tag are meant to never be defered.
84  * XXX Should have a way to identify which driver is responsible here.
85  */
86 void
87 bus_dma_dflt_lock(void *arg, bus_dma_lock_op_t op)
88 {
89 
90 	panic("driver error: busdma dflt_lock called");
91 }
92 
93 /*
94  * Return true if a match is made.
95  *
96  * To find a match walk the chain of bus_dma_tag_t's looking for 'paddr'.
97  *
98  * If paddr is within the bounds of the dma tag then call the filter callback
99  * to check for a match, if there is no filter callback then assume a match.
100  */
101 int
102 bus_dma_run_filter(struct bus_dma_tag_common *tc, vm_paddr_t paddr)
103 {
104 	int retval;
105 
106 	retval = 0;
107 	do {
108 		if ((paddr >= BUS_SPACE_MAXADDR ||
109 		    (paddr > tc->lowaddr && paddr <= tc->highaddr) ||
110 		    (paddr & (tc->alignment - 1)) != 0) &&
111 		    (tc->filter == NULL ||
112 		    (*tc->filter)(tc->filterarg, paddr) != 0))
113 			retval = 1;
114 
115 		tc = tc->parent;
116 	} while (retval == 0 && tc != NULL);
117 	return (retval);
118 }
119 
120 int
121 common_bus_dma_tag_create(struct bus_dma_tag_common *parent,
122     bus_size_t alignment, bus_addr_t boundary, bus_addr_t lowaddr,
123     bus_addr_t highaddr, bus_dma_filter_t *filter, void *filterarg,
124     bus_size_t maxsize, int nsegments, bus_size_t maxsegsz, int flags,
125     bus_dma_lock_t *lockfunc, void *lockfuncarg, size_t sz, void **dmat)
126 {
127 	void *newtag;
128 	struct bus_dma_tag_common *common;
129 
130 	KASSERT(sz >= sizeof(struct bus_dma_tag_common), ("sz"));
131 	/* Basic sanity checking */
132 	if (boundary != 0 && boundary < maxsegsz)
133 		maxsegsz = boundary;
134 	if (maxsegsz == 0)
135 		return (EINVAL);
136 	/* Return a NULL tag on failure */
137 	*dmat = NULL;
138 
139 	newtag = malloc(sz, M_DEVBUF, M_ZERO | M_NOWAIT);
140 	if (newtag == NULL) {
141 		CTR4(KTR_BUSDMA, "%s returned tag %p tag flags 0x%x error %d",
142 		    __func__, newtag, 0, ENOMEM);
143 		return (ENOMEM);
144 	}
145 
146 	common = newtag;
147 	common->impl = &bus_dma_bounce_impl;
148 	common->parent = parent;
149 	common->alignment = alignment;
150 	common->boundary = boundary;
151 	common->lowaddr = trunc_page((vm_paddr_t)lowaddr) + (PAGE_SIZE - 1);
152 	common->highaddr = trunc_page((vm_paddr_t)highaddr) + (PAGE_SIZE - 1);
153 	common->filter = filter;
154 	common->filterarg = filterarg;
155 	common->maxsize = maxsize;
156 	common->nsegments = nsegments;
157 	common->maxsegsz = maxsegsz;
158 	common->flags = flags;
159 	common->ref_count = 1; /* Count ourself */
160 	if (lockfunc != NULL) {
161 		common->lockfunc = lockfunc;
162 		common->lockfuncarg = lockfuncarg;
163 	} else {
164 		common->lockfunc = bus_dma_dflt_lock;
165 		common->lockfuncarg = NULL;
166 	}
167 
168 	/* Take into account any restrictions imposed by our parent tag */
169 	if (parent != NULL) {
170 		common->impl = parent->impl;
171 		common->lowaddr = MIN(parent->lowaddr, common->lowaddr);
172 		common->highaddr = MAX(parent->highaddr, common->highaddr);
173 		if (common->boundary == 0)
174 			common->boundary = parent->boundary;
175 		else if (parent->boundary != 0) {
176 			common->boundary = MIN(parent->boundary,
177 			    common->boundary);
178 		}
179 		if (common->filter == NULL) {
180 			/*
181 			 * Short circuit looking at our parent directly
182 			 * since we have encapsulated all of its information
183 			 */
184 			common->filter = parent->filter;
185 			common->filterarg = parent->filterarg;
186 			common->parent = parent->parent;
187 		}
188 		common->domain = parent->domain;
189 		atomic_add_int(&parent->ref_count, 1);
190 	}
191 	common->domain = vm_phys_domain_match(common->domain, 0ul,
192 	    common->lowaddr);
193 	*dmat = common;
194 	return (0);
195 }
196 
197 int
198 bus_dma_tag_set_domain(bus_dma_tag_t dmat, int domain)
199 {
200 	struct bus_dma_tag_common *tc;
201 
202 	tc = (struct bus_dma_tag_common *)dmat;
203 	domain = vm_phys_domain_match(domain, 0ul, tc->lowaddr);
204 	/* Only call the callback if it changes. */
205 	if (domain == tc->domain)
206 		return (0);
207 	tc->domain = domain;
208 	return (tc->impl->tag_set_domain(dmat));
209 }
210 
211 /*
212  * Allocate a device specific dma_tag.
213  */
214 int
215 bus_dma_tag_create(bus_dma_tag_t parent, bus_size_t alignment,
216     bus_addr_t boundary, bus_addr_t lowaddr, bus_addr_t highaddr,
217     bus_dma_filter_t *filter, void *filterarg, bus_size_t maxsize,
218     int nsegments, bus_size_t maxsegsz, int flags, bus_dma_lock_t *lockfunc,
219     void *lockfuncarg, bus_dma_tag_t *dmat)
220 {
221 	struct bus_dma_tag_common *tc;
222 	int error;
223 
224 	if (parent == NULL) {
225 		error = bus_dma_bounce_impl.tag_create(parent, alignment,
226 		    boundary, lowaddr, highaddr, filter, filterarg, maxsize,
227 		    nsegments, maxsegsz, flags, lockfunc, lockfuncarg, dmat);
228 	} else {
229 		tc = (struct bus_dma_tag_common *)parent;
230 		error = tc->impl->tag_create(parent, alignment,
231 		    boundary, lowaddr, highaddr, filter, filterarg, maxsize,
232 		    nsegments, maxsegsz, flags, lockfunc, lockfuncarg, dmat);
233 	}
234 	return (error);
235 }
236 
237 void
238 bus_dma_template_clone(bus_dma_template_t *t, bus_dma_tag_t dmat)
239 {
240 	struct bus_dma_tag_common *common;
241 
242 	if (t == NULL || dmat == NULL)
243 		return;
244 
245 	common = (struct bus_dma_tag_common *)dmat;
246 
247 	t->parent = (bus_dma_tag_t)common->parent;
248 	t->alignment = common->alignment;
249 	t->boundary = common->boundary;
250 	t->lowaddr = common->lowaddr;
251 	t->highaddr = common->highaddr;
252 	t->maxsize = common->maxsize;
253 	t->nsegments = common->nsegments;
254 	t->maxsegsize = common->maxsegsz;
255 	t->flags = common->flags;
256 	t->lockfunc = common->lockfunc;
257 	t->lockfuncarg = common->lockfuncarg;
258 }
259 
260 int
261 bus_dma_tag_destroy(bus_dma_tag_t dmat)
262 {
263 	struct bus_dma_tag_common *tc;
264 
265 	tc = (struct bus_dma_tag_common *)dmat;
266 	return (tc->impl->tag_destroy(dmat));
267 }
268