Skip to content

Commit 878543d

Browse files
author
Fox Snowpatch
committed
1 parent ddf9a4c commit 878543d

File tree

10 files changed

+173
-126
lines changed

10 files changed

+173
-126
lines changed

arch/powerpc/Kconfig

+25-6
Original file line numberDiff line numberDiff line change
@@ -853,8 +853,8 @@ config DATA_SHIFT_BOOL
853853
bool "Set custom data alignment"
854854
depends on ADVANCED_OPTIONS
855855
depends on STRICT_KERNEL_RWX || DEBUG_PAGEALLOC || KFENCE
856-
depends on PPC_BOOK3S_32 || (PPC_8xx && !PIN_TLB_DATA && !STRICT_KERNEL_RWX) || \
857-
PPC_85xx
856+
depends on (PPC_8xx && !PIN_TLB_DATA && (!STRICT_KERNEL_RWX || !PIN_TLB_TEXT)) || \
857+
PPC_BOOK3S_32 || PPC_85xx
858858
help
859859
This option allows you to set the kernel data alignment. When
860860
RAM is mapped by blocks, the alignment needs to fit the size and
@@ -870,9 +870,9 @@ config DATA_SHIFT
870870
range 20 24 if (STRICT_KERNEL_RWX || DEBUG_PAGEALLOC || KFENCE) && PPC_85xx
871871
default 22 if STRICT_KERNEL_RWX && PPC_BOOK3S_32
872872
default 18 if (DEBUG_PAGEALLOC || KFENCE) && PPC_BOOK3S_32
873-
default 23 if STRICT_KERNEL_RWX && PPC_8xx
874-
default 23 if (DEBUG_PAGEALLOC || KFENCE) && PPC_8xx && PIN_TLB_DATA
875-
default 19 if (DEBUG_PAGEALLOC || KFENCE) && PPC_8xx
873+
default 23 if (STRICT_KERNEL_RWX || DEBUG_PAGEALLOC || KFENCE) && PPC_8xx && \
874+
(PIN_TLB_DATA || PIN_TLB_TEXT)
875+
default 19 if (STRICT_KERNEL_RWX || DEBUG_PAGEALLOC || KFENCE) && PPC_8xx
876876
default 24 if STRICT_KERNEL_RWX && PPC_85xx
877877
default PAGE_SHIFT
878878
help
@@ -1269,8 +1269,27 @@ config TASK_SIZE_BOOL
12691269
config TASK_SIZE
12701270
hex "Size of user task space" if TASK_SIZE_BOOL
12711271
default "0x80000000" if PPC_8xx
1272-
default "0xb0000000" if PPC_BOOK3S_32
1272+
default "0xb0000000" if PPC_BOOK3S_32 && EXECMEM
12731273
default "0xc0000000"
1274+
1275+
config MODULES_SIZE_BOOL
1276+
bool "Set custom size for modules/execmem area"
1277+
depends on EXECMEM && ADVANCED_OPTIONS
1278+
help
1279+
This option allows you to set the size of kernel virtual address
1280+
space dedicated for modules/execmem.
1281+
For the time being it is only for 8xx and book3s/32. Other
1282+
platform share it with vmalloc space.
1283+
1284+
Say N here unless you know what you are doing.
1285+
1286+
config MODULES_SIZE
1287+
int "Size of modules/execmem area (In Mbytes)" if MODULES_SIZE_BOOL
1288+
range 1 256 if EXECMEM
1289+
default 64 if EXECMEM && PPC_BOOK3S_32
1290+
default 32 if EXECMEM && PPC_8xx
1291+
default 0
1292+
12741293
endmenu
12751294

12761295
if PPC64

arch/powerpc/include/asm/book3s/32/pgtable.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,8 @@ void unmap_kernel_page(unsigned long va);
196196
#endif
197197

198198
#define MODULES_END ALIGN_DOWN(PAGE_OFFSET, SZ_256M)
199-
#define MODULES_VADDR (MODULES_END - SZ_256M)
199+
#define MODULES_SIZE (CONFIG_MODULES_SIZE * SZ_1M)
200+
#define MODULES_VADDR (MODULES_END - MODULES_SIZE)
200201

201202
#ifndef __ASSEMBLY__
202203
#include <linux/sched.h>

arch/powerpc/include/asm/nohash/32/mmu-8xx.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,9 @@
170170

171171
#define mmu_linear_psize MMU_PAGE_8M
172172

173-
#define MODULES_VADDR (PAGE_OFFSET - SZ_256M)
174173
#define MODULES_END PAGE_OFFSET
174+
#define MODULES_SIZE (CONFIG_MODULES_SIZE * SZ_1M)
175+
#define MODULES_VADDR (MODULES_END - MODULES_SIZE)
175176

176177
#ifndef __ASSEMBLY__
177178

arch/powerpc/include/asm/nohash/pgalloc.h

+7-1
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,14 @@ static inline void tlb_flush_pgtable(struct mmu_gather *tlb,
1919

2020
static inline pgd_t *pgd_alloc(struct mm_struct *mm)
2121
{
22-
return kmem_cache_alloc(PGT_CACHE(PGD_INDEX_SIZE),
22+
pgd_t *pgd = kmem_cache_alloc(PGT_CACHE(PGD_INDEX_SIZE),
2323
pgtable_gfp_flags(mm, GFP_KERNEL));
24+
25+
#if defined(CONFIG_PPC_8xx) || defined(CONFIG_PPC_BOOK3S_603)
26+
memcpy(pgd + USER_PTRS_PER_PGD, swapper_pg_dir + USER_PTRS_PER_PGD,
27+
(MAX_PTRS_PER_PGD - USER_PTRS_PER_PGD) * sizeof(pgd_t));
28+
#endif
29+
return pgd;
2430
}
2531

2632
static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd)

arch/powerpc/kernel/head_8xx.S

+43-35
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,6 @@
4040

4141
#include "head_32.h"
4242

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-
5343
#define PAGE_SHIFT_512K 19
5444
#define PAGE_SHIFT_8M 23
5545

@@ -199,18 +189,7 @@ instruction_counter:
199189
mfspr r10, SPRN_SRR0 /* Get effective address of fault */
200190
INVALIDATE_ADJACENT_PAGES_CPU15(r10, r11)
201191
mtspr SPRN_MD_EPN, r10
202-
#ifdef CONFIG_EXECMEM
203-
mfcr r11
204-
compare_to_kernel_boundary r10, r10
205-
#endif
206192
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
214193
lwz r11, (swapper_pg_dir-PAGE_OFFSET)@l(r10) /* Get level 1 entry */
215194
mtspr SPRN_MD_TWC, r11
216195
mfspr r10, SPRN_MD_TWC
@@ -248,19 +227,12 @@ instruction_counter:
248227
START_EXCEPTION(INTERRUPT_DATA_TLB_MISS_8xx, DataStoreTLBMiss)
249228
mtspr SPRN_SPRG_SCRATCH2, r10
250229
mtspr SPRN_M_TW, r11
251-
mfcr r11
252230

253231
/* If we are faulting a kernel address, we have to use the
254232
* kernel page tables.
255233
*/
256234
mfspr r10, SPRN_MD_EPN
257-
compare_to_kernel_boundary r10, r10
258235
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
264236
lwz r11, (swapper_pg_dir-PAGE_OFFSET)@l(r10) /* Get level 1 entry */
265237

266238
mtspr SPRN_MD_TWC, r11
@@ -332,15 +304,19 @@ instruction_counter:
332304
cmpwi cr1, r11, RPN_PATTERN
333305
beq- cr1, FixupDAR /* must be a buggy dcbX, icbi insn. */
334306
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:
335317
EXCEPTION_PROLOG_1
336318
/* 0x300 is DataAccess exception, needed by bad_page_fault() */
337319
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:
344320
prepare_transfer_to_handler
345321
bl do_page_fault
346322
b interrupt_return
@@ -394,6 +370,30 @@ DARFixed:/* Return from dcbx instruction bug workaround */
394370
__HEAD
395371
. = 0x2000
396372

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+
397397
/* This is the procedure to calculate the data EA for buggy dcbx,dcbi instructions
398398
* by decoding the registers used by the dcbx instruction and adding them.
399399
* DAR is set to the calculated address.
@@ -404,7 +404,7 @@ FixupDAR:/* Entry point for dcbx workaround. */
404404
mfspr r10, SPRN_SRR0
405405
mtspr SPRN_MD_EPN, r10
406406
rlwinm r11, r10, 16, 0xfff8
407-
cmpli cr1, r11, PAGE_OFFSET@h
407+
cmpli cr1, r11, TASK_SIZE@h
408408
mfspr r11, SPRN_M_TWB /* Get level 1 table */
409409
blt+ cr1, 3f
410410

@@ -587,6 +587,10 @@ start_here:
587587
lis r0, (MD_TWAM | MD_RSV4I)@h
588588
mtspr SPRN_MD_CTR, r0
589589
#endif
590+
#ifndef CONFIG_PIN_TLB_TEXT
591+
li r0, 0
592+
mtspr SPRN_MI_CTR, r0
593+
#endif
590594
#if !defined(CONFIG_PIN_TLB_DATA) && !defined(CONFIG_PIN_TLB_IMMR)
591595
lis r0, MD_TWAM@h
592596
mtspr SPRN_MD_CTR, r0
@@ -683,6 +687,7 @@ SYM_FUNC_START_LOCAL(initial_mmu)
683687
blr
684688
SYM_FUNC_END(initial_mmu)
685689

690+
#ifdef CONFIG_PIN_TLB
686691
_GLOBAL(mmu_pin_tlb)
687692
lis r9, (1f - PAGE_OFFSET)@h
688693
ori r9, r9, (1f - PAGE_OFFSET)@l
@@ -704,6 +709,7 @@ _GLOBAL(mmu_pin_tlb)
704709
mtspr SPRN_MD_CTR, r6
705710
tlbia
706711

712+
#ifdef CONFIG_PIN_TLB_TEXT
707713
LOAD_REG_IMMEDIATE(r5, 28 << 8)
708714
LOAD_REG_IMMEDIATE(r6, PAGE_OFFSET)
709715
LOAD_REG_IMMEDIATE(r7, MI_SVALID | MI_PS8MEG | _PMD_ACCESSED)
@@ -724,6 +730,7 @@ _GLOBAL(mmu_pin_tlb)
724730
bdnzt lt, 2b
725731
lis r0, MI_RSV4I@h
726732
mtspr SPRN_MI_CTR, r0
733+
#endif
727734

728735
LOAD_REG_IMMEDIATE(r5, 28 << 8 | MD_TWAM)
729736
#ifdef CONFIG_PIN_TLB_DATA
@@ -783,3 +790,4 @@ _GLOBAL(mmu_pin_tlb)
783790
mtspr SPRN_SRR1, r10
784791
mtspr SPRN_SRR0, r11
785792
rfi
793+
#endif

0 commit comments

Comments
 (0)