diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/asm-sparc/highmem.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'include/asm-sparc/highmem.h')
-rw-r--r-- | include/asm-sparc/highmem.h | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/include/asm-sparc/highmem.h b/include/asm-sparc/highmem.h new file mode 100644 index 000000000000..3de42e776274 --- /dev/null +++ b/include/asm-sparc/highmem.h | |||
@@ -0,0 +1,81 @@ | |||
1 | /* | ||
2 | * highmem.h: virtual kernel memory mappings for high memory | ||
3 | * | ||
4 | * Used in CONFIG_HIGHMEM systems for memory pages which | ||
5 | * are not addressable by direct kernel virtual addresses. | ||
6 | * | ||
7 | * Copyright (C) 1999 Gerhard Wichert, Siemens AG | ||
8 | * Gerhard.Wichert@pdb.siemens.de | ||
9 | * | ||
10 | * | ||
11 | * Redesigned the x86 32-bit VM architecture to deal with | ||
12 | * up to 16 Terrabyte physical memory. With current x86 CPUs | ||
13 | * we now support up to 64 Gigabytes physical RAM. | ||
14 | * | ||
15 | * Copyright (C) 1999 Ingo Molnar <mingo@redhat.com> | ||
16 | */ | ||
17 | |||
18 | #ifndef _ASM_HIGHMEM_H | ||
19 | #define _ASM_HIGHMEM_H | ||
20 | |||
21 | #ifdef __KERNEL__ | ||
22 | |||
23 | #include <linux/interrupt.h> | ||
24 | #include <asm/fixmap.h> | ||
25 | #include <asm/vaddrs.h> | ||
26 | #include <asm/kmap_types.h> | ||
27 | #include <asm/pgtable.h> | ||
28 | |||
29 | /* declarations for highmem.c */ | ||
30 | extern unsigned long highstart_pfn, highend_pfn; | ||
31 | |||
32 | extern pte_t *kmap_pte; | ||
33 | extern pgprot_t kmap_prot; | ||
34 | extern pte_t *pkmap_page_table; | ||
35 | |||
36 | extern void kmap_init(void) __init; | ||
37 | |||
38 | /* | ||
39 | * Right now we initialize only a single pte table. It can be extended | ||
40 | * easily, subsequent pte tables have to be allocated in one physical | ||
41 | * chunk of RAM. Currently the simplest way to do this is to align the | ||
42 | * pkmap region on a pagetable boundary (4MB). | ||
43 | */ | ||
44 | #define LAST_PKMAP 1024 | ||
45 | #define PKMAP_SIZE (LAST_PKMAP << PAGE_SHIFT) | ||
46 | #define PKMAP_BASE PMD_ALIGN(SRMMU_NOCACHE_VADDR + (SRMMU_MAX_NOCACHE_PAGES << PAGE_SHIFT)) | ||
47 | |||
48 | #define LAST_PKMAP_MASK (LAST_PKMAP - 1) | ||
49 | #define PKMAP_NR(virt) ((virt - PKMAP_BASE) >> PAGE_SHIFT) | ||
50 | #define PKMAP_ADDR(nr) (PKMAP_BASE + ((nr) << PAGE_SHIFT)) | ||
51 | |||
52 | #define PKMAP_END (PKMAP_ADDR(LAST_PKMAP)) | ||
53 | |||
54 | extern void *kmap_high(struct page *page); | ||
55 | extern void kunmap_high(struct page *page); | ||
56 | |||
57 | static inline void *kmap(struct page *page) | ||
58 | { | ||
59 | BUG_ON(in_interrupt()); | ||
60 | if (!PageHighMem(page)) | ||
61 | return page_address(page); | ||
62 | return kmap_high(page); | ||
63 | } | ||
64 | |||
65 | static inline void kunmap(struct page *page) | ||
66 | { | ||
67 | BUG_ON(in_interrupt()); | ||
68 | if (!PageHighMem(page)) | ||
69 | return; | ||
70 | kunmap_high(page); | ||
71 | } | ||
72 | |||
73 | extern void *kmap_atomic(struct page *page, enum km_type type); | ||
74 | extern void kunmap_atomic(void *kvaddr, enum km_type type); | ||
75 | extern struct page *kmap_atomic_to_page(void *vaddr); | ||
76 | |||
77 | #define flush_cache_kmaps() flush_cache_all() | ||
78 | |||
79 | #endif /* __KERNEL__ */ | ||
80 | |||
81 | #endif /* _ASM_HIGHMEM_H */ | ||