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