blob: 14c3eb3267b82b83a7c89fb6dad967c6ddfe7fe6 [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001/*
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002 * PowerPC version
3 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
4 * Rewritten by Cort Dougan (cort@cs.nmt.edu) for PReP
5 * Copyright (C) 1996 Cort Dougan <cort@cs.nmt.edu>
6 * Low-level exception handlers and MMU support
7 * rewritten by Paul Mackerras.
8 * Copyright (C) 1996 Paul Mackerras.
9 * MPC8xx modifications by Dan Malek
10 * Copyright (C) 1997 Dan Malek (dmalek@jlc.net).
11 *
12 * This file contains low-level support and setup for PowerPC 8xx
13 * embedded processors, including trap and interrupt dispatch.
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 *
20 */
21
Tim Abbotte7039842009-04-25 22:11:05 -040022#include <linux/init.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100023#include <asm/processor.h>
24#include <asm/page.h>
25#include <asm/mmu.h>
26#include <asm/cache.h>
27#include <asm/pgtable.h>
28#include <asm/cputable.h>
29#include <asm/thread_info.h>
30#include <asm/ppc_asm.h>
31#include <asm/asm-offsets.h>
Stephen Rothwell46f52212010-11-18 15:06:17 +000032#include <asm/ptrace.h>
Al Viro9445aa12016-01-13 23:33:46 -050033#include <asm/export.h>
Christophe Leroy1a210872018-10-19 06:55:06 +000034#include <asm/code-patching-asm.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100035
Christophe Leroy8a23fdec2019-04-30 12:38:50 +000036#include "head_32.h"
37
LEROY Christopheeeba1f72015-04-20 07:54:46 +020038#if CONFIG_TASK_SIZE <= 0x80000000 && CONFIG_PAGE_OFFSET >= 0x80000000
Christophe Leroyc8a12702017-07-12 12:08:47 +020039/* By simply checking Address >= 0x80000000, we know if its a kernel address */
40#define SIMPLE_KERNEL_ADDRESS 1
LEROY Christopheeeba1f72015-04-20 07:54:46 +020041#endif
42
Christophe Leroya3059b02017-07-12 12:08:51 +020043/*
44 * We need an ITLB miss handler for kernel addresses if:
45 * - Either we have modules
46 * - Or we have not pinned the first 8M
47 */
48#if defined(CONFIG_MODULES) || !defined(CONFIG_PIN_TLB_TEXT) || \
49 defined(CONFIG_DEBUG_PAGEALLOC)
50#define ITLB_MISS_KERNEL 1
51#endif
LEROY Christopheeeba1f72015-04-20 07:54:46 +020052
LEROY Christopheac219512014-09-19 10:36:09 +020053/*
54 * Value for the bits that have fixed value in RPN entries.
55 * Also used for tagging DAR for DTLBerror.
56 */
57#define RPN_PATTERN 0x00f0
58
Christophe Leroy4b9142862016-12-07 08:47:28 +010059#define PAGE_SHIFT_512K 19
60#define PAGE_SHIFT_8M 23
61
Tim Abbotte7039842009-04-25 22:11:05 -040062 __HEAD
Kumar Gala748a7682007-09-13 15:42:35 -050063_ENTRY(_stext);
64_ENTRY(_start);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100065
66/* MPC8xx
67 * This port was done on an MBX board with an 860. Right now I only
68 * support an ELF compressed (zImage) boot from EPPC-Bug because the
69 * code there loads up some registers before calling us:
70 * r3: ptr to board info data
71 * r4: initrd_start or if no initrd then 0
72 * r5: initrd_end - unused if r4 is 0
73 * r6: Start of command line string
74 * r7: End of command line string
75 *
76 * I decided to use conditional compilation instead of checking PVR and
77 * adding more processor specific branches around code I don't need.
78 * Since this is an embedded processor, I also appreciate any memory
79 * savings I can get.
80 *
81 * The MPC8xx does not have any BATs, but it supports large page sizes.
82 * We first initialize the MMU to support 8M byte pages, then load one
83 * entry into each of the instruction and data TLBs to map the first
84 * 8M 1:1. I also mapped an additional I/O space 1:1 so we can get to
85 * the "internal" processor registers before MMU_init is called.
86 *
Paul Mackerras14cf11a2005-09-26 16:04:21 +100087 * -- Dan
88 */
89 .globl __start
90__start:
Scott Wood6dece0eb2011-07-25 11:29:33 +000091 mr r31,r3 /* save device tree ptr */
Paul Mackerras14cf11a2005-09-26 16:04:21 +100092
93 /* We have to turn on the MMU right away so we get cache modes
94 * set correctly.
95 */
96 bl initial_mmu
97
98/* We now have the lower 8 Meg mapped into TLB entries, and the caches
99 * ready to work.
100 */
101
102turn_on_mmu:
103 mfmsr r0
104 ori r0,r0,MSR_DR|MSR_IR
105 mtspr SPRN_SRR1,r0
106 lis r0,start_here@h
107 ori r0,r0,start_here@l
108 mtspr SPRN_SRR0,r0
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000109 rfi /* enables MMU */
110
Christophe Leroy8cfe4f52018-11-29 14:07:11 +0000111
112#ifdef CONFIG_PERF_EVENTS
113 .align 4
114
115 .globl itlb_miss_counter
116itlb_miss_counter:
117 .space 4
118
119 .globl dtlb_miss_counter
120dtlb_miss_counter:
121 .space 4
122
123 .globl instruction_counter
124instruction_counter:
125 .space 4
126#endif
127
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000128/* System reset */
Christophe Leroyf3079392016-09-05 08:42:31 +0200129 EXCEPTION(0x100, Reset, system_reset_exception, EXC_XFER_STD)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000130
131/* Machine check */
132 . = 0x200
133MachineCheck:
134 EXCEPTION_PROLOG
135 mfspr r4,SPRN_DAR
136 stw r4,_DAR(r11)
LEROY Christopheac219512014-09-19 10:36:09 +0200137 li r5,RPN_PATTERN
Joakim Tjernlund60e071f2009-11-20 00:21:04 +0000138 mtspr SPRN_DAR,r5 /* Tag DAR, to be used in DTLB Error */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000139 mfspr r5,SPRN_DSISR
140 stw r5,_DSISR(r11)
141 addi r3,r1,STACK_FRAME_OVERHEAD
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000142 EXC_XFER_STD(0x200, machine_check_exception)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000143
144/* Data access exception.
LEROY Christophe749137a2014-09-19 10:36:07 +0200145 * This is "never generated" by the MPC8xx.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000146 */
147 . = 0x300
148DataAccess:
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000149
150/* Instruction access exception.
LEROY Christophe7439b372014-09-19 10:36:06 +0200151 * This is "never generated" by the MPC8xx.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000152 */
153 . = 0x400
154InstructionAccess:
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000155
156/* External interrupt */
157 EXCEPTION(0x500, HardwareInterrupt, do_IRQ, EXC_XFER_LITE)
158
159/* Alignment exception */
160 . = 0x600
161Alignment:
162 EXCEPTION_PROLOG
163 mfspr r4,SPRN_DAR
164 stw r4,_DAR(r11)
LEROY Christopheac219512014-09-19 10:36:09 +0200165 li r5,RPN_PATTERN
Joakim Tjernlund60e071f2009-11-20 00:21:04 +0000166 mtspr SPRN_DAR,r5 /* Tag DAR, to be used in DTLB Error */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000167 mfspr r5,SPRN_DSISR
168 stw r5,_DSISR(r11)
169 addi r3,r1,STACK_FRAME_OVERHEAD
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000170 EXC_XFER_EE(0x600, alignment_exception)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000171
172/* Program check exception */
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000173 EXCEPTION(0x700, ProgramCheck, program_check_exception, EXC_XFER_STD)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000174
175/* No FPU on MPC8xx. This exception is not supposed to happen.
176*/
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000177 EXCEPTION(0x800, FPUnavailable, unknown_exception, EXC_XFER_STD)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000178
179/* Decrementer */
180 EXCEPTION(0x900, Decrementer, timer_interrupt, EXC_XFER_LITE)
181
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000182 EXCEPTION(0xa00, Trap_0a, unknown_exception, EXC_XFER_EE)
183 EXCEPTION(0xb00, Trap_0b, unknown_exception, EXC_XFER_EE)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000184
185/* System call */
186 . = 0xc00
187SystemCall:
188 EXCEPTION_PROLOG
189 EXC_XFER_EE_LITE(0xc00, DoSyscall)
190
191/* Single step - not used on 601 */
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000192 EXCEPTION(0xd00, SingleStep, single_step_exception, EXC_XFER_STD)
193 EXCEPTION(0xe00, Trap_0e, unknown_exception, EXC_XFER_EE)
194 EXCEPTION(0xf00, Trap_0f, unknown_exception, EXC_XFER_EE)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000195
196/* On the MPC8xx, this is a software emulation interrupt. It occurs
197 * for all unimplemented and illegal instructions.
198 */
Christophe Leroyfbbcc3b2017-08-08 13:58:44 +0200199 EXCEPTION(0x1000, SoftEmu, program_check_exception, EXC_XFER_STD)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000200
Christophe Leroyd5f17ee2019-02-21 19:08:51 +0000201/* Called from DataStoreTLBMiss when perf TLB misses events are activated */
202#ifdef CONFIG_PERF_EVENTS
203 patch_site 0f, patch__dtlbmiss_perf
2040: lwz r10, (dtlb_miss_counter - PAGE_OFFSET)@l(0)
205 addi r10, r10, 1
206 stw r10, (dtlb_miss_counter - PAGE_OFFSET)@l(0)
207 mfspr r10, SPRN_SPRG_SCRATCH0
208 mfspr r11, SPRN_SPRG_SCRATCH1
209 rfi
210#endif
211
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000212 . = 0x1100
213/*
214 * For the MPC8xx, this is a software tablewalk to load the instruction
Christophe Leroy6a8f9112018-11-29 14:07:15 +0000215 * TLB. The task switch loads the M_TWB register with the pointer to the first
LEROY Christophecbc130f2014-09-19 10:36:08 +0200216 * level table.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000217 * If we discover there is no second level table (value is zero) or if there
218 * is an invalid pte, we load that into the TLB, which causes another fault
219 * into the TLB Error interrupt where we can handle such problems.
220 * We have to use the MD_xxx registers for the tablewalk because the
221 * equivalent MI_xxx registers only perform the attribute functions.
222 */
LEROY Christophe90883a82015-04-20 07:54:38 +0200223
224#ifdef CONFIG_8xx_CPU15
Christophe Leroy74fabca2018-11-29 14:07:24 +0000225#define INVALIDATE_ADJACENT_PAGES_CPU15(addr) \
226 addi addr, addr, PAGE_SIZE; \
227 tlbie addr; \
228 addi addr, addr, -(PAGE_SIZE << 1); \
229 tlbie addr; \
230 addi addr, addr, PAGE_SIZE
LEROY Christophe90883a82015-04-20 07:54:38 +0200231#else
Christophe Leroy74fabca2018-11-29 14:07:24 +0000232#define INVALIDATE_ADJACENT_PAGES_CPU15(addr)
LEROY Christophe90883a82015-04-20 07:54:38 +0200233#endif
234
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000235InstructionTLBMiss:
Christophe Leroybb9b5a82018-01-12 13:45:21 +0100236 mtspr SPRN_SPRG_SCRATCH0, r10
Christophe Leroy74fabca2018-11-29 14:07:24 +0000237#if defined(ITLB_MISS_KERNEL) || defined(CONFIG_SWAP)
Christophe Leroybb9b5a82018-01-12 13:45:21 +0100238 mtspr SPRN_SPRG_SCRATCH1, r11
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000239#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000240
241 /* If we are faulting a kernel address, we have to use the
242 * kernel page tables.
243 */
Christophe Leroyd1b9f812016-09-16 08:42:04 +0200244 mfspr r10, SPRN_SRR0 /* Get effective address of fault */
Christophe Leroy74fabca2018-11-29 14:07:24 +0000245 INVALIDATE_ADJACENT_PAGES_CPU15(r10)
Christophe Leroy6a8f9112018-11-29 14:07:15 +0000246 mtspr SPRN_MD_EPN, r10
Joakim Tjernlund4afb0be2010-03-02 05:37:10 +0000247 /* Only modules will cause ITLB Misses as we always
248 * pin the first 8MB of kernel memory */
Christophe Leroya3059b02017-07-12 12:08:51 +0200249#ifdef ITLB_MISS_KERNEL
Christophe Leroy74fabca2018-11-29 14:07:24 +0000250 mfcr r11
Christophe Leroya3059b02017-07-12 12:08:51 +0200251#if defined(SIMPLE_KERNEL_ADDRESS) && defined(CONFIG_PIN_TLB_TEXT)
Christophe Leroy74fabca2018-11-29 14:07:24 +0000252 cmpi cr0, r10, 0 /* Address >= 0x80000000 */
Christophe Leroyc8a12702017-07-12 12:08:47 +0200253#else
Christophe Leroy74fabca2018-11-29 14:07:24 +0000254 rlwinm r10, r10, 16, 0xfff8
255 cmpli cr0, r10, PAGE_OFFSET@h
Christophe Leroya3059b02017-07-12 12:08:51 +0200256#ifndef CONFIG_PIN_TLB_TEXT
Christophe Leroye4470bd2019-02-13 16:06:21 +0000257 /* It is assumed that kernel code fits into the first 32M */
2580: cmpli cr7, r10, (PAGE_OFFSET + 0x2000000)@h
Christophe Leroy1a210872018-10-19 06:55:06 +0000259 patch_site 0b, patch__itlbmiss_linmem_top
Christophe Leroya3059b02017-07-12 12:08:51 +0200260#endif
Christophe Leroyc8a12702017-07-12 12:08:47 +0200261#endif
Christophe Leroyd1b9f812016-09-16 08:42:04 +0200262#endif
Christophe Leroy74fabca2018-11-29 14:07:24 +0000263 mfspr r10, SPRN_M_TWB /* Get level 1 table */
Christophe Leroya3059b02017-07-12 12:08:51 +0200264#ifdef ITLB_MISS_KERNEL
265#if defined(SIMPLE_KERNEL_ADDRESS) && defined(CONFIG_PIN_TLB_TEXT)
Christophe Leroy74fabca2018-11-29 14:07:24 +0000266 bge+ 3f
Christophe Leroyc8a12702017-07-12 12:08:47 +0200267#else
268 blt+ 3f
269#endif
Christophe Leroya3059b02017-07-12 12:08:51 +0200270#ifndef CONFIG_PIN_TLB_TEXT
271 blt cr7, ITLBMissLinear
272#endif
Christophe Leroy74fabca2018-11-29 14:07:24 +0000273 rlwinm r10, r10, 0, 20, 31
274 oris r10, r10, (swapper_pg_dir - PAGE_OFFSET)@ha
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002753:
Joakim Tjernlund4afb0be2010-03-02 05:37:10 +0000276#endif
Christophe Leroy74fabca2018-11-29 14:07:24 +0000277 lwz r10, (swapper_pg_dir-PAGE_OFFSET)@l(r10) /* Get level 1 entry */
278 mtspr SPRN_MI_TWC, r10 /* Set segment attributes */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000279
Christophe Leroy74fabca2018-11-29 14:07:24 +0000280 mtspr SPRN_MD_TWC, r10
Christophe Leroy6a8f9112018-11-29 14:07:15 +0000281 mfspr r10, SPRN_MD_TWC
LEROY Christophee0a8e0d2015-04-22 12:06:43 +0200282 lwz r10, 0(r10) /* Get the pte */
Christophe Leroy5af543b2018-11-29 14:07:13 +0000283#ifdef ITLB_MISS_KERNEL
Christophe Leroy74fabca2018-11-29 14:07:24 +0000284 mtcr r11
Christophe Leroy4b9142862016-12-07 08:47:28 +0100285#endif
Christophe Leroycc4ebf5c2018-10-19 06:54:54 +0000286#ifdef CONFIG_SWAP
287 rlwinm r11, r10, 32-5, _PAGE_PRESENT
288 and r11, r11, r10
289 rlwimi r10, r11, 0, _PAGE_PRESENT
290#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000291 /* The Linux PTE won't go exactly into the MMU TLB.
Christophe Leroyde0f9382018-01-12 13:45:31 +0100292 * Software indicator bits 20 and 23 must be clear.
293 * Software indicator bits 22, 24, 25, 26, and 27 must be
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000294 * set. All other Linux PTE bits control the behavior
295 * of the MMU.
296 */
Christophe Leroy74fabca2018-11-29 14:07:24 +0000297 rlwimi r10, r10, 0, 0x0f00 /* Clear bits 20-23 */
298 rlwimi r10, r10, 4, 0x0400 /* Copy _PAGE_EXEC into bit 21 */
299 ori r10, r10, RPN_PATTERN | 0x200 /* Set 22 and 24-27 */
Christophe Leroy2a45add2018-01-12 13:45:19 +0100300 mtspr SPRN_MI_RPN, r10 /* Update TLB entry */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000301
Joakim Tjernlund469d62b2010-03-02 05:37:12 +0000302 /* Restore registers */
Christophe Leroy709cf192018-10-19 06:55:08 +00003030: mfspr r10, SPRN_SPRG_SCRATCH0
Christophe Leroy74fabca2018-11-29 14:07:24 +0000304#if defined(ITLB_MISS_KERNEL) || defined(CONFIG_SWAP)
Christophe Leroycd99ddb2018-01-12 13:45:23 +0100305 mfspr r11, SPRN_SPRG_SCRATCH1
Christophe Leroycd99ddb2018-01-12 13:45:23 +0100306#endif
307 rfi
Christophe Leroy709cf192018-10-19 06:55:08 +0000308 patch_site 0b, patch__itlbmiss_exit_1
309
Christophe Leroycd99ddb2018-01-12 13:45:23 +0100310#ifdef CONFIG_PERF_EVENTS
Christophe Leroy709cf192018-10-19 06:55:08 +0000311 patch_site 0f, patch__itlbmiss_perf
Christophe Leroy8cfe4f52018-11-29 14:07:11 +00003120: lwz r10, (itlb_miss_counter - PAGE_OFFSET)@l(0)
313 addi r10, r10, 1
314 stw r10, (itlb_miss_counter - PAGE_OFFSET)@l(0)
Christophe Leroybb9b5a82018-01-12 13:45:21 +0100315 mfspr r10, SPRN_SPRG_SCRATCH0
Christophe Leroy74fabca2018-11-29 14:07:24 +0000316#if defined(ITLB_MISS_KERNEL) || defined(CONFIG_SWAP)
Christophe Leroybb9b5a82018-01-12 13:45:21 +0100317 mfspr r11, SPRN_SPRG_SCRATCH1
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000318#endif
319 rfi
Christophe Leroy8cfe4f52018-11-29 14:07:11 +0000320#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000321
Christophe Leroyb14fc502018-11-29 14:07:26 +0000322#ifndef CONFIG_PIN_TLB_TEXT
323ITLBMissLinear:
324 mtcr r11
Christophe Leroy8f54a6f2019-02-21 19:08:52 +0000325#if defined(CONFIG_STRICT_KERNEL_RWX) && CONFIG_ETEXT_SHIFT < 23
Christophe Leroyd5f17ee2019-02-21 19:08:51 +0000326 patch_site 0f, patch__itlbmiss_linmem_top8
327
328 mfspr r10, SPRN_SRR0
3290: subis r11, r10, (PAGE_OFFSET - 0x80000000)@ha
330 rlwinm r11, r11, 4, MI_PS8MEG ^ MI_PS512K
331 ori r11, r11, MI_PS512K | MI_SVALID
332 rlwinm r10, r10, 0, 0x0ff80000 /* 8xx supports max 256Mb RAM */
333#else
Christophe Leroyb14fc502018-11-29 14:07:26 +0000334 /* Set 8M byte page and mark it valid */
335 li r11, MI_PS8MEG | MI_SVALID
Christophe Leroyb14fc502018-11-29 14:07:26 +0000336 rlwinm r10, r10, 20, 0x0f800000 /* 8xx supports max 256Mb RAM */
Christophe Leroyd5f17ee2019-02-21 19:08:51 +0000337#endif
338 mtspr SPRN_MI_TWC, r11
Christophe Leroyb14fc502018-11-29 14:07:26 +0000339 ori r10, r10, 0xf0 | MI_SPS16K | _PAGE_SH | _PAGE_DIRTY | \
340 _PAGE_PRESENT
341 mtspr SPRN_MI_RPN, r10 /* Update TLB entry */
342
3430: mfspr r10, SPRN_SPRG_SCRATCH0
344 mfspr r11, SPRN_SPRG_SCRATCH1
345 rfi
346 patch_site 0b, patch__itlbmiss_exit_2
347#endif
348
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000349 . = 0x1200
350DataStoreTLBMiss:
Christophe Leroybb9b5a82018-01-12 13:45:21 +0100351 mtspr SPRN_SPRG_SCRATCH0, r10
352 mtspr SPRN_SPRG_SCRATCH1, r11
Christophe Leroy74fabca2018-11-29 14:07:24 +0000353 mfcr r11
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000354
355 /* If we are faulting a kernel address, we have to use the
356 * kernel page tables.
357 */
Christophe Leroy36eb1542016-09-16 08:42:08 +0200358 mfspr r10, SPRN_MD_EPN
Christophe Leroy74fabca2018-11-29 14:07:24 +0000359 rlwinm r10, r10, 16, 0xfff8
360 cmpli cr0, r10, PAGE_OFFSET@h
Christophe Leroy62f64b42016-05-17 09:02:56 +0200361#ifndef CONFIG_PIN_TLB_IMMR
Christophe Leroy74fabca2018-11-29 14:07:24 +0000362 cmpli cr6, r10, VIRT_IMMR_BASE@h
Christophe Leroybb7f3802016-05-17 09:02:51 +0200363#endif
Christophe Leroye4470bd2019-02-13 16:06:21 +00003640: cmpli cr7, r10, (PAGE_OFFSET + 0x2000000)@h
Christophe Leroy1a210872018-10-19 06:55:06 +0000365 patch_site 0b, patch__dtlbmiss_linmem_top
Christophe Leroy74fabca2018-11-29 14:07:24 +0000366
367 mfspr r10, SPRN_M_TWB /* Get level 1 table */
368 blt+ 3f
Christophe Leroy62f64b42016-05-17 09:02:56 +0200369#ifndef CONFIG_PIN_TLB_IMMR
Christophe Leroy74fabca2018-11-29 14:07:24 +00003700: beq- cr6, DTLBMissIMMR
Christophe Leroy1a210872018-10-19 06:55:06 +0000371 patch_site 0b, patch__dtlbmiss_immr_jmp
Christophe Leroy4badd432016-05-17 09:02:45 +0200372#endif
Christophe Leroy36eb1542016-09-16 08:42:08 +0200373 blt cr7, DTLBMissLinear
Christophe Leroy74fabca2018-11-29 14:07:24 +0000374 rlwinm r10, r10, 0, 20, 31
375 oris r10, r10, (swapper_pg_dir - PAGE_OFFSET)@ha
Paul Mackerras14cf11a2005-09-26 16:04:21 +10003763:
Christophe Leroy74fabca2018-11-29 14:07:24 +0000377 mtcr r11
378 lwz r11, (swapper_pg_dir-PAGE_OFFSET)@l(r10) /* Get level 1 entry */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000379
Christophe Leroy6a8f9112018-11-29 14:07:15 +0000380 mtspr SPRN_MD_TWC, r11
381 mfspr r10, SPRN_MD_TWC
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000382 lwz r10, 0(r10) /* Get the pte */
Christophe Leroy6a8f9112018-11-29 14:07:15 +0000383
Christophe Leroyde0f9382018-01-12 13:45:31 +0100384 /* Insert the Guarded flag into the TWC from the Linux PTE.
385 * It is bit 27 of both the Linux PTE and the TWC (at least
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000386 * I got that right :-). It will be better when we can put
387 * this into the Linux pgd/pmd and load it in the operation
388 * above.
389 */
Christophe Leroyde0f9382018-01-12 13:45:31 +0100390 rlwimi r11, r10, 0, _PAGE_GUARDED
Christophe Leroy2a45add2018-01-12 13:45:19 +0100391 mtspr SPRN_MD_TWC, r11
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000392
Christophe Leroycc4ebf5c2018-10-19 06:54:54 +0000393 /* Both _PAGE_ACCESSED and _PAGE_PRESENT has to be set.
394 * We also need to know if the insn is a load/store, so:
395 * Clear _PAGE_PRESENT and load that which will
396 * trap into DTLB Error with store bit set accordinly.
397 */
398 /* PRESENT=0x1, ACCESSED=0x20
399 * r11 = ((r10 & PRESENT) & ((r10 & ACCESSED) >> 5));
400 * r10 = (r10 & ~PRESENT) | r11;
401 */
402#ifdef CONFIG_SWAP
403 rlwinm r11, r10, 32-5, _PAGE_PRESENT
404 and r11, r11, r10
405 rlwimi r10, r11, 0, _PAGE_PRESENT
406#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000407 /* The Linux PTE won't go exactly into the MMU TLB.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000408 * Software indicator bits 24, 25, 26, and 27 must be
409 * set. All other Linux PTE bits control the behavior
410 * of the MMU.
411 */
LEROY Christophe5ddb75c2015-01-20 10:57:33 +0100412 li r11, RPN_PATTERN
Christophe Leroy4b9142862016-12-07 08:47:28 +0100413 rlwimi r10, r11, 0, 24, 27 /* Set 24-27 */
Christophe Leroy2a45add2018-01-12 13:45:19 +0100414 mtspr SPRN_MD_RPN, r10 /* Update TLB entry */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000415
Joakim Tjernlund469d62b2010-03-02 05:37:12 +0000416 /* Restore registers */
LEROY Christophe92625d42014-08-29 11:14:37 +0200417 mtspr SPRN_DAR, r11 /* Tag DAR */
Christophe Leroy709cf192018-10-19 06:55:08 +0000418
4190: mfspr r10, SPRN_SPRG_SCRATCH0
Christophe Leroycd99ddb2018-01-12 13:45:23 +0100420 mfspr r11, SPRN_SPRG_SCRATCH1
Christophe Leroycd99ddb2018-01-12 13:45:23 +0100421 rfi
Christophe Leroy709cf192018-10-19 06:55:08 +0000422 patch_site 0b, patch__dtlbmiss_exit_1
423
Christophe Leroyb14fc502018-11-29 14:07:26 +0000424DTLBMissIMMR:
425 mtcr r11
426 /* Set 512k byte guarded page and mark it valid */
427 li r10, MD_PS512K | MD_GUARDED | MD_SVALID
428 mtspr SPRN_MD_TWC, r10
429 mfspr r10, SPRN_IMMR /* Get current IMMR */
430 rlwinm r10, r10, 0, 0xfff80000 /* Get 512 kbytes boundary */
431 ori r10, r10, 0xf0 | MD_SPS16K | _PAGE_SH | _PAGE_DIRTY | \
432 _PAGE_PRESENT | _PAGE_NO_CACHE
433 mtspr SPRN_MD_RPN, r10 /* Update TLB entry */
434
435 li r11, RPN_PATTERN
436 mtspr SPRN_DAR, r11 /* Tag DAR */
437
4380: mfspr r10, SPRN_SPRG_SCRATCH0
439 mfspr r11, SPRN_SPRG_SCRATCH1
440 rfi
441 patch_site 0b, patch__dtlbmiss_exit_2
442
443DTLBMissLinear:
444 mtcr r11
Christophe Leroyd5f17ee2019-02-21 19:08:51 +0000445 rlwinm r10, r10, 20, 0x0f800000 /* 8xx supports max 256Mb RAM */
Christophe Leroy8f54a6f2019-02-21 19:08:52 +0000446#if defined(CONFIG_STRICT_KERNEL_RWX) && CONFIG_DATA_SHIFT < 23
Christophe Leroyd5f17ee2019-02-21 19:08:51 +0000447 patch_site 0f, patch__dtlbmiss_romem_top8
448
4490: subis r11, r10, (PAGE_OFFSET - 0x80000000)@ha
450 rlwinm r11, r11, 0, 0xff800000
451 neg r10, r11
452 or r11, r11, r10
453 rlwinm r11, r11, 4, MI_PS8MEG ^ MI_PS512K
454 ori r11, r11, MI_PS512K | MI_SVALID
455 mfspr r10, SPRN_MD_EPN
456 rlwinm r10, r10, 0, 0x0ff80000 /* 8xx supports max 256Mb RAM */
457#else
Christophe Leroyb14fc502018-11-29 14:07:26 +0000458 /* Set 8M byte page and mark it valid */
459 li r11, MD_PS8MEG | MD_SVALID
Christophe Leroyd5f17ee2019-02-21 19:08:51 +0000460#endif
Christophe Leroyb14fc502018-11-29 14:07:26 +0000461 mtspr SPRN_MD_TWC, r11
Christophe Leroyd5f17ee2019-02-21 19:08:51 +0000462#ifdef CONFIG_STRICT_KERNEL_RWX
463 patch_site 0f, patch__dtlbmiss_romem_top
464
4650: subis r11, r10, 0
466 rlwimi r10, r11, 11, _PAGE_RO
467#endif
Christophe Leroyb14fc502018-11-29 14:07:26 +0000468 ori r10, r10, 0xf0 | MD_SPS16K | _PAGE_SH | _PAGE_DIRTY | \
469 _PAGE_PRESENT
470 mtspr SPRN_MD_RPN, r10 /* Update TLB entry */
471
472 li r11, RPN_PATTERN
473 mtspr SPRN_DAR, r11 /* Tag DAR */
474
4750: mfspr r10, SPRN_SPRG_SCRATCH0
476 mfspr r11, SPRN_SPRG_SCRATCH1
477 rfi
478 patch_site 0b, patch__dtlbmiss_exit_3
479
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000480/* This is an instruction TLB error on the MPC8xx. This could be due
481 * to many reasons, such as executing guarded memory or illegal instruction
482 * addresses. There is nothing to do but handle a big time error fault.
483 */
484 . = 0x1300
485InstructionTLBError:
LEROY Christophe5ddb75c2015-01-20 10:57:33 +0100486 EXCEPTION_PROLOG
LEROY Christophe7439b372014-09-19 10:36:06 +0200487 mr r4,r12
Benjamin Herrenschmidtb4c001d2017-07-19 14:49:28 +1000488 andis. r5,r9,DSISR_SRR1_MATCH_32S@h /* Filter relevant SRR1 bits */
489 andis. r10,r9,SRR1_ISI_NOPT@h
Christophe Leroy32ceaa62018-12-13 08:08:11 +0000490 beq+ .Litlbie
LEROY Christophec51a68212014-09-19 10:36:10 +0200491 tlbie r4
LEROY Christophe7439b372014-09-19 10:36:06 +0200492 /* 0x400 is InstructionAccess exception, needed by bad_page_fault() */
Christophe Leroy32ceaa62018-12-13 08:08:11 +0000493.Litlbie:
494 EXC_XFER_LITE(0x400, handle_page_fault)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000495
496/* This is the data TLB error on the MPC8xx. This could be due to
LEROY Christophe140a6a62014-08-29 11:14:38 +0200497 * many reasons, including a dirty update to a pte. We bail out to
498 * a higher level function that can handle it.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000499 */
500 . = 0x1400
501DataTLBError:
Christophe Leroybb9b5a82018-01-12 13:45:21 +0100502 mtspr SPRN_SPRG_SCRATCH0, r10
503 mtspr SPRN_SPRG_SCRATCH1, r11
LEROY Christophed5fd9d72015-04-20 07:54:40 +0200504 mfcr r10
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000505
LEROY Christophe5bcbe242014-08-29 11:14:38 +0200506 mfspr r11, SPRN_DAR
LEROY Christopheac219512014-09-19 10:36:09 +0200507 cmpwi cr0, r11, RPN_PATTERN
Joakim Tjernlund0a2ab512009-11-20 00:21:06 +0000508 beq- FixupDAR /* must be a buggy dcbX, icbi insn. */
LEROY Christophe3e436402014-08-29 11:14:37 +0200509DARFixed:/* Return from dcbx instruction bug workaround */
LEROY Christophe6cde2b62014-09-19 10:36:08 +0200510 EXCEPTION_PROLOG_1
511 EXCEPTION_PROLOG_2
LEROY Christophec51a68212014-09-19 10:36:10 +0200512 mfspr r5,SPRN_DSISR
513 stw r5,_DSISR(r11)
LEROY Christophe749137a2014-09-19 10:36:07 +0200514 mfspr r4,SPRN_DAR
Christophe Leroy49153492017-08-08 13:59:00 +0200515 andis. r10,r5,DSISR_NOHPTE@h
Christophe Leroy32ceaa62018-12-13 08:08:11 +0000516 beq+ .Ldtlbie
LEROY Christophec51a68212014-09-19 10:36:10 +0200517 tlbie r4
Christophe Leroy32ceaa62018-12-13 08:08:11 +0000518.Ldtlbie:
519 li r10,RPN_PATTERN
LEROY Christophe749137a2014-09-19 10:36:07 +0200520 mtspr SPRN_DAR,r10 /* Tag DAR, to be used in DTLB Error */
521 /* 0x300 is DataAccess exception, needed by bad_page_fault() */
522 EXC_XFER_LITE(0x300, handle_page_fault)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000523
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000524 EXCEPTION(0x1500, Trap_15, unknown_exception, EXC_XFER_EE)
525 EXCEPTION(0x1600, Trap_16, unknown_exception, EXC_XFER_EE)
526 EXCEPTION(0x1700, Trap_17, unknown_exception, EXC_XFER_EE)
527 EXCEPTION(0x1800, Trap_18, unknown_exception, EXC_XFER_EE)
528 EXCEPTION(0x1900, Trap_19, unknown_exception, EXC_XFER_EE)
529 EXCEPTION(0x1a00, Trap_1a, unknown_exception, EXC_XFER_EE)
530 EXCEPTION(0x1b00, Trap_1b, unknown_exception, EXC_XFER_EE)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000531
532/* On the MPC8xx, these next four traps are used for development
533 * support of breakpoints and such. Someday I will get around to
534 * using them.
535 */
Christophe Leroy4ad86222016-11-29 09:52:15 +0100536 . = 0x1c00
537DataBreakpoint:
Christophe Leroybb9b5a82018-01-12 13:45:21 +0100538 mtspr SPRN_SPRG_SCRATCH0, r10
539 mtspr SPRN_SPRG_SCRATCH1, r11
Christophe Leroy4ad86222016-11-29 09:52:15 +0100540 mfcr r10
541 mfspr r11, SPRN_SRR0
Christophe Leroy32ceaa62018-12-13 08:08:11 +0000542 cmplwi cr0, r11, (.Ldtlbie - PAGE_OFFSET)@l
543 cmplwi cr7, r11, (.Litlbie - PAGE_OFFSET)@l
Christophe Leroy4ad86222016-11-29 09:52:15 +0100544 beq- cr0, 11f
545 beq- cr7, 11f
546 EXCEPTION_PROLOG_1
547 EXCEPTION_PROLOG_2
548 addi r3,r1,STACK_FRAME_OVERHEAD
549 mfspr r4,SPRN_BAR
550 stw r4,_DAR(r11)
551 mfspr r5,SPRN_DSISR
552 EXC_XFER_EE(0x1c00, do_break)
55311:
554 mtcr r10
Christophe Leroybb9b5a82018-01-12 13:45:21 +0100555 mfspr r10, SPRN_SPRG_SCRATCH0
556 mfspr r11, SPRN_SPRG_SCRATCH1
Christophe Leroy4ad86222016-11-29 09:52:15 +0100557 rfi
558
Christophe Leroycd99ddb2018-01-12 13:45:23 +0100559#ifdef CONFIG_PERF_EVENTS
Christophe Leroy75b82472016-12-15 13:42:18 +0100560 . = 0x1d00
561InstructionBreakpoint:
Christophe Leroybb9b5a82018-01-12 13:45:21 +0100562 mtspr SPRN_SPRG_SCRATCH0, r10
Christophe Leroy8cfe4f52018-11-29 14:07:11 +0000563 lwz r10, (instruction_counter - PAGE_OFFSET)@l(0)
564 addi r10, r10, -1
565 stw r10, (instruction_counter - PAGE_OFFSET)@l(0)
Christophe Leroy75b82472016-12-15 13:42:18 +0100566 lis r10, 0xffff
567 ori r10, r10, 0x01
568 mtspr SPRN_COUNTA, r10
Christophe Leroybb9b5a82018-01-12 13:45:21 +0100569 mfspr r10, SPRN_SPRG_SCRATCH0
Christophe Leroy75b82472016-12-15 13:42:18 +0100570 rfi
571#else
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000572 EXCEPTION(0x1d00, Trap_1d, unknown_exception, EXC_XFER_EE)
Christophe Leroy75b82472016-12-15 13:42:18 +0100573#endif
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000574 EXCEPTION(0x1e00, Trap_1e, unknown_exception, EXC_XFER_EE)
575 EXCEPTION(0x1f00, Trap_1f, unknown_exception, EXC_XFER_EE)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000576
577 . = 0x2000
578
Joakim Tjernlund0a2ab512009-11-20 00:21:06 +0000579/* This is the procedure to calculate the data EA for buggy dcbx,dcbi instructions
580 * by decoding the registers used by the dcbx instruction and adding them.
LEROY Christophe3e436402014-08-29 11:14:37 +0200581 * DAR is set to the calculated address.
Joakim Tjernlund0a2ab512009-11-20 00:21:06 +0000582 */
583 /* define if you don't want to use self modifying code */
584#define NO_SELF_MODIFYING_CODE
585FixupDAR:/* Entry point for dcbx workaround. */
Christophe Leroy74fabca2018-11-29 14:07:24 +0000586 mtspr SPRN_M_TW, r10
Joakim Tjernlund0a2ab512009-11-20 00:21:06 +0000587 /* fetch instruction from memory. */
588 mfspr r10, SPRN_SRR0
Christophe Leroy6a8f9112018-11-29 14:07:15 +0000589 mtspr SPRN_MD_EPN, r10
Christophe Leroyc8a12702017-07-12 12:08:47 +0200590 rlwinm r11, r10, 16, 0xfff8
591 cmpli cr0, r11, PAGE_OFFSET@h
Christophe Leroy6a8f9112018-11-29 14:07:15 +0000592 mfspr r11, SPRN_M_TWB /* Get level 1 table */
Christophe Leroyc8a12702017-07-12 12:08:47 +0200593 blt+ 3f
Christophe Leroybb7f3802016-05-17 09:02:51 +0200594 rlwinm r11, r10, 16, 0xfff8
Christophe Leroy1a210872018-10-19 06:55:06 +0000595
5960: cmpli cr7, r11, (PAGE_OFFSET + 0x1800000)@h
597 patch_site 0b, patch__fixupdar_linmem_top
598
Christophe Leroy36eb1542016-09-16 08:42:08 +0200599 /* create physical page address from effective address */
600 tophys(r11, r10)
601 blt- cr7, 201f
Christophe Leroy6a8f9112018-11-29 14:07:15 +0000602 mfspr r11, SPRN_M_TWB /* Get level 1 table */
603 rlwinm r11, r11, 0, 20, 31
604 oris r11, r11, (swapper_pg_dir - PAGE_OFFSET)@ha
6053:
LEROY Christophefde5a902015-01-20 10:57:34 +0100606 lwz r11, (swapper_pg_dir-PAGE_OFFSET)@l(r11) /* Get the level 1 entry */
Christophe Leroy6a8f9112018-11-29 14:07:15 +0000607 mtspr SPRN_MD_TWC, r11
Christophe Leroy4b9142862016-12-07 08:47:28 +0100608 mtcr r11
Christophe Leroy6a8f9112018-11-29 14:07:15 +0000609 mfspr r11, SPRN_MD_TWC
610 lwz r11, 0(r11) /* Get the pte */
Christophe Leroy4b9142862016-12-07 08:47:28 +0100611 bt 28,200f /* bit 28 = Large page (8M) */
612 bt 29,202f /* bit 29 = Large page (8M or 512K) */
Joakim Tjernlund0a2ab512009-11-20 00:21:06 +0000613 /* concat physical page address(r11) and page offset(r10) */
LEROY Christophed1406802014-09-19 10:36:09 +0200614 rlwimi r11, r10, 0, 32 - PAGE_SHIFT, 31
Christophe Leroya372acf2016-02-09 17:07:50 +0100615201: lwz r11,0(r11)
Joakim Tjernlund0a2ab512009-11-20 00:21:06 +0000616/* Check if it really is a dcbx instruction. */
617/* dcbt and dcbtst does not generate DTLB Misses/Errors,
618 * no need to include them here */
LEROY Christophe41cacac2014-08-29 11:14:38 +0200619 xoris r10, r11, 0x7c00 /* check if major OP code is 31 */
620 rlwinm r10, r10, 0, 21, 5
Joakim Tjernlund0a2ab512009-11-20 00:21:06 +0000621 cmpwi cr0, r10, 2028 /* Is dcbz? */
622 beq+ 142f
623 cmpwi cr0, r10, 940 /* Is dcbi? */
624 beq+ 142f
625 cmpwi cr0, r10, 108 /* Is dcbst? */
626 beq+ 144f /* Fix up store bit! */
627 cmpwi cr0, r10, 172 /* Is dcbf? */
628 beq+ 142f
629 cmpwi cr0, r10, 1964 /* Is icbi? */
630 beq+ 142f
Christophe Leroy74fabca2018-11-29 14:07:24 +0000631141: mfspr r10,SPRN_M_TW
LEROY Christophe5bcbe242014-08-29 11:14:38 +0200632 b DARFixed /* Nope, go back to normal TLB processing */
Joakim Tjernlund0a2ab512009-11-20 00:21:06 +0000633
Christophe Leroy4b9142862016-12-07 08:47:28 +0100634200:
Christophe Leroy4b9142862016-12-07 08:47:28 +0100635 /* concat physical page address(r11) and page offset(r10) */
636 rlwimi r11, r10, 0, 32 - PAGE_SHIFT_8M, 31
637 b 201b
638
639202:
Christophe Leroy4b9142862016-12-07 08:47:28 +0100640 /* concat physical page address(r11) and page offset(r10) */
641 rlwimi r11, r10, 0, 32 - PAGE_SHIFT_512K, 31
642 b 201b
643
Joakim Tjernlund0a2ab512009-11-20 00:21:06 +0000644144: mfspr r10, SPRN_DSISR
645 rlwinm r10, r10,0,7,5 /* Clear store bit for buggy dcbst insn */
646 mtspr SPRN_DSISR, r10
647142: /* continue, it was a dcbx, dcbi instruction. */
Joakim Tjernlund0a2ab512009-11-20 00:21:06 +0000648#ifndef NO_SELF_MODIFYING_CODE
649 andis. r10,r11,0x1f /* test if reg RA is r0 */
650 li r10,modified_instr@l
651 dcbtst r0,r10 /* touch for store */
652 rlwinm r11,r11,0,0,20 /* Zero lower 10 bits */
653 oris r11,r11,640 /* Transform instr. to a "add r10,RA,RB" */
654 ori r11,r11,532
655 stw r11,0(r10) /* store add/and instruction */
656 dcbf 0,r10 /* flush new instr. to memory. */
657 icbi 0,r10 /* invalidate instr. cache line */
LEROY Christophe92625d42014-08-29 11:14:37 +0200658 mfspr r11, SPRN_SPRG_SCRATCH1 /* restore r11 */
659 mfspr r10, SPRN_SPRG_SCRATCH0 /* restore r10 */
Joakim Tjernlund0a2ab512009-11-20 00:21:06 +0000660 isync /* Wait until new instr is loaded from memory */
661modified_instr:
662 .space 4 /* this is where the add instr. is stored */
663 bne+ 143f
664 subf r10,r0,r10 /* r10=r10-r0, only if reg RA is r0 */
665143: mtdar r10 /* store faulting EA in DAR */
Christophe Leroy74fabca2018-11-29 14:07:24 +0000666 mfspr r10,SPRN_M_TW
Joakim Tjernlund0a2ab512009-11-20 00:21:06 +0000667 b DARFixed /* Go back to normal TLB handling */
668#else
669 mfctr r10
670 mtdar r10 /* save ctr reg in DAR */
671 rlwinm r10, r11, 24, 24, 28 /* offset into jump table for reg RB */
672 addi r10, r10, 150f@l /* add start of table */
673 mtctr r10 /* load ctr with jump address */
674 xor r10, r10, r10 /* sum starts at zero */
675 bctr /* jump into table */
676150:
677 add r10, r10, r0 ;b 151f
678 add r10, r10, r1 ;b 151f
679 add r10, r10, r2 ;b 151f
680 add r10, r10, r3 ;b 151f
681 add r10, r10, r4 ;b 151f
682 add r10, r10, r5 ;b 151f
683 add r10, r10, r6 ;b 151f
684 add r10, r10, r7 ;b 151f
685 add r10, r10, r8 ;b 151f
686 add r10, r10, r9 ;b 151f
687 mtctr r11 ;b 154f /* r10 needs special handling */
688 mtctr r11 ;b 153f /* r11 needs special handling */
689 add r10, r10, r12 ;b 151f
690 add r10, r10, r13 ;b 151f
691 add r10, r10, r14 ;b 151f
692 add r10, r10, r15 ;b 151f
693 add r10, r10, r16 ;b 151f
694 add r10, r10, r17 ;b 151f
695 add r10, r10, r18 ;b 151f
696 add r10, r10, r19 ;b 151f
697 add r10, r10, r20 ;b 151f
698 add r10, r10, r21 ;b 151f
699 add r10, r10, r22 ;b 151f
700 add r10, r10, r23 ;b 151f
701 add r10, r10, r24 ;b 151f
702 add r10, r10, r25 ;b 151f
703 add r10, r10, r26 ;b 151f
704 add r10, r10, r27 ;b 151f
705 add r10, r10, r28 ;b 151f
706 add r10, r10, r29 ;b 151f
707 add r10, r10, r30 ;b 151f
708 add r10, r10, r31
709151:
710 rlwinm. r11,r11,19,24,28 /* offset into jump table for reg RA */
711 beq 152f /* if reg RA is zero, don't add it */
712 addi r11, r11, 150b@l /* add start of table */
713 mtctr r11 /* load ctr with jump address */
714 rlwinm r11,r11,0,16,10 /* make sure we don't execute this more than once */
715 bctr /* jump into table */
716152:
717 mfdar r11
718 mtctr r11 /* restore ctr reg from DAR */
719 mtdar r10 /* save fault EA to DAR */
Christophe Leroy74fabca2018-11-29 14:07:24 +0000720 mfspr r10,SPRN_M_TW
Joakim Tjernlund0a2ab512009-11-20 00:21:06 +0000721 b DARFixed /* Go back to normal TLB handling */
722
723 /* special handling for r10,r11 since these are modified already */
LEROY Christophe92625d42014-08-29 11:14:37 +0200724153: mfspr r11, SPRN_SPRG_SCRATCH1 /* load r11 from SPRN_SPRG_SCRATCH1 */
LEROY Christophe111e32b2014-08-29 11:14:39 +0200725 add r10, r10, r11 /* add it */
726 mfctr r11 /* restore r11 */
727 b 151b
LEROY Christophe92625d42014-08-29 11:14:37 +0200728154: mfspr r11, SPRN_SPRG_SCRATCH0 /* load r10 from SPRN_SPRG_SCRATCH0 */
LEROY Christophe111e32b2014-08-29 11:14:39 +0200729 add r10, r10, r11 /* add it */
Joakim Tjernlund0a2ab512009-11-20 00:21:06 +0000730 mfctr r11 /* restore r11 */
731 b 151b
732#endif
733
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000734/*
735 * This is where the main kernel code starts.
736 */
737start_here:
738 /* ptr to current */
739 lis r2,init_task@h
740 ori r2,r2,init_task@l
741
742 /* ptr to phys current thread */
743 tophys(r4,r2)
744 addi r4,r4,THREAD /* init task's THREAD */
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000745 mtspr SPRN_SPRG_THREAD,r4
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000746
747 /* stack */
748 lis r1,init_thread_union@ha
749 addi r1,r1,init_thread_union@l
750 li r0,0
751 stwu r0,THREAD_SIZE-STACK_FRAME_OVERHEAD(r1)
752
Christophe Leroy8c8c10b2018-07-13 13:10:47 +0000753 lis r6, swapper_pg_dir@ha
754 tophys(r6,r6)
Christophe Leroy6a8f9112018-11-29 14:07:15 +0000755 mtspr SPRN_M_TWB, r6
Christophe Leroy8c8c10b2018-07-13 13:10:47 +0000756
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000757 bl early_init /* We have to do this with MMU on */
758
759/*
760 * Decide what sort of machine this is and initialize the MMU.
761 */
Christophe Leroy2edb16e2019-04-26 16:23:34 +0000762#ifdef CONFIG_KASAN
763 bl kasan_early_init
764#endif
Scott Wood6dece0eb2011-07-25 11:29:33 +0000765 li r3,0
766 mr r4,r31
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000767 bl machine_init
768 bl MMU_init
769
770/*
771 * Go back to running unmapped so we can load up new values
772 * and change to using our exception vectors.
773 * On the 8xx, all we have to do is invalidate the TLB to clear
774 * the old 8M byte TLB mappings and load the page table base register.
775 */
776 /* The right way to do this would be to track it down through
777 * init's THREAD like the context switch code does, but this is
778 * easier......until someone changes init's static structures.
779 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000780 lis r4,2f@h
781 ori r4,r4,2f@l
782 tophys(r4,r4)
783 li r3,MSR_KERNEL & ~(MSR_IR|MSR_DR)
784 mtspr SPRN_SRR0,r4
785 mtspr SPRN_SRR1,r3
786 rfi
787/* Load up the kernel context */
7882:
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000789 tlbia /* Clear all TLB entries */
790 sync /* wait for tlbia/tlbie to finish */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000791
792 /* set up the PTE pointers for the Abatron bdiGDB.
793 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000794 lis r5, abatron_pteptrs@h
795 ori r5, r5, abatron_pteptrs@l
Christophe Leroye4ccb1d2018-05-24 11:02:06 +0000796 stw r5, 0xf0(0) /* Must match your Abatron config file */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000797 tophys(r5,r5)
Christophe Leroyfb0bdec2019-01-09 20:30:07 +0000798 lis r6, swapper_pg_dir@h
799 ori r6, r6, swapper_pg_dir@l
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000800 stw r6, 0(r5)
801
802/* Now turn on the MMU for real! */
803 li r4,MSR_KERNEL
804 lis r3,start_kernel@h
805 ori r3,r3,start_kernel@l
806 mtspr SPRN_SRR0,r3
807 mtspr SPRN_SRR1,r4
808 rfi /* enable MMU and jump to start_kernel */
809
810/* Set up the initial MMU state so we can do the first level of
811 * kernel initialization. This maps the first 8 MBytes of memory 1:1
812 * virtual to physical. Also, set the cache mode since that is defined
813 * by TLB entries and perform any additional mapping (like of the IMMR).
814 * If configured to pin some TLBs, we pin the first 8 Mbytes of kernel,
Christophe Leroyf86ef742016-05-17 09:02:43 +0200815 * 24 Mbytes of data, and the 512k IMMR space. Anything not covered by
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000816 * these mappings is mapped by page tables.
817 */
818initial_mmu:
Christophe Leroy6264dbb2016-05-17 09:02:49 +0200819 li r8, 0
820 mtspr SPRN_MI_CTR, r8 /* remove PINNED ITLB entries */
821 lis r10, MD_RESETVAL@h
822#ifndef CONFIG_8xx_COPYBACK
823 oris r10, r10, MD_WTDEF@h
824#endif
825 mtspr SPRN_MD_CTR, r10 /* remove PINNED DTLB entries */
826
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000827 tlbia /* Invalidate all TLB entries */
Christophe Leroya3059b02017-07-12 12:08:51 +0200828#ifdef CONFIG_PIN_TLB_DATA
Christophe Leroy6264dbb2016-05-17 09:02:49 +0200829 oris r10, r10, MD_RSV4I@h
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000830 mtspr SPRN_MD_CTR, r10 /* Set data TLB control */
Christophe Leroy6264dbb2016-05-17 09:02:49 +0200831#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000832
LEROY Christophe5b2753f2015-04-22 12:06:45 +0200833 lis r8, MI_APG_INIT@h /* Set protection modes */
834 ori r8, r8, MI_APG_INIT@l
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000835 mtspr SPRN_MI_AP, r8
LEROY Christophe5b2753f2015-04-22 12:06:45 +0200836 lis r8, MD_APG_INIT@h
837 ori r8, r8, MD_APG_INIT@l
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000838 mtspr SPRN_MD_AP, r8
839
Christophe Leroyf86ef742016-05-17 09:02:43 +0200840 /* Map a 512k page for the IMMR to get the processor
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000841 * internal registers (among other things).
842 */
Christophe Leroy62f64b42016-05-17 09:02:56 +0200843#ifdef CONFIG_PIN_TLB_IMMR
Christophe Leroya3059b02017-07-12 12:08:51 +0200844 oris r10, r10, MD_RSV4I@h
Christophe Leroy62f64b42016-05-17 09:02:56 +0200845 ori r10, r10, 0x1c00
846 mtspr SPRN_MD_CTR, r10
847
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000848 mfspr r9, 638 /* Get current IMMR */
Christophe Leroyf86ef742016-05-17 09:02:43 +0200849 andis. r9, r9, 0xfff8 /* Get 512 kbytes boundary */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000850
Christophe Leroyf86ef742016-05-17 09:02:43 +0200851 lis r8, VIRT_IMMR_BASE@h /* Create vaddr for TLB */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000852 ori r8, r8, MD_EVALID /* Mark it valid */
853 mtspr SPRN_MD_EPN, r8
Christophe Leroyf86ef742016-05-17 09:02:43 +0200854 li r8, MD_PS512K | MD_GUARDED /* Set 512k byte page */
Christophe Leroycc4ebf5c2018-10-19 06:54:54 +0000855 ori r8, r8, MD_SVALID /* Make it valid */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000856 mtspr SPRN_MD_TWC, r8
857 mr r8, r9 /* Create paddr for TLB */
858 ori r8, r8, MI_BOOTINIT|0x2 /* Inhibit cache -- Cort */
859 mtspr SPRN_MD_RPN, r8
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000860#endif
861
Christophe Leroye4470bd2019-02-13 16:06:21 +0000862 /* Now map the lower RAM (up to 32 Mbytes) into the ITLB. */
863#ifdef CONFIG_PIN_TLB_TEXT
864 lis r8, MI_RSV4I@h
865 ori r8, r8, 0x1c00
866#endif
867 li r9, 4 /* up to 4 pages of 8M */
868 mtctr r9
869 lis r9, KERNELBASE@h /* Create vaddr for TLB */
870 li r10, MI_PS8MEG | MI_SVALID /* Set 8M byte page */
871 li r11, MI_BOOTINIT /* Create RPN for address 0 */
872 lis r12, _einittext@h
873 ori r12, r12, _einittext@l
8741:
875#ifdef CONFIG_PIN_TLB_TEXT
876 mtspr SPRN_MI_CTR, r8 /* Set instruction MMU control */
877 addi r8, r8, 0x100
878#endif
879
880 ori r0, r9, MI_EVALID /* Mark it valid */
881 mtspr SPRN_MI_EPN, r0
882 mtspr SPRN_MI_TWC, r10
883 mtspr SPRN_MI_RPN, r11 /* Store TLB entry */
884 addis r9, r9, 0x80
885 addis r11, r11, 0x80
886
887 cmpl cr0, r9, r12
888 bdnzf gt, 1b
889
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000890 /* Since the cache is enabled according to the information we
891 * just loaded into the TLB, invalidate and enable the caches here.
892 * We should probably check/set other modes....later.
893 */
894 lis r8, IDC_INVALL@h
895 mtspr SPRN_IC_CST, r8
896 mtspr SPRN_DC_CST, r8
897 lis r8, IDC_ENABLE@h
898 mtspr SPRN_IC_CST, r8
899#ifdef CONFIG_8xx_COPYBACK
900 mtspr SPRN_DC_CST, r8
901#else
902 /* For a debug option, I left this here to easily enable
903 * the write through cache mode
904 */
905 lis r8, DC_SFWT@h
906 mtspr SPRN_DC_CST, r8
907 lis r8, IDC_ENABLE@h
908 mtspr SPRN_DC_CST, r8
909#endif
Christophe Leroy75b82472016-12-15 13:42:18 +0100910 /* Disable debug mode entry on breakpoints */
Christophe Leroy4ad86222016-11-29 09:52:15 +0100911 mfspr r8, SPRN_DER
Christophe Leroycd99ddb2018-01-12 13:45:23 +0100912#ifdef CONFIG_PERF_EVENTS
Christophe Leroy75b82472016-12-15 13:42:18 +0100913 rlwinm r8, r8, 0, ~0xc
914#else
Christophe Leroy4ad86222016-11-29 09:52:15 +0100915 rlwinm r8, r8, 0, ~0x8
Christophe Leroy75b82472016-12-15 13:42:18 +0100916#endif
Christophe Leroy4ad86222016-11-29 09:52:15 +0100917 mtspr SPRN_DER, r8
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000918 blr
919
920
921/*
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000922 * We put a few things here that have to be page-aligned.
923 * This stuff goes at the beginning of the data segment,
924 * which is page-aligned.
925 */
926 .data
927 .globl sdata
928sdata:
929 .globl empty_zero_page
LEROY Christophed1406802014-09-19 10:36:09 +0200930 .align PAGE_SHIFT
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000931empty_zero_page:
LEROY Christophed1406802014-09-19 10:36:09 +0200932 .space PAGE_SIZE
Al Viro9445aa12016-01-13 23:33:46 -0500933EXPORT_SYMBOL(empty_zero_page)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000934
935 .globl swapper_pg_dir
936swapper_pg_dir:
LEROY Christophed1406802014-09-19 10:36:09 +0200937 .space PGD_TABLE_SIZE
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000938
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000939/* Room for two PTE table poiners, usually the kernel and current user
940 * pointer to their respective root page table (pgdir).
941 */
Christophe Leroy40058332019-02-21 10:37:53 +0000942 .globl abatron_pteptrs
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000943abatron_pteptrs:
944 .space 8