kmap.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. #define kmap_get_fixmap_pte(vaddr) \
  18. pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr), (vaddr)), (vaddr)), (vaddr))
  19. static pte_t *kmap_coherent_pte;
  20. void __init kmap_coherent_init(void)
  21. {
  22. unsigned long vaddr;
  23. /* cache the first coherent kmap pte */
  24. vaddr = __fix_to_virt(FIX_CMAP_BEGIN);
  25. kmap_coherent_pte = kmap_get_fixmap_pte(vaddr);
  26. }
  27. void *kmap_coherent(struct page *page, unsigned long addr)
  28. {
  29. enum fixed_addresses idx;
  30. unsigned long vaddr;
  31. BUG_ON(!test_bit(PG_dcache_clean, &page->flags));
  32. preempt_disable();
  33. pagefault_disable();
  34. idx = FIX_CMAP_END -
  35. (((addr >> PAGE_SHIFT) & (FIX_N_COLOURS - 1)) +
  36. (FIX_N_COLOURS * smp_processor_id()));
  37. vaddr = __fix_to_virt(idx);
  38. BUG_ON(!pte_none(*(kmap_coherent_pte - idx)));
  39. set_pte(kmap_coherent_pte - idx, mk_pte(page, PAGE_KERNEL));
  40. return (void *)vaddr;
  41. }
  42. void kunmap_coherent(void *kvaddr)
  43. {
  44. if (kvaddr >= (void *)FIXADDR_START) {
  45. unsigned long vaddr = (unsigned long)kvaddr & PAGE_MASK;
  46. enum fixed_addresses idx = __virt_to_fix(vaddr);
  47. /* XXX.. Kill this later, here for sanity at the moment.. */
  48. __flush_purge_region((void *)vaddr, PAGE_SIZE);
  49. pte_clear(&init_mm, vaddr, kmap_coherent_pte - idx);
  50. local_flush_tlb_one(get_asid(), vaddr);
  51. }
  52. pagefault_enable();
  53. preempt_enable();
  54. }