diff options
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/include/asm/cacheflush.h | 4 | ||||
-rw-r--r-- | arch/sh/include/asm/pgtable.h | 6 | ||||
-rw-r--r-- | arch/sh/mm/Makefile_32 | 2 | ||||
-rw-r--r-- | arch/sh/mm/cache-sh5.c | 15 | ||||
-rw-r--r-- | arch/sh/mm/kmap.c | 64 | ||||
-rw-r--r-- | arch/sh/mm/pg-mmu.c | 48 | ||||
-rw-r--r-- | arch/sh/mm/tlb-nommu.c | 15 |
7 files changed, 99 insertions, 55 deletions
diff --git a/arch/sh/include/asm/cacheflush.h b/arch/sh/include/asm/cacheflush.h index 5dffbd126e46..0e87e87cc01f 100644 --- a/arch/sh/include/asm/cacheflush.h +++ b/arch/sh/include/asm/cacheflush.h | |||
@@ -74,5 +74,9 @@ extern void copy_from_user_page(struct vm_area_struct *vma, | |||
74 | #define flush_cache_vmap(start, end) flush_cache_all() | 74 | #define flush_cache_vmap(start, end) flush_cache_all() |
75 | #define flush_cache_vunmap(start, end) flush_cache_all() | 75 | #define flush_cache_vunmap(start, end) flush_cache_all() |
76 | 76 | ||
77 | void kmap_coherent_init(void); | ||
78 | void *kmap_coherent(struct page *page, unsigned long addr); | ||
79 | void kunmap_coherent(void); | ||
80 | |||
77 | #endif /* __KERNEL__ */ | 81 | #endif /* __KERNEL__ */ |
78 | #endif /* __ASM_SH_CACHEFLUSH_H */ | 82 | #endif /* __ASM_SH_CACHEFLUSH_H */ |
diff --git a/arch/sh/include/asm/pgtable.h b/arch/sh/include/asm/pgtable.h index 3cd7127af957..4f3efa7d5a64 100644 --- a/arch/sh/include/asm/pgtable.h +++ b/arch/sh/include/asm/pgtable.h | |||
@@ -158,12 +158,6 @@ extern void paging_init(void); | |||
158 | extern void page_table_range_init(unsigned long start, unsigned long end, | 158 | extern void page_table_range_init(unsigned long start, unsigned long end, |
159 | pgd_t *pgd); | 159 | pgd_t *pgd); |
160 | 160 | ||
161 | #if defined(CONFIG_MMU) && !defined(CONFIG_CPU_SH5) | ||
162 | extern void kmap_coherent_init(void); | ||
163 | #else | ||
164 | #define kmap_coherent_init() do { } while (0) | ||
165 | #endif | ||
166 | |||
167 | /* arch/sh/mm/mmap.c */ | 161 | /* arch/sh/mm/mmap.c */ |
168 | #define HAVE_ARCH_UNMAPPED_AREA | 162 | #define HAVE_ARCH_UNMAPPED_AREA |
169 | #define HAVE_ARCH_UNMAPPED_AREA_TOPDOWN | 163 | #define HAVE_ARCH_UNMAPPED_AREA_TOPDOWN |
diff --git a/arch/sh/mm/Makefile_32 b/arch/sh/mm/Makefile_32 index 17b02522214f..30771b137f48 100644 --- a/arch/sh/mm/Makefile_32 +++ b/arch/sh/mm/Makefile_32 | |||
@@ -15,7 +15,7 @@ endif | |||
15 | obj-y += $(cache-y) | 15 | obj-y += $(cache-y) |
16 | 16 | ||
17 | mmu-y := tlb-nommu.o pg-nommu.o | 17 | mmu-y := tlb-nommu.o pg-nommu.o |
18 | mmu-$(CONFIG_MMU) := fault_32.o tlbflush_32.o ioremap_32.o pg-mmu.o | 18 | mmu-$(CONFIG_MMU) := fault_32.o kmap.o tlbflush_32.o ioremap_32.o pg-mmu.o |
19 | 19 | ||
20 | obj-y += $(mmu-y) | 20 | obj-y += $(mmu-y) |
21 | obj-$(CONFIG_DEBUG_FS) += asids-debugfs.o | 21 | obj-$(CONFIG_DEBUG_FS) += asids-debugfs.o |
diff --git a/arch/sh/mm/cache-sh5.c b/arch/sh/mm/cache-sh5.c index 698113fce814..28f3c8fb1b99 100644 --- a/arch/sh/mm/cache-sh5.c +++ b/arch/sh/mm/cache-sh5.c | |||
@@ -29,6 +29,21 @@ void __init p3_cache_init(void) | |||
29 | dtlb_cache_slot = sh64_get_wired_dtlb_entry(); | 29 | dtlb_cache_slot = sh64_get_wired_dtlb_entry(); |
30 | } | 30 | } |
31 | 31 | ||
32 | void __init kmap_coherent_init(void) | ||
33 | { | ||
34 | /* XXX ... */ | ||
35 | } | ||
36 | |||
37 | void *kmap_coherent(struct page *page, unsigned long addr) | ||
38 | { | ||
39 | /* XXX ... */ | ||
40 | return NULL; | ||
41 | } | ||
42 | |||
43 | void kunmap_coherent(void) | ||
44 | { | ||
45 | } | ||
46 | |||
32 | #ifdef CONFIG_DCACHE_DISABLED | 47 | #ifdef CONFIG_DCACHE_DISABLED |
33 | #define sh64_dcache_purge_all() do { } while (0) | 48 | #define sh64_dcache_purge_all() do { } while (0) |
34 | #define sh64_dcache_purge_coloured_phy_page(paddr, eaddr) do { } while (0) | 49 | #define sh64_dcache_purge_coloured_phy_page(paddr, eaddr) do { } while (0) |
diff --git a/arch/sh/mm/kmap.c b/arch/sh/mm/kmap.c new file mode 100644 index 000000000000..3eecf0d42f1a --- /dev/null +++ b/arch/sh/mm/kmap.c | |||
@@ -0,0 +1,64 @@ | |||
1 | /* | ||
2 | * arch/sh/mm/kmap.c | ||
3 | * | ||
4 | * Copyright (C) 1999, 2000, 2002 Niibe Yutaka | ||
5 | * Copyright (C) 2002 - 2009 Paul Mundt | ||
6 | * | ||
7 | * Released under the terms of the GNU GPL v2.0. | ||
8 | */ | ||
9 | #include <linux/mm.h> | ||
10 | #include <linux/init.h> | ||
11 | #include <linux/mutex.h> | ||
12 | #include <linux/fs.h> | ||
13 | #include <linux/highmem.h> | ||
14 | #include <linux/module.h> | ||
15 | #include <asm/mmu_context.h> | ||
16 | #include <asm/cacheflush.h> | ||
17 | |||
18 | #define kmap_get_fixmap_pte(vaddr) \ | ||
19 | pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr), (vaddr)), (vaddr)), (vaddr)) | ||
20 | |||
21 | static pte_t *kmap_coherent_pte; | ||
22 | |||
23 | void __init kmap_coherent_init(void) | ||
24 | { | ||
25 | unsigned long vaddr; | ||
26 | |||
27 | if (!boot_cpu_data.dcache.n_aliases) | ||
28 | return; | ||
29 | |||
30 | /* cache the first coherent kmap pte */ | ||
31 | vaddr = __fix_to_virt(FIX_CMAP_BEGIN); | ||
32 | kmap_coherent_pte = kmap_get_fixmap_pte(vaddr); | ||
33 | } | ||
34 | |||
35 | void *kmap_coherent(struct page *page, unsigned long addr) | ||
36 | { | ||
37 | enum fixed_addresses idx; | ||
38 | unsigned long vaddr, flags; | ||
39 | pte_t pte; | ||
40 | |||
41 | BUG_ON(test_bit(PG_dcache_dirty, &page->flags)); | ||
42 | |||
43 | inc_preempt_count(); | ||
44 | |||
45 | idx = (addr & current_cpu_data.dcache.alias_mask) >> PAGE_SHIFT; | ||
46 | vaddr = __fix_to_virt(FIX_CMAP_END - idx); | ||
47 | pte = mk_pte(page, PAGE_KERNEL); | ||
48 | |||
49 | local_irq_save(flags); | ||
50 | flush_tlb_one(get_asid(), vaddr); | ||
51 | local_irq_restore(flags); | ||
52 | |||
53 | update_mmu_cache(NULL, vaddr, pte); | ||
54 | |||
55 | set_pte(kmap_coherent_pte - (FIX_CMAP_END - idx), pte); | ||
56 | |||
57 | return (void *)vaddr; | ||
58 | } | ||
59 | |||
60 | void kunmap_coherent(void) | ||
61 | { | ||
62 | dec_preempt_count(); | ||
63 | preempt_check_resched(); | ||
64 | } | ||
diff --git a/arch/sh/mm/pg-mmu.c b/arch/sh/mm/pg-mmu.c index 7a6ef34bd499..f51d0a4eb3ba 100644 --- a/arch/sh/mm/pg-mmu.c +++ b/arch/sh/mm/pg-mmu.c | |||
@@ -15,54 +15,6 @@ | |||
15 | #include <asm/mmu_context.h> | 15 | #include <asm/mmu_context.h> |
16 | #include <asm/cacheflush.h> | 16 | #include <asm/cacheflush.h> |
17 | 17 | ||
18 | #define kmap_get_fixmap_pte(vaddr) \ | ||
19 | pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr), (vaddr)), (vaddr)), (vaddr)) | ||
20 | |||
21 | static pte_t *kmap_coherent_pte; | ||
22 | |||
23 | void __init kmap_coherent_init(void) | ||
24 | { | ||
25 | unsigned long vaddr; | ||
26 | |||
27 | if (!boot_cpu_data.dcache.n_aliases) | ||
28 | return; | ||
29 | |||
30 | /* cache the first coherent kmap pte */ | ||
31 | vaddr = __fix_to_virt(FIX_CMAP_BEGIN); | ||
32 | kmap_coherent_pte = kmap_get_fixmap_pte(vaddr); | ||
33 | } | ||
34 | |||
35 | static void *kmap_coherent(struct page *page, unsigned long addr) | ||
36 | { | ||
37 | enum fixed_addresses idx; | ||
38 | unsigned long vaddr, flags; | ||
39 | pte_t pte; | ||
40 | |||
41 | BUG_ON(test_bit(PG_dcache_dirty, &page->flags)); | ||
42 | |||
43 | inc_preempt_count(); | ||
44 | |||
45 | idx = (addr & current_cpu_data.dcache.alias_mask) >> PAGE_SHIFT; | ||
46 | vaddr = __fix_to_virt(FIX_CMAP_END - idx); | ||
47 | pte = mk_pte(page, PAGE_KERNEL); | ||
48 | |||
49 | local_irq_save(flags); | ||
50 | flush_tlb_one(get_asid(), vaddr); | ||
51 | local_irq_restore(flags); | ||
52 | |||
53 | update_mmu_cache(NULL, vaddr, pte); | ||
54 | |||
55 | set_pte(kmap_coherent_pte - (FIX_CMAP_END - idx), pte); | ||
56 | |||
57 | return (void *)vaddr; | ||
58 | } | ||
59 | |||
60 | static inline void kunmap_coherent(void) | ||
61 | { | ||
62 | dec_preempt_count(); | ||
63 | preempt_check_resched(); | ||
64 | } | ||
65 | |||
66 | void copy_to_user_page(struct vm_area_struct *vma, struct page *page, | 18 | void copy_to_user_page(struct vm_area_struct *vma, struct page *page, |
67 | unsigned long vaddr, void *dst, const void *src, | 19 | unsigned long vaddr, void *dst, const void *src, |
68 | unsigned long len) | 20 | unsigned long len) |
diff --git a/arch/sh/mm/tlb-nommu.c b/arch/sh/mm/tlb-nommu.c index 0ef5429943df..c49e9d24c2e6 100644 --- a/arch/sh/mm/tlb-nommu.c +++ b/arch/sh/mm/tlb-nommu.c | |||
@@ -55,6 +55,21 @@ void __update_cache(struct vm_area_struct *vma, | |||
55 | { | 55 | { |
56 | } | 56 | } |
57 | 57 | ||
58 | void __init kmap_coherent_init(void) | ||
59 | { | ||
60 | } | ||
61 | |||
62 | void *kmap_coherent(struct page *page, unsigned long addr) | ||
63 | { | ||
64 | BUG(); | ||
65 | return NULL; | ||
66 | } | ||
67 | |||
68 | void kunmap_coherent(void) | ||
69 | { | ||
70 | BUG(); | ||
71 | } | ||
72 | |||
58 | void __init page_table_range_init(unsigned long start, unsigned long end, | 73 | void __init page_table_range_init(unsigned long start, unsigned long end, |
59 | pgd_t *pgd_base) | 74 | pgd_t *pgd_base) |
60 | { | 75 | { |