homecache.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. * Copyright 2010 Tilera Corporation. All Rights Reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation, version 2.
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  11. * NON INFRINGEMENT. See the GNU General Public License for
  12. * more details.
  13. *
  14. * Handle issues around the Tile "home cache" model of coherence.
  15. */
  16. #ifndef _ASM_TILE_HOMECACHE_H
  17. #define _ASM_TILE_HOMECACHE_H
  18. #include <asm/page.h>
  19. #include <linux/cpumask.h>
  20. struct page;
  21. struct task_struct;
  22. struct vm_area_struct;
  23. struct zone;
  24. /*
  25. * Coherence point for the page is its memory controller.
  26. * It is not present in any cache (L1 or L2).
  27. */
  28. #define PAGE_HOME_UNCACHED -1
  29. /*
  30. * Is this page immutable (unwritable) and thus able to be cached more
  31. * widely than would otherwise be possible? On tile64 this means we
  32. * mark the PTE to cache locally; on tilepro it means we have "nc" set.
  33. */
  34. #define PAGE_HOME_IMMUTABLE -2
  35. /*
  36. * Each cpu considers its own cache to be the home for the page,
  37. * which makes it incoherent.
  38. */
  39. #define PAGE_HOME_INCOHERENT -3
  40. #if CHIP_HAS_CBOX_HOME_MAP()
  41. /* Home for the page is distributed via hash-for-home. */
  42. #define PAGE_HOME_HASH -4
  43. #endif
  44. /* Homing is unknown or unspecified. Not valid for page_home(). */
  45. #define PAGE_HOME_UNKNOWN -5
  46. /* Home on the current cpu. Not valid for page_home(). */
  47. #define PAGE_HOME_HERE -6
  48. /* Support wrapper to use instead of explicit hv_flush_remote(). */
  49. extern void flush_remote(unsigned long cache_pfn, unsigned long cache_length,
  50. const struct cpumask *cache_cpumask,
  51. HV_VirtAddr tlb_va, unsigned long tlb_length,
  52. unsigned long tlb_pgsize,
  53. const struct cpumask *tlb_cpumask,
  54. HV_Remote_ASID *asids, int asidcount);
  55. /* Set homing-related bits in a PTE (can also pass a pgprot_t). */
  56. extern pte_t pte_set_home(pte_t pte, int home);
  57. /* Do a cache eviction on the specified cpus. */
  58. extern void homecache_evict(const struct cpumask *mask);
  59. /*
  60. * Change a kernel page's homecache. It must not be mapped in user space.
  61. * If !CONFIG_HOMECACHE, only usable on LOWMEM, and can only be called when
  62. * no other cpu can reference the page, and causes a full-chip cache/TLB flush.
  63. */
  64. extern void homecache_change_page_home(struct page *, int order, int home);
  65. /*
  66. * Flush a page out of whatever cache(s) it is in.
  67. * This is more than just finv, since it properly handles waiting
  68. * for the data to reach memory on tilepro, but it can be quite
  69. * heavyweight, particularly on hash-for-home memory.
  70. */
  71. extern void homecache_flush_cache(struct page *, int order);
  72. /*
  73. * Allocate a page with the given GFP flags, home, and optionally
  74. * node. These routines are actually just wrappers around the normal
  75. * alloc_pages() / alloc_pages_node() functions, which set and clear
  76. * a per-cpu variable to communicate with homecache_new_kernel_page().
  77. * If !CONFIG_HOMECACHE, uses homecache_change_page_home().
  78. */
  79. extern struct page *homecache_alloc_pages(gfp_t gfp_mask,
  80. unsigned int order, int home);
  81. extern struct page *homecache_alloc_pages_node(int nid, gfp_t gfp_mask,
  82. unsigned int order, int home);
  83. #define homecache_alloc_page(gfp_mask, home) \
  84. homecache_alloc_pages(gfp_mask, 0, home)
  85. /*
  86. * These routines are just pass-throughs to free_pages() when
  87. * we support full homecaching. If !CONFIG_HOMECACHE, then these
  88. * routines use homecache_change_page_home() to reset the home
  89. * back to the default before returning the page to the allocator.
  90. */
  91. void homecache_free_pages(unsigned long addr, unsigned int order);
  92. #define homecache_free_page(page) \
  93. homecache_free_pages((page), 0)
  94. /*
  95. * Report the page home for LOWMEM pages by examining their kernel PTE,
  96. * or for highmem pages as the default home.
  97. */
  98. extern int page_home(struct page *);
  99. #define homecache_migrate_kthread() do {} while (0)
  100. #define homecache_kpte_lock() 0
  101. #define homecache_kpte_unlock(flags) do {} while (0)
  102. #endif /* _ASM_TILE_HOMECACHE_H */