cache.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * OpenRISC cache.c
  4. *
  5. * Linux architectural port borrowing liberally from similar works of
  6. * others. All original copyrights apply as per the original source
  7. * declaration.
  8. *
  9. * Modifications for the OpenRISC architecture:
  10. * Copyright (C) 2015 Jan Henrik Weinstock <[email protected]>
  11. */
  12. #include <asm/spr.h>
  13. #include <asm/spr_defs.h>
  14. #include <asm/cache.h>
  15. #include <asm/cacheflush.h>
  16. #include <asm/tlbflush.h>
  17. static __always_inline void cache_loop(struct page *page, const unsigned int reg)
  18. {
  19. unsigned long paddr = page_to_pfn(page) << PAGE_SHIFT;
  20. unsigned long line = paddr & ~(L1_CACHE_BYTES - 1);
  21. while (line < paddr + PAGE_SIZE) {
  22. mtspr(reg, line);
  23. line += L1_CACHE_BYTES;
  24. }
  25. }
  26. void local_dcache_page_flush(struct page *page)
  27. {
  28. cache_loop(page, SPR_DCBFR);
  29. }
  30. EXPORT_SYMBOL(local_dcache_page_flush);
  31. void local_icache_page_inv(struct page *page)
  32. {
  33. cache_loop(page, SPR_ICBIR);
  34. }
  35. EXPORT_SYMBOL(local_icache_page_inv);
  36. void update_cache(struct vm_area_struct *vma, unsigned long address,
  37. pte_t *pte)
  38. {
  39. unsigned long pfn = pte_val(*pte) >> PAGE_SHIFT;
  40. struct page *page = pfn_to_page(pfn);
  41. int dirty = !test_and_set_bit(PG_dc_clean, &page->flags);
  42. /*
  43. * Since icaches do not snoop for updated data on OpenRISC, we
  44. * must write back and invalidate any dirty pages manually. We
  45. * can skip data pages, since they will not end up in icaches.
  46. */
  47. if ((vma->vm_flags & VM_EXEC) && dirty)
  48. sync_icache_dcache(page);
  49. }