source: mainline/kernel/arch/amd64/src/ddi/ddi.c@ 86018c1

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 86018c1 was 98000fb, checked in by Martin Decky <martin@…>, 16 years ago

remove redundant index_t and count_t types (which were always quite ambiguous and not actually needed)

  • Property mode set to 100644
File size: 4.6 KB
RevLine 
[f52e54da]1/*
[df4ed85]2 * Copyright (c) 2006 Jakub Jermar
[f52e54da]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
[06e1e95]29/** @addtogroup amd64ddi
[b45c443]30 * @{
31 */
32/** @file
33 */
34
[f52e54da]35#include <ddi/ddi.h>
[2382d09]36#include <arch/ddi/ddi.h>
[f52e54da]37#include <proc/task.h>
38#include <arch/types.h>
[73e9b49]39#include <adt/bitmap.h>
40#include <mm/slab.h>
41#include <arch/pm.h>
42#include <errno.h>
[c7c0b89b]43#include <arch/cpu.h>
[2382d09]44#include <arch.h>
[ea199e5]45#include <align.h>
[f52e54da]46
47/** Enable I/O space range for task.
48 *
49 * Interrupts are disabled and task is locked.
50 *
51 * @param task Task.
52 * @param ioaddr Startign I/O space address.
53 * @param size Size of the enabled I/O range.
54 *
55 * @return 0 on success or an error code from errno.h.
56 */
[7f1c620]57int ddi_iospace_enable_arch(task_t *task, uintptr_t ioaddr, size_t size)
[f52e54da]58{
[98000fb]59 size_t bits;
[99d6fd0]60
[73e9b49]61 bits = ioaddr + size;
62 if (bits > IO_PORTS)
63 return ENOENT;
[99d6fd0]64
[73e9b49]65 if (task->arch.iomap.bits < bits) {
66 bitmap_t oldiomap;
[7f1c620]67 uint8_t *newmap;
[99d6fd0]68
[73e9b49]69 /*
70 * The I/O permission bitmap is too small and needs to be grown.
71 */
72
[7f1c620]73 newmap = (uint8_t *) malloc(BITS2BYTES(bits), FRAME_ATOMIC);
[73e9b49]74 if (!newmap)
75 return ENOMEM;
76
[25b9e2c]77 bitmap_initialize(&oldiomap, task->arch.iomap.map,
78 task->arch.iomap.bits);
[73e9b49]79 bitmap_initialize(&task->arch.iomap, newmap, bits);
[99d6fd0]80
[73e9b49]81 /*
82 * Mark the new range inaccessible.
83 */
[25b9e2c]84 bitmap_set_range(&task->arch.iomap, oldiomap.bits,
85 bits - oldiomap.bits);
[99d6fd0]86
[73e9b49]87 /*
88 * In case there really existed smaller iomap,
89 * copy its contents and deallocate it.
[99d6fd0]90 */
[73e9b49]91 if (oldiomap.bits) {
[25b9e2c]92 bitmap_copy(&task->arch.iomap, &oldiomap,
93 oldiomap.bits);
[73e9b49]94 free(oldiomap.map);
95 }
96 }
[99d6fd0]97
[73e9b49]98 /*
99 * Enable the range and we are done.
100 */
[98000fb]101 bitmap_clear_range(&task->arch.iomap, (size_t) ioaddr, (size_t) size);
[99d6fd0]102
[2382d09]103 /*
104 * Increment I/O Permission bitmap generation counter.
105 */
106 task->arch.iomapver++;
[99d6fd0]107
[f52e54da]108 return 0;
109}
[c7c0b89b]110
[2382d09]111/** Install I/O Permission bitmap.
112 *
113 * Current task's I/O permission bitmap, if any, is installed
114 * in the current CPU's TSS.
115 *
116 * Interrupts must be disabled prior this call.
117 */
118void io_perm_bitmap_install(void)
119{
[98000fb]120 size_t bits;
[2382d09]121 ptr_16_64_t cpugdtr;
122 descriptor_t *gdt_p;
123 tss_descriptor_t *tss_desc;
[98000fb]124 size_t ver;
[99d6fd0]125
[2382d09]126 /* First, copy the I/O Permission Bitmap. */
127 spinlock_lock(&TASK->lock);
128 ver = TASK->arch.iomapver;
129 if ((bits = TASK->arch.iomap.bits)) {
130 bitmap_t iomap;
131
132 ASSERT(TASK->arch.iomap.map);
[25b9e2c]133 bitmap_initialize(&iomap, CPU->arch.tss->iomap,
134 TSS_IOMAP_SIZE * 8);
[2382d09]135 bitmap_copy(&iomap, &TASK->arch.iomap, TASK->arch.iomap.bits);
136 /*
[25b9e2c]137 * It is safe to set the trailing eight bits because of the
138 * extra convenience byte in TSS_IOMAP_SIZE.
[2382d09]139 */
[ea199e5]140 bitmap_set_range(&iomap, ALIGN_UP(TASK->arch.iomap.bits, 8), 8);
[2382d09]141 }
142 spinlock_unlock(&TASK->lock);
[99d6fd0]143
[ea199e5]144 /*
145 * Second, adjust TSS segment limit.
146 * Take the extra ending byte will all bits set into account.
147 */
[2382d09]148 gdtr_store(&cpugdtr);
149 gdt_p = (descriptor_t *) cpugdtr.base;
[ea199e5]150 gdt_tss_setlimit(&gdt_p[TSS_DES], TSS_BASIC_SIZE + BITS2BYTES(bits));
[2382d09]151 gdtr_load(&cpugdtr);
152
153 /*
[99d6fd0]154 * Before we load new TSS limit, the current TSS descriptor
155 * type must be changed to describe inactive TSS.
156 */
157 tss_desc = (tss_descriptor_t *) &gdt_p[TSS_DES];
[2382d09]158 tss_desc->type = AR_TSS;
159 tr_load(gdtselector(TSS_DES));
160
161 /*
162 * Update the generation count so that faults caused by
163 * early accesses can be serviced.
164 */
165 CPU->arch.iomapver_copy = ver;
166}
[b45c443]167
[06e1e95]168/** @}
[b45c443]169 */
Note: See TracBrowser for help on using the repository browser.