blob: 73ba956e379f752ed907d443c89187210c1a1a37 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Will Deacon89038262011-09-30 11:43:29 +01002#ifndef __ASM_IDMAP_H
3#define __ASM_IDMAP_H
4
5#include <linux/compiler.h>
6#include <asm/pgtable.h>
7
8/* Tag a function as requiring to be executed via an identity mapping. */
9#define __idmap __section(.idmap.text) noinline notrace
10
11extern pgd_t *idmap_pgd;
12
Will Deacon89038262011-09-30 11:43:29 +010013void setup_mm_for_reboot(void);
14
15#endif /* __ASM_IDMAP_H */