-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
powerpc/mm: Split dump_pagelinuxtables flag_array table
To reduce the complexity of flag_array, and allow the removal of default 0 value of non existing flags, lets have one flag_array table for each platform family with only the really existing flags. Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com> Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
- Loading branch information
Christophe Leroy
authored and
Michael Ellerman
committed
Oct 14, 2018
1 parent
26973fa
commit 97026b5
Showing
6 changed files
with
307 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* From split of dump_linuxpagetables.c | ||
* Copyright 2016, Rashmica Gupta, IBM Corp. | ||
* | ||
*/ | ||
#include <linux/kernel.h> | ||
#include <asm/pgtable.h> | ||
|
||
#include "dump_linuxpagetables.h" | ||
|
||
static const struct flag_info flag_array[] = { | ||
{ | ||
.mask = _PAGE_PRIVILEGED, | ||
.val = 0, | ||
.set = "user", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_RO | _PAGE_NA, | ||
.val = 0, | ||
.set = "rw", | ||
}, { | ||
.mask = _PAGE_RO | _PAGE_NA, | ||
.val = _PAGE_RO, | ||
.set = "r ", | ||
}, { | ||
.mask = _PAGE_RO | _PAGE_NA, | ||
.val = _PAGE_NA, | ||
.set = " ", | ||
}, { | ||
.mask = _PAGE_EXEC, | ||
.val = _PAGE_EXEC, | ||
.set = " X ", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_PRESENT, | ||
.val = _PAGE_PRESENT, | ||
.set = "present", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_GUARDED, | ||
.val = _PAGE_GUARDED, | ||
.set = "guarded", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_DIRTY, | ||
.val = _PAGE_DIRTY, | ||
.set = "dirty", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_ACCESSED, | ||
.val = _PAGE_ACCESSED, | ||
.set = "accessed", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_NO_CACHE, | ||
.val = _PAGE_NO_CACHE, | ||
.set = "no cache", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_SPECIAL, | ||
.val = _PAGE_SPECIAL, | ||
.set = "special", | ||
} | ||
}; | ||
|
||
struct pgtable_level pg_level[5] = { | ||
{ | ||
}, { /* pgd */ | ||
.flag = flag_array, | ||
.num = ARRAY_SIZE(flag_array), | ||
}, { /* pud */ | ||
.flag = flag_array, | ||
.num = ARRAY_SIZE(flag_array), | ||
}, { /* pmd */ | ||
.flag = flag_array, | ||
.num = ARRAY_SIZE(flag_array), | ||
}, { /* pte */ | ||
.flag = flag_array, | ||
.num = ARRAY_SIZE(flag_array), | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* From split of dump_linuxpagetables.c | ||
* Copyright 2016, Rashmica Gupta, IBM Corp. | ||
* | ||
*/ | ||
#include <linux/kernel.h> | ||
#include <asm/pgtable.h> | ||
|
||
#include "dump_linuxpagetables.h" | ||
|
||
static const struct flag_info flag_array[] = { | ||
{ | ||
.mask = _PAGE_PRIVILEGED, | ||
.val = 0, | ||
.set = "user", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_READ, | ||
.val = _PAGE_READ, | ||
.set = "r", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_WRITE, | ||
.val = _PAGE_WRITE, | ||
.set = "w", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_EXEC, | ||
.val = _PAGE_EXEC, | ||
.set = " X ", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_PTE, | ||
.val = _PAGE_PTE, | ||
.set = "pte", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_PRESENT, | ||
.val = _PAGE_PRESENT, | ||
.set = "present", | ||
.clear = " ", | ||
}, { | ||
.mask = H_PAGE_HASHPTE, | ||
.val = H_PAGE_HASHPTE, | ||
.set = "hpte", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_DIRTY, | ||
.val = _PAGE_DIRTY, | ||
.set = "dirty", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_ACCESSED, | ||
.val = _PAGE_ACCESSED, | ||
.set = "accessed", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_NON_IDEMPOTENT, | ||
.val = _PAGE_NON_IDEMPOTENT, | ||
.set = "non-idempotent", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_TOLERANT, | ||
.val = _PAGE_TOLERANT, | ||
.set = "tolerant", | ||
.clear = " ", | ||
}, { | ||
.mask = H_PAGE_BUSY, | ||
.val = H_PAGE_BUSY, | ||
.set = "busy", | ||
}, { | ||
#ifdef CONFIG_PPC_64K_PAGES | ||
.mask = H_PAGE_COMBO, | ||
.val = H_PAGE_COMBO, | ||
.set = "combo", | ||
}, { | ||
.mask = H_PAGE_4K_PFN, | ||
.val = H_PAGE_4K_PFN, | ||
.set = "4K_pfn", | ||
}, { | ||
#else /* CONFIG_PPC_64K_PAGES */ | ||
.mask = H_PAGE_F_GIX, | ||
.val = H_PAGE_F_GIX, | ||
.set = "f_gix", | ||
.is_val = true, | ||
.shift = H_PAGE_F_GIX_SHIFT, | ||
}, { | ||
.mask = H_PAGE_F_SECOND, | ||
.val = H_PAGE_F_SECOND, | ||
.set = "f_second", | ||
}, { | ||
#endif /* CONFIG_PPC_64K_PAGES */ | ||
.mask = _PAGE_SPECIAL, | ||
.val = _PAGE_SPECIAL, | ||
.set = "special", | ||
} | ||
}; | ||
|
||
struct pgtable_level pg_level[5] = { | ||
{ | ||
}, { /* pgd */ | ||
.flag = flag_array, | ||
.num = ARRAY_SIZE(flag_array), | ||
}, { /* pud */ | ||
.flag = flag_array, | ||
.num = ARRAY_SIZE(flag_array), | ||
}, { /* pmd */ | ||
.flag = flag_array, | ||
.num = ARRAY_SIZE(flag_array), | ||
}, { /* pte */ | ||
.flag = flag_array, | ||
.num = ARRAY_SIZE(flag_array), | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* From split of dump_linuxpagetables.c | ||
* Copyright 2016, Rashmica Gupta, IBM Corp. | ||
* | ||
*/ | ||
#include <linux/kernel.h> | ||
#include <asm/pgtable.h> | ||
|
||
#include "dump_linuxpagetables.h" | ||
|
||
static const struct flag_info flag_array[] = { | ||
{ | ||
.mask = _PAGE_USER, | ||
.val = _PAGE_USER, | ||
.set = "user", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_RW, | ||
.val = _PAGE_RW, | ||
.set = "rw", | ||
.clear = "r ", | ||
}, { | ||
#ifndef CONFIG_PPC_BOOK3S_32 | ||
.mask = _PAGE_EXEC, | ||
.val = _PAGE_EXEC, | ||
.set = " X ", | ||
.clear = " ", | ||
}, { | ||
#endif | ||
.mask = _PAGE_PRESENT, | ||
.val = _PAGE_PRESENT, | ||
.set = "present", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_GUARDED, | ||
.val = _PAGE_GUARDED, | ||
.set = "guarded", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_DIRTY, | ||
.val = _PAGE_DIRTY, | ||
.set = "dirty", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_ACCESSED, | ||
.val = _PAGE_ACCESSED, | ||
.set = "accessed", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_WRITETHRU, | ||
.val = _PAGE_WRITETHRU, | ||
.set = "write through", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_NO_CACHE, | ||
.val = _PAGE_NO_CACHE, | ||
.set = "no cache", | ||
.clear = " ", | ||
}, { | ||
.mask = _PAGE_SPECIAL, | ||
.val = _PAGE_SPECIAL, | ||
.set = "special", | ||
} | ||
}; | ||
|
||
struct pgtable_level pg_level[5] = { | ||
{ | ||
}, { /* pgd */ | ||
.flag = flag_array, | ||
.num = ARRAY_SIZE(flag_array), | ||
}, { /* pud */ | ||
.flag = flag_array, | ||
.num = ARRAY_SIZE(flag_array), | ||
}, { /* pmd */ | ||
.flag = flag_array, | ||
.num = ARRAY_SIZE(flag_array), | ||
}, { /* pte */ | ||
.flag = flag_array, | ||
.num = ARRAY_SIZE(flag_array), | ||
}, | ||
}; |
Oops, something went wrong.