hc
2024-08-14 93e8ba98c407598d13d8ade71bc7802acfb19c58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * Based on arch/arm/include/asm/page.h
 *
 * Copyright (C) 1995-2003 Russell King
 * Copyright (C) 2017 ARM Ltd.
 */
#ifndef __ASM_PAGE_DEF_H
#define __ASM_PAGE_DEF_H
 
#include <linux/const.h>
 
/* PAGE_SHIFT determines the page size */
#define PAGE_SHIFT        CONFIG_ARM64_PAGE_SHIFT
#define PAGE_SIZE        (_AC(1, UL) << PAGE_SHIFT)
#define PAGE_MASK        (~(PAGE_SIZE-1))
 
#endif /* __ASM_PAGE_DEF_H */