cache.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * OpenRISC cache.c
  3. *
  4. * Linux architectural port borrowing liberally from similar works of
  5. * others. All original copyrights apply as per the original source
  6. * declaration.
  7. *
  8. * Modifications for the OpenRISC architecture:
  9. * Copyright (C) 2015 Jan Henrik Weinstock <jan.weinstock@rwth-aachen.de>
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License
  13. * as published by the Free Software Foundation; either version
  14. * 2 of the License, or (at your option) any later version.
  15. */
  16. #include <asm/spr.h>
  17. #include <asm/spr_defs.h>
  18. #include <asm/cache.h>
  19. #include <asm/cacheflush.h>
  20. #include <asm/tlbflush.h>
  21. static void cache_loop(struct page *page, const unsigned int reg)
  22. {
  23. unsigned long paddr = page_to_pfn(page) << PAGE_SHIFT;
  24. unsigned long line = paddr & ~(L1_CACHE_BYTES - 1);
  25. while (line < paddr + PAGE_SIZE) {
  26. mtspr(reg, line);
  27. line += L1_CACHE_BYTES;
  28. }
  29. }
  30. void local_dcache_page_flush(struct page *page)
  31. {
  32. cache_loop(page, SPR_DCBFR);
  33. }
  34. EXPORT_SYMBOL(local_dcache_page_flush);
  35. void local_icache_page_inv(struct page *page)
  36. {
  37. cache_loop(page, SPR_ICBIR);
  38. }
  39. EXPORT_SYMBOL(local_icache_page_inv);
  40. void update_cache(struct vm_area_struct *vma, unsigned long address,
  41. pte_t *pte)
  42. {
  43. unsigned long pfn = pte_val(*pte) >> PAGE_SHIFT;
  44. struct page *page = pfn_to_page(pfn);
  45. int dirty = !test_and_set_bit(PG_dc_clean, &page->flags);
  46. /*
  47. * Since icaches do not snoop for updated data on OpenRISC, we
  48. * must write back and invalidate any dirty pages manually. We
  49. * can skip data pages, since they will not end up in icaches.
  50. */
  51. if ((vma->vm_flags & VM_EXEC) && dirty)
  52. sync_icache_dcache(page);
  53. }