1/*
2 * Copyright (c) 2000-2006 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_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. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28/*
29 * @OSF_COPYRIGHT@
30 */
31/*
32 * Mach Operating System
33 * Copyright (c) 1991,1990 Carnegie Mellon University
34 * All Rights Reserved.
35 *
36 * Permission to use, copy, modify and distribute this software and its
37 * documentation is hereby granted, provided that both the copyright
38 * notice and this permission notice appear in all copies of the
39 * software, derivative works or modified versions, and any portions
40 * thereof, and that both notices appear in supporting documentation.
41 *
42 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
43 * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
44 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
45 *
46 * Carnegie Mellon requests users of this software to return to
47 *
48 *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
49 *  School of Computer Science
50 *  Carnegie Mellon University
51 *  Pittsburgh PA 15213-3890
52 *
53 * any improvements or extensions that they make and grant Carnegie Mellon
54 * the rights to redistribute these changes.
55 */
56/*
57 */
58
59#include <platforms.h>
60
61#include <i386/asm.h>
62#include <i386/proc_reg.h>
63#include <i386/mp.h>
64#include <assym.s>
65
66Entry(Load_context)
67	movq	TH_KERNEL_STACK(%rdi),%rcx	/* get kernel stack */
68	leaq	-IKS_SIZE(%rcx),%rdx
69	addq	EXT(kernel_stack_size)(%rip),%rdx /* point to stack top */
70	movq	%rcx,%gs:CPU_ACTIVE_STACK	/* store stack address */
71	movq	%rdx,%gs:CPU_KERNEL_STACK	/* store stack top */
72
73	movq	%rdx,%rsp
74	movq	%rdx,%rbp
75
76	xorq	%rdi,%rdi			/* return zero (no old thread) */
77	call	EXT(thread_continue)
78
79
80/*
81 * thread_t Switch_context(
82 *		thread_t old,				// %rsi
83 *		thread_continue_t continuation,		// %rdi
84 *		thread_t new)				// %rdx
85 */
86Entry(Switch_context)
87	popq	%rax				/* pop return PC */
88
89	/* Test for a continuation and skip all state saving if so... */
90	cmpq	$0, %rsi
91	jne 	5f
92	movq	%gs:CPU_KERNEL_STACK,%rcx	/* get old kernel stack top */
93	movq	%rbx,KSS_RBX(%rcx)		/* save registers */
94	movq	%rbp,KSS_RBP(%rcx)
95	movq	%r12,KSS_R12(%rcx)
96	movq	%r13,KSS_R13(%rcx)
97	movq	%r14,KSS_R14(%rcx)
98	movq	%r15,KSS_R15(%rcx)
99	movq	%rax,KSS_RIP(%rcx)		/* save return PC */
100	movq	%rsp,KSS_RSP(%rcx)		/* save SP */
1015:
102	movq	%rdi,%rax			/* return old thread */
103	/* new thread in %rdx */
104	movq    %rdx,%gs:CPU_ACTIVE_THREAD      /* new thread is active */
105	movq	TH_KERNEL_STACK(%rdx),%rdx	/* get its kernel stack */
106	lea	-IKS_SIZE(%rdx),%rcx
107	add	EXT(kernel_stack_size)(%rip),%rcx /* point to stack top */
108
109	movq	%rdx,%gs:CPU_ACTIVE_STACK	/* set current stack */
110	movq	%rcx,%gs:CPU_KERNEL_STACK	/* set stack top */
111
112	movq	KSS_RSP(%rcx),%rsp		/* switch stacks */
113	movq	KSS_RBX(%rcx),%rbx		/* restore registers */
114	movq	KSS_RBP(%rcx),%rbp
115	movq	KSS_R12(%rcx),%r12
116	movq	KSS_R13(%rcx),%r13
117	movq	KSS_R14(%rcx),%r14
118	movq	KSS_R15(%rcx),%r15
119	jmp	*KSS_RIP(%rcx)			/* return old thread */
120
121
122Entry(Thread_continue)
123	movq	%rax, %rdi			/* load thread argument */
124	xorq	%rbp,%rbp			/* zero frame pointer */
125	call	*%rbx				/* call real continuation */
126
127
128/*
129 * thread_t Shutdown_context(
130 *		thread_t thread,		// %rdi
131 *		void (*routine)(processor_t),	// %rsi
132 *		processor_t processor)		// %rdx
133 *
134 * saves the kernel context of the thread,
135 * switches to the interrupt stack,
136 * continues the thread (with thread_continue),
137 * then runs routine on the interrupt stack.
138 *
139 */
140Entry(Shutdown_context)
141	movq	%gs:CPU_KERNEL_STACK,%rcx	/* get old kernel stack top */
142	movq	%rbx,KSS_RBX(%rcx)		/* save registers */
143	movq	%rbp,KSS_RBP(%rcx)
144	movq	%r12,KSS_R12(%rcx)
145	movq	%r13,KSS_R13(%rcx)
146	movq	%r14,KSS_R14(%rcx)
147	movq	%r15,KSS_R15(%rcx)
148	popq	KSS_RIP(%rcx)			/* save return PC */
149	movq	%rsp,KSS_RSP(%rcx)		/* save SP */
150
151	movq	%gs:CPU_ACTIVE_STACK,%rcx	/* get old kernel stack */
152	movq	%rdi,%rax			/* get old thread */
153	movq	%rcx,TH_KERNEL_STACK(%rax)	/* save old stack */
154
155	movq	%gs:CPU_INT_STACK_TOP,%rsp 	/* switch to interrupt stack */
156
157	movq	%rdx,%rdi			/* processor arg to routine */
158	call	*%rsi				/* call routine to run */
159	hlt					/* (should never return) */
160
161