]> git.saurik.com Git - apple/xnu.git/blob - osfmk/ppc/commpage/commpage.h
xnu-792.6.56.tar.gz
[apple/xnu.git] / osfmk / ppc / commpage / commpage.h
1 /*
2 * Copyright (c) 2003 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
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
11 * file.
12 *
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.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23
24 #ifndef _PPC_COMMPAGE_H
25 #define _PPC_COMMPAGE_H
26
27 #ifndef __ASSEMBLER__
28 #include <stdint.h>
29 #endif /* __ASSEMBLER__ */
30
31
32 /* Special check bits for the compage_descriptor "special" field. */
33
34 #define kCommPageDCBA 0x0001 // this routine uses DCBA, map to NOP if not appropriate
35 #define kCommPageSYNC 0x0002 // this routine uses SYNC, LWSYNC, or EIEIO, map to NOP if UP
36 #define kCommPageISYNC 0x0004 // this routine uses ISYNC, map to NOP if UP
37 #define kCommPageMTCRF 0x0008 // set bit 11 in MTCRF if only 1 cr specified
38
39 #define kPort32to64 0x1000 // written for 32-bit, must port to 64-bit
40 #define kCommPage64 0x2000 // this routine is useable in 64-bit mode
41 #define kCommPage32 0x4000 // this routine is useable in 32-bit mode
42 #define kCommPageBoth (kCommPage32+kCommPage64)
43
44
45 #ifdef __ASSEMBLER__
46
47 #define COMMPAGE_DESCRIPTOR(label,address,must,cant,special) \
48 .globl EXT(label) @\
49 LEXT(label) @\
50 .short label-. @\
51 .short .-label-2 @\
52 .short address @\
53 .short special @\
54 .long must @\
55 .long cant
56
57
58 #else /* __ASSEMBLER__ */
59
60 /* Each potential commpage routine is described by one of these.
61 * Note that the COMMPAGE_DESCRIPTOR macro (above), used in
62 * assembly language, must agree with this.
63 */
64
65 typedef struct commpage_descriptor {
66 short code_offset; // offset to code from this descriptor
67 short code_length; // length in bytes
68 short commpage_address; // put at this address (_COMM_PAGE_BCOPY etc)
69 short special; // special handling bits for DCBA and SYNC etc
70 long musthave; // _cpu_capability bits we must have
71 long canthave; // _cpu_capability bits we can't have
72 } commpage_descriptor;
73
74
75 extern char *commPagePtr32; // virt address of 32-bit commpage in kernel map
76 extern char *commPagePtr64; // virt address of 64-bit commpage in kernel map
77
78
79 extern void commpage_set_timestamp(uint64_t tbr,uint32_t secs,uint32_t usecs,uint32_t ticks_per_sec);
80 extern int commpage_time_dcba( void );
81
82 #endif /* __ASSEMBLER__ */
83
84 #endif /* _PPC_COMMPAGE_H */