4 * Copyright (C) 1999, 2000, 2002 Niibe Yutaka
5 * Copyright (C) 2002 - 2009 Paul Mundt
7 * Released under the terms of the GNU GPL v2.0.
10 #include <linux/init.h>
11 #include <linux/mutex.h>
13 #include <linux/highmem.h>
14 #include <linux/module.h>
15 #include <asm/mmu_context.h>
16 #include <asm/cacheflush.h>
18 #define kmap_get_fixmap_pte(vaddr) \
19 pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr), (vaddr)), (vaddr)), (vaddr))
21 static pte_t
*kmap_coherent_pte
;
23 void __init
kmap_coherent_init(void)
27 /* cache the first coherent kmap pte */
28 vaddr
= __fix_to_virt(FIX_CMAP_BEGIN
);
29 kmap_coherent_pte
= kmap_get_fixmap_pte(vaddr
);
32 void *kmap_coherent(struct page
*page
, unsigned long addr
)
34 enum fixed_addresses idx
;
37 BUG_ON(test_bit(PG_dcache_dirty
, &page
->flags
));
42 ((addr
& current_cpu_data
.dcache
.alias_mask
) >> PAGE_SHIFT
);
43 vaddr
= __fix_to_virt(idx
);
45 BUG_ON(!pte_none(*(kmap_coherent_pte
- idx
)));
46 set_pte(kmap_coherent_pte
- idx
, mk_pte(page
, PAGE_KERNEL
));
51 void kunmap_coherent(void *kvaddr
)
53 if (kvaddr
>= (void *)FIXADDR_START
) {
54 unsigned long vaddr
= (unsigned long)kvaddr
& PAGE_MASK
;
55 enum fixed_addresses idx
= __virt_to_fix(vaddr
);
57 pte_clear(&init_mm
, vaddr
, kmap_coherent_pte
- idx
);
58 local_flush_tlb_one(get_asid(), vaddr
);