]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm64/arm64/busdma_machdep.c
MFV: zlib: examples: define functions as static ones. (PR #855)
[FreeBSD/FreeBSD.git] / sys / arm64 / arm64 / busdma_machdep.c
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 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/malloc.h>
38 #include <sys/bus.h>
39 #include <sys/kernel.h>
40 #include <sys/ktr.h>
41 #include <sys/lock.h>
42 #include <sys/memdesc.h>
43 #include <sys/mutex.h>
44 #include <sys/uio.h>
45 #include <vm/vm.h>
46 #include <vm/vm_extern.h>
47 #include <vm/pmap.h>
48
49 #include <machine/bus.h>
50 #include <arm64/include/bus_dma_impl.h>
51
52 /*
53  * Return true if a match is made.
54  *
55  * To find a match walk the chain of bus_dma_tag_t's looking for 'paddr'.
56  *
57  * If paddr is within the bounds of the dma tag then call the filter callback
58  * to check for a match, if there is no filter callback then assume a match.
59  */
60 int
61 bus_dma_run_filter(struct bus_dma_tag_common *tc, bus_addr_t paddr)
62 {
63
64         while (tc != NULL) {
65                 if ((paddr > tc->lowaddr && paddr <= tc->highaddr) &&
66                     (tc->filter == NULL ||
67                     (*tc->filter)(tc->filterarg, paddr) != 0))
68                         return (1);
69
70                 tc = tc->parent;                
71         }
72
73         return (0);
74 }
75
76 int
77 common_bus_dma_tag_create(struct bus_dma_tag_common *parent,
78     bus_size_t alignment, bus_addr_t boundary, bus_addr_t lowaddr,
79     bus_addr_t highaddr, bus_dma_filter_t *filter, void *filterarg,
80     bus_size_t maxsize, int nsegments, bus_size_t maxsegsz, int flags,
81     bus_dma_lock_t *lockfunc, void *lockfuncarg, size_t sz, void **dmat)
82 {
83         void *newtag;
84         struct bus_dma_tag_common *common;
85
86         KASSERT(sz >= sizeof(struct bus_dma_tag_common), ("sz"));
87         /* Return a NULL tag on failure */
88         *dmat = NULL;
89         /* Basic sanity checking */
90         if (boundary != 0 && boundary < maxsegsz)
91                 maxsegsz = boundary;
92         if (maxsegsz == 0)
93                 return (EINVAL);
94
95         newtag = malloc(sz, M_DEVBUF, M_ZERO | M_NOWAIT);
96         if (newtag == NULL) {
97                 CTR4(KTR_BUSDMA, "%s returned tag %p tag flags 0x%x error %d",
98                     __func__, newtag, 0, ENOMEM);
99                 return (ENOMEM);
100         }
101
102         common = newtag;
103         common->impl = &bus_dma_bounce_impl;
104         common->parent = parent;
105         common->alignment = alignment;
106         common->boundary = boundary;
107         common->lowaddr = trunc_page((vm_paddr_t)lowaddr) + (PAGE_SIZE - 1);
108         common->highaddr = trunc_page((vm_paddr_t)highaddr) + (PAGE_SIZE - 1);
109         common->filter = filter;
110         common->filterarg = filterarg;
111         common->maxsize = maxsize;
112         common->nsegments = nsegments;
113         common->maxsegsz = maxsegsz;
114         common->flags = flags;
115         common->ref_count = 1; /* Count ourself */
116         if (lockfunc != NULL) {
117                 common->lockfunc = lockfunc;
118                 common->lockfuncarg = lockfuncarg;
119         } else {
120                 common->lockfunc = _busdma_dflt_lock;
121                 common->lockfuncarg = NULL;
122         }
123
124         /* Take into account any restrictions imposed by our parent tag */
125         if (parent != NULL) {
126                 common->impl = parent->impl;
127                 common->lowaddr = MIN(parent->lowaddr, common->lowaddr);
128                 common->highaddr = MAX(parent->highaddr, common->highaddr);
129                 common->alignment = MAX(parent->alignment, common->alignment);
130                 if (common->boundary == 0)
131                         common->boundary = parent->boundary;
132                 else if (parent->boundary != 0) {
133                         common->boundary = MIN(parent->boundary,
134                             common->boundary);
135                 }
136                 if (common->filter == NULL) {
137                         /*
138                          * Short circuit looking at our parent directly
139                          * since we have encapsulated all of its information
140                          */
141                         common->filter = parent->filter;
142                         common->filterarg = parent->filterarg;
143                         common->parent = parent->parent;
144                 }
145                 atomic_add_int(&parent->ref_count, 1);
146         }
147         *dmat = common;
148         return (0);
149 }
150
151 /*
152  * Allocate a device specific dma_tag.
153  */
154 int
155 bus_dma_tag_create(bus_dma_tag_t parent, bus_size_t alignment,
156     bus_addr_t boundary, bus_addr_t lowaddr, bus_addr_t highaddr,
157     bus_dma_filter_t *filter, void *filterarg, bus_size_t maxsize,
158     int nsegments, bus_size_t maxsegsz, int flags, bus_dma_lock_t *lockfunc,
159     void *lockfuncarg, bus_dma_tag_t *dmat)
160 {
161         struct bus_dma_tag_common *tc;
162         int error;
163
164         if (parent == NULL) {
165                 error = bus_dma_bounce_impl.tag_create(parent, alignment,
166                     boundary, lowaddr, highaddr, filter, filterarg, maxsize,
167                     nsegments, maxsegsz, flags, lockfunc, lockfuncarg, dmat);
168         } else {
169                 tc = (struct bus_dma_tag_common *)parent;
170                 error = tc->impl->tag_create(parent, alignment,
171                     boundary, lowaddr, highaddr, filter, filterarg, maxsize,
172                     nsegments, maxsegsz, flags, lockfunc, lockfuncarg, dmat);
173         }
174         return (error);
175 }
176
177 void
178 bus_dma_template_clone(bus_dma_template_t *t, bus_dma_tag_t dmat)
179 {
180         struct bus_dma_tag_common *common;
181
182         if (t == NULL || dmat == NULL)
183                 return;
184
185         common = (struct bus_dma_tag_common *)dmat;
186
187         t->parent = (bus_dma_tag_t)common->parent;
188         t->alignment = common->alignment;
189         t->boundary = common->boundary;
190         t->lowaddr = common->lowaddr;
191         t->highaddr = common->highaddr;
192         t->maxsize = common->maxsize;
193         t->nsegments = common->nsegments;
194         t->maxsegsize = common->maxsegsz;
195         t->flags = common->flags;
196         t->lockfunc = common->lockfunc;
197         t->lockfuncarg = common->lockfuncarg;
198 }
199
200 int
201 bus_dma_tag_destroy(bus_dma_tag_t dmat)
202 {
203         struct bus_dma_tag_common *tc;
204
205         tc = (struct bus_dma_tag_common *)dmat;
206         return (tc->impl->tag_destroy(dmat));
207 }
208
209 int
210 bus_dma_tag_set_domain(bus_dma_tag_t dmat, int domain)
211 {
212
213         return (0);
214 }