Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
R128
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ermine
R128
Commits
4db27dca
Commit
4db27dca
authored
10 years ago
by
Vineet Gupta
Browse files
Options
Downloads
Patches
Plain Diff
ARC: mm: document system mem map clearly
Signed-off-by:
Vineet Gupta
<
vgupta@synopsys.com
>
parent
def32fad
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
arch/arc/include/asm/processor.h
+16
-19
16 additions, 19 deletions
arch/arc/include/asm/processor.h
arch/arc/include/uapi/asm/page.h
+1
-1
1 addition, 1 deletion
arch/arc/include/uapi/asm/page.h
with
17 additions
and
20 deletions
arch/arc/include/asm/processor.h
+
16
−
19
View file @
4db27dca
...
...
@@ -100,29 +100,26 @@ extern unsigned int get_wchan(struct task_struct *p);
#endif
/* !__ASSEMBLY__ */
/* Kernels Virtual memory area.
* Unlike other architectures(MIPS, sh, cris ) ARC 700 does not have a
* "kernel translated" region (like KSEG2 in MIPS). So we use a upper part
* of the translated bottom 2GB for kernel virtual memory and protect
* these pages from user accesses by disabling Ru, Eu and Wu.
/*
* System Memory Map on ARC
*
* ---------------------------- (lower 2G, Translated) -------------------------
* 0x0000_0000 0x5FFF_FFFF (user vaddr: TASK_SIZE)
* 0x6000_0000 0x6FFF_FFFF (reserved gutter between U/K)
* 0x7000_0000 0x7FFF_FFFF (kvaddr: vmalloc/modules/pkmap..)
*
* PAGE_OFFSET ---------------- (Upper 2G, Untranslated) -----------------------
* 0x8000_0000 0xBFFF_FFFF (kernel direct mapped)
* 0xC000_0000 0xFFFF_FFFF (peripheral uncached space)
* -----------------------------------------------------------------------------
*/
#define VMALLOC_S
IZE (
0x
1
0000000
)
/* 256M */
#define VMALLOC_S
TART
(PAGE_OFFSET - VMALLOC_S
IZE
)
#define VMALLOC_END (
PAGE_OFFSET
)
#define VMALLOC_S
TART
0x
7
0000000
#define VMALLOC_S
IZE
(PAGE_OFFSET - VMALLOC_S
TART
)
#define VMALLOC_END (
VMALLOC_START + VMALLOC_SIZE
)
/* Most of the architectures seem to be keeping some kind of padding between
* userspace TASK_SIZE and PAGE_OFFSET. i.e TASK_SIZE != PAGE_OFFSET.
*/
#define USER_KERNEL_GUTTER 0x10000000
/* User address space:
* On ARC700, CPU allows the entire lower half of 32 bit address space to be
* translated. Thus potentially 2G (0:0x7FFF_FFFF) could be User vaddr space.
* However we steal 256M for kernel addr (0x7000_0000:0x7FFF_FFFF) and another
* 256M (0x6000_0000:0x6FFF_FFFF) is gutter between user/kernel spaces
* Thus total User vaddr space is (0:0x5FFF_FFFF)
*/
#define TASK_SIZE (PAGE_OFFSET - VMALLOC_SIZE - USER_KERNEL_GUTTER)
#define TASK_SIZE (VMALLOC_START - USER_KERNEL_GUTTER)
#define STACK_TOP TASK_SIZE
#define STACK_TOP_MAX STACK_TOP
...
...
This diff is collapsed.
Click to expand it.
arch/arc/include/uapi/asm/page.h
+
1
−
1
View file @
4db27dca
...
...
@@ -30,7 +30,7 @@
#define PAGE_OFFSET (0x80000000)
#else
#define PAGE_SIZE (1UL << PAGE_SHIFT)
/* Default 8K */
#define PAGE_OFFSET (0x80000000UL)
/* Kernel starts at 2G onwards */
#define PAGE_OFFSET (0x80000000UL)
/* Kernel starts at 2G onwards */
#endif
#define PAGE_MASK (~(PAGE_SIZE-1))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment