]> git.saurik.com Git - apple/xnu.git/blob - osfmk/ppc/PPCcalls.h
2f69c9952b2b6d10728cd64259a4ef10e030cfbc
[apple/xnu.git] / osfmk / ppc / PPCcalls.h
1 /*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
7 *
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * file.
14 *
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
22 *
23 * @APPLE_LICENSE_HEADER_END@
24 */
25
26 /*
27 * To add a new entry:
28 * Add an "PPCTRAP(routine)" to the table below
29 *
30 * Add trap definition to mach/ppc/syscall_sw.h and
31 * recompile user library.
32 *
33 * Note:
34 * The maximum number of calls is 0x1000 (4096 for the hexually challanged)
35 *
36 */
37
38 typedef int (*PPCcallEnt)(struct savearea *save);
39
40 #define PPCcall(rout) rout
41 #define dis (PPCcallEnt)0
42
43 PPCcallEnt PPCcalls[] = {
44
45 PPCcall(diagCall), /* 0x6000 Call diagnostics routines */
46 PPCcall(vmm_get_version), /* 0x6001 Get Virtual Machine Monitor version */
47 PPCcall(vmm_get_features), /* 0x6002 Get Virtual Machine Monitor supported features */
48 PPCcall(vmm_init_context), /* 0x6003 Initialize a VMM context */
49 PPCcall(vmm_dispatch), /* 0x6004 Dispatch a Virtual Machine Monitor call */
50 PPCcall(bb_enable_bluebox), /* 0x6005 Enable this thread for use in the blue box virtual machine */
51 PPCcall(bb_disable_bluebox), /* 0x6006 Disable this thread for use in the blue box virtual machine */
52 PPCcall(bb_settaskenv), /* 0x6007 Set the BlueBox per thread task environment data */
53 PPCcall(vmm_stop_vm), /* 0x6008 Stop a running VM */
54
55 PPCcall(dis), /* 0x6009 CHUD Interface hook */
56
57 PPCcall(dis), /* 0x600A disabled */
58 PPCcall(dis), /* 0x600B disabled */
59 PPCcall(dis), /* 0x600C disabled */
60 PPCcall(dis), /* 0x600D disabled */
61 PPCcall(dis), /* 0x600E disabled */
62 PPCcall(dis), /* 0x600F disabled */
63 };
64
65 #undef dis