blob: bf25d7c79a2d82d5dd6b26ca95b79a72643f2791 [file] [log] [blame]
Paul Mundt27397422009-08-15 09:19:19 +09001/*
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
21static pte_t *kmap_coherent_pte;
22
23void __init kmap_coherent_init(void)
24{
25 unsigned long vaddr;
26
Paul Mundt27397422009-08-15 09:19:19 +090027 /* cache the first coherent kmap pte */
28 vaddr = __fix_to_virt(FIX_CMAP_BEGIN);
29 kmap_coherent_pte = kmap_get_fixmap_pte(vaddr);
30}
31
32void *kmap_coherent(struct page *page, unsigned long addr)
33{
34 enum fixed_addresses idx;
Paul Mundt0906a3a2009-09-03 17:21:10 +090035 unsigned long vaddr;
Paul Mundt27397422009-08-15 09:19:19 +090036
Paul Mundt55661fc2010-12-01 15:39:51 +090037 BUG_ON(!test_bit(PG_dcache_clean, &page->flags));
Paul Mundt27397422009-08-15 09:19:19 +090038
David Hildenbrandb15d53d2016-02-29 09:19:24 +010039 preempt_disable();
Paul Mundt0906a3a2009-09-03 17:21:10 +090040 pagefault_disable();
Paul Mundt27397422009-08-15 09:19:19 +090041
Paul Mundt0906a3a2009-09-03 17:21:10 +090042 idx = FIX_CMAP_END -
Paul Mundtf9e2bdf2009-09-09 17:14:19 +090043 (((addr >> PAGE_SHIFT) & (FIX_N_COLOURS - 1)) +
44 (FIX_N_COLOURS * smp_processor_id()));
45
Paul Mundt0906a3a2009-09-03 17:21:10 +090046 vaddr = __fix_to_virt(idx);
Paul Mundt27397422009-08-15 09:19:19 +090047
Paul Mundt0906a3a2009-09-03 17:21:10 +090048 BUG_ON(!pte_none(*(kmap_coherent_pte - idx)));
49 set_pte(kmap_coherent_pte - idx, mk_pte(page, PAGE_KERNEL));
Paul Mundt27397422009-08-15 09:19:19 +090050
51 return (void *)vaddr;
52}
53
Paul Mundt0906a3a2009-09-03 17:21:10 +090054void kunmap_coherent(void *kvaddr)
Paul Mundt27397422009-08-15 09:19:19 +090055{
Paul Mundt0906a3a2009-09-03 17:21:10 +090056 if (kvaddr >= (void *)FIXADDR_START) {
57 unsigned long vaddr = (unsigned long)kvaddr & PAGE_MASK;
58 enum fixed_addresses idx = __virt_to_fix(vaddr);
59
Paul Mundt6e4154d2009-09-08 16:21:00 +090060 /* XXX.. Kill this later, here for sanity at the moment.. */
61 __flush_purge_region((void *)vaddr, PAGE_SIZE);
62
Paul Mundt0906a3a2009-09-03 17:21:10 +090063 pte_clear(&init_mm, vaddr, kmap_coherent_pte - idx);
64 local_flush_tlb_one(get_asid(), vaddr);
65 }
66
67 pagefault_enable();
David Hildenbrandb15d53d2016-02-29 09:19:24 +010068 preempt_enable();
Paul Mundt27397422009-08-15 09:19:19 +090069}