]> git.ipfire.org Git - thirdparty/linux.git/blame - mm/init-mm.c
arm64: tegra: Use correct interrupts for Tegra234 TKE
[thirdparty/linux.git] / mm / init-mm.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
bb1f17b0 2#include <linux/mm_types.h>
d4af56c5 3#include <linux/maple_tree.h>
bb1f17b0
AD
4#include <linux/rwsem.h>
5#include <linux/spinlock.h>
6#include <linux/list.h>
7#include <linux/cpumask.h>
a2ae8c05 8#include <linux/mman.h>
65fddcfc 9#include <linux/pgtable.h>
bb1f17b0 10
60063497 11#include <linux/atomic.h>
bfedb589 12#include <linux/user_namespace.h>
fffaed1e 13#include <linux/iommu.h>
a1b200e2
HC
14#include <asm/mmu.h>
15
16#ifndef INIT_MM_CONTEXT
17#define INIT_MM_CONTEXT(name)
18#endif
bb1f17b0 19
9a9d0b82
MG
20const struct vm_operations_struct vma_dummy_vm_ops;
21
c1a2f7f0
RR
22/*
23 * For dynamically allocated mm_structs, there is a dynamically sized cpumask
24 * at the end of the structure, the size of which depends on the maximum CPU
25 * number the system can see. That way we allocate only as much memory for
26 * mm_cpumask() as needed for the hundreds, or thousands of processes that
27 * a system typically runs.
28 *
29 * Since there is only one init_mm in the entire system, keep it simple
30 * and size this cpu_bitmask to NR_CPUS.
31 */
bb1f17b0 32struct mm_struct init_mm = {
d4af56c5 33 .mm_mt = MTREE_INIT_EXT(mm_mt, MM_MT_FLAGS, init_mm.mmap_lock),
bb1f17b0
AD
34 .pgd = swapper_pg_dir,
35 .mm_users = ATOMIC_INIT(2),
36 .mm_count = ATOMIC_INIT(1),
57efa1fe 37 .write_protect_seq = SEQCNT_ZERO(init_mm.write_protect_seq),
14c3656b 38 MMAP_LOCK_INITIALIZER(init_mm)
bb1f17b0 39 .page_table_lock = __SPIN_LOCK_UNLOCKED(init_mm.page_table_lock),
88aa7cc6 40 .arg_lock = __SPIN_LOCK_UNLOCKED(init_mm.arg_lock),
bb1f17b0 41 .mmlist = LIST_HEAD_INIT(init_mm.mmlist),
5e31275c
SB
42#ifdef CONFIG_PER_VMA_LOCK
43 .mm_lock_seq = 0,
44#endif
bfedb589 45 .user_ns = &init_user_ns,
2286bf4e 46 .cpu_bitmap = CPU_BITS_NONE,
a6cbd440 47#ifdef CONFIG_IOMMU_SVA
fffaed1e 48 .pasid = IOMMU_PASID_INVALID,
a6cbd440 49#endif
a1b200e2 50 INIT_MM_CONTEXT(init_mm)
bb1f17b0 51};
5748fbc5
KW
52
53void setup_initial_init_mm(void *start_code, void *end_code,
54 void *end_data, void *brk)
55{
56 init_mm.start_code = (unsigned long)start_code;
57 init_mm.end_code = (unsigned long)end_code;
58 init_mm.end_data = (unsigned long)end_data;
59 init_mm.brk = (unsigned long)brk;
60}