blob: 6f6619ba898062c6af642c83dd574eda02c0e6c6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/asm-s390/pgalloc.h
3 *
4 * S390 version
5 * Copyright (C) 1999,2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
6 * Author(s): Hartmut Penner (hp@de.ibm.com)
7 * Martin Schwidefsky (schwidefsky@de.ibm.com)
8 *
9 * Derived from "include/asm-i386/pgalloc.h"
10 * Copyright (C) 1994 Linus Torvalds
11 */
12
13#ifndef _S390_PGALLOC_H
14#define _S390_PGALLOC_H
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/threads.h>
17#include <linux/gfp.h>
18#include <linux/mm.h>
19
20#define check_pgt_cache() do {} while (0)
21
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020022unsigned long *crst_table_alloc(struct mm_struct *, int);
23void crst_table_free(unsigned long *);
Gerald Schaefer9282ed92006-09-20 15:59:37 +020024
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020025unsigned long *page_table_alloc(int);
26void page_table_free(unsigned long *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020028static inline void clear_table(unsigned long *s, unsigned long val, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029{
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020030 *s = val;
31 n = (n / 256) - 1;
32 asm volatile(
33#ifdef CONFIG_64BIT
34 " mvc 8(248,%0),0(%0)\n"
Gerald Schaefer9282ed92006-09-20 15:59:37 +020035#else
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020036 " mvc 4(252,%0),0(%0)\n"
Gerald Schaefer9282ed92006-09-20 15:59:37 +020037#endif
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020038 "0: mvc 256(256,%0),0(%0)\n"
39 " la %0,256(%0)\n"
40 " brct %1,0b\n"
41 : "+a" (s), "+d" (n));
Linus Torvalds1da177e2005-04-16 15:20:36 -070042}
43
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020044static inline void crst_table_init(unsigned long *crst, unsigned long entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020046 clear_table(crst, entry, sizeof(unsigned long)*2048);
47 crst = get_shadow_table(crst);
48 if (crst)
49 clear_table(crst, entry, sizeof(unsigned long)*2048);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050}
51
52#ifndef __s390x__
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020053
54static inline unsigned long pgd_entry_type(struct mm_struct *mm)
55{
56 return _SEGMENT_ENTRY_EMPTY;
57}
58
Martin Schwidefsky190a1d72007-10-22 12:52:48 +020059#define pud_alloc_one(mm,address) ({ BUG(); ((pud_t *)2); })
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080060#define pud_free(mm, x) do { } while (0)
Martin Schwidefsky190a1d72007-10-22 12:52:48 +020061
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020062#define pmd_alloc_one(mm,address) ({ BUG(); ((pmd_t *)2); })
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080063#define pmd_free(mm, x) do { } while (0)
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020064
Martin Schwidefsky190a1d72007-10-22 12:52:48 +020065#define pgd_populate(mm, pgd, pud) BUG()
66#define pgd_populate_kernel(mm, pgd, pud) BUG()
67
68#define pud_populate(mm, pud, pmd) BUG()
69#define pud_populate_kernel(mm, pud, pmd) BUG()
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#else /* __s390x__ */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020072
73static inline unsigned long pgd_entry_type(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020075 return _REGION3_ENTRY_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
Martin Schwidefsky190a1d72007-10-22 12:52:48 +020078#define pud_alloc_one(mm,address) ({ BUG(); ((pud_t *)2); })
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080079#define pud_free(mm, x) do { } while (0)
Martin Schwidefsky190a1d72007-10-22 12:52:48 +020080
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020081static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long vmaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020083 unsigned long *crst = crst_table_alloc(mm, s390_noexec);
84 if (crst)
85 crst_table_init(crst, _SEGMENT_ENTRY_EMPTY);
86 return (pmd_t *) crst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080088#define pmd_free(mm, pmd) crst_table_free((unsigned long *)pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Martin Schwidefsky190a1d72007-10-22 12:52:48 +020090#define pgd_populate(mm, pgd, pud) BUG()
91#define pgd_populate_kernel(mm, pgd, pud) BUG()
92
93static inline void pud_populate_kernel(struct mm_struct *mm,
94 pud_t *pud, pmd_t *pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Martin Schwidefsky190a1d72007-10-22 12:52:48 +020096 pud_val(*pud) = _REGION3_ENTRY | __pa(pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
Martin Schwidefsky190a1d72007-10-22 12:52:48 +020099static inline void pud_populate(struct mm_struct *mm, pud_t *pud, pmd_t *pmd)
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100100{
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200101 pud_t *shadow_pud = get_shadow_table(pud);
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200102 pmd_t *shadow_pmd = get_shadow_table(pmd);
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100103
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200104 if (shadow_pud && shadow_pmd)
105 pud_populate_kernel(mm, shadow_pud, shadow_pmd);
106 pud_populate_kernel(mm, pud, pmd);
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#endif /* __s390x__ */
110
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200111static inline pgd_t *pgd_alloc(struct mm_struct *mm)
112{
113 unsigned long *crst = crst_table_alloc(mm, s390_noexec);
114 if (crst)
115 crst_table_init(crst, pgd_entry_type(mm));
116 return (pgd_t *) crst;
117}
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -0800118#define pgd_free(mm, pgd) crst_table_free((unsigned long *) pgd)
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120static inline void
121pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmd, pte_t *pte)
122{
123#ifndef __s390x__
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200124 pmd_val(pmd[0]) = _SEGMENT_ENTRY + __pa(pte);
125 pmd_val(pmd[1]) = _SEGMENT_ENTRY + __pa(pte+256);
126 pmd_val(pmd[2]) = _SEGMENT_ENTRY + __pa(pte+512);
127 pmd_val(pmd[3]) = _SEGMENT_ENTRY + __pa(pte+768);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#else /* __s390x__ */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200129 pmd_val(*pmd) = _SEGMENT_ENTRY + __pa(pte);
130 pmd_val1(*pmd) = _SEGMENT_ENTRY + __pa(pte+256);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#endif /* __s390x__ */
132}
133
134static inline void
135pmd_populate(struct mm_struct *mm, pmd_t *pmd, struct page *page)
136{
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100137 pte_t *pte = (pte_t *)page_to_phys(page);
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200138 pmd_t *shadow_pmd = get_shadow_table(pmd);
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100139 pte_t *shadow_pte = get_shadow_pte(pte);
140
141 pmd_populate_kernel(mm, pmd, pte);
142 if (shadow_pmd && shadow_pte)
143 pmd_populate_kernel(mm, shadow_pmd, shadow_pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146/*
147 * page table entry allocation/free routines.
148 */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200149#define pte_alloc_one_kernel(mm, vmaddr) \
150 ((pte_t *) page_table_alloc(s390_noexec))
151#define pte_alloc_one(mm, vmaddr) \
152 virt_to_page(page_table_alloc(s390_noexec))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -0800154#define pte_free_kernel(mm, pte) \
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200155 page_table_free((unsigned long *) pte)
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -0800156#define pte_free(mm, pte) \
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200157 page_table_free((unsigned long *) page_to_phys((struct page *) pte))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159#endif /* _S390_PGALLOC_H */