]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/i386/io_emulate.c
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
27 * Mach Operating System
28 * Copyright (c) 1991,1990 Carnegie Mellon University
29 * All Rights Reserved.
31 * Permission to use, copy, modify and distribute this software and its
32 * documentation is hereby granted, provided that both the copyright
33 * notice and this permission notice appear in all copies of the
34 * software, derivative works or modified versions, and any portions
35 * thereof, and that both notices appear in supporting documentation.
37 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
38 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
39 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
41 * Carnegie Mellon requests users of this software to return to
43 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
44 * School of Computer Science
45 * Carnegie Mellon University
46 * Pittsburgh PA 15213-3890
48 * any improvements or extensions that they make and grant Carnegie Mellon
49 * the rights to redistribute these changes.
54 #include <platforms.h>
55 #include <mach/boolean.h>
56 #include <mach/port.h>
57 #include <kern/thread.h>
58 #include <kern/task.h>
60 #include <ipc/ipc_port.h>
61 #include <ipc/ipc_space.h>
62 #include <ipc/ipc_right.h>
63 #include <ipc/ipc_object.h>
64 #include <ipc/ipc_entry.h>
66 #include <i386/thread.h>
67 #include <i386/io_port.h>
68 #include <i386/io_emulate.h>
69 #include <i386/iopb_entries.h>
74 __unused
struct i386_saved_state
*regs
,
78 /* At the moment, we are not allowing I/O emulation
80 * FIXME - this should probably change due to
81 * the Window Server's need to map I/O ports into its space.
89 struct i386_saved_state
*regs
,
93 thread_t thread
= current_thread();
94 at386_io_lock_state();
96 if (iopl_emulate(regs
, opcode
, io_port
))
99 if (iopb_check_mapping(thread
, iopl_device
))
103 * Check for send rights to the IOPL device port.
105 if (iopl_device_port
== IP_NULL
)
108 ipc_space_t space
= current_space();
109 mach_port_name_t name
;
111 boolean_t has_rights
= FALSE
;
112 ipc_entry_bits_t
*capability
;
114 is_write_lock(space
);
115 assert(space
->is_active
);
117 if (ipc_right_reverse(space
, (ipc_object_t
) iopl_device_port
,
118 &name
, &entry
, &capability
)) {
119 /* iopl_device_port is locked and active */
120 if (capability
[space
->server_id
] & MACH_PORT_TYPE_SEND
)
122 ip_unlock(iopl_device_port
);
125 is_write_unlock(space
);
132 * Map the IOPL port set into the thread.
135 if (i386_io_port_add(thread
, iopl_device
)
140 * Make the thread use its IO_TSS to get the IO permissions;
141 * it may not have had one before this.
143 act_machine_switch_pcb(thread
);