blob: eb70c6d7ceff2eb9eb935d49dcf626d4d6110ec9 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _PGTABLE_NOPUD_H
3#define _PGTABLE_NOPUD_H
4
5#ifndef __ASSEMBLY__
6
Kirill A. Shutemov048456d2017-03-09 17:24:06 +03007#include <asm-generic/pgtable-nop4d.h>
Kirill A. Shutemov30ec8422017-03-09 17:24:04 +03008
Martin Schwidefskya8874e72018-10-31 12:11:48 +01009#define __PAGETABLE_PUD_FOLDED 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11/*
Kirill A. Shutemov048456d2017-03-09 17:24:06 +030012 * Having the pud type consist of a p4d gets the size right, and allows
13 * us to conceptually access the p4d entry that this pud is folded into
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * without casting.
15 */
Kirill A. Shutemov048456d2017-03-09 17:24:06 +030016typedef struct { p4d_t p4d; } pud_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Kirill A. Shutemov048456d2017-03-09 17:24:06 +030018#define PUD_SHIFT P4D_SHIFT
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#define PTRS_PER_PUD 1
20#define PUD_SIZE (1UL << PUD_SHIFT)
21#define PUD_MASK (~(PUD_SIZE-1))
22
23/*
Kirill A. Shutemov048456d2017-03-09 17:24:06 +030024 * The "p4d_xxx()" functions here are trivial for a folded two-level
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * setup: the pud is never bad, and a pud always exists (as it's folded
Kirill A. Shutemov048456d2017-03-09 17:24:06 +030026 * into the p4d entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
Kirill A. Shutemov048456d2017-03-09 17:24:06 +030028static inline int p4d_none(p4d_t p4d) { return 0; }
29static inline int p4d_bad(p4d_t p4d) { return 0; }
30static inline int p4d_present(p4d_t p4d) { return 1; }
31static inline void p4d_clear(p4d_t *p4d) { }
32#define pud_ERROR(pud) (p4d_ERROR((pud).p4d))
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Kirill A. Shutemov048456d2017-03-09 17:24:06 +030034#define p4d_populate(mm, p4d, pud) do { } while (0)
Dan Williams0a9fe8c2018-12-04 13:37:21 -080035#define p4d_populate_safe(mm, p4d, pud) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/*
Kirill A. Shutemov048456d2017-03-09 17:24:06 +030037 * (puds are folded into p4ds so this doesn't get actually called,
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * but the define is needed for a generic inline function.)
39 */
Kirill A. Shutemov048456d2017-03-09 17:24:06 +030040#define set_p4d(p4dptr, p4dval) set_pud((pud_t *)(p4dptr), (pud_t) { p4dval })
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Kirill A. Shutemov048456d2017-03-09 17:24:06 +030042static inline pud_t *pud_offset(p4d_t *p4d, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
Kirill A. Shutemov048456d2017-03-09 17:24:06 +030044 return (pud_t *)p4d;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
Mike Rapoport974b9b22020-06-08 21:33:10 -070046#define pud_offset pud_offset
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Kirill A. Shutemov048456d2017-03-09 17:24:06 +030048#define pud_val(x) (p4d_val((x).p4d))
49#define __pud(x) ((pud_t) { __p4d(x) })
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Kirill A. Shutemov048456d2017-03-09 17:24:06 +030051#define p4d_page(p4d) (pud_page((pud_t){ p4d }))
Aneesh Kumar K.Vdc4875f2021-07-07 18:09:56 -070052#define p4d_pgtable(p4d) ((pud_t *)(pud_pgtable((pud_t){ p4d })))
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/*
55 * allocating and freeing a pud is trivial: the 1-entry pud is
Kirill A. Shutemov048456d2017-03-09 17:24:06 +030056 * inside the p4d, so has no extra memory associated with it.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 */
58#define pud_alloc_one(mm, address) NULL
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080059#define pud_free(mm, x) do { } while (0)
Vineet Guptab08861d2019-11-30 17:51:10 -080060#define pud_free_tlb(tlb, x, a) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#undef pud_addr_end
63#define pud_addr_end(addr, end) (end)
64
65#endif /* __ASSEMBLY__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#endif /* _PGTABLE_NOPUD_H */