40
40
41
41
#include "head_32.h"
42
42
43
- .macro compare_to_kernel_boundary scratch, addr
44
- #if CONFIG_TASK_SIZE <= 0x80000000 && CONFIG_PAGE_OFFSET > = 0x80000000
45
- /* By simply checking Address >= 0x80000000, we know if its a kernel address */
46
- not . \scratch, \addr
47
- #else
48
- rlwinm \scratch, \addr, 16 , 0xfff8
49
- cmpli cr0, \scratch, PAGE_OFFSET@h
50
- #endif
51
- .endm
52
-
53
43
#define PAGE_SHIFT_512K 19
54
44
#define PAGE_SHIFT_8M 23
55
45
@@ -199,18 +189,7 @@ instruction_counter:
199
189
mfspr r10, SPRN_SRR0 /* Get effective address of fault */
200
190
INVALIDATE_ADJACENT_PAGES_CPU15(r10, r11)
201
191
mtspr SPRN_MD_EPN, r10
202
- #ifdef CONFIG_EXECMEM
203
- mfcr r11
204
- compare_to_kernel_boundary r10, r10
205
- #endif
206
192
mfspr r10, SPRN_M_TWB /* Get level 1 table */
207
- #ifdef CONFIG_EXECMEM
208
- blt+ 3f
209
- rlwinm r10, r10, 0 , 20 , 31
210
- oris r10, r10, (swapper_pg_dir - PAGE_OFFSET)@ha
211
- 3:
212
- mtcr r11
213
- #endif
214
193
lwz r11, (swapper_pg_dir-PAGE_OFFSET)@l(r10) /* Get level 1 entry */
215
194
mtspr SPRN_MD_TWC, r11
216
195
mfspr r10, SPRN_MD_TWC
@@ -248,19 +227,12 @@ instruction_counter:
248
227
START_EXCEPTION(INTERRUPT_DATA_TLB_MISS_8xx, DataStoreTLBMiss)
249
228
mtspr SPRN_SPRG_SCRATCH2, r10
250
229
mtspr SPRN_M_TW, r11
251
- mfcr r11
252
230
253
231
/* If we are faulting a kernel address, we have to use the
254
232
* kernel page tables.
255
233
*/
256
234
mfspr r10, SPRN_MD_EPN
257
- compare_to_kernel_boundary r10, r10
258
235
mfspr r10, SPRN_M_TWB /* Get level 1 table */
259
- blt+ 3f
260
- rlwinm r10, r10, 0 , 20 , 31
261
- oris r10, r10, (swapper_pg_dir - PAGE_OFFSET)@ha
262
- 3:
263
- mtcr r11
264
236
lwz r11, (swapper_pg_dir-PAGE_OFFSET)@l(r10) /* Get level 1 entry */
265
237
266
238
mtspr SPRN_MD_TWC, r11
@@ -332,15 +304,19 @@ instruction_counter:
332
304
cmpwi cr1, r11, RPN_PATTERN
333
305
beq- cr1, FixupDAR /* must be a buggy dcbX, icbi insn. */
334
306
DARFixed: /* Return from dcbx instruction bug workaround */
307
+ mfspr r11, SPRN_DSISR
308
+ rlwinm r11, r11, 0 , DSISR_NOHPTE
309
+ cmpwi cr1, r11, 0
310
+ beq+ cr1, .Ldtlbie
311
+ mfspr r11, SPRN_DAR
312
+ tlbie r11
313
+ rlwinm r11, r11, 16 , 0xffff
314
+ cmplwi cr1, r11, TASK_SIZE@h
315
+ bge- cr1, FixupPGD
316
+ .Ldtlbie:
335
317
EXCEPTION_PROLOG_1
336
318
/* 0x300 is DataAccess exception, needed by bad_page_fault() */
337
319
EXCEPTION_PROLOG_2 INTERRUPT_DATA_STORAGE DataTLBError handle_dar_dsisr =1
338
- lwz r4, _DAR(r11)
339
- lwz r5, _DSISR(r11)
340
- andis. r10,r5,DSISR_NOHPTE@h
341
- beq+ .Ldtlbie
342
- tlbie r4
343
- .Ldtlbie:
344
320
prepare_transfer_to_handler
345
321
bl do_page_fault
346
322
b interrupt_return
@@ -394,6 +370,30 @@ DARFixed:/* Return from dcbx instruction bug workaround */
394
370
__HEAD
395
371
. = 0x2000
396
372
373
+ FixupPGD:
374
+ mtspr SPRN_M_TW, r10
375
+ mfspr r10, SPRN_DAR
376
+ mtspr SPRN_MD_EPN, r10
377
+ mfspr r11, SPRN_M_TWB /* Get level 1 table */
378
+ lwz r10, (swapper_pg_dir - PAGE_OFFSET)@l(r11) /* Get the level 1 entry */
379
+ cmpwi cr1, r10, 0
380
+ bne cr1, 1f
381
+
382
+ rlwinm r10, r11, 0 , 20 , 31
383
+ oris r10, r10, (swapper_pg_dir - PAGE_OFFSET)@ha
384
+ lwz r10, (swapper_pg_dir - PAGE_OFFSET)@l(r10) /* Get the level 1 entry */
385
+ cmpwi cr1, r10, 0
386
+ beq cr1, 1f
387
+ stw r10, (swapper_pg_dir - PAGE_OFFSET)@l(r11) /* Set the level 1 entry */
388
+ mfspr r10, SPRN_M_TW
389
+ mtcr r10
390
+ mfspr r10, SPRN_SPRG_SCRATCH0
391
+ mfspr r11, SPRN_SPRG_SCRATCH1
392
+ rfi
393
+ 1:
394
+ mfspr r10, SPRN_M_TW
395
+ b .Ldtlbie
396
+
397
397
/* This is the procedure to calculate the data EA for buggy dcbx,dcbi instructions
398
398
* by decoding the registers used by the dcbx instruction and adding them.
399
399
* DAR is set to the calculated address.
@@ -404,7 +404,7 @@ FixupDAR:/* Entry point for dcbx workaround. */
404
404
mfspr r10, SPRN_SRR0
405
405
mtspr SPRN_MD_EPN, r10
406
406
rlwinm r11, r10, 16 , 0xfff8
407
- cmpli cr1, r11, PAGE_OFFSET @h
407
+ cmpli cr1, r11, TASK_SIZE @h
408
408
mfspr r11, SPRN_M_TWB /* Get level 1 table */
409
409
blt+ cr1, 3f
410
410
@@ -587,6 +587,10 @@ start_here:
587
587
lis r0, (MD_TWAM | MD_RSV4I)@h
588
588
mtspr SPRN_MD_CTR, r0
589
589
#endif
590
+ #ifndef CONFIG_PIN_TLB_TEXT
591
+ li r0, 0
592
+ mtspr SPRN_MI_CTR, r0
593
+ #endif
590
594
#if !defined(CONFIG_PIN_TLB_DATA) && !defined(CONFIG_PIN_TLB_IMMR)
591
595
lis r0, MD_TWAM@h
592
596
mtspr SPRN_MD_CTR, r0
@@ -683,6 +687,7 @@ SYM_FUNC_START_LOCAL(initial_mmu)
683
687
blr
684
688
SYM_FUNC_END(initial_mmu)
685
689
690
+ #ifdef CONFIG_PIN_TLB
686
691
_GLOBAL(mmu_pin_tlb)
687
692
lis r9, (1f - PAGE_OFFSET)@h
688
693
ori r9, r9, (1f - PAGE_OFFSET)@l
@@ -704,6 +709,7 @@ _GLOBAL(mmu_pin_tlb)
704
709
mtspr SPRN_MD_CTR, r6
705
710
tlbia
706
711
712
+ #ifdef CONFIG_PIN_TLB_TEXT
707
713
LOAD_REG_IMMEDIATE(r5, 28 << 8 )
708
714
LOAD_REG_IMMEDIATE(r6, PAGE_OFFSET)
709
715
LOAD_REG_IMMEDIATE(r7, MI_SVALID | MI_PS8MEG | _PMD_ACCESSED)
@@ -724,6 +730,7 @@ _GLOBAL(mmu_pin_tlb)
724
730
bdnzt lt, 2b
725
731
lis r0, MI_RSV4I@h
726
732
mtspr SPRN_MI_CTR, r0
733
+ #endif
727
734
728
735
LOAD_REG_IMMEDIATE(r5, 28 << 8 | MD_TWAM)
729
736
#ifdef CONFIG_PIN_TLB_DATA
@@ -783,3 +790,4 @@ _GLOBAL(mmu_pin_tlb)
783
790
mtspr SPRN_SRR1, r10
784
791
mtspr SPRN_SRR0, r11
785
792
rfi
793
+ #endif
0 commit comments