diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-08-14 20:19:19 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-08-14 20:19:19 -0400 |
commit | 2739742c24f1a55365e71f0722bfdce8994e9c4e (patch) | |
tree | 2650b2a8aa4113437cc3590c57b4fae98fc25c5b /arch/sh/mm | |
parent | 8edcfcbbd131a3580db666ed1034c24d56eb6f5d (diff) |
sh: Provide the kmap_coherent() interface generically.
This plugs in kmap_coherent() for the non-SH4 cases to permit the
pg-mmu.c bits to be used generically across all CPUs. SH-5 is still in
the TODO state, but will move over to fixmap and the generic interface
gradually.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/mm')
-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 |
5 files changed, 95 insertions, 49 deletions
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 | { |