2005-09-26 14:04:21 +08:00
|
|
|
/*
|
|
|
|
* This file contains the routines setting up the linux page tables.
|
|
|
|
* -- paulus
|
|
|
|
*
|
|
|
|
* Derived from arch/ppc/mm/init.c:
|
|
|
|
* Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
|
|
|
|
*
|
|
|
|
* Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
|
|
|
|
* and Cort Dougan (PReP) (cort@cs.nmt.edu)
|
|
|
|
* Copyright (C) 1996 Paul Mackerras
|
|
|
|
*
|
|
|
|
* Derived from "arch/i386/mm/init.c"
|
|
|
|
* Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/vmalloc.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/highmem.h>
|
2010-07-12 12:36:09 +08:00
|
|
|
#include <linux/memblock.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2005-09-26 14:04:21 +08:00
|
|
|
|
|
|
|
#include <asm/pgtable.h>
|
|
|
|
#include <asm/pgalloc.h>
|
2008-04-23 21:05:20 +08:00
|
|
|
#include <asm/fixmap.h>
|
2005-09-26 14:04:21 +08:00
|
|
|
#include <asm/io.h>
|
2012-03-29 01:30:02 +08:00
|
|
|
#include <asm/setup.h>
|
2017-08-02 21:51:05 +08:00
|
|
|
#include <asm/sections.h>
|
2005-09-26 14:04:21 +08:00
|
|
|
|
|
|
|
#include "mmu_decl.h"
|
|
|
|
|
|
|
|
unsigned long ioremap_bot;
|
2006-03-15 04:21:11 +08:00
|
|
|
EXPORT_SYMBOL(ioremap_bot); /* aka VMALLOC_END */
|
2005-09-26 14:04:21 +08:00
|
|
|
|
2016-02-10 15:17:08 +08:00
|
|
|
extern char etext[], _stext[], _sinittext[], _einittext[];
|
2005-09-26 14:04:21 +08:00
|
|
|
|
mm: treewide: remove unused address argument from pte_alloc functions
Patch series "Add support for fast mremap".
This series speeds up the mremap(2) syscall by copying page tables at
the PMD level even for non-THP systems. There is concern that the extra
'address' argument that mremap passes to pte_alloc may do something
subtle architecture related in the future that may make the scheme not
work. Also we find that there is no point in passing the 'address' to
pte_alloc since its unused. This patch therefore removes this argument
tree-wide resulting in a nice negative diff as well. Also ensuring
along the way that the enabled architectures do not do anything funky
with the 'address' argument that goes unnoticed by the optimization.
Build and boot tested on x86-64. Build tested on arm64. The config
enablement patch for arm64 will be posted in the future after more
testing.
The changes were obtained by applying the following Coccinelle script.
(thanks Julia for answering all Coccinelle questions!).
Following fix ups were done manually:
* Removal of address argument from pte_fragment_alloc
* Removal of pte_alloc_one_fast definitions from m68k and microblaze.
// Options: --include-headers --no-includes
// Note: I split the 'identifier fn' line, so if you are manually
// running it, please unsplit it so it runs for you.
virtual patch
@pte_alloc_func_def depends on patch exists@
identifier E2;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
type T2;
@@
fn(...
- , T2 E2
)
{ ... }
@pte_alloc_func_proto_noarg depends on patch exists@
type T1, T2, T3, T4;
identifier fn =~ "^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
(
- T3 fn(T1, T2);
+ T3 fn(T1);
|
- T3 fn(T1, T2, T4);
+ T3 fn(T1, T2);
)
@pte_alloc_func_proto depends on patch exists@
identifier E1, E2, E4;
type T1, T2, T3, T4;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
(
- T3 fn(T1 E1, T2 E2);
+ T3 fn(T1 E1);
|
- T3 fn(T1 E1, T2 E2, T4 E4);
+ T3 fn(T1 E1, T2 E2);
)
@pte_alloc_func_call depends on patch exists@
expression E2;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
fn(...
-, E2
)
@pte_alloc_macro depends on patch exists@
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
identifier a, b, c;
expression e;
position p;
@@
(
- #define fn(a, b, c) e
+ #define fn(a, b) e
|
- #define fn(a, b) e
+ #define fn(a) e
)
Link: http://lkml.kernel.org/r/20181108181201.88826-2-joelaf@google.com
Signed-off-by: Joel Fernandes (Google) <joel@joelfernandes.org>
Suggested-by: Kirill A. Shutemov <kirill@shutemov.name>
Acked-by: Kirill A. Shutemov <kirill@shutemov.name>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Kirill A. Shutemov <kirill@shutemov.name>
Cc: William Kucharski <william.kucharski@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-01-04 07:28:34 +08:00
|
|
|
__ref pte_t *pte_alloc_one_kernel(struct mm_struct *mm)
|
2005-09-26 14:04:21 +08:00
|
|
|
{
|
2018-11-29 22:07:01 +08:00
|
|
|
if (!slab_is_available())
|
|
|
|
return memblock_alloc(PTE_FRAG_SIZE, PTE_FRAG_SIZE);
|
|
|
|
|
mm: treewide: remove unused address argument from pte_alloc functions
Patch series "Add support for fast mremap".
This series speeds up the mremap(2) syscall by copying page tables at
the PMD level even for non-THP systems. There is concern that the extra
'address' argument that mremap passes to pte_alloc may do something
subtle architecture related in the future that may make the scheme not
work. Also we find that there is no point in passing the 'address' to
pte_alloc since its unused. This patch therefore removes this argument
tree-wide resulting in a nice negative diff as well. Also ensuring
along the way that the enabled architectures do not do anything funky
with the 'address' argument that goes unnoticed by the optimization.
Build and boot tested on x86-64. Build tested on arm64. The config
enablement patch for arm64 will be posted in the future after more
testing.
The changes were obtained by applying the following Coccinelle script.
(thanks Julia for answering all Coccinelle questions!).
Following fix ups were done manually:
* Removal of address argument from pte_fragment_alloc
* Removal of pte_alloc_one_fast definitions from m68k and microblaze.
// Options: --include-headers --no-includes
// Note: I split the 'identifier fn' line, so if you are manually
// running it, please unsplit it so it runs for you.
virtual patch
@pte_alloc_func_def depends on patch exists@
identifier E2;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
type T2;
@@
fn(...
- , T2 E2
)
{ ... }
@pte_alloc_func_proto_noarg depends on patch exists@
type T1, T2, T3, T4;
identifier fn =~ "^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
(
- T3 fn(T1, T2);
+ T3 fn(T1);
|
- T3 fn(T1, T2, T4);
+ T3 fn(T1, T2);
)
@pte_alloc_func_proto depends on patch exists@
identifier E1, E2, E4;
type T1, T2, T3, T4;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
(
- T3 fn(T1 E1, T2 E2);
+ T3 fn(T1 E1);
|
- T3 fn(T1 E1, T2 E2, T4 E4);
+ T3 fn(T1 E1, T2 E2);
)
@pte_alloc_func_call depends on patch exists@
expression E2;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
fn(...
-, E2
)
@pte_alloc_macro depends on patch exists@
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
identifier a, b, c;
expression e;
position p;
@@
(
- #define fn(a, b, c) e
+ #define fn(a, b) e
|
- #define fn(a, b) e
+ #define fn(a) e
)
Link: http://lkml.kernel.org/r/20181108181201.88826-2-joelaf@google.com
Signed-off-by: Joel Fernandes (Google) <joel@joelfernandes.org>
Suggested-by: Kirill A. Shutemov <kirill@shutemov.name>
Acked-by: Kirill A. Shutemov <kirill@shutemov.name>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Kirill A. Shutemov <kirill@shutemov.name>
Cc: William Kucharski <william.kucharski@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-01-04 07:28:34 +08:00
|
|
|
return (pte_t *)pte_fragment_alloc(mm, 1);
|
2005-09-26 14:04:21 +08:00
|
|
|
}
|
|
|
|
|
mm: treewide: remove unused address argument from pte_alloc functions
Patch series "Add support for fast mremap".
This series speeds up the mremap(2) syscall by copying page tables at
the PMD level even for non-THP systems. There is concern that the extra
'address' argument that mremap passes to pte_alloc may do something
subtle architecture related in the future that may make the scheme not
work. Also we find that there is no point in passing the 'address' to
pte_alloc since its unused. This patch therefore removes this argument
tree-wide resulting in a nice negative diff as well. Also ensuring
along the way that the enabled architectures do not do anything funky
with the 'address' argument that goes unnoticed by the optimization.
Build and boot tested on x86-64. Build tested on arm64. The config
enablement patch for arm64 will be posted in the future after more
testing.
The changes were obtained by applying the following Coccinelle script.
(thanks Julia for answering all Coccinelle questions!).
Following fix ups were done manually:
* Removal of address argument from pte_fragment_alloc
* Removal of pte_alloc_one_fast definitions from m68k and microblaze.
// Options: --include-headers --no-includes
// Note: I split the 'identifier fn' line, so if you are manually
// running it, please unsplit it so it runs for you.
virtual patch
@pte_alloc_func_def depends on patch exists@
identifier E2;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
type T2;
@@
fn(...
- , T2 E2
)
{ ... }
@pte_alloc_func_proto_noarg depends on patch exists@
type T1, T2, T3, T4;
identifier fn =~ "^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
(
- T3 fn(T1, T2);
+ T3 fn(T1);
|
- T3 fn(T1, T2, T4);
+ T3 fn(T1, T2);
)
@pte_alloc_func_proto depends on patch exists@
identifier E1, E2, E4;
type T1, T2, T3, T4;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
(
- T3 fn(T1 E1, T2 E2);
+ T3 fn(T1 E1);
|
- T3 fn(T1 E1, T2 E2, T4 E4);
+ T3 fn(T1 E1, T2 E2);
)
@pte_alloc_func_call depends on patch exists@
expression E2;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
fn(...
-, E2
)
@pte_alloc_macro depends on patch exists@
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
identifier a, b, c;
expression e;
position p;
@@
(
- #define fn(a, b, c) e
+ #define fn(a, b) e
|
- #define fn(a, b) e
+ #define fn(a) e
)
Link: http://lkml.kernel.org/r/20181108181201.88826-2-joelaf@google.com
Signed-off-by: Joel Fernandes (Google) <joel@joelfernandes.org>
Suggested-by: Kirill A. Shutemov <kirill@shutemov.name>
Acked-by: Kirill A. Shutemov <kirill@shutemov.name>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Kirill A. Shutemov <kirill@shutemov.name>
Cc: William Kucharski <william.kucharski@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-01-04 07:28:34 +08:00
|
|
|
pgtable_t pte_alloc_one(struct mm_struct *mm)
|
2005-09-26 14:04:21 +08:00
|
|
|
{
|
mm: treewide: remove unused address argument from pte_alloc functions
Patch series "Add support for fast mremap".
This series speeds up the mremap(2) syscall by copying page tables at
the PMD level even for non-THP systems. There is concern that the extra
'address' argument that mremap passes to pte_alloc may do something
subtle architecture related in the future that may make the scheme not
work. Also we find that there is no point in passing the 'address' to
pte_alloc since its unused. This patch therefore removes this argument
tree-wide resulting in a nice negative diff as well. Also ensuring
along the way that the enabled architectures do not do anything funky
with the 'address' argument that goes unnoticed by the optimization.
Build and boot tested on x86-64. Build tested on arm64. The config
enablement patch for arm64 will be posted in the future after more
testing.
The changes were obtained by applying the following Coccinelle script.
(thanks Julia for answering all Coccinelle questions!).
Following fix ups were done manually:
* Removal of address argument from pte_fragment_alloc
* Removal of pte_alloc_one_fast definitions from m68k and microblaze.
// Options: --include-headers --no-includes
// Note: I split the 'identifier fn' line, so if you are manually
// running it, please unsplit it so it runs for you.
virtual patch
@pte_alloc_func_def depends on patch exists@
identifier E2;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
type T2;
@@
fn(...
- , T2 E2
)
{ ... }
@pte_alloc_func_proto_noarg depends on patch exists@
type T1, T2, T3, T4;
identifier fn =~ "^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
(
- T3 fn(T1, T2);
+ T3 fn(T1);
|
- T3 fn(T1, T2, T4);
+ T3 fn(T1, T2);
)
@pte_alloc_func_proto depends on patch exists@
identifier E1, E2, E4;
type T1, T2, T3, T4;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
(
- T3 fn(T1 E1, T2 E2);
+ T3 fn(T1 E1);
|
- T3 fn(T1 E1, T2 E2, T4 E4);
+ T3 fn(T1 E1, T2 E2);
)
@pte_alloc_func_call depends on patch exists@
expression E2;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
fn(...
-, E2
)
@pte_alloc_macro depends on patch exists@
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
identifier a, b, c;
expression e;
position p;
@@
(
- #define fn(a, b, c) e
+ #define fn(a, b) e
|
- #define fn(a, b) e
+ #define fn(a) e
)
Link: http://lkml.kernel.org/r/20181108181201.88826-2-joelaf@google.com
Signed-off-by: Joel Fernandes (Google) <joel@joelfernandes.org>
Suggested-by: Kirill A. Shutemov <kirill@shutemov.name>
Acked-by: Kirill A. Shutemov <kirill@shutemov.name>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Kirill A. Shutemov <kirill@shutemov.name>
Cc: William Kucharski <william.kucharski@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-01-04 07:28:34 +08:00
|
|
|
return (pgtable_t)pte_fragment_alloc(mm, 0);
|
2005-09-26 14:04:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void __iomem *
|
|
|
|
ioremap(phys_addr_t addr, unsigned long size)
|
|
|
|
{
|
2018-10-09 21:51:45 +08:00
|
|
|
pgprot_t prot = pgprot_noncached(PAGE_KERNEL);
|
2018-10-09 21:51:43 +08:00
|
|
|
|
2018-10-09 21:51:45 +08:00
|
|
|
return __ioremap_caller(addr, size, prot, __builtin_return_address(0));
|
2005-09-26 14:04:21 +08:00
|
|
|
}
|
2006-03-15 04:21:11 +08:00
|
|
|
EXPORT_SYMBOL(ioremap);
|
2005-09-26 14:04:21 +08:00
|
|
|
|
2011-05-09 05:41:59 +08:00
|
|
|
void __iomem *
|
|
|
|
ioremap_wc(phys_addr_t addr, unsigned long size)
|
|
|
|
{
|
2018-10-09 21:51:45 +08:00
|
|
|
pgprot_t prot = pgprot_noncached_wc(PAGE_KERNEL);
|
2018-10-09 21:51:43 +08:00
|
|
|
|
2018-10-09 21:51:45 +08:00
|
|
|
return __ioremap_caller(addr, size, prot, __builtin_return_address(0));
|
2011-05-09 05:41:59 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(ioremap_wc);
|
|
|
|
|
2018-10-09 21:51:33 +08:00
|
|
|
void __iomem *
|
|
|
|
ioremap_wt(phys_addr_t addr, unsigned long size)
|
|
|
|
{
|
2018-10-09 21:51:45 +08:00
|
|
|
pgprot_t prot = pgprot_cached_wthru(PAGE_KERNEL);
|
2018-10-09 21:51:43 +08:00
|
|
|
|
2018-10-09 21:51:45 +08:00
|
|
|
return __ioremap_caller(addr, size, prot, __builtin_return_address(0));
|
2018-10-09 21:51:33 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(ioremap_wt);
|
|
|
|
|
|
|
|
void __iomem *
|
|
|
|
ioremap_coherent(phys_addr_t addr, unsigned long size)
|
|
|
|
{
|
2018-10-09 21:51:45 +08:00
|
|
|
pgprot_t prot = pgprot_cached(PAGE_KERNEL);
|
2018-10-09 21:51:43 +08:00
|
|
|
|
2018-10-09 21:51:45 +08:00
|
|
|
return __ioremap_caller(addr, size, prot, __builtin_return_address(0));
|
2018-10-09 21:51:33 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(ioremap_coherent);
|
|
|
|
|
2006-11-13 06:27:39 +08:00
|
|
|
void __iomem *
|
2011-05-09 05:43:47 +08:00
|
|
|
ioremap_prot(phys_addr_t addr, unsigned long size, unsigned long flags)
|
2006-11-13 06:27:39 +08:00
|
|
|
{
|
2018-10-09 21:51:56 +08:00
|
|
|
pte_t pte = __pte(flags);
|
|
|
|
|
2008-07-24 12:27:08 +08:00
|
|
|
/* writeable implies dirty for kernel addresses */
|
2018-10-09 21:51:56 +08:00
|
|
|
if (pte_write(pte))
|
|
|
|
pte = pte_mkdirty(pte);
|
2008-07-24 12:27:08 +08:00
|
|
|
|
|
|
|
/* we don't want to let _PAGE_USER and _PAGE_EXEC leak out */
|
2018-10-09 21:51:56 +08:00
|
|
|
pte = pte_exprotect(pte);
|
|
|
|
pte = pte_mkprivileged(pte);
|
2010-04-07 12:39:36 +08:00
|
|
|
|
2018-10-09 21:51:56 +08:00
|
|
|
return __ioremap_caller(addr, size, pte_pgprot(pte), __builtin_return_address(0));
|
2006-11-13 06:27:39 +08:00
|
|
|
}
|
2011-05-09 05:43:47 +08:00
|
|
|
EXPORT_SYMBOL(ioremap_prot);
|
2006-11-13 06:27:39 +08:00
|
|
|
|
2005-09-26 14:04:21 +08:00
|
|
|
void __iomem *
|
|
|
|
__ioremap(phys_addr_t addr, unsigned long size, unsigned long flags)
|
2009-02-23 00:19:14 +08:00
|
|
|
{
|
2018-10-09 21:51:45 +08:00
|
|
|
return __ioremap_caller(addr, size, __pgprot(flags), __builtin_return_address(0));
|
2009-02-23 00:19:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void __iomem *
|
2018-10-09 21:51:45 +08:00
|
|
|
__ioremap_caller(phys_addr_t addr, unsigned long size, pgprot_t prot, void *caller)
|
2005-09-26 14:04:21 +08:00
|
|
|
{
|
|
|
|
unsigned long v, i;
|
|
|
|
phys_addr_t p;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Choose an address to map it to.
|
|
|
|
* Once the vmalloc system is running, we use it.
|
2016-02-10 00:08:10 +08:00
|
|
|
* Before then, we use space going down from IOREMAP_TOP
|
2005-09-26 14:04:21 +08:00
|
|
|
* (ioremap_bot records where we're up to).
|
|
|
|
*/
|
|
|
|
p = addr & PAGE_MASK;
|
|
|
|
size = PAGE_ALIGN(addr + size) - p;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the address lies within the first 16 MB, assume it's in ISA
|
|
|
|
* memory space
|
|
|
|
*/
|
|
|
|
if (p < 16*1024*1024)
|
|
|
|
p += _ISA_MEM_BASE;
|
|
|
|
|
2008-12-17 18:09:10 +08:00
|
|
|
#ifndef CONFIG_CRASH_DUMP
|
2005-09-26 14:04:21 +08:00
|
|
|
/*
|
|
|
|
* Don't allow anybody to remap normal RAM that we're using.
|
|
|
|
* mem_init() sets high_memory so only do the check after that.
|
|
|
|
*/
|
2018-12-19 15:09:39 +08:00
|
|
|
if (slab_is_available() && p <= virt_to_phys(high_memory - 1) &&
|
2018-03-28 08:25:44 +08:00
|
|
|
page_is_ram(__phys_to_pfn(p))) {
|
2015-03-12 11:13:46 +08:00
|
|
|
printk("__ioremap(): phys addr 0x%llx is RAM lr %ps\n",
|
2007-04-24 13:05:18 +08:00
|
|
|
(unsigned long long)p, __builtin_return_address(0));
|
2005-09-26 14:04:21 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
2008-12-17 18:09:10 +08:00
|
|
|
#endif
|
2005-09-26 14:04:21 +08:00
|
|
|
|
|
|
|
if (size == 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Is it already mapped? Perhaps overlapped by a previous
|
2016-02-10 00:07:58 +08:00
|
|
|
* mapping.
|
2005-09-26 14:04:21 +08:00
|
|
|
*/
|
2016-02-10 00:07:58 +08:00
|
|
|
v = p_block_mapped(p);
|
|
|
|
if (v)
|
2005-09-26 14:04:21 +08:00
|
|
|
goto out;
|
|
|
|
|
2015-03-30 11:10:37 +08:00
|
|
|
if (slab_is_available()) {
|
2005-09-26 14:04:21 +08:00
|
|
|
struct vm_struct *area;
|
2009-02-23 00:19:14 +08:00
|
|
|
area = get_vm_area_caller(size, VM_IOREMAP, caller);
|
2005-09-26 14:04:21 +08:00
|
|
|
if (area == 0)
|
|
|
|
return NULL;
|
2010-11-29 02:26:36 +08:00
|
|
|
area->phys_addr = p;
|
2005-09-26 14:04:21 +08:00
|
|
|
v = (unsigned long) area->addr;
|
|
|
|
} else {
|
|
|
|
v = (ioremap_bot -= size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Should check if it is a candidate for a BAT mapping
|
|
|
|
*/
|
|
|
|
|
|
|
|
err = 0;
|
|
|
|
for (i = 0; i < size && err == 0; i += PAGE_SIZE)
|
2018-10-09 21:51:45 +08:00
|
|
|
err = map_kernel_page(v + i, p + i, prot);
|
2005-09-26 14:04:21 +08:00
|
|
|
if (err) {
|
2015-03-30 11:10:37 +08:00
|
|
|
if (slab_is_available())
|
2005-09-26 14:04:21 +08:00
|
|
|
vunmap((void *)v);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
return (void __iomem *) (v + ((unsigned long)addr & ~PAGE_MASK));
|
|
|
|
}
|
2006-03-15 04:21:11 +08:00
|
|
|
EXPORT_SYMBOL(__ioremap);
|
2005-09-26 14:04:21 +08:00
|
|
|
|
|
|
|
void iounmap(volatile void __iomem *addr)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* If mapped by BATs then there is nothing to do.
|
|
|
|
* Calling vfree() generates a benign warning.
|
|
|
|
*/
|
2016-02-10 00:07:58 +08:00
|
|
|
if (v_block_mapped((unsigned long)addr))
|
|
|
|
return;
|
2005-09-26 14:04:21 +08:00
|
|
|
|
|
|
|
if (addr > high_memory && (unsigned long) addr < ioremap_bot)
|
|
|
|
vunmap((void *) (PAGE_MASK & (unsigned long)addr));
|
|
|
|
}
|
2006-03-15 04:21:11 +08:00
|
|
|
EXPORT_SYMBOL(iounmap);
|
2005-09-26 14:04:21 +08:00
|
|
|
|
2018-10-09 21:51:45 +08:00
|
|
|
int map_kernel_page(unsigned long va, phys_addr_t pa, pgprot_t prot)
|
2005-09-26 14:04:21 +08:00
|
|
|
{
|
|
|
|
pmd_t *pd;
|
|
|
|
pte_t *pg;
|
|
|
|
int err = -ENOMEM;
|
|
|
|
|
|
|
|
/* Use upper 10 bits of VA to index the first level map */
|
2007-05-08 10:46:49 +08:00
|
|
|
pd = pmd_offset(pud_offset(pgd_offset_k(va), va), va);
|
2005-09-26 14:04:21 +08:00
|
|
|
/* Use middle 10 bits of VA to index the second-level map */
|
2005-10-31 11:40:03 +08:00
|
|
|
pg = pte_alloc_kernel(pd, va);
|
2005-09-26 14:04:21 +08:00
|
|
|
if (pg != 0) {
|
|
|
|
err = 0;
|
2007-04-12 13:30:21 +08:00
|
|
|
/* The PTE should never be already set nor present in the
|
|
|
|
* hash table
|
|
|
|
*/
|
2018-10-09 21:51:56 +08:00
|
|
|
BUG_ON((pte_present(*pg) | pte_hashpte(*pg)) && pgprot_val(prot));
|
2018-10-09 21:51:45 +08:00
|
|
|
set_pte_at(&init_mm, va, pg, pfn_pte(pa >> PAGE_SHIFT, prot));
|
2005-09-26 14:04:21 +08:00
|
|
|
}
|
2013-10-12 08:22:37 +08:00
|
|
|
smp_wmb();
|
2005-09-26 14:04:21 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2009-12-12 14:31:53 +08:00
|
|
|
* Map in a chunk of physical memory starting at start.
|
2005-09-26 14:04:21 +08:00
|
|
|
*/
|
2017-08-02 21:51:07 +08:00
|
|
|
static void __init __mapin_ram_chunk(unsigned long offset, unsigned long top)
|
2005-09-26 14:04:21 +08:00
|
|
|
{
|
2018-10-09 21:51:45 +08:00
|
|
|
unsigned long v, s;
|
2008-04-16 03:52:21 +08:00
|
|
|
phys_addr_t p;
|
2007-04-12 13:30:22 +08:00
|
|
|
int ktext;
|
2005-09-26 14:04:21 +08:00
|
|
|
|
2009-12-12 14:31:53 +08:00
|
|
|
s = offset;
|
2008-12-17 18:09:13 +08:00
|
|
|
v = PAGE_OFFSET + s;
|
2008-04-16 03:52:21 +08:00
|
|
|
p = memstart_addr + s;
|
2009-12-12 14:31:53 +08:00
|
|
|
for (; s < top; s += PAGE_SIZE) {
|
2016-02-10 15:17:08 +08:00
|
|
|
ktext = ((char *)v >= _stext && (char *)v < etext) ||
|
|
|
|
((char *)v >= _sinittext && (char *)v < _einittext);
|
2018-10-09 21:51:45 +08:00
|
|
|
map_kernel_page(v, p, ktext ? PAGE_KERNEL_TEXT : PAGE_KERNEL);
|
2018-11-17 18:25:02 +08:00
|
|
|
#ifdef CONFIG_PPC_BOOK3S_32
|
2007-04-12 13:30:22 +08:00
|
|
|
if (ktext)
|
2018-10-09 21:51:54 +08:00
|
|
|
hash_preload(&init_mm, v, false, 0x300);
|
2007-04-12 13:30:22 +08:00
|
|
|
#endif
|
2005-09-26 14:04:21 +08:00
|
|
|
v += PAGE_SIZE;
|
|
|
|
p += PAGE_SIZE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-12 14:31:53 +08:00
|
|
|
void __init mapin_ram(void)
|
|
|
|
{
|
|
|
|
unsigned long s, top;
|
|
|
|
|
|
|
|
#ifndef CONFIG_WII
|
|
|
|
top = total_lowmem;
|
2019-02-22 03:08:38 +08:00
|
|
|
s = mmu_mapin_ram(0, top);
|
2009-12-12 14:31:53 +08:00
|
|
|
__mapin_ram_chunk(s, top);
|
|
|
|
#else
|
|
|
|
if (!wii_hole_size) {
|
2019-02-22 03:08:38 +08:00
|
|
|
s = mmu_mapin_ram(0, total_lowmem);
|
2009-12-12 14:31:53 +08:00
|
|
|
__mapin_ram_chunk(s, total_lowmem);
|
|
|
|
} else {
|
|
|
|
top = wii_hole_start;
|
2019-02-22 03:08:38 +08:00
|
|
|
s = mmu_mapin_ram(0, top);
|
2009-12-12 14:31:53 +08:00
|
|
|
__mapin_ram_chunk(s, top);
|
|
|
|
|
2010-07-12 12:36:09 +08:00
|
|
|
top = memblock_end_of_DRAM();
|
2009-12-12 14:31:53 +08:00
|
|
|
s = wii_mmu_mapin_mem2(top);
|
|
|
|
__mapin_ram_chunk(s, top);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-09-26 14:04:21 +08:00
|
|
|
/* Scan the real Linux page tables and return a PTE pointer for
|
|
|
|
* a virtual address in a context.
|
|
|
|
* Returns true (1) if PTE was found, zero otherwise. The pointer to
|
|
|
|
* the PTE pointer is unmodified if PTE is not found.
|
|
|
|
*/
|
2017-08-02 21:51:07 +08:00
|
|
|
static int
|
2006-03-29 02:13:12 +08:00
|
|
|
get_pteptr(struct mm_struct *mm, unsigned long addr, pte_t **ptep, pmd_t **pmdp)
|
2005-09-26 14:04:21 +08:00
|
|
|
{
|
|
|
|
pgd_t *pgd;
|
2007-05-08 10:46:49 +08:00
|
|
|
pud_t *pud;
|
2005-09-26 14:04:21 +08:00
|
|
|
pmd_t *pmd;
|
|
|
|
pte_t *pte;
|
|
|
|
int retval = 0;
|
|
|
|
|
|
|
|
pgd = pgd_offset(mm, addr & PAGE_MASK);
|
|
|
|
if (pgd) {
|
2007-05-08 10:46:49 +08:00
|
|
|
pud = pud_offset(pgd, addr & PAGE_MASK);
|
|
|
|
if (pud && pud_present(*pud)) {
|
|
|
|
pmd = pmd_offset(pud, addr & PAGE_MASK);
|
|
|
|
if (pmd_present(*pmd)) {
|
|
|
|
pte = pte_offset_map(pmd, addr & PAGE_MASK);
|
|
|
|
if (pte) {
|
|
|
|
retval = 1;
|
|
|
|
*ptep = pte;
|
|
|
|
if (pmdp)
|
|
|
|
*pmdp = pmd;
|
|
|
|
/* XXX caller needs to do pte_unmap, yuck */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-09-26 14:04:21 +08:00
|
|
|
}
|
|
|
|
return(retval);
|
|
|
|
}
|
|
|
|
|
2017-08-02 21:51:01 +08:00
|
|
|
static int __change_page_attr_noflush(struct page *page, pgprot_t prot)
|
2007-04-12 13:30:22 +08:00
|
|
|
{
|
|
|
|
pte_t *kpte;
|
|
|
|
pmd_t *kpmd;
|
|
|
|
unsigned long address;
|
|
|
|
|
|
|
|
BUG_ON(PageHighMem(page));
|
|
|
|
address = (unsigned long)page_address(page);
|
|
|
|
|
2016-02-10 00:07:58 +08:00
|
|
|
if (v_block_mapped(address))
|
2007-04-12 13:30:22 +08:00
|
|
|
return 0;
|
|
|
|
if (!get_pteptr(&init_mm, address, &kpte, &kpmd))
|
|
|
|
return -EINVAL;
|
2009-12-09 05:08:44 +08:00
|
|
|
__set_pte_at(&init_mm, address, kpte, mk_pte(page, prot), 0);
|
2007-04-12 13:30:22 +08:00
|
|
|
pte_unmap(kpte);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Change the page attributes of an page in the linear mapping.
|
|
|
|
*
|
2017-08-02 21:51:03 +08:00
|
|
|
* THIS DOES NOTHING WITH BAT MAPPINGS, DEBUG USE ONLY
|
2007-04-12 13:30:22 +08:00
|
|
|
*/
|
|
|
|
static int change_page_attr(struct page *page, int numpages, pgprot_t prot)
|
|
|
|
{
|
|
|
|
int i, err = 0;
|
|
|
|
unsigned long flags;
|
2017-08-02 21:51:01 +08:00
|
|
|
struct page *start = page;
|
2007-04-12 13:30:22 +08:00
|
|
|
|
|
|
|
local_irq_save(flags);
|
|
|
|
for (i = 0; i < numpages; i++, page++) {
|
2017-08-02 21:51:01 +08:00
|
|
|
err = __change_page_attr_noflush(page, prot);
|
2007-04-12 13:30:22 +08:00
|
|
|
if (err)
|
|
|
|
break;
|
|
|
|
}
|
2017-08-02 21:51:01 +08:00
|
|
|
wmb();
|
2017-09-25 01:30:43 +08:00
|
|
|
local_irq_restore(flags);
|
2017-08-02 21:51:01 +08:00
|
|
|
flush_tlb_kernel_range((unsigned long)page_address(start),
|
|
|
|
(unsigned long)page_address(page));
|
2007-04-12 13:30:22 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-08-02 21:51:03 +08:00
|
|
|
void mark_initmem_nx(void)
|
|
|
|
{
|
|
|
|
struct page *page = virt_to_page(_sinittext);
|
|
|
|
unsigned long numpages = PFN_UP((unsigned long)_einittext) -
|
|
|
|
PFN_DOWN((unsigned long)_sinittext);
|
|
|
|
|
|
|
|
change_page_attr(page, numpages, PAGE_KERNEL);
|
|
|
|
}
|
2007-04-12 13:30:22 +08:00
|
|
|
|
2017-08-02 21:51:05 +08:00
|
|
|
#ifdef CONFIG_STRICT_KERNEL_RWX
|
|
|
|
void mark_rodata_ro(void)
|
|
|
|
{
|
|
|
|
struct page *page;
|
|
|
|
unsigned long numpages;
|
|
|
|
|
|
|
|
page = virt_to_page(_stext);
|
|
|
|
numpages = PFN_UP((unsigned long)_etext) -
|
|
|
|
PFN_DOWN((unsigned long)_stext);
|
|
|
|
|
|
|
|
change_page_attr(page, numpages, PAGE_KERNEL_ROX);
|
|
|
|
/*
|
|
|
|
* mark .rodata as read only. Use __init_begin rather than __end_rodata
|
|
|
|
* to cover NOTES and EXCEPTION_TABLE.
|
|
|
|
*/
|
|
|
|
page = virt_to_page(__start_rodata);
|
|
|
|
numpages = PFN_UP((unsigned long)__init_begin) -
|
|
|
|
PFN_DOWN((unsigned long)__start_rodata);
|
|
|
|
|
|
|
|
change_page_attr(page, numpages, PAGE_KERNEL_RO);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-08-02 21:51:03 +08:00
|
|
|
#ifdef CONFIG_DEBUG_PAGEALLOC
|
2014-12-13 08:55:52 +08:00
|
|
|
void __kernel_map_pages(struct page *page, int numpages, int enable)
|
2007-04-12 13:30:22 +08:00
|
|
|
{
|
|
|
|
if (PageHighMem(page))
|
|
|
|
return;
|
|
|
|
|
|
|
|
change_page_attr(page, numpages, enable ? PAGE_KERNEL : __pgprot(0));
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_DEBUG_PAGEALLOC */
|