blob: 1a66f907e5cca0f8df1d3cbef5ab3372bf000c4b [file] [log] [blame]
Will Deacon89038262011-09-30 11:43:29 +01001#ifndef __ASM_IDMAP_H
2#define __ASM_IDMAP_H
3
4#include <linux/compiler.h>
5#include <asm/pgtable.h>
6
7/* Tag a function as requiring to be executed via an identity mapping. */
8#define __idmap __section(.idmap.text) noinline notrace
9
10extern pgd_t *idmap_pgd;
Christoffer Dall9e9a3672013-01-20 18:43:10 -050011extern pgd_t *hyp_pgd;
Will Deacon89038262011-09-30 11:43:29 +010012
Will Deacon89038262011-09-30 11:43:29 +010013void setup_mm_for_reboot(void);
14
15#endif /* __ASM_IDMAP_H */