blob: 0b85e363e778c9fb15fd4f1052049f54b4b1a4e4 [file] [log] [blame]
Nick Hu8ad8b722020-01-06 10:38:32 -08001/* SPDX-License-Identifier: GPL-2.0 */
2/* Copyright (C) 2019 Andes Technology Corporation */
3
4#ifndef __ASM_KASAN_H
5#define __ASM_KASAN_H
6
7#ifndef __ASSEMBLY__
8
9#ifdef CONFIG_KASAN
10
Alexandre Ghiti7899ed22021-02-08 14:30:14 -050011/*
12 * The following comment was copied from arm64:
13 * KASAN_SHADOW_START: beginning of the kernel virtual addresses.
14 * KASAN_SHADOW_END: KASAN_SHADOW_START + 1/N of kernel virtual addresses,
15 * where N = (1 << KASAN_SHADOW_SCALE_SHIFT).
16 *
17 * KASAN_SHADOW_OFFSET:
18 * This value is used to map an address to the corresponding shadow
19 * address by the following formula:
20 * shadow_addr = (address >> KASAN_SHADOW_SCALE_SHIFT) + KASAN_SHADOW_OFFSET
21 *
22 * (1 << (64 - KASAN_SHADOW_SCALE_SHIFT)) shadow addresses that lie in range
23 * [KASAN_SHADOW_OFFSET, KASAN_SHADOW_END) cover all 64-bits of virtual
24 * addresses. So KASAN_SHADOW_OFFSET should satisfy the following equation:
25 * KASAN_SHADOW_OFFSET = KASAN_SHADOW_END -
26 * (1ULL << (64 - KASAN_SHADOW_SCALE_SHIFT))
27 */
Nick Hu8ad8b722020-01-06 10:38:32 -080028#define KASAN_SHADOW_SCALE_SHIFT 3
29
Alexandre Ghiti3270bfd2021-12-06 11:46:48 +010030#define KASAN_SHADOW_SIZE (UL(1) << ((VA_BITS - 1) - KASAN_SHADOW_SCALE_SHIFT))
Alexandre Ghitie8a62cc2021-12-06 11:46:51 +010031/*
32 * Depending on the size of the virtual address space, the region may not be
33 * aligned on PGDIR_SIZE, so force its alignment to ease its population.
34 */
35#define KASAN_SHADOW_START ((KASAN_SHADOW_END - KASAN_SHADOW_SIZE) & PGDIR_MASK)
Alexandre Ghitif7ae0232021-12-06 11:46:45 +010036#define KASAN_SHADOW_END MODULES_LOWEST_VADDR
Alexandre Ghiti54c5639d2021-10-29 06:59:27 +020037#define KASAN_SHADOW_OFFSET _AC(CONFIG_KASAN_SHADOW_OFFSET, UL)
Nick Hu8ad8b722020-01-06 10:38:32 -080038
39void kasan_init(void);
40asmlinkage void kasan_early_init(void);
Alexandre Ghiti2efad172021-12-06 11:46:46 +010041void kasan_swapper_init(void);
Nick Hu8ad8b722020-01-06 10:38:32 -080042
43#endif
44#endif
45#endif /* __ASM_KASAN_H */