diff options
author | Jesper Nilsson <jesper.nilsson@axis.com> | 2010-08-03 18:58:29 +0200 |
---|---|---|
committer | Jesper Nilsson <jesper.nilsson@axis.com> | 2010-08-04 13:02:35 +0200 |
commit | 2dc1c40c6e81ba406f2f6b00fe5eecb4c7cf1197 (patch) | |
tree | 71ba36e9980eb7d3edf9980b69fce82a24f93b52 /arch | |
parent | 32e7a8ba8d435d03752be818a82748c5e3eadc36 (diff) | |
download | blackbird-op-linux-2dc1c40c6e81ba406f2f6b00fe5eecb4c7cf1197.tar.gz blackbird-op-linux-2dc1c40c6e81ba406f2f6b00fe5eecb4c7cf1197.zip |
CRIS: Pagetable for ARTPEC-3
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/cris/include/arch-v32/arch/pgtable.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/cris/include/arch-v32/arch/pgtable.h b/arch/cris/include/arch-v32/arch/pgtable.h index 08cb7ff7e4e7..c1051a8da33d 100644 --- a/arch/cris/include/arch-v32/arch/pgtable.h +++ b/arch/cris/include/arch-v32/arch/pgtable.h @@ -2,8 +2,16 @@ #define _ASM_CRIS_ARCH_PGTABLE_H /* Define the kernels virtual memory area. */ + +/* See head.S for differences between ARTPEC-3 and ETRAX FS. */ +#ifdef CONFIG_CRIS_MACH_ARTPEC3 +#define VMALLOC_START KSEG_E +#define VMALLOC_END KSEG_F +#else #define VMALLOC_START KSEG_D #define VMALLOC_END KSEG_E +#endif + #define VMALLOC_VMADDR(x) ((unsigned long)(x)) #endif /* _ASM_CRIS_ARCH_PGTABLE_H */ |