source: mainline/kernel/generic/src/ddi/ddi.c@ d776329b

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since d776329b was 8cd680c, checked in by Jakub Jermar <jakub@…>, 11 years ago

Add pio_disable().

  • Implement *iospace_disable*().
  • Implement physmem_unmap().
  • Property mode set to 100644
File size: 11.9 KB
Line 
1/*
2 * Copyright (c) 2006 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup genericddi
30 * @{
31 */
32
33/**
34 * @file
35 * @brief Device Driver Interface functions.
36 *
37 * This file contains functions that comprise the Device Driver Interface.
38 * These are the functions for mapping physical memory and enabling I/O
39 * space to tasks.
40 */
41
42#include <ddi/ddi.h>
43#include <proc/task.h>
44#include <security/cap.h>
45#include <mm/frame.h>
46#include <mm/as.h>
47#include <mm/page.h>
48#include <synch/mutex.h>
49#include <syscall/copy.h>
50#include <adt/btree.h>
51#include <arch.h>
52#include <align.h>
53#include <errno.h>
54#include <trace.h>
55#include <bitops.h>
56
57/** This lock protects the parea_btree. */
58static mutex_t parea_lock;
59
60/** B+tree with enabled physical memory areas. */
61static btree_t parea_btree;
62
63/** Initialize DDI.
64 *
65 */
66void ddi_init(void)
67{
68 btree_create(&parea_btree);
69 mutex_initialize(&parea_lock, MUTEX_PASSIVE);
70}
71
72/** Enable piece of physical memory for mapping by physmem_map().
73 *
74 * @param parea Pointer to physical area structure.
75 *
76 */
77void ddi_parea_register(parea_t *parea)
78{
79 mutex_lock(&parea_lock);
80
81 /*
82 * We don't check for overlaps here as the kernel is pretty sane.
83 */
84 btree_insert(&parea_btree, (btree_key_t) parea->pbase, parea, NULL);
85
86 mutex_unlock(&parea_lock);
87}
88
89/** Map piece of physical memory into virtual address space of current task.
90 *
91 * @param phys Physical address of the starting frame.
92 * @param pages Number of pages to map.
93 * @param flags Address space area flags for the mapping.
94 * @param virt Virtual address of the starting page.
95 * @param bound Lowest virtual address bound.
96 *
97 * @return EOK on success.
98 * @return EPERM if the caller lacks capabilities to use this syscall.
99 * @return EBADMEM if phys is not page aligned.
100 * @return ENOENT if there is no task matching the specified ID or
101 * the physical address space is not enabled for mapping.
102 * @return ENOMEM if there was a problem in creating address space area.
103 *
104 */
105NO_TRACE static int physmem_map(uintptr_t phys, size_t pages,
106 unsigned int flags, uintptr_t *virt, uintptr_t bound)
107{
108 ASSERT(TASK);
109
110 if ((phys % FRAME_SIZE) != 0)
111 return EBADMEM;
112
113 /*
114 * Unprivileged tasks are only allowed to map pareas
115 * which are explicitly marked as such.
116 */
117 bool priv =
118 ((cap_get(TASK) & CAP_MEM_MANAGER) == CAP_MEM_MANAGER);
119
120 mem_backend_data_t backend_data;
121 backend_data.base = phys;
122 backend_data.frames = pages;
123 backend_data.anonymous = false;
124
125 /*
126 * Check if the memory region is explicitly enabled
127 * for mapping by any parea structure.
128 */
129
130 mutex_lock(&parea_lock);
131 btree_node_t *nodep;
132 parea_t *parea = (parea_t *) btree_search(&parea_btree,
133 (btree_key_t) phys, &nodep);
134
135 if ((parea != NULL) && (parea->frames >= pages)) {
136 if ((!priv) && (!parea->unpriv)) {
137 mutex_unlock(&parea_lock);
138 return EPERM;
139 }
140
141 goto map;
142 }
143
144 parea = NULL;
145 mutex_unlock(&parea_lock);
146
147 /*
148 * Check if the memory region is part of physical
149 * memory generally enabled for mapping.
150 */
151
152 irq_spinlock_lock(&zones.lock, true);
153 size_t znum = find_zone(ADDR2PFN(phys), pages, 0);
154
155 if (znum == (size_t) -1) {
156 /*
157 * Frames not found in any zone
158 * -> assume it is a hardware device and allow mapping
159 * for privileged tasks.
160 */
161 irq_spinlock_unlock(&zones.lock, true);
162
163 if (!priv)
164 return EPERM;
165
166 goto map;
167 }
168
169 if (zones.info[znum].flags & (ZONE_FIRMWARE | ZONE_RESERVED)) {
170 /*
171 * Frames are part of firmware or reserved zone
172 * -> allow mapping for privileged tasks.
173 */
174 irq_spinlock_unlock(&zones.lock, true);
175
176 if (!priv)
177 return EPERM;
178
179 goto map;
180 }
181
182 irq_spinlock_unlock(&zones.lock, true);
183 return ENOENT;
184
185map:
186 if (!as_area_create(TASK->as, flags, FRAMES2SIZE(pages),
187 AS_AREA_ATTR_NONE, &phys_backend, &backend_data, virt, bound)) {
188 /*
189 * The address space area was not created.
190 * We report it using ENOMEM.
191 */
192
193 if (parea != NULL)
194 mutex_unlock(&parea_lock);
195
196 return ENOMEM;
197 }
198
199 /*
200 * Mapping is created on-demand during page fault.
201 */
202
203 if (parea != NULL) {
204 parea->mapped = true;
205 mutex_unlock(&parea_lock);
206 }
207
208 return EOK;
209}
210
211NO_TRACE static int physmem_unmap(uintptr_t virt)
212{
213 ASSERT(TASK);
214
215 return as_area_destroy(TASK->as, virt);
216}
217
218/** Wrapper for SYS_PHYSMEM_MAP syscall.
219 *
220 * @param phys Physical base address to map
221 * @param pages Number of pages
222 * @param flags Flags of newly mapped pages
223 * @param virt_ptr Destination virtual address
224 * @param bound Lowest virtual address bound.
225 *
226 * @return 0 on success, otherwise it returns error code found in errno.h
227 *
228 */
229sysarg_t sys_physmem_map(uintptr_t phys, size_t pages, unsigned int flags,
230 void *virt_ptr, uintptr_t bound)
231{
232 uintptr_t virt;
233 int rc = copy_from_uspace(&virt, virt_ptr, sizeof(virt));
234 if (rc != EOK)
235 return rc;
236
237 rc = physmem_map(ALIGN_DOWN(phys, FRAME_SIZE), pages, flags, &virt,
238 bound);
239 if (rc != EOK)
240 return rc;
241
242 rc = copy_to_uspace(virt_ptr, &virt, sizeof(virt));
243 if (rc != EOK) {
244 physmem_unmap((uintptr_t) virt);
245 return rc;
246 }
247
248 return EOK;
249}
250
251sysarg_t sys_physmem_unmap(uintptr_t virt)
252{
253 return physmem_unmap(virt);
254}
255
256/** Enable range of I/O space for task.
257 *
258 * @param id Task ID of the destination task.
259 * @param ioaddr Starting I/O address.
260 * @param size Size of the enabled I/O space.
261 *
262 * @return 0 on success, EPERM if the caller lacks capabilities to use this
263 * syscall, ENOENT if there is no task matching the specified ID.
264 *
265 */
266NO_TRACE static int iospace_enable(task_id_t id, uintptr_t ioaddr, size_t size)
267{
268 /*
269 * Make sure the caller is authorised to make this syscall.
270 */
271 cap_t caps = cap_get(TASK);
272 if (!(caps & CAP_IO_MANAGER))
273 return EPERM;
274
275 irq_spinlock_lock(&tasks_lock, true);
276
277 task_t *task = task_find_by_id(id);
278
279 if ((!task) || (!container_check(CONTAINER, task->container))) {
280 /*
281 * There is no task with the specified ID
282 * or the task belongs to a different security
283 * context.
284 */
285 irq_spinlock_unlock(&tasks_lock, true);
286 return ENOENT;
287 }
288
289 /* Lock the task and release the lock protecting tasks_btree. */
290 irq_spinlock_exchange(&tasks_lock, &task->lock);
291 int rc = ddi_iospace_enable_arch(task, ioaddr, size);
292 irq_spinlock_unlock(&task->lock, true);
293
294 return rc;
295}
296
297/** Disable range of I/O space for task.
298 *
299 * @param id Task ID of the destination task.
300 * @param ioaddr Starting I/O address.
301 * @param size Size of the enabled I/O space.
302 *
303 * @return 0 on success, EPERM if the caller lacks capabilities to use this
304 * syscall, ENOENT if there is no task matching the specified ID.
305 *
306 */
307NO_TRACE static int iospace_disable(task_id_t id, uintptr_t ioaddr, size_t size)
308{
309 /*
310 * Make sure the caller is authorised to make this syscall.
311 */
312 cap_t caps = cap_get(TASK);
313 if (!(caps & CAP_IO_MANAGER))
314 return EPERM;
315
316 irq_spinlock_lock(&tasks_lock, true);
317
318 task_t *task = task_find_by_id(id);
319
320 if ((!task) || (!container_check(CONTAINER, task->container))) {
321 /*
322 * There is no task with the specified ID
323 * or the task belongs to a different security
324 * context.
325 */
326 irq_spinlock_unlock(&tasks_lock, true);
327 return ENOENT;
328 }
329
330 /* Lock the task and release the lock protecting tasks_btree. */
331 irq_spinlock_exchange(&tasks_lock, &task->lock);
332 int rc = ddi_iospace_disable_arch(task, ioaddr, size);
333 irq_spinlock_unlock(&task->lock, true);
334
335 return rc;
336}
337
338/** Wrapper for SYS_ENABLE_IOSPACE syscall.
339 *
340 * @param uspace_io_arg User space address of DDI argument structure.
341 *
342 * @return 0 on success, otherwise it returns error code found in errno.h
343 *
344 */
345sysarg_t sys_iospace_enable(ddi_ioarg_t *uspace_io_arg)
346{
347 ddi_ioarg_t arg;
348 int rc = copy_from_uspace(&arg, uspace_io_arg, sizeof(ddi_ioarg_t));
349 if (rc != 0)
350 return (sysarg_t) rc;
351
352 return (sysarg_t) iospace_enable((task_id_t) arg.task_id,
353 (uintptr_t) arg.ioaddr, (size_t) arg.size);
354}
355
356sysarg_t sys_iospace_disable(ddi_ioarg_t *uspace_io_arg)
357{
358 ddi_ioarg_t arg;
359 int rc = copy_from_uspace(&arg, uspace_io_arg, sizeof(ddi_ioarg_t));
360 if (rc != 0)
361 return (sysarg_t) rc;
362
363 return (sysarg_t) iospace_disable((task_id_t) arg.task_id,
364 (uintptr_t) arg.ioaddr, (size_t) arg.size);
365}
366
367NO_TRACE static int dmamem_map(uintptr_t virt, size_t size, unsigned int map_flags,
368 unsigned int flags, uintptr_t *phys)
369{
370 ASSERT(TASK);
371
372 // TODO: implement locking of non-anonymous mapping
373 return page_find_mapping(virt, phys);
374}
375
376NO_TRACE static int dmamem_map_anonymous(size_t size, uintptr_t constraint,
377 unsigned int map_flags, unsigned int flags, uintptr_t *phys,
378 uintptr_t *virt, uintptr_t bound)
379{
380 ASSERT(TASK);
381
382 size_t frames = SIZE2FRAMES(size);
383 *phys = frame_alloc(frames, FRAME_ATOMIC, constraint);
384 if (*phys == 0)
385 return ENOMEM;
386
387 mem_backend_data_t backend_data;
388 backend_data.base = *phys;
389 backend_data.frames = frames;
390 backend_data.anonymous = true;
391
392 if (!as_area_create(TASK->as, map_flags, size,
393 AS_AREA_ATTR_NONE, &phys_backend, &backend_data, virt, bound)) {
394 frame_free(*phys, frames);
395 return ENOMEM;
396 }
397
398 return EOK;
399}
400
401NO_TRACE static int dmamem_unmap(uintptr_t virt, size_t size)
402{
403 // TODO: implement unlocking & unmap
404 return EOK;
405}
406
407NO_TRACE static int dmamem_unmap_anonymous(uintptr_t virt)
408{
409 return as_area_destroy(TASK->as, virt);
410}
411
412sysarg_t sys_dmamem_map(size_t size, unsigned int map_flags, unsigned int flags,
413 void *phys_ptr, void *virt_ptr, uintptr_t bound)
414{
415 if ((flags & DMAMEM_FLAGS_ANONYMOUS) == 0) {
416 /*
417 * Non-anonymous DMA mapping
418 */
419
420 uintptr_t phys;
421 int rc = dmamem_map((uintptr_t) virt_ptr, size, map_flags,
422 flags, &phys);
423
424 if (rc != EOK)
425 return rc;
426
427 rc = copy_to_uspace(phys_ptr, &phys, sizeof(phys));
428 if (rc != EOK) {
429 dmamem_unmap((uintptr_t) virt_ptr, size);
430 return rc;
431 }
432 } else {
433 /*
434 * Anonymous DMA mapping
435 */
436
437 uintptr_t constraint;
438 int rc = copy_from_uspace(&constraint, phys_ptr,
439 sizeof(constraint));
440 if (rc != EOK)
441 return rc;
442
443 uintptr_t virt;
444 rc = copy_from_uspace(&virt, virt_ptr, sizeof(virt));
445 if (rc != EOK)
446 return rc;
447
448 uintptr_t phys;
449 rc = dmamem_map_anonymous(size, constraint, map_flags, flags,
450 &phys, &virt, bound);
451 if (rc != EOK)
452 return rc;
453
454 rc = copy_to_uspace(phys_ptr, &phys, sizeof(phys));
455 if (rc != EOK) {
456 dmamem_unmap_anonymous((uintptr_t) virt);
457 return rc;
458 }
459
460 rc = copy_to_uspace(virt_ptr, &virt, sizeof(virt));
461 if (rc != EOK) {
462 dmamem_unmap_anonymous((uintptr_t) virt);
463 return rc;
464 }
465 }
466
467 return EOK;
468}
469
470sysarg_t sys_dmamem_unmap(uintptr_t virt, size_t size, unsigned int flags)
471{
472 if ((flags & DMAMEM_FLAGS_ANONYMOUS) == 0)
473 return dmamem_unmap(virt, size);
474 else
475 return dmamem_unmap_anonymous(virt);
476}
477
478/** @}
479 */
Note: See TracBrowser for help on using the repository browser.