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@
23 * This module only exists because I don't know how to get the silly C compiler
24 * and/or linker to generate data areas that are aligned on a particular boundary.
25 * And, this stuff is in the V=R mapped area.
27 * Do the following for each:
29 * .size name,size-in-bytes
30 * .type area-name,@object
34 * .set .,.+size-in-bytes
36 * So long as I'm being pedantic, always make sure that the most aligned,
37 * i.e., the largest power-of-twos, are first and then descend to the smallest.
38 * If you don't, and you are not careful and hand calculate, you'll end up
39 * with holes and waste storage. I hate C.
41 * Define the sizes in genassym.c
47 #include <ppc/proc_reg.h>
48 #include <ppc/spec_reg.h>
49 #include <mach/ppc/vm_param.h>
54 /* 4096-byte aligned areas */
56 .globl EXT(PerProcTable)
58 EXT(PerProcTable): ; Per processor table
59 .space (ppeSize*MAX_CPUS),0 ; (filled with 0s)
61 .globl EXT(BootProcInfo)
63 EXT(BootProcInfo): ; Per processor data area
64 .space ppSize,0 ; (filled with 0s)
66 /* 512-byte aligned areas */
68 .globl EXT(kernel_pmap_store) ; This is the kernel_pmap
70 EXT(kernel_pmap_store):
74 /* 256-byte aligned areas */
76 .globl EXT(GratefulDebWork)
78 EXT(GratefulDebWork): ; Enough for 2 rows of 8 chars of 16-pixel wide 32-bit pixels and a 256 byte work area
86 /* 128-byte aligned areas */
98 .globl EXT(free_mappings)
116 /* 32-byte aligned areas */
125 #include <ppc/hexfont.h>
127 .globl EXT(QNaNbarbarian)
131 .long 0x7FFFDEAD /* This is a quiet not-a-number which is a "known" debug value */
132 .long 0x7FFFDEAD /* This is a quiet not-a-number which is a "known" debug value */
133 .long 0x7FFFDEAD /* This is a quiet not-a-number which is a "known" debug value */
134 .long 0x7FFFDEAD /* This is a quiet not-a-number which is a "known" debug value */
136 .long 0x7FFFDEAD /* This is a quiet not-a-number which is a "known" debug value */
137 .long 0x7FFFDEAD /* This is a quiet not-a-number which is a "known" debug value */
138 .long 0x7FFFDEAD /* This is a quiet not-a-number which is a "known" debug value */
139 .long 0x7FFFDEAD /* This is a quiet not-a-number which is a "known" debug value */
141 /* 8-byte aligned areas */
143 .globl EXT(FloatInit)
147 .long 0xC24BC195 /* Initial value */
148 .long 0x87859393 /* of floating point registers */
149 .long 0xE681A2C8 /* and others */
152 .globl EXT(DebugWork)
172 * Boot processor Interrupt and debug stacks go here.
175 /* in the __HIB section since the hibernate restore code uses this stack. */
176 .section __HIB, __data
182 .globl EXT(gIOHibernateRestoreStack)
183 EXT(gIOHibernateRestoreStack):
185 .set .,.+INTSTACK_SIZE
187 .globl EXT(gIOHibernateRestoreStackEnd)
188 EXT(gIOHibernateRestoreStackEnd):
190 /* back to the regular __DATA section. */
192 .section __DATA, __data
195 /* Debugger stack - used by the debugger if present */
199 .set ., .+KERNEL_STACK_SIZE
201 .section __DATA, __data