]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/kern/startup.c
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,1988 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.
54 * Mach kernel startup.
58 #include <xpr_debug.h>
61 #include <mach_host.h>
65 #include <mach/boolean.h>
66 #include <mach/machine.h>
67 #include <mach/task_special_ports.h>
68 #include <mach/vm_param.h>
69 #include <ipc/ipc_init.h>
70 #include <kern/assert.h>
71 #include <kern/misc_protos.h>
72 #include <kern/clock.h>
73 #include <kern/cpu_number.h>
74 #include <kern/etap_macros.h>
75 #include <kern/machine.h>
76 #include <kern/processor.h>
77 #include <kern/sched_prim.h>
78 #include <kern/mk_sp.h>
79 #include <kern/startup.h>
80 #include <kern/task.h>
81 #include <kern/thread.h>
82 #include <kern/timer.h>
83 #include <kern/timer_call.h>
85 #include <kern/zalloc.h>
86 #include <vm/vm_kern.h>
87 #include <vm/vm_init.h>
88 #include <vm/vm_map.h>
89 #include <vm/vm_object.h>
90 #include <vm/vm_page.h>
91 #include <vm/vm_pageout.h>
92 #include <machine/pmap.h>
93 #include <sys/version.h>
96 #include <ppc/Firmware.h>
97 #include <ppc/mappings.h>
101 extern void rtclock_reset(void);
104 void cpu_launch_first_thread(
106 void start_kernel_threads(void);
107 void swapin_thread();
110 * Running in virtual memory, on the interrupt stack.
111 * Does not return. Dispatches initial thread.
113 * Assumes that master_cpu is set.
118 thread_t startup_thread
;
127 * As soon as the virtual memory system is up, we record
128 * that this CPU is using the kernel pmap.
130 PMAP_ACTIVATE_KERNEL(master_cpu
);
133 mapping_free_prime(); /* Load up with temporary mapping blocks */
141 timer_call_initialize();
143 machine_info
.max_cpus
= NCPUS
;
144 machine_info
.memory_size
= mem_size
;
145 machine_info
.avail_cpus
= 0;
146 machine_info
.major_version
= KERNEL_MAJOR_VERSION
;
147 machine_info
.minor_version
= KERNEL_MINOR_VERSION
;
150 * Initialize the IPC, task, and thread subsystems.
159 * Initialize the Event Trace Analysis Package.
160 * Dynamic Phase: 2 of 2
165 * Create a kernel thread to start the other kernel
166 * threads. Thread_resume (from kernel_thread) calls
167 * thread_setrun, which may look at current thread;
168 * we must avoid this, since there is no current thread.
170 startup_thread
= kernel_thread_with_priority(
171 kernel_task
, MAXPRI_KERNEL
,
172 start_kernel_threads
, TRUE
, FALSE
);
175 * Pretend it is already running, and resume it.
176 * Since it looks as if it is running, thread_resume
177 * will not try to put it on the run queues.
179 * We can do all of this without locking, because nothing
180 * else is running yet.
182 startup_thread
->state
= TH_RUN
;
183 (void) thread_resume(startup_thread
->top_act
);
187 cpu_launch_first_thread(startup_thread
);
189 panic("cpu_launch_first_thread returns!");
193 * Now running in a thread. Create the rest of the kernel threads
194 * and the bootstrap task.
197 start_kernel_threads(void)
201 thread_bind(current_thread(), cpu_to_processor(cpu_number()));
204 * Create the idle threads and the other
207 for (i
= 0; i
< NCPUS
; i
++) {
208 processor_t processor
= cpu_to_processor(i
);
212 thread
= kernel_thread_with_priority(
213 kernel_task
, MAXPRI_KERNEL
,
214 idle_thread
, TRUE
, FALSE
);
217 thread_bind_locked(thread
, processor
);
218 processor
->idle_thread
= thread
;
220 thread
->state
|= TH_IDLE
;
221 thread_go_locked(thread
, THREAD_AWAKENED
);
222 thread_unlock(thread
);
227 * Initialize the stack swapin mechanism.
232 * Initialize the periodic scheduler mechanism.
237 * Initialize the thread callout mechanism.
239 thread_call_initialize();
242 * Invoke some black magic.
249 * Initialize the thread reaper mechanism.
254 * Create the clock service.
256 clock_service_create();
259 * Create the device service.
261 device_service_create();
263 shared_file_boot_time_init();
272 * Start the user bootstrap.
275 (void) spllo(); /* Allow interruptions */
279 extern void bsd_init(void);
284 thread_bind(current_thread(), PROCESSOR_NULL
);
287 * Become the pageout daemon.
297 processor_t myprocessor
= current_processor();
300 thread
= myprocessor
->next_thread
;
301 myprocessor
->next_thread
= THREAD_NULL
;
302 if (thread
== THREAD_NULL
) {
303 thread
= machine_wake_thread
;
304 machine_wake_thread
= THREAD_NULL
;
305 thread_bind(thread
, myprocessor
);
307 cpu_launch_first_thread(thread
);
313 * Now running in a thread context
316 start_cpu_thread(void)
318 processor_t processor
;
320 processor
= cpu_to_processor(cpu_number());
322 slave_machine_init();
324 if (processor
->processor_self
== IP_NULL
) {
325 ipc_processor_init(processor
);
326 ipc_processor_enable(processor
);
329 (void) thread_terminate(current_act());
333 * Start up the first thread on a CPU.
336 cpu_launch_first_thread(
339 register int mycpu
= cpu_number();
341 /* initialize preemption disabled */
342 cpu_data
[mycpu
].preemption_level
= 1;
345 start_timer(&kernel_timer
[mycpu
]);
346 clock_get_uptime(&cpu_to_processor(mycpu
)->last_dispatch
);
348 if (thread
== THREAD_NULL
) {
349 thread
= cpu_to_processor(mycpu
)->idle_thread
;
350 if (thread
== THREAD_NULL
)
351 panic("cpu_launch_first_thread");
354 rtclock_reset(); /* start realtime clock ticking */
355 PMAP_ACTIVATE_KERNEL(mycpu
);
357 thread_machine_set_current(thread
);
359 thread
->state
&= ~TH_UNINT
;
360 _mk_sp_thread_begin(thread
);
361 thread_unlock(thread
);
362 timer_switch(&thread
->system_timer
);
364 PMAP_ACTIVATE_USER(thread
->top_act
, mycpu
);
366 /* preemption enabled by load_context */
367 load_context(thread
);