head.S 15 KB

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