1 | #
|
---|
2 | # Copyright (c) 2005 Jakub Jermar
|
---|
3 | # All rights reserved.
|
---|
4 | #
|
---|
5 | # Redistribution and use in source and binary forms, with or without
|
---|
6 | # modification, are permitted provided that the following conditions
|
---|
7 | # are met:
|
---|
8 | #
|
---|
9 | # - Redistributions of source code must retain the above copyright
|
---|
10 | # notice, this list of conditions and the following disclaimer.
|
---|
11 | # - Redistributions in binary form must reproduce the above copyright
|
---|
12 | # notice, this list of conditions and the following disclaimer in the
|
---|
13 | # documentation and/or other materials provided with the distribution.
|
---|
14 | # - The name of the author may not be used to endorse or promote products
|
---|
15 | # derived from this software without specific prior written permission.
|
---|
16 | #
|
---|
17 | # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
18 | # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
19 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
20 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
21 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
22 | # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
23 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
24 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
25 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
26 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
27 | #
|
---|
28 |
|
---|
29 | #include <arch/register.h>
|
---|
30 | #include <arch/mm/page.h>
|
---|
31 | #include <arch/mm/asid.h>
|
---|
32 | #include <mm/asid.h>
|
---|
33 |
|
---|
34 | #define RR_MASK (0xFFFFFFFF00000002)
|
---|
35 | #define RID_SHIFT 8
|
---|
36 | #define PS_SHIFT 2
|
---|
37 |
|
---|
38 | #define KERNEL_TRANSLATION_I 0x0010000000000661
|
---|
39 | #define KERNEL_TRANSLATION_D 0x0010000000000661
|
---|
40 | #define KERNEL_TRANSLATION_VIO 0x0010000000000671
|
---|
41 | #define KERNEL_TRANSLATION_IO 0x00100FFFFC000671
|
---|
42 | #define KERNEL_TRANSLATION_FW 0x00100000F0000671
|
---|
43 |
|
---|
44 | .section K_TEXT_START, "ax"
|
---|
45 |
|
---|
46 | .global kernel_image_start
|
---|
47 |
|
---|
48 | stack0:
|
---|
49 |
|
---|
50 | #
|
---|
51 | # Kernel entry point.
|
---|
52 | #
|
---|
53 | # This is where we are passed control from the boot code.
|
---|
54 | # Register contents:
|
---|
55 | #
|
---|
56 | # r2 Address of the boot code's bootinfo structure.
|
---|
57 | #
|
---|
58 | kernel_image_start:
|
---|
59 | .auto
|
---|
60 |
|
---|
61 | mov psr.l = r0
|
---|
62 | srlz.i
|
---|
63 | srlz.d
|
---|
64 |
|
---|
65 | # Fill TR.i and TR.d using Region Register #VRN_KERNEL
|
---|
66 |
|
---|
67 | movl r8 = (VRN_KERNEL << VRN_SHIFT)
|
---|
68 | mov r9 = rr[r8]
|
---|
69 |
|
---|
70 | movl r10 = (RR_MASK)
|
---|
71 | and r9 = r10, r9
|
---|
72 | movl r10 = (((RID_KERNEL7) << RID_SHIFT) | (KERNEL_PAGE_WIDTH << PS_SHIFT))
|
---|
73 | or r9 = r10, r9
|
---|
74 |
|
---|
75 | mov rr[r8] = r9
|
---|
76 |
|
---|
77 | movl r8 = (VRN_KERNEL << VRN_SHIFT)
|
---|
78 | mov cr.ifa = r8
|
---|
79 |
|
---|
80 | mov r11 = cr.itir
|
---|
81 | movl r10 = (KERNEL_PAGE_WIDTH << PS_SHIFT)
|
---|
82 | or r10 = r10, r11
|
---|
83 | mov cr.itir = r10
|
---|
84 |
|
---|
85 | movl r10 = (KERNEL_TRANSLATION_I)
|
---|
86 | itr.i itr[r0] = r10
|
---|
87 | movl r10 = (KERNEL_TRANSLATION_D)
|
---|
88 | itr.d dtr[r0] = r10
|
---|
89 |
|
---|
90 | movl r7 = 1
|
---|
91 | movl r8 = (VRN_KERNEL << VRN_SHIFT) | VIO_OFFSET
|
---|
92 | mov cr.ifa = r8
|
---|
93 | movl r10 = (KERNEL_TRANSLATION_VIO)
|
---|
94 | itr.d dtr[r7] = r10
|
---|
95 |
|
---|
96 | mov r11 = cr.itir
|
---|
97 | movl r10 = ~0xfc
|
---|
98 | and r10 = r10, r11
|
---|
99 | movl r11 = (IO_PAGE_WIDTH << PS_SHIFT)
|
---|
100 | or r10 = r10, r11
|
---|
101 | mov cr.itir = r10
|
---|
102 |
|
---|
103 | movl r7 = 2
|
---|
104 | movl r8 = (VRN_KERNEL << VRN_SHIFT) | IO_OFFSET
|
---|
105 | mov cr.ifa = r8
|
---|
106 | movl r10 = (KERNEL_TRANSLATION_IO)
|
---|
107 | itr.d dtr[r7] = r10
|
---|
108 |
|
---|
109 | # Setup mapping for firmware area (also SAPIC)
|
---|
110 |
|
---|
111 | mov r11 = cr.itir
|
---|
112 | movl r10 = ~0xfc
|
---|
113 | and r10 = r10, r11
|
---|
114 | movl r11 = (FW_PAGE_WIDTH << PS_SHIFT)
|
---|
115 | or r10 = r10, r11
|
---|
116 | mov cr.itir = r10
|
---|
117 |
|
---|
118 | movl r7 = 3
|
---|
119 | movl r8 = (VRN_KERNEL << VRN_SHIFT) | FW_OFFSET
|
---|
120 | mov cr.ifa = r8
|
---|
121 | movl r10 = (KERNEL_TRANSLATION_FW)
|
---|
122 | itr.d dtr[r7] = r10
|
---|
123 |
|
---|
124 | # Initialize DSR
|
---|
125 |
|
---|
126 | movl r10 = (DCR_DP_MASK | DCR_DK_MASK | DCR_DX_MASK | DCR_DR_MASK | DCR_DA_MASK | DCR_DD_MASK | DCR_LC_MASK)
|
---|
127 | mov r9 = cr.dcr
|
---|
128 | or r10 = r10, r9
|
---|
129 | mov cr.dcr = r10
|
---|
130 |
|
---|
131 | # Initialize PSR
|
---|
132 |
|
---|
133 | movl r10 = (PSR_DT_MASK | PSR_RT_MASK | PSR_IT_MASK | PSR_IC_MASK) /* Enable paging */
|
---|
134 | mov r9 = psr
|
---|
135 |
|
---|
136 | or r10 = r10, r9
|
---|
137 | mov cr.ipsr = r10
|
---|
138 | mov cr.ifs = r0
|
---|
139 | movl r8 = paging_start
|
---|
140 | mov cr.iip = r8
|
---|
141 | srlz.d
|
---|
142 | srlz.i
|
---|
143 |
|
---|
144 | .explicit
|
---|
145 |
|
---|
146 | /*
|
---|
147 | * Return From Interrupt is the only way to
|
---|
148 | * fill the upper half word of PSR.
|
---|
149 | */
|
---|
150 | rfi ;;
|
---|
151 |
|
---|
152 | .global paging_start
|
---|
153 | paging_start:
|
---|
154 |
|
---|
155 | /*
|
---|
156 | * Now we are paging.
|
---|
157 | */
|
---|
158 |
|
---|
159 | # Switch to register bank 1
|
---|
160 | bsw.1
|
---|
161 |
|
---|
162 | # Initialize register stack
|
---|
163 | mov ar.rsc = r0
|
---|
164 | movl r8 = (VRN_KERNEL << VRN_SHIFT) ;;
|
---|
165 | mov ar.bspstore = r8
|
---|
166 | loadrs
|
---|
167 |
|
---|
168 | #
|
---|
169 | # Initialize memory stack to some sane value and allocate a scratch are
|
---|
170 | # on it.
|
---|
171 | #
|
---|
172 | movl sp = stack0 ;;
|
---|
173 | add sp = -16, sp
|
---|
174 |
|
---|
175 | # Initialize gp (Global Pointer) register
|
---|
176 | movl gp = __gp
|
---|
177 |
|
---|
178 | #
|
---|
179 | # Initialize bootinfo on BSP.
|
---|
180 | #
|
---|
181 | movl r20 = (VRN_KERNEL << VRN_SHIFT) ;;
|
---|
182 | or r20 = r20, r2 ;;
|
---|
183 | addl r21 = @gprel(bootinfo), gp ;;
|
---|
184 | st8 [r21] = r20
|
---|
185 |
|
---|
186 | ssm (1 << 19) ;; /* Disable f32 - f127 */
|
---|
187 | srlz.i
|
---|
188 | srlz.d ;;
|
---|
189 |
|
---|
190 | br.call.sptk.many b0 = arch_pre_main
|
---|
191 | 0:
|
---|
192 | br.call.sptk.many b0 = main_bsp
|
---|
193 | 0:
|
---|
194 | br 0b
|
---|