mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 03:29:47 +07:00
d2a5f4999f
Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
19 lines
446 B
C
19 lines
446 B
C
#ifndef _H8300_PAGE_H
|
|
#define _H8300_PAGE_H
|
|
|
|
#include <asm-generic/page.h>
|
|
#include <linux/types.h>
|
|
|
|
#define MAP_NR(addr) (((uintptr_t)(addr)-PAGE_OFFSET) >> PAGE_SHIFT)
|
|
#define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
|
|
VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
|
|
|
|
#ifndef __ASSEMBLY__
|
|
extern unsigned long rom_length;
|
|
extern unsigned long memory_start;
|
|
extern unsigned long memory_end;
|
|
extern unsigned long _ramend;
|
|
#endif
|
|
|
|
#endif
|