blob: 7170ec86a775cd7f9292cdc1d0caaaf2dbc0208e [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001/*
2 * linux/arch/arm/kernel/head.S
3 *
4 * Copyright (C) 1994-2002 Russell King
5 * Copyright (c) 2003 ARM Limited
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * Kernel startup code for all 32-bit CPUs
13 */
14#include <linux/linkage.h>
15#include <linux/init.h>
16
17#include <asm/assembler.h>
18#include <asm/cp15.h>
19#include <asm/domain.h>
20#include <asm/ptrace.h>
21#include <asm/asm-offsets.h>
22#include <asm/memory.h>
23#include <asm/thread_info.h>
24#include <asm/pgtable.h>
25
26#ifdef CONFIG_DEBUG_LL
27#include <mach/debug-macro.S>
28#endif
29
30/*
31 * swapper_pg_dir is the virtual address of the initial page table.
32 * We place the page tables 16K below KERNEL_RAM_VADDR. Therefore, we must
33 * make sure that KERNEL_RAM_VADDR is correctly set. Currently, we expect
34 * the least significant 16 bits to be 0x8000, but we could probably
35 * relax this restriction to KERNEL_RAM_VADDR >= PAGE_OFFSET + 0x4000.
36 */
37#define KERNEL_RAM_VADDR (PAGE_OFFSET + TEXT_OFFSET)
38#if (KERNEL_RAM_VADDR & 0xffff) != 0x8000
39#error KERNEL_RAM_VADDR must start at 0xXXXX8000
40#endif
41
42#ifdef CONFIG_ARM_LPAE
43 /* LPAE requires an additional page for the PGD */
44#define PG_DIR_SIZE 0x5000
45#define PMD_ORDER 3
46#else
47#define PG_DIR_SIZE 0x4000
48#define PMD_ORDER 2
49#endif
50
51 .globl swapper_pg_dir
52 .equ swapper_pg_dir, KERNEL_RAM_VADDR - PG_DIR_SIZE
53
54 .macro pgtbl, rd, phys
55 add \rd, \phys, #TEXT_OFFSET - PG_DIR_SIZE
56 .endm
57
58#ifdef CONFIG_XIP_KERNEL
59#define KERNEL_START XIP_VIRT_ADDR(CONFIG_XIP_PHYS_ADDR)
60#define KERNEL_END _edata_loc
61#else
62#define KERNEL_START KERNEL_RAM_VADDR
63#define KERNEL_END _end
64#endif
65
66/*
67 * Kernel startup entry point.
68 * ---------------------------
69 *
70 * This is normally called from the decompressor code. The requirements
71 * are: MMU = off, D-cache = off, I-cache = dont care, r0 = 0,
72 * r1 = machine nr, r2 = atags or dtb pointer.
73 *
74 * This code is mostly position independent, so if you link the kernel at
75 * 0xc0008000, you call this at __pa(0xc0008000).
76 *
77 * See linux/arch/arm/tools/mach-types for the complete list of machine
78 * numbers for r1.
79 *
80 * We're trying to keep crap to a minimum; DO NOT add any machine specific
81 * crap here - that's what the boot loader (or in extreme, well justified
82 * circumstances, zImage) is for.
83 */
84 .arm
85
86 __HEAD
87ENTRY(stext)
88#ifdef CONFIG_BOOT_WITHOUT_UBOOT
89 ldr r2, =CONFIG_BOOT_WITHOUT_UBOOT_ADDR
90 ldr r0, [r2]
91 ldr r1, [r2, #4]
92 ldr r2, [r2, #8]
93#endif
94
95 THUMB( adr r9, BSYM(1f) ) @ Kernel is always entered in ARM.
96 THUMB( bx r9 ) @ If this is a Thumb-2 kernel,
97 THUMB( .thumb ) @ switch to Thumb now.
98 THUMB(1: )
99
100 setmode PSR_F_BIT | PSR_I_BIT | SVC_MODE, r9 @ ensure svc mode
101 @ and irqs disabled
102 mrc p15, 0, r9, c0, c0 @ get processor id
103 bl __lookup_processor_type @ r5=procinfo r9=cpuid
104 movs r10, r5 @ invalid processor (r5=0)?
105 THUMB( it eq ) @ force fixup-able long branch encoding
106 beq __error_p @ yes, error 'p'
107
108#ifdef CONFIG_ARM_LPAE
109 mrc p15, 0, r3, c0, c1, 4 @ read ID_MMFR0
110 and r3, r3, #0xf @ extract VMSA support
111 cmp r3, #5 @ long-descriptor translation table format?
112 THUMB( it lo ) @ force fixup-able long branch encoding
113 blo __error_p @ only classic page table format
114#endif
115
116#ifndef CONFIG_XIP_KERNEL
117 adr r3, 2f
118 ldmia r3, {r4, r8}
119 sub r4, r3, r4 @ (PHYS_OFFSET - PAGE_OFFSET)
120 add r8, r8, r4 @ PHYS_OFFSET
121#else
122 ldr r8, =PHYS_OFFSET @ always constant in this case
123#endif
124
125 /*
126 * r1 = machine no, r2 = atags or dtb,
127 * r8 = phys_offset, r9 = cpuid, r10 = procinfo
128 */
129 bl __vet_atags
130#ifdef CONFIG_SMP_ON_UP
131 bl __fixup_smp
132#endif
133#ifdef CONFIG_ARM_PATCH_PHYS_VIRT
134 bl __fixup_pv_table
135#endif
136 bl __create_page_tables
137
138 /*
139 * The following calls CPU specific code in a position independent
140 * manner. See arch/arm/mm/proc-*.S for details. r10 = base of
141 * xxx_proc_info structure selected by __lookup_processor_type
142 * above. On return, the CPU will be ready for the MMU to be
143 * turned on, and r0 will hold the CPU control register value.
144 */
145 ldr r13, =__mmap_switched @ address to jump to after
146 @ mmu has been enabled
147 adr lr, BSYM(1f) @ return (PIC) address
148 mov r8, r4 @ set TTBR1 to swapper_pg_dir
149 ARM( add pc, r10, #PROCINFO_INITFUNC )
150 THUMB( add r12, r10, #PROCINFO_INITFUNC )
151 THUMB( mov pc, r12 )
1521: b __enable_mmu
153ENDPROC(stext)
154 .ltorg
155#ifndef CONFIG_XIP_KERNEL
1562: .long .
157 .long PAGE_OFFSET
158#endif
159
160/*
161 * Setup the initial page tables. We only setup the barest
162 * amount which are required to get the kernel running, which
163 * generally means mapping in the kernel code.
164 *
165 * r8 = phys_offset, r9 = cpuid, r10 = procinfo
166 *
167 * Returns:
168 * r0, r3, r5-r7 corrupted
169 * r4 = physical page table address
170 */
171__create_page_tables:
172 pgtbl r4, r8 @ page table address
173
174 /*
175 * Clear the swapper page table
176 */
177 mov r0, r4
178 mov r3, #0
179 add r6, r0, #PG_DIR_SIZE
1801: str r3, [r0], #4
181 str r3, [r0], #4
182 str r3, [r0], #4
183 str r3, [r0], #4
184 teq r0, r6
185 bne 1b
186
187#ifdef CONFIG_ARM_LPAE
188 /*
189 * Build the PGD table (first level) to point to the PMD table. A PGD
190 * entry is 64-bit wide.
191 */
192 mov r0, r4
193 add r3, r4, #0x1000 @ first PMD table address
194 orr r3, r3, #3 @ PGD block type
195 mov r6, #4 @ PTRS_PER_PGD
196 mov r7, #1 << (55 - 32) @ L_PGD_SWAPPER
1971: str r3, [r0], #4 @ set bottom PGD entry bits
198 str r7, [r0], #4 @ set top PGD entry bits
199 add r3, r3, #0x1000 @ next PMD table
200 subs r6, r6, #1
201 bne 1b
202
203 add r4, r4, #0x1000 @ point to the PMD tables
204#endif
205
206 ldr r7, [r10, #PROCINFO_MM_MMUFLAGS] @ mm_mmuflags
207
208 /*
209 * Create identity mapping to cater for __enable_mmu.
210 * This identity mapping will be removed by paging_init().
211 */
212 adr r0, __turn_mmu_on_loc
213 ldmia r0, {r3, r5, r6}
214 sub r0, r0, r3 @ virt->phys offset
215 add r5, r5, r0 @ phys __turn_mmu_on
216 add r6, r6, r0 @ phys __turn_mmu_on_end
217 mov r5, r5, lsr #SECTION_SHIFT
218 mov r6, r6, lsr #SECTION_SHIFT
219
2201: orr r3, r7, r5, lsl #SECTION_SHIFT @ flags + kernel base
221 str r3, [r4, r5, lsl #PMD_ORDER] @ identity mapping
222 cmp r5, r6
223 addlo r5, r5, #1 @ next section
224 blo 1b
225
226 /*
227 * Now setup the pagetables for our kernel direct
228 * mapped region.
229 */
230 mov r3, pc
231 mov r3, r3, lsr #SECTION_SHIFT
232 orr r3, r7, r3, lsl #SECTION_SHIFT
233 add r0, r4, #(KERNEL_START & 0xff000000) >> (SECTION_SHIFT - PMD_ORDER)
234 str r3, [r0, #((KERNEL_START & 0x00f00000) >> SECTION_SHIFT) << PMD_ORDER]!
235 ldr r6, =(KERNEL_END - 1)
236 add r0, r0, #1 << PMD_ORDER
237 add r6, r4, r6, lsr #(SECTION_SHIFT - PMD_ORDER)
2381: cmp r0, r6
239 add r3, r3, #1 << SECTION_SHIFT
240 strls r3, [r0], #1 << PMD_ORDER
241 bls 1b
242
243#ifdef CONFIG_XIP_KERNEL
244 /*
245 * Map some ram to cover our .data and .bss areas.
246 */
247 add r3, r8, #TEXT_OFFSET
248 orr r3, r3, r7
249 add r0, r4, #(KERNEL_RAM_VADDR & 0xff000000) >> (SECTION_SHIFT - PMD_ORDER)
250 str r3, [r0, #(KERNEL_RAM_VADDR & 0x00f00000) >> (SECTION_SHIFT - PMD_ORDER)]!
251 ldr r6, =(_end - 1)
252 add r0, r0, #4
253 add r6, r4, r6, lsr #(SECTION_SHIFT - PMD_ORDER)
2541: cmp r0, r6
255 add r3, r3, #1 << 20
256 strls r3, [r0], #4
257 bls 1b
258#endif
259
260 /*
261 * Then map boot params address in r2 or the first 1MB (2MB with LPAE)
262 * of ram if boot params address is not specified.
263 * We map 2 sections in case the ATAGs/DTB crosses a section boundary.
264 */
265 mov r0, r2, lsr #SECTION_SHIFT
266 movs r0, r0, lsl #SECTION_SHIFT
267 moveq r0, r8
268 sub r3, r0, r8
269 ldr r6, =PAGE_OFFSET
270 add r3, r3, r6
271 add r3, r4, r3, lsr #(SECTION_SHIFT - PMD_ORDER)
272 orr r6, r7, r0
273 str r6, [r3], #1 << PMD_ORDER
274 add r6, r6, #1 << SECTION_SHIFT
275 str r6, [r3]
276
277#ifdef CONFIG_DEBUG_LL
278#if !defined(CONFIG_DEBUG_ICEDCC) && !defined(CONFIG_DEBUG_SEMIHOSTING)
279 /*
280 * Map in IO space for serial debugging.
281 * This allows debug messages to be output
282 * via a serial console before paging_init.
283 */
284 addruart r7, r3, r0
285
286 mov r3, r3, lsr #SECTION_SHIFT
287 mov r3, r3, lsl #PMD_ORDER
288
289 add r0, r4, r3
290 rsb r3, r3, #0x4000 @ PTRS_PER_PGD*sizeof(long)
291 cmp r3, #0x0800 @ limit to 512MB
292 movhi r3, #0x0800
293 add r6, r0, r3
294 mov r3, r7, lsr #SECTION_SHIFT
295 ldr r7, [r10, #PROCINFO_IO_MMUFLAGS] @ io_mmuflags
296 orr r3, r7, r3, lsl #SECTION_SHIFT
297#ifdef CONFIG_ARM_LPAE
298 mov r7, #1 << (54 - 32) @ XN
299#else
300 orr r3, r3, #PMD_SECT_XN
301#endif
3021: str r3, [r0], #4
303#ifdef CONFIG_ARM_LPAE
304 str r7, [r0], #4
305#endif
306 add r3, r3, #1 << SECTION_SHIFT
307 cmp r0, r6
308 blo 1b
309
310#else /* CONFIG_DEBUG_ICEDCC || CONFIG_DEBUG_SEMIHOSTING */
311 /* we don't need any serial debugging mappings */
312 ldr r7, [r10, #PROCINFO_IO_MMUFLAGS] @ io_mmuflags
313#endif
314
315#if defined(CONFIG_ARCH_NETWINDER) || defined(CONFIG_ARCH_CATS)
316 /*
317 * If we're using the NetWinder or CATS, we also need to map
318 * in the 16550-type serial port for the debug messages
319 */
320 add r0, r4, #0xff000000 >> (SECTION_SHIFT - PMD_ORDER)
321 orr r3, r7, #0x7c000000
322 str r3, [r0]
323#endif
324#ifdef CONFIG_ARCH_RPC
325 /*
326 * Map in screen at 0x02000000 & SCREEN2_BASE
327 * Similar reasons here - for debug. This is
328 * only for Acorn RiscPC architectures.
329 */
330 add r0, r4, #0x02000000 >> (SECTION_SHIFT - PMD_ORDER)
331 orr r3, r7, #0x02000000
332 str r3, [r0]
333 add r0, r4, #0xd8000000 >> (SECTION_SHIFT - PMD_ORDER)
334 str r3, [r0]
335#endif
336#endif
337#ifdef CONFIG_ARM_LPAE
338 sub r4, r4, #0x1000 @ point to the PGD table
339#endif
340 mov pc, lr
341ENDPROC(__create_page_tables)
342 .ltorg
343 .align
344__turn_mmu_on_loc:
345 .long .
346 .long __turn_mmu_on
347 .long __turn_mmu_on_end
348
349#if defined(CONFIG_SMP)
350 __CPUINIT
351ENTRY(secondary_startup)
352 /*
353 * Common entry point for secondary CPUs.
354 *
355 * Ensure that we're in SVC mode, and IRQs are disabled. Lookup
356 * the processor type - there is no need to check the machine type
357 * as it has already been validated by the primary processor.
358 */
359 setmode PSR_F_BIT | PSR_I_BIT | SVC_MODE, r9
360 mrc p15, 0, r9, c0, c0 @ get processor id
361 bl __lookup_processor_type
362 movs r10, r5 @ invalid processor?
363 moveq r0, #'p' @ yes, error 'p'
364 THUMB( it eq ) @ force fixup-able long branch encoding
365 beq __error_p
366
367 /*
368 * Use the page tables supplied from __cpu_up.
369 */
370 adr r4, __secondary_data
371 ldmia r4, {r5, r7, r12} @ address to jump to after
372 sub lr, r4, r5 @ mmu has been enabled
373 ldr r4, [r7, lr] @ get secondary_data.pgdir
374 add r7, r7, #4
375 ldr r8, [r7, lr] @ get secondary_data.swapper_pg_dir
376 adr lr, BSYM(__enable_mmu) @ return address
377 mov r13, r12 @ __secondary_switched address
378 ARM( add pc, r10, #PROCINFO_INITFUNC ) @ initialise processor
379 @ (return control reg)
380 THUMB( add r12, r10, #PROCINFO_INITFUNC )
381 THUMB( mov pc, r12 )
382ENDPROC(secondary_startup)
383
384 /*
385 * r6 = &secondary_data
386 */
387ENTRY(__secondary_switched)
388 ldr sp, [r7, #4] @ get secondary_data.stack
389 mov fp, #0
390 b secondary_start_kernel
391ENDPROC(__secondary_switched)
392
393 .align
394
395 .type __secondary_data, %object
396__secondary_data:
397 .long .
398 .long secondary_data
399 .long __secondary_switched
400#endif /* defined(CONFIG_SMP) */
401
402
403
404/*
405 * Setup common bits before finally enabling the MMU. Essentially
406 * this is just loading the page table pointer and domain access
407 * registers.
408 *
409 * r0 = cp#15 control register
410 * r1 = machine ID
411 * r2 = atags or dtb pointer
412 * r4 = page table pointer
413 * r9 = processor ID
414 * r13 = *virtual* address to jump to upon completion
415 */
416__enable_mmu:
417#if defined(CONFIG_ALIGNMENT_TRAP) && __LINUX_ARM_ARCH__ < 6
418 orr r0, r0, #CR_A
419#else
420 bic r0, r0, #CR_A
421#endif
422#ifdef CONFIG_CPU_DCACHE_DISABLE
423 bic r0, r0, #CR_C
424#endif
425#ifdef CONFIG_CPU_BPREDICT_DISABLE
426 bic r0, r0, #CR_Z
427#endif
428#ifdef CONFIG_CPU_ICACHE_DISABLE
429 bic r0, r0, #CR_I
430#endif
431#ifdef CONFIG_ARM_LPAE
432 mov r5, #0
433 mcrr p15, 0, r4, r5, c2 @ load TTBR0
434#else
435 mov r5, #(domain_val(DOMAIN_USER, DOMAIN_MANAGER) | \
436 domain_val(DOMAIN_KERNEL, DOMAIN_MANAGER) | \
437 domain_val(DOMAIN_TABLE, DOMAIN_MANAGER) | \
438 domain_val(DOMAIN_IO, DOMAIN_CLIENT))
439 mcr p15, 0, r5, c3, c0, 0 @ load domain access register
440 mcr p15, 0, r4, c2, c0, 0 @ load page table pointer
441#endif
442 b __turn_mmu_on
443ENDPROC(__enable_mmu)
444
445/*
446 * Enable the MMU. This completely changes the structure of the visible
447 * memory space. You will not be able to trace execution through this.
448 * If you have an enquiry about this, *please* check the linux-arm-kernel
449 * mailing list archives BEFORE sending another post to the list.
450 *
451 * r0 = cp#15 control register
452 * r1 = machine ID
453 * r2 = atags or dtb pointer
454 * r9 = processor ID
455 * r13 = *virtual* address to jump to upon completion
456 *
457 * other registers depend on the function called upon completion
458 */
459 .align 5
460 .pushsection .idmap.text, "ax"
461ENTRY(__turn_mmu_on)
462 mov r0, r0
463 instr_sync
464 mcr p15, 0, r0, c1, c0, 0 @ write control reg
465 mrc p15, 0, r3, c0, c0, 0 @ read id reg
466 instr_sync
467 mov r3, r3
468 mov r3, r13
469 mov pc, r3
470__turn_mmu_on_end:
471ENDPROC(__turn_mmu_on)
472 .popsection
473
474
475#ifdef CONFIG_SMP_ON_UP
476 __INIT
477__fixup_smp:
478 and r3, r9, #0x000f0000 @ architecture version
479 teq r3, #0x000f0000 @ CPU ID supported?
480 bne __fixup_smp_on_up @ no, assume UP
481
482 bic r3, r9, #0x00ff0000
483 bic r3, r3, #0x0000000f @ mask 0xff00fff0
484 mov r4, #0x41000000
485 orr r4, r4, #0x0000b000
486 orr r4, r4, #0x00000020 @ val 0x4100b020
487 teq r3, r4 @ ARM 11MPCore?
488 moveq pc, lr @ yes, assume SMP
489
490 mrc p15, 0, r0, c0, c0, 5 @ read MPIDR
491 and r0, r0, #0xc0000000 @ multiprocessing extensions and
492 teq r0, #0x80000000 @ not part of a uniprocessor system?
493 moveq pc, lr @ yes, assume SMP
494
495__fixup_smp_on_up:
496 adr r0, 1f
497 ldmia r0, {r3 - r5}
498 sub r3, r0, r3
499 add r4, r4, r3
500 add r5, r5, r3
501 b __do_fixup_smp_on_up
502ENDPROC(__fixup_smp)
503
504 .align
5051: .word .
506 .word __smpalt_begin
507 .word __smpalt_end
508
509 .pushsection .data
510 .globl smp_on_up
511smp_on_up:
512 ALT_SMP(.long 1)
513 ALT_UP(.long 0)
514 .popsection
515#endif
516
517 .text
518__do_fixup_smp_on_up:
519 cmp r4, r5
520 movhs pc, lr
521 ldmia r4!, {r0, r6}
522 ARM( str r6, [r0, r3] )
523 THUMB( add r0, r0, r3 )
524#ifdef __ARMEB__
525 THUMB( mov r6, r6, ror #16 ) @ Convert word order for big-endian.
526#endif
527 THUMB( strh r6, [r0], #2 ) @ For Thumb-2, store as two halfwords
528 THUMB( mov r6, r6, lsr #16 ) @ to be robust against misaligned r3.
529 THUMB( strh r6, [r0] )
530 b __do_fixup_smp_on_up
531ENDPROC(__do_fixup_smp_on_up)
532
533ENTRY(fixup_smp)
534 stmfd sp!, {r4 - r6, lr}
535 mov r4, r0
536 add r5, r0, r1
537 mov r3, #0
538 bl __do_fixup_smp_on_up
539 ldmfd sp!, {r4 - r6, pc}
540ENDPROC(fixup_smp)
541
542#ifdef CONFIG_ARM_PATCH_PHYS_VIRT
543
544/* __fixup_pv_table - patch the stub instructions with the delta between
545 * PHYS_OFFSET and PAGE_OFFSET, which is assumed to be 16MiB aligned and
546 * can be expressed by an immediate shifter operand. The stub instruction
547 * has a form of '(add|sub) rd, rn, #imm'.
548 */
549 __HEAD
550__fixup_pv_table:
551 adr r0, 1f
552 ldmia r0, {r3-r5, r7}
553 sub r3, r0, r3 @ PHYS_OFFSET - PAGE_OFFSET
554 add r4, r4, r3 @ adjust table start address
555 add r5, r5, r3 @ adjust table end address
556 add r7, r7, r3 @ adjust __pv_phys_offset address
557 str r8, [r7] @ save computed PHYS_OFFSET to __pv_phys_offset
558 mov r6, r3, lsr #24 @ constant for add/sub instructions
559 teq r3, r6, lsl #24 @ must be 16MiB aligned
560THUMB( it ne @ cross section branch )
561 bne __error
562 str r6, [r7, #4] @ save to __pv_offset
563 b __fixup_a_pv_table
564ENDPROC(__fixup_pv_table)
565
566 .align
5671: .long .
568 .long __pv_table_begin
569 .long __pv_table_end
5702: .long __pv_phys_offset
571
572 .text
573__fixup_a_pv_table:
574#ifdef CONFIG_THUMB2_KERNEL
575 lsls r6, #24
576 beq 2f
577 clz r7, r6
578 lsr r6, #24
579 lsl r6, r7
580 bic r6, #0x0080
581 lsrs r7, #1
582 orrcs r6, #0x0080
583 orr r6, r6, r7, lsl #12
584 orr r6, #0x4000
585 b 2f
5861: add r7, r3
587 ldrh ip, [r7, #2]
588 and ip, 0x8f00
589 orr ip, r6 @ mask in offset bits 31-24
590 strh ip, [r7, #2]
5912: cmp r4, r5
592 ldrcc r7, [r4], #4 @ use branch for delay slot
593 bcc 1b
594 bx lr
595#else
596 b 2f
5971: ldr ip, [r7, r3]
598 bic ip, ip, #0x000000ff
599 orr ip, ip, r6 @ mask in offset bits 31-24
600 str ip, [r7, r3]
6012: cmp r4, r5
602 ldrcc r7, [r4], #4 @ use branch for delay slot
603 bcc 1b
604 mov pc, lr
605#endif
606ENDPROC(__fixup_a_pv_table)
607
608ENTRY(fixup_pv_table)
609 stmfd sp!, {r4 - r7, lr}
610 ldr r2, 2f @ get address of __pv_phys_offset
611 mov r3, #0 @ no offset
612 mov r4, r0 @ r0 = table start
613 add r5, r0, r1 @ r1 = table size
614 ldr r6, [r2, #4] @ get __pv_offset
615 bl __fixup_a_pv_table
616 ldmfd sp!, {r4 - r7, pc}
617ENDPROC(fixup_pv_table)
618
619 .align
6202: .long __pv_phys_offset
621
622 .data
623 .globl __pv_phys_offset
624 .type __pv_phys_offset, %object
625__pv_phys_offset:
626 .long 0
627 .size __pv_phys_offset, . - __pv_phys_offset
628__pv_offset:
629 .long 0
630#endif
631
632#include "head-common.S"