blob: cd1f592cd3479f8c94c599bfc589087184d4d180 [file] [log] [blame]
David S. Miller19662872007-07-24 15:17:33 -07001/* head.S: Initial boot code for the Sparc64 port of Linux.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David S. Miller19662872007-07-24 15:17:33 -07003 * Copyright (C) 1996, 1997, 2007 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright (C) 1996 David Sitsky (David.Sitsky@anu.edu.au)
David S. Miller19662872007-07-24 15:17:33 -07005 * Copyright (C) 1997, 1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (C) 1997 Miguel de Icaza (miguel@nuclecu.unam.mx)
7 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/version.h>
10#include <linux/errno.h>
David S. Miller951bc822006-05-31 01:24:02 -070011#include <linux/threads.h>
David S. Miller19662872007-07-24 15:17:33 -070012#include <linux/init.h>
David S. Miller687124d2008-09-01 03:13:17 -070013#include <linux/linkage.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm/thread_info.h>
15#include <asm/asi.h>
16#include <asm/pstate.h>
17#include <asm/ptrace.h>
18#include <asm/spitfire.h>
19#include <asm/page.h>
20#include <asm/pgtable.h>
21#include <asm/errno.h>
22#include <asm/signal.h>
23#include <asm/processor.h>
24#include <asm/lsu.h>
25#include <asm/dcr.h>
26#include <asm/dcu.h>
27#include <asm/head.h>
28#include <asm/ttable.h>
29#include <asm/mmu.h>
David S. Miller56fb4df2006-02-26 23:24:22 -080030#include <asm/cpudata.h>
David S. Miller6eda3a72008-04-28 00:47:20 -070031#include <asm/pil.h>
32#include <asm/estate.h>
33#include <asm/sfafsr.h>
34#include <asm/unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/* This section from from _start to sparc64_boot_end should fit into
David S. Millerc9c10832005-10-12 12:22:46 -070037 * 0x0000000000404000 to 0x0000000000408000.
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 .text
40 .globl start, _start, stext, _stext
41_start:
42start:
43_stext:
44stext:
Linus Torvalds1da177e2005-04-16 15:20:36 -070045! 0x0000000000404000
46 b sparc64_boot
47 flushw /* Flush register file. */
48
49/* This stuff has to be in sync with SILO and other potential boot loaders
50 * Fields should be kept upward compatible and whenever any change is made,
51 * HdrS version should be incremented.
52 */
53 .global root_flags, ram_flags, root_dev
54 .global sparc_ramdisk_image, sparc_ramdisk_size
55 .global sparc_ramdisk_image64
56
57 .ascii "HdrS"
58 .word LINUX_VERSION_CODE
59
60 /* History:
61 *
62 * 0x0300 : Supports being located at other than 0x4000
63 * 0x0202 : Supports kernel params string
64 * 0x0201 : Supports reboot_command
65 */
66 .half 0x0301 /* HdrS version */
67
68root_flags:
69 .half 1
70root_dev:
71 .half 0
72ram_flags:
73 .half 0
74sparc_ramdisk_image:
75 .word 0
76sparc_ramdisk_size:
77 .word 0
78 .xword reboot_command
79 .xword bootstr_info
80sparc_ramdisk_image64:
81 .xword 0
82 .word _end
83
David S. Millerbff06d52005-09-22 20:11:33 -070084 /* PROM cif handler code address is in %o4. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085sparc64_boot:
David S. Miller15f14832006-12-11 21:06:55 -080086 mov %o4, %l7
David S. Millerbff06d52005-09-22 20:11:33 -070087
Lucas De Marchi25985ed2011-03-30 22:57:33 -030088 /* We need to remap the kernel. Use position independent
David S. Millerbff06d52005-09-22 20:11:33 -070089 * code to remap us to KERNBASE.
90 *
91 * SILO can invoke us with 32-bit address masking enabled,
92 * so make sure that's clear.
93 */
94 rdpr %pstate, %g1
95 andn %g1, PSTATE_AM, %g1
96 wrpr %g1, 0x0, %pstate
97 ba,a,pt %xcc, 1f
98
David S. Millerd82ace72006-02-09 02:52:44 -080099 .globl prom_finddev_name, prom_chosen_path, prom_root_node
100 .globl prom_getprop_name, prom_mmu_name, prom_peer_name
101 .globl prom_callmethod_name, prom_translate_name, prom_root_compatible
David S. Millerbff06d52005-09-22 20:11:33 -0700102 .globl prom_map_name, prom_unmap_name, prom_mmu_ihandle_cache
103 .globl prom_boot_mapped_pc, prom_boot_mapping_mode
104 .globl prom_boot_mapping_phys_high, prom_boot_mapping_phys_low
David S. Miller6c70b6f2007-08-08 17:11:39 -0700105 .globl prom_compatible_name, prom_cpu_path, prom_cpu_compatible
David S. Miller301feb652007-09-16 11:51:15 -0700106 .globl is_sun4v, sun4v_chip_type, prom_set_trap_table_name
David S. Millerd82ace72006-02-09 02:52:44 -0800107prom_peer_name:
108 .asciz "peer"
109prom_compatible_name:
110 .asciz "compatible"
David S. Millerbff06d52005-09-22 20:11:33 -0700111prom_finddev_name:
112 .asciz "finddevice"
113prom_chosen_path:
114 .asciz "/chosen"
David S. Miller6c70b6f2007-08-08 17:11:39 -0700115prom_cpu_path:
116 .asciz "/cpu"
David S. Millerbff06d52005-09-22 20:11:33 -0700117prom_getprop_name:
118 .asciz "getprop"
119prom_mmu_name:
120 .asciz "mmu"
121prom_callmethod_name:
122 .asciz "call-method"
123prom_translate_name:
124 .asciz "translate"
125prom_map_name:
126 .asciz "map"
127prom_unmap_name:
128 .asciz "unmap"
David S. Miller301feb652007-09-16 11:51:15 -0700129prom_set_trap_table_name:
130 .asciz "SUNW,set-trap-table"
David S. Millerd82ace72006-02-09 02:52:44 -0800131prom_sun4v_name:
David S. Miller6cebb522006-02-11 10:56:43 -0800132 .asciz "sun4v"
David S. Miller6c70b6f2007-08-08 17:11:39 -0700133prom_niagara_prefix:
134 .asciz "SUNW,UltraSPARC-T"
David S. Miller4ba991d2011-07-27 21:06:16 -0700135prom_sparc_prefix:
David S. Miller08cefa92011-09-11 10:42:20 -0700136 .asciz "SPARC-"
Allen Pais76950e62013-03-05 23:47:59 +0000137prom_sparc64x_prefix:
138 .asciz "SPARC64-X"
David S. Millerbff06d52005-09-22 20:11:33 -0700139 .align 4
David S. Millerd82ace72006-02-09 02:52:44 -0800140prom_root_compatible:
141 .skip 64
David S. Miller6c70b6f2007-08-08 17:11:39 -0700142prom_cpu_compatible:
143 .skip 64
David S. Millerd82ace72006-02-09 02:52:44 -0800144prom_root_node:
145 .word 0
David S. Millerbff06d52005-09-22 20:11:33 -0700146prom_mmu_ihandle_cache:
147 .word 0
148prom_boot_mapped_pc:
149 .word 0
150prom_boot_mapping_mode:
151 .word 0
152 .align 8
153prom_boot_mapping_phys_high:
154 .xword 0
155prom_boot_mapping_phys_low:
156 .xword 0
David S. Millerd82ace72006-02-09 02:52:44 -0800157is_sun4v:
158 .word 0
David S. Miller6c70b6f2007-08-08 17:11:39 -0700159sun4v_chip_type:
160 .word SUN4V_CHIP_INVALID
David S. Millerbff06d52005-09-22 20:11:33 -07001611:
162 rd %pc, %l0
David S. Millerd82ace72006-02-09 02:52:44 -0800163
164 mov (1b - prom_peer_name), %l1
165 sub %l0, %l1, %l1
166 mov 0, %l2
167
168 /* prom_root_node = prom_peer(0) */
169 stx %l1, [%sp + 2047 + 128 + 0x00] ! service, "peer"
170 mov 1, %l3
171 stx %l3, [%sp + 2047 + 128 + 0x08] ! num_args, 1
172 stx %l3, [%sp + 2047 + 128 + 0x10] ! num_rets, 1
173 stx %l2, [%sp + 2047 + 128 + 0x18] ! arg1, 0
174 stx %g0, [%sp + 2047 + 128 + 0x20] ! ret1
175 call %l7
176 add %sp, (2047 + 128), %o0 ! argument array
177
178 ldx [%sp + 2047 + 128 + 0x20], %l4 ! prom root node
179 mov (1b - prom_root_node), %l1
180 sub %l0, %l1, %l1
181 stw %l4, [%l1]
182
183 mov (1b - prom_getprop_name), %l1
184 mov (1b - prom_compatible_name), %l2
185 mov (1b - prom_root_compatible), %l5
186 sub %l0, %l1, %l1
187 sub %l0, %l2, %l2
188 sub %l0, %l5, %l5
189
190 /* prom_getproperty(prom_root_node, "compatible",
191 * &prom_root_compatible, 64)
192 */
193 stx %l1, [%sp + 2047 + 128 + 0x00] ! service, "getprop"
194 mov 4, %l3
195 stx %l3, [%sp + 2047 + 128 + 0x08] ! num_args, 4
196 mov 1, %l3
197 stx %l3, [%sp + 2047 + 128 + 0x10] ! num_rets, 1
198 stx %l4, [%sp + 2047 + 128 + 0x18] ! arg1, prom_root_node
199 stx %l2, [%sp + 2047 + 128 + 0x20] ! arg2, "compatible"
200 stx %l5, [%sp + 2047 + 128 + 0x28] ! arg3, &prom_root_compatible
201 mov 64, %l3
202 stx %l3, [%sp + 2047 + 128 + 0x30] ! arg4, size
203 stx %g0, [%sp + 2047 + 128 + 0x38] ! ret1
204 call %l7
205 add %sp, (2047 + 128), %o0 ! argument array
206
David S. Millerbff06d52005-09-22 20:11:33 -0700207 mov (1b - prom_finddev_name), %l1
208 mov (1b - prom_chosen_path), %l2
209 mov (1b - prom_boot_mapped_pc), %l3
210 sub %l0, %l1, %l1
211 sub %l0, %l2, %l2
212 sub %l0, %l3, %l3
213 stw %l0, [%l3]
214 sub %sp, (192 + 128), %sp
215
216 /* chosen_node = prom_finddevice("/chosen") */
217 stx %l1, [%sp + 2047 + 128 + 0x00] ! service, "finddevice"
218 mov 1, %l3
219 stx %l3, [%sp + 2047 + 128 + 0x08] ! num_args, 1
220 stx %l3, [%sp + 2047 + 128 + 0x10] ! num_rets, 1
221 stx %l2, [%sp + 2047 + 128 + 0x18] ! arg1, "/chosen"
222 stx %g0, [%sp + 2047 + 128 + 0x20] ! ret1
223 call %l7
224 add %sp, (2047 + 128), %o0 ! argument array
225
226 ldx [%sp + 2047 + 128 + 0x20], %l4 ! chosen device node
227
228 mov (1b - prom_getprop_name), %l1
229 mov (1b - prom_mmu_name), %l2
230 mov (1b - prom_mmu_ihandle_cache), %l5
231 sub %l0, %l1, %l1
232 sub %l0, %l2, %l2
233 sub %l0, %l5, %l5
234
235 /* prom_mmu_ihandle_cache = prom_getint(chosen_node, "mmu") */
236 stx %l1, [%sp + 2047 + 128 + 0x00] ! service, "getprop"
237 mov 4, %l3
238 stx %l3, [%sp + 2047 + 128 + 0x08] ! num_args, 4
239 mov 1, %l3
240 stx %l3, [%sp + 2047 + 128 + 0x10] ! num_rets, 1
241 stx %l4, [%sp + 2047 + 128 + 0x18] ! arg1, chosen_node
242 stx %l2, [%sp + 2047 + 128 + 0x20] ! arg2, "mmu"
243 stx %l5, [%sp + 2047 + 128 + 0x28] ! arg3, &prom_mmu_ihandle_cache
244 mov 4, %l3
245 stx %l3, [%sp + 2047 + 128 + 0x30] ! arg4, sizeof(arg3)
246 stx %g0, [%sp + 2047 + 128 + 0x38] ! ret1
247 call %l7
248 add %sp, (2047 + 128), %o0 ! argument array
249
250 mov (1b - prom_callmethod_name), %l1
251 mov (1b - prom_translate_name), %l2
252 sub %l0, %l1, %l1
253 sub %l0, %l2, %l2
254 lduw [%l5], %l5 ! prom_mmu_ihandle_cache
255
256 stx %l1, [%sp + 2047 + 128 + 0x00] ! service, "call-method"
257 mov 3, %l3
258 stx %l3, [%sp + 2047 + 128 + 0x08] ! num_args, 3
259 mov 5, %l3
260 stx %l3, [%sp + 2047 + 128 + 0x10] ! num_rets, 5
261 stx %l2, [%sp + 2047 + 128 + 0x18] ! arg1: "translate"
262 stx %l5, [%sp + 2047 + 128 + 0x20] ! arg2: prom_mmu_ihandle_cache
David S. Millerb1b510a2005-10-11 15:45:16 -0700263 /* PAGE align */
264 srlx %l0, 13, %l3
265 sllx %l3, 13, %l3
David S. Millerbff06d52005-09-22 20:11:33 -0700266 stx %l3, [%sp + 2047 + 128 + 0x28] ! arg3: vaddr, our PC
267 stx %g0, [%sp + 2047 + 128 + 0x30] ! res1
268 stx %g0, [%sp + 2047 + 128 + 0x38] ! res2
269 stx %g0, [%sp + 2047 + 128 + 0x40] ! res3
270 stx %g0, [%sp + 2047 + 128 + 0x48] ! res4
271 stx %g0, [%sp + 2047 + 128 + 0x50] ! res5
272 call %l7
273 add %sp, (2047 + 128), %o0 ! argument array
274
275 ldx [%sp + 2047 + 128 + 0x40], %l1 ! translation mode
276 mov (1b - prom_boot_mapping_mode), %l4
277 sub %l0, %l4, %l4
278 stw %l1, [%l4]
279 mov (1b - prom_boot_mapping_phys_high), %l4
280 sub %l0, %l4, %l4
281 ldx [%sp + 2047 + 128 + 0x48], %l2 ! physaddr high
282 stx %l2, [%l4 + 0x0]
283 ldx [%sp + 2047 + 128 + 0x50], %l3 ! physaddr low
David S. Millerb1b510a2005-10-11 15:45:16 -0700284 /* 4MB align */
David S. Miller0eef3312014-05-03 22:52:50 -0700285 srlx %l3, ILOG2_4MB, %l3
286 sllx %l3, ILOG2_4MB, %l3
David S. Millerbff06d52005-09-22 20:11:33 -0700287 stx %l3, [%l4 + 0x8]
288
289 /* Leave service as-is, "call-method" */
290 mov 7, %l3
291 stx %l3, [%sp + 2047 + 128 + 0x08] ! num_args, 7
292 mov 1, %l3
David S. Millera8201c62005-09-22 20:31:29 -0700293 stx %l3, [%sp + 2047 + 128 + 0x10] ! num_rets, 1
David S. Millerbff06d52005-09-22 20:11:33 -0700294 mov (1b - prom_map_name), %l3
295 sub %l0, %l3, %l3
296 stx %l3, [%sp + 2047 + 128 + 0x18] ! arg1: "map"
297 /* Leave arg2 as-is, prom_mmu_ihandle_cache */
298 mov -1, %l3
299 stx %l3, [%sp + 2047 + 128 + 0x28] ! arg3: mode (-1 default)
David S. Miller64658742008-03-21 17:01:38 -0700300 /* 4MB align the kernel image size. */
301 set (_end - KERNBASE), %l3
302 set ((4 * 1024 * 1024) - 1), %l4
303 add %l3, %l4, %l3
304 andn %l3, %l4, %l3
305 stx %l3, [%sp + 2047 + 128 + 0x30] ! arg4: roundup(ksize, 4MB)
David S. Millerbff06d52005-09-22 20:11:33 -0700306 sethi %hi(KERNBASE), %l3
307 stx %l3, [%sp + 2047 + 128 + 0x38] ! arg5: vaddr (KERNBASE)
308 stx %g0, [%sp + 2047 + 128 + 0x40] ! arg6: empty
309 mov (1b - prom_boot_mapping_phys_low), %l3
310 sub %l0, %l3, %l3
311 ldx [%l3], %l3
312 stx %l3, [%sp + 2047 + 128 + 0x48] ! arg7: phys addr
313 call %l7
314 add %sp, (2047 + 128), %o0 ! argument array
315
316 add %sp, (192 + 128), %sp
317
David S. Millerd82ace72006-02-09 02:52:44 -0800318 sethi %hi(prom_root_compatible), %g1
319 or %g1, %lo(prom_root_compatible), %g1
320 sethi %hi(prom_sun4v_name), %g7
321 or %g7, %lo(prom_sun4v_name), %g7
David S. Miller6cebb522006-02-11 10:56:43 -0800322 mov 5, %g3
David S. Miller6c70b6f2007-08-08 17:11:39 -070032390: ldub [%g7], %g2
David S. Millerd82ace72006-02-09 02:52:44 -0800324 ldub [%g1], %g4
325 cmp %g2, %g4
David S. Miller6c70b6f2007-08-08 17:11:39 -0700326 bne,pn %icc, 80f
David S. Millerd82ace72006-02-09 02:52:44 -0800327 add %g7, 1, %g7
328 subcc %g3, 1, %g3
David S. Miller6c70b6f2007-08-08 17:11:39 -0700329 bne,pt %xcc, 90b
David S. Millerd82ace72006-02-09 02:52:44 -0800330 add %g1, 1, %g1
331
332 sethi %hi(is_sun4v), %g1
333 or %g1, %lo(is_sun4v), %g1
334 mov 1, %g7
335 stw %g7, [%g1]
336
David S. Miller6c70b6f2007-08-08 17:11:39 -0700337 /* cpu_node = prom_finddevice("/cpu") */
338 mov (1b - prom_finddev_name), %l1
339 mov (1b - prom_cpu_path), %l2
340 sub %l0, %l1, %l1
341 sub %l0, %l2, %l2
342 sub %sp, (192 + 128), %sp
343
344 stx %l1, [%sp + 2047 + 128 + 0x00] ! service, "finddevice"
345 mov 1, %l3
346 stx %l3, [%sp + 2047 + 128 + 0x08] ! num_args, 1
347 stx %l3, [%sp + 2047 + 128 + 0x10] ! num_rets, 1
348 stx %l2, [%sp + 2047 + 128 + 0x18] ! arg1, "/cpu"
349 stx %g0, [%sp + 2047 + 128 + 0x20] ! ret1
350 call %l7
351 add %sp, (2047 + 128), %o0 ! argument array
352
353 ldx [%sp + 2047 + 128 + 0x20], %l4 ! cpu device node
354
355 mov (1b - prom_getprop_name), %l1
356 mov (1b - prom_compatible_name), %l2
357 mov (1b - prom_cpu_compatible), %l5
358 sub %l0, %l1, %l1
359 sub %l0, %l2, %l2
360 sub %l0, %l5, %l5
361
362 /* prom_getproperty(cpu_node, "compatible",
363 * &prom_cpu_compatible, 64)
364 */
365 stx %l1, [%sp + 2047 + 128 + 0x00] ! service, "getprop"
366 mov 4, %l3
367 stx %l3, [%sp + 2047 + 128 + 0x08] ! num_args, 4
368 mov 1, %l3
369 stx %l3, [%sp + 2047 + 128 + 0x10] ! num_rets, 1
370 stx %l4, [%sp + 2047 + 128 + 0x18] ! arg1, cpu_node
371 stx %l2, [%sp + 2047 + 128 + 0x20] ! arg2, "compatible"
372 stx %l5, [%sp + 2047 + 128 + 0x28] ! arg3, &prom_cpu_compatible
373 mov 64, %l3
374 stx %l3, [%sp + 2047 + 128 + 0x30] ! arg4, size
375 stx %g0, [%sp + 2047 + 128 + 0x38] ! ret1
376 call %l7
377 add %sp, (2047 + 128), %o0 ! argument array
378
379 add %sp, (192 + 128), %sp
380
381 sethi %hi(prom_cpu_compatible), %g1
382 or %g1, %lo(prom_cpu_compatible), %g1
383 sethi %hi(prom_niagara_prefix), %g7
384 or %g7, %lo(prom_niagara_prefix), %g7
385 mov 17, %g3
38690: ldub [%g7], %g2
387 ldub [%g1], %g4
388 cmp %g2, %g4
David S. Miller4ba991d2011-07-27 21:06:16 -0700389 bne,pn %icc, 89f
390 add %g7, 1, %g7
391 subcc %g3, 1, %g3
392 bne,pt %xcc, 90b
393 add %g1, 1, %g1
394 ba,pt %xcc, 91f
395 nop
396
39789: sethi %hi(prom_cpu_compatible), %g1
398 or %g1, %lo(prom_cpu_compatible), %g1
399 sethi %hi(prom_sparc_prefix), %g7
400 or %g7, %lo(prom_sparc_prefix), %g7
David S. Miller08cefa92011-09-11 10:42:20 -0700401 mov 6, %g3
David S. Miller4ba991d2011-07-27 21:06:16 -070040290: ldub [%g7], %g2
403 ldub [%g1], %g4
404 cmp %g2, %g4
David S. Miller6c70b6f2007-08-08 17:11:39 -0700405 bne,pn %icc, 4f
406 add %g7, 1, %g7
407 subcc %g3, 1, %g3
408 bne,pt %xcc, 90b
409 add %g1, 1, %g1
410
411 sethi %hi(prom_cpu_compatible), %g1
412 or %g1, %lo(prom_cpu_compatible), %g1
David S. Miller08cefa92011-09-11 10:42:20 -0700413 ldub [%g1 + 6], %g2
414 cmp %g2, 'T'
415 be,pt %xcc, 70f
416 cmp %g2, 'M'
Allen Pais76950e62013-03-05 23:47:59 +0000417 bne,pn %xcc, 49f
David S. Miller08cefa92011-09-11 10:42:20 -0700418 nop
419
42070: ldub [%g1 + 7], %g2
David S. Miller4ba991d2011-07-27 21:06:16 -0700421 cmp %g2, '3'
422 be,pt %xcc, 5f
423 mov SUN4V_CHIP_NIAGARA3, %g4
David S. Miller08cefa92011-09-11 10:42:20 -0700424 cmp %g2, '4'
425 be,pt %xcc, 5f
426 mov SUN4V_CHIP_NIAGARA4, %g4
427 cmp %g2, '5'
428 be,pt %xcc, 5f
429 mov SUN4V_CHIP_NIAGARA5, %g4
Allen Paiscadbb582014-09-08 11:48:53 +0530430 cmp %g2, '6'
431 be,pt %xcc, 5f
432 mov SUN4V_CHIP_SPARC_M6, %g4
433 cmp %g2, '7'
434 be,pt %xcc, 5f
435 mov SUN4V_CHIP_SPARC_M7, %g4
Allen Pais76950e62013-03-05 23:47:59 +0000436 ba,pt %xcc, 49f
David S. Miller4ba991d2011-07-27 21:06:16 -0700437 nop
438
43991: sethi %hi(prom_cpu_compatible), %g1
440 or %g1, %lo(prom_cpu_compatible), %g1
David S. Miller6c70b6f2007-08-08 17:11:39 -0700441 ldub [%g1 + 17], %g2
442 cmp %g2, '1'
443 be,pt %xcc, 5f
444 mov SUN4V_CHIP_NIAGARA1, %g4
445 cmp %g2, '2'
446 be,pt %xcc, 5f
447 mov SUN4V_CHIP_NIAGARA2, %g4
David S. Miller4ba991d2011-07-27 21:06:16 -0700448
David S. Miller6c70b6f2007-08-08 17:11:39 -07004494:
Allen Pais76950e62013-03-05 23:47:59 +0000450 /* Athena */
451 sethi %hi(prom_cpu_compatible), %g1
452 or %g1, %lo(prom_cpu_compatible), %g1
453 sethi %hi(prom_sparc64x_prefix), %g7
454 or %g7, %lo(prom_sparc64x_prefix), %g7
455 mov 9, %g3
45641: ldub [%g7], %g2
457 ldub [%g1], %g4
458 cmp %g2, %g4
459 bne,pn %icc, 49f
460 add %g7, 1, %g7
461 subcc %g3, 1, %g3
462 bne,pt %xcc, 41b
463 add %g1, 1, %g1
464 mov SUN4V_CHIP_SPARC64X, %g4
465 ba,pt %xcc, 5f
466 nop
467
46849:
David S. Miller6c70b6f2007-08-08 17:11:39 -0700469 mov SUN4V_CHIP_UNKNOWN, %g4
4705: sethi %hi(sun4v_chip_type), %g2
471 or %g2, %lo(sun4v_chip_type), %g2
472 stw %g4, [%g2]
473
47480:
David S. Millerd82ace72006-02-09 02:52:44 -0800475 BRANCH_IF_SUN4V(g1, jump_to_sun4u_init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 BRANCH_IF_CHEETAH_BASE(g1,g7,cheetah_boot)
477 BRANCH_IF_CHEETAH_PLUS_OR_FOLLOWON(g1,g7,cheetah_plus_boot)
478 ba,pt %xcc, spitfire_boot
479 nop
480
481cheetah_plus_boot:
482 /* Preserve OBP chosen DCU and DCR register settings. */
483 ba,pt %xcc, cheetah_generic_boot
484 nop
485
486cheetah_boot:
487 mov DCR_BPE | DCR_RPE | DCR_SI | DCR_IFPOE | DCR_MS, %g1
488 wr %g1, %asr18
489
490 sethi %uhi(DCU_ME|DCU_RE|DCU_HPE|DCU_SPE|DCU_SL|DCU_WE), %g7
491 or %g7, %ulo(DCU_ME|DCU_RE|DCU_HPE|DCU_SPE|DCU_SL|DCU_WE), %g7
492 sllx %g7, 32, %g7
493 or %g7, DCU_DM | DCU_IM | DCU_DC | DCU_IC, %g7
494 stxa %g7, [%g0] ASI_DCU_CONTROL_REG
495 membar #Sync
496
497cheetah_generic_boot:
498 mov TSB_EXTENSION_P, %g3
499 stxa %g0, [%g3] ASI_DMMU
500 stxa %g0, [%g3] ASI_IMMU
501 membar #Sync
502
503 mov TSB_EXTENSION_S, %g3
504 stxa %g0, [%g3] ASI_DMMU
505 membar #Sync
506
507 mov TSB_EXTENSION_N, %g3
508 stxa %g0, [%g3] ASI_DMMU
509 stxa %g0, [%g3] ASI_IMMU
510 membar #Sync
511
David S. Millerbff06d52005-09-22 20:11:33 -0700512 ba,a,pt %xcc, jump_to_sun4u_init
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514spitfire_boot:
515 /* Typically PROM has already enabled both MMU's and both on-chip
516 * caches, but we do it here anyway just to be paranoid.
517 */
518 mov (LSU_CONTROL_IC|LSU_CONTROL_DC|LSU_CONTROL_IM|LSU_CONTROL_DM), %g1
519 stxa %g1, [%g0] ASI_LSU_CONTROL
520 membar #Sync
521
David S. Millerbff06d52005-09-22 20:11:33 -0700522jump_to_sun4u_init:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 /*
524 * Make sure we are in privileged mode, have address masking,
525 * using the ordinary globals and have enabled floating
526 * point.
527 *
528 * Again, typically PROM has left %pil at 13 or similar, and
529 * (PSTATE_PRIV | PSTATE_PEF | PSTATE_IE) in %pstate.
530 */
531 wrpr %g0, (PSTATE_PRIV|PSTATE_PEF|PSTATE_IE), %pstate
532 wr %g0, 0, %fprs
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 set sun4u_init, %g2
535 jmpl %g2 + %g0, %g0
536 nop
537
Tim Abbotta0871e82009-04-27 14:02:26 -0400538 __REF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539sun4u_init:
David S. Miller6cebb522006-02-11 10:56:43 -0800540 BRANCH_IF_SUN4V(g1, sun4v_init)
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 /* Set ctx 0 */
David S. Miller8b11bd12006-02-07 22:13:05 -0800543 mov PRIMARY_CONTEXT, %g7
David S. Miller6cebb522006-02-11 10:56:43 -0800544 stxa %g0, [%g7] ASI_DMMU
David S. Miller8b11bd12006-02-07 22:13:05 -0800545 membar #Sync
546
547 mov SECONDARY_CONTEXT, %g7
David S. Miller6cebb522006-02-11 10:56:43 -0800548 stxa %g0, [%g7] ASI_DMMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 membar #Sync
550
David S. Miller6cebb522006-02-11 10:56:43 -0800551 ba,pt %xcc, sun4u_continue
552 nop
553
554sun4v_init:
555 /* Set ctx 0 */
556 mov PRIMARY_CONTEXT, %g7
557 stxa %g0, [%g7] ASI_MMU
558 membar #Sync
559
560 mov SECONDARY_CONTEXT, %g7
561 stxa %g0, [%g7] ASI_MMU
562 membar #Sync
563 ba,pt %xcc, niagara_tlb_fixup
564 nop
565
566sun4u_continue:
David S. Millerd82ace72006-02-09 02:52:44 -0800567 BRANCH_IF_ANY_CHEETAH(g1, g7, cheetah_tlb_fixup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 ba,pt %xcc, spitfire_tlb_fixup
570 nop
571
David S. Miller8591e302006-02-07 16:09:12 -0800572niagara_tlb_fixup:
573 mov 3, %g2 /* Set TLB type to hypervisor. */
574 sethi %hi(tlb_type), %g1
575 stw %g2, [%g1 + %lo(tlb_type)]
576
577 /* Patch copy/clear ops. */
David S. Miller6c70b6f2007-08-08 17:11:39 -0700578 sethi %hi(sun4v_chip_type), %g1
579 lduw [%g1 + %lo(sun4v_chip_type)], %g1
580 cmp %g1, SUN4V_CHIP_NIAGARA1
581 be,pt %xcc, niagara_patch
582 cmp %g1, SUN4V_CHIP_NIAGARA2
David S. Millercf5adce2007-08-16 01:47:25 -0700583 be,pt %xcc, niagara2_patch
David S. Miller6c70b6f2007-08-08 17:11:39 -0700584 nop
David S. Miller4ba991d2011-07-27 21:06:16 -0700585 cmp %g1, SUN4V_CHIP_NIAGARA3
586 be,pt %xcc, niagara2_patch
587 nop
David S. Miller08cefa92011-09-11 10:42:20 -0700588 cmp %g1, SUN4V_CHIP_NIAGARA4
David S. Millerae2c6ca2012-09-26 21:11:01 -0700589 be,pt %xcc, niagara4_patch
David S. Miller08cefa92011-09-11 10:42:20 -0700590 nop
591 cmp %g1, SUN4V_CHIP_NIAGARA5
David S. Millerae2c6ca2012-09-26 21:11:01 -0700592 be,pt %xcc, niagara4_patch
David S. Miller08cefa92011-09-11 10:42:20 -0700593 nop
Allen Paiscadbb582014-09-08 11:48:53 +0530594 cmp %g1, SUN4V_CHIP_SPARC_M6
595 be,pt %xcc, niagara4_patch
596 nop
597 cmp %g1, SUN4V_CHIP_SPARC_M7
598 be,pt %xcc, niagara4_patch
599 nop
David S. Miller6c70b6f2007-08-08 17:11:39 -0700600
601 call generic_patch_copyops
602 nop
603 call generic_patch_bzero
604 nop
605 call generic_patch_pageops
606 nop
607
608 ba,a,pt %xcc, 80f
David S. Millerae2c6ca2012-09-26 21:11:01 -0700609niagara4_patch:
610 call niagara4_patch_copyops
611 nop
David S. Miller9f825962012-10-05 13:45:26 -0700612 call niagara4_patch_bzero
David S. Millerae2c6ca2012-09-26 21:11:01 -0700613 nop
614 call niagara4_patch_pageops
615 nop
616
617 ba,a,pt %xcc, 80f
618
David S. Millercf5adce2007-08-16 01:47:25 -0700619niagara2_patch:
620 call niagara2_patch_copyops
621 nop
622 call niagara_patch_bzero
623 nop
David S. Millere95ade02011-08-01 18:18:57 -0700624 call niagara_patch_pageops
David S. Millercf5adce2007-08-16 01:47:25 -0700625 nop
626
627 ba,a,pt %xcc, 80f
David S. Miller6c70b6f2007-08-08 17:11:39 -0700628
629niagara_patch:
David S. Miller8591e302006-02-07 16:09:12 -0800630 call niagara_patch_copyops
631 nop
David S. Miller8ca25572006-02-21 14:29:42 -0800632 call niagara_patch_bzero
633 nop
David S. Miller8591e302006-02-07 16:09:12 -0800634 call niagara_patch_pageops
635 nop
636
David S. Miller6c70b6f2007-08-08 17:11:39 -070063780:
David S. Miller8591e302006-02-07 16:09:12 -0800638 /* Patch TLB/cache ops. */
639 call hypervisor_patch_cachetlbops
640 nop
641
David S. Millerd82ace72006-02-09 02:52:44 -0800642 ba,pt %xcc, tlb_fixup_done
643 nop
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645cheetah_tlb_fixup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 mov 2, %g2 /* Set TLB type to cheetah+. */
647 BRANCH_IF_CHEETAH_PLUS_OR_FOLLOWON(g1,g7,1f)
648
649 mov 1, %g2 /* Set TLB type to cheetah. */
650
6511: sethi %hi(tlb_type), %g1
652 stw %g2, [%g1 + %lo(tlb_type)]
653
David S. Miller0835ae02005-10-04 15:23:20 -0700654 /* Patch copy/page operations to cheetah optimized versions. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 call cheetah_patch_copyops
656 nop
David S. Millerdbd2fdf2005-08-30 11:26:15 -0700657 call cheetah_patch_copy_page
658 nop
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 call cheetah_patch_cachetlbops
660 nop
661
662 ba,pt %xcc, tlb_fixup_done
663 nop
664
665spitfire_tlb_fixup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /* Set TLB type to spitfire. */
667 mov 0, %g2
668 sethi %hi(tlb_type), %g1
669 stw %g2, [%g1 + %lo(tlb_type)]
670
671tlb_fixup_done:
672 sethi %hi(init_thread_union), %g6
673 or %g6, %lo(init_thread_union), %g6
674 ldx [%g6 + TI_TASK], %g4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 wr %g0, ASI_P, %asi
677 mov 1, %g1
678 sllx %g1, THREAD_SHIFT, %g1
679 sub %g1, (STACKFRAME_SZ + STACK_BIAS), %g1
680 add %g6, %g1, %sp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 /* Set per-cpu pointer initially to zero, this makes
683 * the boot-cpu use the in-kernel-image per-cpu areas
684 * before setup_per_cpu_area() is invoked.
685 */
686 clr %g5
687
688 wrpr %g0, 0, %wstate
689 wrpr %g0, 0x0, %tl
690
691 /* Clear the bss */
692 sethi %hi(__bss_start), %o0
693 or %o0, %lo(__bss_start), %o0
694 sethi %hi(_end), %o1
695 or %o1, %lo(_end), %o1
696 call __bzero
697 sub %o1, %o0, %o1
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 call prom_init
700 mov %l7, %o0 ! OpenPROM cif handler
701
David S. Milleref3e0352014-10-23 12:58:13 -0700702 /* To create a one-register-window buffer between the kernel's
703 * initial stack and the last stack frame we use from the firmware,
704 * do the rest of the boot from a C helper function.
David S. Miller951bc822006-05-31 01:24:02 -0700705 */
David S. Milleref3e0352014-10-23 12:58:13 -0700706 call start_early_boot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 nop
708 /* Not reached... */
709
David S. Miller19662872007-07-24 15:17:33 -0700710 .previous
711
David S. Miller5d8e1b12005-10-10 16:12:13 -0700712 /* This is meant to allow the sharing of this code between
713 * boot processor invocation (via setup_tba() below) and
714 * secondary processor startup (via trampoline.S). The
715 * former does use this code, the latter does not yet due
716 * to some complexities. That should be fixed up at some
717 * point.
David S. Millerc9c10832005-10-12 12:22:46 -0700718 *
719 * There used to be enormous complexity wrt. transferring
Nick Andrew877d0312009-01-26 11:06:57 +0100720 * over from the firmware's trap table to the Linux kernel's.
David S. Millerc9c10832005-10-12 12:22:46 -0700721 * For example, there was a chicken & egg problem wrt. building
722 * the OBP page tables, yet needing to be on the Linux kernel
723 * trap table (to translate PAGE_OFFSET addresses) in order to
724 * do that.
725 *
726 * We now handle OBP tlb misses differently, via linear lookups
727 * into the prom_trans[] array. So that specific problem no
728 * longer exists. Yet, unfortunately there are still some issues
729 * preventing trampoline.S from using this code... ho hum.
David S. Miller5d8e1b12005-10-10 16:12:13 -0700730 */
731 .globl setup_trap_table
732setup_trap_table:
733 save %sp, -192, %sp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
David S. Millerc9c10832005-10-12 12:22:46 -0700735 /* Force interrupts to be disabled. */
David S. Millerd8573e22006-07-13 16:05:26 -0700736 rdpr %pstate, %l0
737 andn %l0, PSTATE_IE, %o1
David S. Miller5d8e1b12005-10-10 16:12:13 -0700738 wrpr %o1, 0x0, %pstate
David S. Millerd8573e22006-07-13 16:05:26 -0700739 rdpr %pil, %l1
David S. Millerb4f43722008-11-23 21:55:29 -0800740 wrpr %g0, PIL_NORMAL_MAX, %pil
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
David S. Millerc9c10832005-10-12 12:22:46 -0700742 /* Make the firmware call to jump over to the Linux trap table. */
David S. Miller12eaa322006-02-10 15:39:51 -0800743 sethi %hi(is_sun4v), %o0
744 lduw [%o0 + %lo(is_sun4v)], %o0
745 brz,pt %o0, 1f
746 nop
747
748 TRAP_LOAD_TRAP_BLOCK(%g2, %g3)
749 add %g2, TRAP_PER_CPU_FAULT_INFO, %g2
750 stxa %g2, [%g0] ASI_SCRATCHPAD
751
752 /* Compute physical address:
753 *
754 * paddr = kern_base + (mmfsa_vaddr - KERNBASE)
755 */
756 sethi %hi(KERNBASE), %g3
757 sub %g2, %g3, %g2
758 sethi %hi(kern_base), %g3
759 ldx [%g3 + %lo(kern_base)], %g3
760 add %g2, %g3, %o1
David S. Miller301feb652007-09-16 11:51:15 -0700761 sethi %hi(sparc64_ttable_tl0), %o0
David S. Miller12eaa322006-02-10 15:39:51 -0800762
David S. Miller301feb652007-09-16 11:51:15 -0700763 set prom_set_trap_table_name, %g2
764 stx %g2, [%sp + 2047 + 128 + 0x00]
765 mov 2, %g2
766 stx %g2, [%sp + 2047 + 128 + 0x08]
767 mov 0, %g2
768 stx %g2, [%sp + 2047 + 128 + 0x10]
769 stx %o0, [%sp + 2047 + 128 + 0x18]
770 stx %o1, [%sp + 2047 + 128 + 0x20]
771 sethi %hi(p1275buf), %g2
772 or %g2, %lo(p1275buf), %g2
773 ldx [%g2 + 0x08], %o1
774 call %o1
775 add %sp, (2047 + 128), %o0
David S. Miller12eaa322006-02-10 15:39:51 -0800776
777 ba,pt %xcc, 2f
778 nop
779
David S. Miller301feb652007-09-16 11:51:15 -07007801: sethi %hi(sparc64_ttable_tl0), %o0
781 set prom_set_trap_table_name, %g2
782 stx %g2, [%sp + 2047 + 128 + 0x00]
783 mov 1, %g2
784 stx %g2, [%sp + 2047 + 128 + 0x08]
785 mov 0, %g2
786 stx %g2, [%sp + 2047 + 128 + 0x10]
787 stx %o0, [%sp + 2047 + 128 + 0x18]
788 sethi %hi(p1275buf), %g2
789 or %g2, %lo(p1275buf), %g2
790 ldx [%g2 + 0x08], %o1
791 call %o1
792 add %sp, (2047 + 128), %o0
David S. Miller5d8e1b12005-10-10 16:12:13 -0700793
794 /* Start using proper page size encodings in ctx register. */
David S. Miller12eaa322006-02-10 15:39:51 -08007952: sethi %hi(sparc64_kern_pri_context), %g3
David S. Miller5d8e1b12005-10-10 16:12:13 -0700796 ldx [%g3 + %lo(sparc64_kern_pri_context)], %g2
David S. Miller8b11bd12006-02-07 22:13:05 -0800797
798 mov PRIMARY_CONTEXT, %g1
799
800661: stxa %g2, [%g1] ASI_DMMU
801 .section .sun4v_1insn_patch, "ax"
802 .word 661b
803 stxa %g2, [%g1] ASI_MMU
804 .previous
805
David S. Miller5d8e1b12005-10-10 16:12:13 -0700806 membar #Sync
807
David S. Miller53140b72007-08-16 01:52:44 -0700808 BRANCH_IF_SUN4V(o2, 1f)
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 /* Kill PROM timer */
811 sethi %hi(0x80000000), %o2
812 sllx %o2, 32, %o2
813 wr %o2, 0, %tick_cmpr
814
David S. Millerd82ace72006-02-09 02:52:44 -0800815 BRANCH_IF_ANY_CHEETAH(o2, o3, 1f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 ba,pt %xcc, 2f
818 nop
819
820 /* Disable STICK_INT interrupts. */
8211:
822 sethi %hi(0x80000000), %o2
823 sllx %o2, 32, %o2
824 wr %o2, %asr25
825
Linus Torvalds1da177e2005-04-16 15:20:36 -07008262:
827 wrpr %g0, %g0, %wstate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 call init_irqwork_curcpu
830 nop
831
David S. Millerd8573e22006-07-13 16:05:26 -0700832 /* Now we can restore interrupt state. */
833 wrpr %l0, 0, %pstate
834 wrpr %l1, 0x0, %pil
David S. Miller5d8e1b12005-10-10 16:12:13 -0700835
836 ret
837 restore
838
839 .globl setup_tba
David S. Millera8b900d2006-01-31 18:33:37 -0800840setup_tba:
David S. Miller5d8e1b12005-10-10 16:12:13 -0700841 save %sp, -192, %sp
842
843 /* The boot processor is the only cpu which invokes this
844 * routine, the other cpus set things up via trampoline.S.
845 * So save the OBP trap table address here.
846 */
847 rdpr %tba, %g7
848 sethi %hi(prom_tba), %o1
849 or %o1, %lo(prom_tba), %o1
850 stx %g7, [%o1]
851
852 call setup_trap_table
853 nop
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 ret
856 restore
David S. Millerc9c10832005-10-12 12:22:46 -0700857sparc64_boot_end:
858
Sam Ravnborga88b5ba2008-12-03 03:11:52 -0800859#include "etrap_64.S"
860#include "rtrap_64.S"
David S. Millerc9c10832005-10-12 12:22:46 -0700861#include "winfixup.S"
David S. Miller6eda3a72008-04-28 00:47:20 -0700862#include "fpu_traps.S"
863#include "ivec.S"
864#include "getsetcc.S"
865#include "utrap.S"
866#include "spiterrs.S"
867#include "cherrs.S"
868#include "misctrap.S"
869#include "syscalls.S"
870#include "helpers.S"
871#include "hvcalls.S"
David S. Miller5b0c0572006-02-08 02:53:50 -0800872#include "sun4v_tlb_miss.S"
873#include "sun4v_ivec.S"
David S. Miller2d9e2762007-05-29 01:58:31 -0700874#include "ktlb.S"
875#include "tsb.S"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877/*
David S. Millerc9c10832005-10-12 12:22:46 -0700878 * The following skip makes sure the trap table in ttable.S is aligned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 * on a 32K boundary as required by the v9 specs for TBA register.
David S. Miller2f7ee7c2006-01-31 18:33:49 -0800880 *
881 * We align to a 32K boundary, then we have the 32K kernel TSB,
David S. Miller2d9e2762007-05-29 01:58:31 -0700882 * the 64K kernel 4MB TSB, and then the 32K aligned trap table.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 */
David S. Millerc9c10832005-10-12 12:22:46 -07008841:
885 .skip 0x4000 + _start - 1b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
David S. Miller2d9e2762007-05-29 01:58:31 -0700887! 0x0000000000408000
888
David S. Miller2f7ee7c2006-01-31 18:33:49 -0800889 .globl swapper_tsb
890swapper_tsb:
891 .skip (32 * 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
David S. Miller2d9e2762007-05-29 01:58:31 -0700893 .globl swapper_4m_tsb
894swapper_4m_tsb:
895 .skip (64 * 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
David S. Miller2d9e2762007-05-29 01:58:31 -0700897! 0x0000000000420000
898
899 /* Some care needs to be exercised if you try to move the
900 * location of the trap table relative to other things. For
901 * one thing there are br* instructions in some of the
902 * trap table entires which branch back to code in ktlb.S
903 * Those instructions can only handle a signed 16-bit
904 * displacement.
905 *
906 * There is a binutils bug (bugzilla #4558) which causes
907 * the relocation overflow checks for such instructions to
908 * not be done correctly. So bintuils will not notice the
909 * error and will instead write junk into the relocation and
910 * you'll have an unbootable kernel.
911 */
Sam Ravnborgb9795422012-05-19 20:02:44 +0000912#include "ttable_64.S"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
David S. Miller2d9e2762007-05-29 01:58:31 -0700914! 0x0000000000428000
915
Sam Ravnborga88b5ba2008-12-03 03:11:52 -0800916#include "systbls_64.S"
David S. Miller074d82c2006-02-23 02:28:25 -0800917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 .data
919 .align 8
920 .globl prom_tba, tlb_type
921prom_tba: .xword 0
922tlb_type: .word 0 /* Must NOT end up in BSS */
923 .section ".fixup",#alloc,#execinstr
David S. Miller5fd29752005-09-28 20:41:45 -0700924
David S. Miller40bdac72009-02-08 22:00:55 -0800925 .globl __ret_efault, __retl_efault, __ret_one, __retl_one
926ENTRY(__ret_efault)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 ret
928 restore %g0, -EFAULT, %o0
David S. Miller40bdac72009-02-08 22:00:55 -0800929ENDPROC(__ret_efault)
930
931ENTRY(__retl_efault)
David S. Miller5fd29752005-09-28 20:41:45 -0700932 retl
933 mov -EFAULT, %o0
David S. Miller40bdac72009-02-08 22:00:55 -0800934ENDPROC(__retl_efault)
935
936ENTRY(__retl_one)
937 retl
938 mov 1, %o0
939ENDPROC(__retl_one)
940
Rob Gardnera7c57242015-12-22 23:24:49 -0700941ENTRY(__retl_one_fp)
942 VISExitHalf
943 retl
944 mov 1, %o0
945ENDPROC(__retl_one_fp)
946
David S. Miller40bdac72009-02-08 22:00:55 -0800947ENTRY(__ret_one_asi)
948 wr %g0, ASI_AIUS, %asi
949 ret
950 restore %g0, 1, %o0
951ENDPROC(__ret_one_asi)
952
953ENTRY(__retl_one_asi)
954 wr %g0, ASI_AIUS, %asi
955 retl
956 mov 1, %o0
957ENDPROC(__retl_one_asi)
958
Rob Gardnera7c57242015-12-22 23:24:49 -0700959ENTRY(__retl_one_asi_fp)
960 wr %g0, ASI_AIUS, %asi
961 VISExitHalf
962 retl
963 mov 1, %o0
964ENDPROC(__retl_one_asi_fp)
965
David S. Miller40bdac72009-02-08 22:00:55 -0800966ENTRY(__retl_o1)
967 retl
968 mov %o1, %o0
969ENDPROC(__retl_o1)