]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm/arm/mem.c
nvi: import version 2.2.1
[FreeBSD/FreeBSD.git] / sys / arm / arm / mem.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1988 University of Utah.
5  * Copyright (c) 1982, 1986, 1990 The Regents of the University of California.
6  * All rights reserved.
7  *
8  * This code is derived from software contributed to Berkeley by
9  * the Systems Programming Group of the University of Utah Computer
10  * Science Department, and code derived from software contributed to
11  * Berkeley by William Jolitz.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  * 3. Neither the name of the University nor the names of its contributors
22  *    may be used to endorse or promote products derived from this software
23  *    without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35  * SUCH DAMAGE.
36  *
37  *      from: Utah $Hdr: mem.c 1.13 89/10/08$
38  *      from: @(#)mem.c 7.2 (Berkeley) 5/9/91
39  */
40
41 #include <sys/cdefs.h>
42 /*
43  * Memory special file
44  */
45
46 #include <sys/param.h>
47 #include <sys/conf.h>
48 #include <sys/fcntl.h>
49 #include <sys/ioccom.h>
50 #include <sys/kernel.h>
51 #include <sys/lock.h>
52 #include <sys/malloc.h>
53 #include <sys/memrange.h>
54 #include <sys/module.h>
55 #include <sys/mutex.h>
56 #include <sys/proc.h>
57 #include <sys/signalvar.h>
58 #include <sys/sx.h>
59 #include <sys/systm.h>
60 #include <sys/uio.h>
61
62 #include <vm/vm.h>
63 #include <vm/vm_param.h>
64 #include <vm/vm_page.h>
65 #include <vm/vm_phys.h>
66 #include <vm/vm_dumpset.h>
67 #include <vm/pmap.h>
68 #include <vm/vm_extern.h>
69
70 #include <machine/memdev.h>
71
72 /*
73  * Used in /dev/mem drivers and elsewhere
74  */
75 MALLOC_DEFINE(M_MEMDESC, "memdesc", "memory range descriptors");
76
77 struct mem_range_softc mem_range_softc;
78
79 static struct sx tmppt_lock;
80 SX_SYSINIT(tmppt, &tmppt_lock, "mem4map");
81
82 /* ARGSUSED */
83 int
84 memrw(struct cdev *dev, struct uio *uio, int flags)
85 {
86         int o;
87         u_int c = 0, v;
88         struct iovec *iov;
89         int error = 0;
90         vm_offset_t addr, eaddr;
91
92         while (uio->uio_resid > 0 && error == 0) {
93                 iov = uio->uio_iov;
94                 if (iov->iov_len == 0) {
95                         uio->uio_iov++;
96                         uio->uio_iovcnt--;
97                         if (uio->uio_iovcnt < 0)
98                                 panic("memrw");
99                         continue;
100                 }
101                 if (dev2unit(dev) == CDEV_MINOR_MEM) {
102                         int i;
103                         int address_valid = 0;
104
105                         v = uio->uio_offset;
106                         v &= ~PAGE_MASK;
107                         for (i = 0; dump_avail[i] || dump_avail[i + 1];
108                         i += 2) {
109                                 if (v >= dump_avail[i] &&
110                                     v < dump_avail[i + 1]) {
111                                         address_valid = 1;
112                                         break;
113                                 }
114                         }
115                         if (!address_valid)
116                                 return (EINVAL);
117                         sx_xlock(&tmppt_lock);
118                         pmap_kenter((vm_offset_t)_tmppt, v);
119                         pmap_tlb_flush(kernel_pmap, (vm_offset_t)_tmppt);
120                         o = (int)uio->uio_offset & PAGE_MASK;
121                         c = (u_int)(PAGE_SIZE - ((int)iov->iov_base & PAGE_MASK));
122                         c = min(c, (u_int)(PAGE_SIZE - o));
123                         c = min(c, (u_int)iov->iov_len);
124                         error = uiomove((caddr_t)&_tmppt[o], (int)c, uio);
125                         pmap_qremove((vm_offset_t)_tmppt, 1);
126                         sx_xunlock(&tmppt_lock);
127                         continue;
128                 }
129                 else if (dev2unit(dev) == CDEV_MINOR_KMEM) {
130                         c = iov->iov_len;
131
132                         /*
133                          * Make sure that all of the pages are currently
134                          * resident so that we don't create any zero-fill
135                          * pages.
136                          */
137                         addr = trunc_page(uio->uio_offset);
138                         eaddr = round_page(uio->uio_offset + c);
139
140                         for (; addr < eaddr; addr += PAGE_SIZE)
141                                 if (pmap_extract(kernel_pmap, addr) == 0)
142                                         return (EFAULT);
143                         if (!kernacc((caddr_t)(int)uio->uio_offset, c,
144                             uio->uio_rw == UIO_READ ?
145                             VM_PROT_READ : VM_PROT_WRITE))
146                                         return (EFAULT);
147                         error = uiomove((caddr_t)(int)uio->uio_offset, (int)c, uio);
148                         continue;
149                 }
150                 /* else panic! */
151         }
152         return (error);
153 }
154
155 /*
156  * allow user processes to MMAP some memory sections
157  * instead of going through read/write
158  */
159 /* ARGSUSED */
160
161 int
162 memmmap(struct cdev *dev, vm_ooffset_t offset, vm_paddr_t *paddr,
163     int prot __unused, vm_memattr_t *memattr __unused)
164 {
165         if (dev2unit(dev) == CDEV_MINOR_MEM) {
166                 *paddr = offset;
167                 return (0);
168         }
169         return (-1);
170 }
171
172 int
173 memioctl_md(struct cdev *dev __unused, u_long cmd __unused,
174     caddr_t data __unused, int flags __unused, struct thread *td __unused)
175 {
176         return (ENOTTY);
177 }