2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
26 * Mach Operating System
27 * Copyright (c) 1991,1990,1989 Carnegie Mellon University
28 * All Rights Reserved.
30 * Permission to use, copy, modify and distribute this software and its
31 * documentation is hereby granted, provided that both the copyright
32 * notice and this permission notice appear in all copies of the
33 * software, derivative works or modified versions, and any portions
34 * thereof, and that both notices appear in supporting documentation.
36 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
37 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
38 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
40 * Carnegie Mellon requests users of this software to return to
42 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
43 * School of Computer Science
44 * Carnegie Mellon University
45 * Pittsburgh PA 15213-3890
47 * any improvements or extensions that they make and grant Carnegie Mellon
48 * the rights to redistribute these changes.
51 * File: device/device.defs
55 * Mach device support. Mach devices are accessed through
56 * block and character device interfaces to the kernel.
62 #endif /* KERNEL_SERVER */
65 #include <mach/std_types.defs>
66 #include <mach/mach_types.defs>
67 #include <mach/clock_types.defs>
68 #include <mach/clock_types.defs>
70 import <device/device_types.h>;
74 type reply_port_t = MACH_MSG_TYPE_MAKE_SEND_ONCE | polymorphic
79 type io_name_t = c_string[*:128];
80 type io_string_t = c_string[*:512];
81 type io_struct_inband_t = array[*:4096] of char;
82 type io_scalar_inband_t = array[*:16] of int;
83 type io_async_ref_t = array[*:8] of natural_t;
84 type io_buf_ptr_t = ^array[] of MACH_MSG_TYPE_INTEGER_8;
86 type io_object_t = mach_port_t
89 intran: io_object_t iokit_lookup_object_port(mach_port_t)
90 outtran: mach_port_t iokit_make_object_port(io_object_t)
91 destructor: iokit_remove_reference(io_object_t)
92 #endif /* KERNEL_SERVER */
95 type io_connect_t = mach_port_t
98 intran: io_connect_t iokit_lookup_connect_port(mach_port_t)
99 outtran: mach_port_t iokit_make_connect_port(io_connect_t)
100 destructor: iokit_remove_reference(io_connect_t)
101 #endif /* KERNEL_SERVER */
104 routine io_object_get_class(
105 object : io_object_t;
106 out className : io_name_t
109 routine io_object_conforms_to(
110 object : io_object_t;
111 in className : io_name_t;
112 out conforms : boolean_t
115 routine io_iterator_next(
116 iterator : io_object_t;
117 out object : io_object_t
120 routine io_iterator_reset(
121 iterator : io_object_t
124 routine io_service_get_matching_services(
125 master_port : mach_port_t;
126 in matching : io_string_t;
127 out existing : io_object_t
130 routine io_registry_entry_get_property(
131 registry_entry : io_object_t;
132 in property_name : io_name_t;
133 out properties : io_buf_ptr_t, physicalcopy
136 routine io_registry_create_iterator(
137 master_port : mach_port_t;
138 in plane : io_name_t;
140 out iterator : io_object_t
143 routine io_registry_iterator_enter_entry(
144 iterator : io_object_t
147 routine io_registry_iterator_exit_entry(
148 iterator : io_object_t
151 routine io_registry_entry_from_path(
152 master_port : mach_port_t;
153 in path : io_string_t;
154 out registry_entry : io_object_t
157 routine io_registry_entry_get_name(
158 registry_entry : io_object_t;
162 routine io_registry_entry_get_properties(
163 registry_entry : io_object_t;
164 out properties : io_buf_ptr_t, physicalcopy
167 routine io_registry_entry_get_property_bytes(
168 registry_entry : io_object_t;
169 in property_name : io_name_t;
170 out data : io_struct_inband_t, CountInOut
173 routine io_registry_entry_get_child_iterator(
174 registry_entry : io_object_t;
175 in plane : io_name_t;
176 out iterator : io_object_t
179 routine io_registry_entry_get_parent_iterator(
180 registry_entry : io_object_t;
181 in plane : io_name_t;
182 out iterator : io_object_t
185 routine io_service_open(
186 service : io_object_t;
187 in owningTask : task_t;
188 in connect_type : int;
189 out connection : io_connect_t
192 routine io_service_close(
193 connection : io_connect_t
196 routine io_connect_get_service(
197 connection : io_connect_t;
198 out service : io_object_t
201 routine io_connect_set_notification_port(
202 connection : io_connect_t;
203 in notification_type : int;
204 in port : mach_port_make_send_t;
208 routine io_connect_map_memory(
209 connection : io_connect_t;
210 in memory_type : int;
211 in into_task : task_t;
212 inout address : vm_address_t;
213 inout size : vm_size_t;
217 routine io_connect_add_client(
218 connection : io_connect_t;
219 in connect_to : io_connect_t
222 routine io_connect_set_properties(
223 connection : io_connect_t;
224 in properties : io_buf_ptr_t, physicalcopy;
225 out result : natural_t
229 routine io_connect_method_scalarI_scalarO(
230 connection : io_connect_t;
232 in input : io_scalar_inband_t;
233 out output : io_scalar_inband_t, CountInOut
236 routine io_connect_method_scalarI_structureO(
237 connection : io_connect_t;
239 in input : io_scalar_inband_t;
240 out output : io_struct_inband_t, CountInOut
243 routine io_connect_method_scalarI_structureI(
244 connection : io_connect_t;
246 in input : io_scalar_inband_t;
247 in inputStruct : io_struct_inband_t
250 routine io_connect_method_structureI_structureO(
251 connection : io_connect_t;
253 in input : io_struct_inband_t;
254 out output : io_struct_inband_t, CountInOut
257 routine io_registry_entry_get_path(
258 registry_entry : io_object_t;
259 in plane : io_name_t;
260 out path : io_string_t
263 routine io_registry_get_root_entry(
264 master_port : mach_port_t;
265 out root : io_object_t
268 routine io_registry_entry_set_properties(
269 registry_entry : io_object_t;
270 in properties : io_buf_ptr_t, physicalcopy;
271 out result : natural_t
274 routine io_registry_entry_in_plane(
275 registry_entry : io_object_t;
276 in plane : io_name_t;
277 out inPlane : boolean_t
280 routine io_object_get_retain_count(
281 object : io_object_t;
282 out retainCount : int
285 routine io_service_get_busy_state(
286 service : io_object_t;
290 routine io_service_wait_quiet(
291 service : io_object_t;
292 wait_time : mach_timespec_t
295 routine io_registry_entry_create_iterator(
296 registry_entry : io_object_t;
297 in plane : io_name_t;
299 out iterator : io_object_t
302 routine io_iterator_is_valid(
303 iterator : io_object_t;
304 out is_valid : boolean_t
307 routine io_make_matching(
308 master_port : mach_port_t;
311 in input : io_struct_inband_t;
312 out matching : io_string_t
315 routine io_catalog_send_data(
316 master_port : mach_port_t;
318 in inData : io_buf_ptr_t;
319 out result : natural_t
322 routine io_catalog_terminate(
323 master_port : mach_port_t;
328 routine io_catalog_get_data(
329 master_port : mach_port_t;
331 out outData : io_buf_ptr_t
334 routine io_catalog_get_gen_count(
335 master_port : mach_port_t;
339 routine io_catalog_module_loaded(
340 master_port : mach_port_t;
344 routine io_catalog_reset(
345 master_port : mach_port_t;
349 routine io_service_request_probe(
350 service : io_object_t;
354 routine io_registry_entry_get_name_in_plane(
355 registry_entry : io_object_t;
356 in plane : io_name_t;
360 routine io_service_match_property_table(
361 service : io_object_t;
362 in matching : io_string_t;
363 out matches : boolean_t
366 routine io_async_method_scalarI_scalarO(
367 connection : io_connect_t;
368 in wake_port : mach_port_make_send_t;
369 in reference : io_async_ref_t;
371 in input : io_scalar_inband_t;
372 out output : io_scalar_inband_t, CountInOut
375 routine io_async_method_scalarI_structureO(
376 connection : io_connect_t;
377 in wake_port : mach_port_make_send_t;
378 in reference : io_async_ref_t;
380 in input : io_scalar_inband_t;
381 out output : io_struct_inband_t, CountInOut
384 routine io_async_method_scalarI_structureI(
385 connection : io_connect_t;
386 in wake_port : mach_port_make_send_t;
387 in reference : io_async_ref_t;
389 in input : io_scalar_inband_t;
390 in inputStruct : io_struct_inband_t
393 routine io_async_method_structureI_structureO(
394 connection : io_connect_t;
395 in wake_port : mach_port_make_send_t;
396 in reference : io_async_ref_t;
398 in input : io_struct_inband_t;
399 out output : io_struct_inband_t, CountInOut
402 routine io_service_add_notification(
403 master_port : mach_port_t;
404 in notification_type : io_name_t;
405 in matching : io_string_t;
406 in wake_port : mach_port_make_send_t;
407 in reference : io_async_ref_t;
408 out notification : io_object_t
411 routine io_service_add_interest_notification(
412 service : io_object_t;
413 in type_of_interest : io_name_t;
414 in wake_port : mach_port_make_send_t;
415 in reference : io_async_ref_t;
416 out notification : io_object_t
419 routine io_service_acknowledge_notification(
420 service : io_object_t;
421 in notify_ref : natural_t;
422 in response : natural_t
425 routine io_connect_get_notification_semaphore(
426 connection : io_connect_t;
427 in notification_type : natural_t;
428 out semaphore : semaphore_t
431 routine io_connect_unmap_memory(
432 connection : io_connect_t;
433 in memory_type : int;
434 in into_task : task_t;
435 in address : vm_address_t
438 routine io_registry_entry_get_location_in_plane(
439 registry_entry : io_object_t;
440 in plane : io_name_t;
441 out location : io_name_t
444 routine io_registry_entry_get_property_recursively(
445 registry_entry : io_object_t;
446 in plane : io_name_t;
447 in property_name : io_name_t;
449 out properties : io_buf_ptr_t, physicalcopy