cache-pl310.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. * (C) Copyright 2010
  3. * Texas Instruments, <www.ti.com>
  4. * Aneesh V <aneesh@ti.com>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. #include <linux/types.h>
  25. #include <asm/io.h>
  26. #include <asm/armv7.h>
  27. #include <asm/pl310.h>
  28. #include <config.h>
  29. struct pl310_regs *const pl310 = (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
  30. static void pl310_cache_sync(void)
  31. {
  32. writel(0, &pl310->pl310_cache_sync);
  33. }
  34. static void pl310_background_op_all_ways(u32 *op_reg)
  35. {
  36. u32 assoc_16, associativity, way_mask;
  37. assoc_16 = readl(&pl310->pl310_aux_ctrl) &
  38. PL310_AUX_CTRL_ASSOCIATIVITY_MASK;
  39. if (assoc_16)
  40. associativity = 16;
  41. else
  42. associativity = 8;
  43. way_mask = (1 << associativity) - 1;
  44. /* Invalidate all ways */
  45. writel(way_mask, op_reg);
  46. /* Wait for all ways to be invalidated */
  47. while (readl(op_reg) && way_mask)
  48. ;
  49. pl310_cache_sync();
  50. }
  51. void v7_outer_cache_inval_all(void)
  52. {
  53. pl310_background_op_all_ways(&pl310->pl310_inv_way);
  54. }
  55. void v7_outer_cache_flush_all(void)
  56. {
  57. pl310_background_op_all_ways(&pl310->pl310_clean_inv_way);
  58. }
  59. /* Flush(clean invalidate) memory from start to stop-1 */
  60. void v7_outer_cache_flush_range(u32 start, u32 stop)
  61. {
  62. /* PL310 currently supports only 32 bytes cache line */
  63. u32 pa, line_size = 32;
  64. /*
  65. * Align to the beginning of cache-line - this ensures that
  66. * the first 5 bits are 0 as required by PL310 TRM
  67. */
  68. start &= ~(line_size - 1);
  69. for (pa = start; pa < stop; pa = pa + line_size)
  70. writel(pa, &pl310->pl310_clean_inv_line_pa);
  71. pl310_cache_sync();
  72. }
  73. /* invalidate memory from start to stop-1 */
  74. void v7_outer_cache_inval_range(u32 start, u32 stop)
  75. {
  76. /* PL310 currently supports only 32 bytes cache line */
  77. u32 pa, line_size = 32;
  78. /*
  79. * If start address is not aligned to cache-line flush the first
  80. * line to prevent affecting somebody else's buffer
  81. */
  82. if (start & (line_size - 1)) {
  83. v7_outer_cache_flush_range(start, start + 1);
  84. /* move to next cache line */
  85. start = (start + line_size - 1) & ~(line_size - 1);
  86. }
  87. /*
  88. * If stop address is not aligned to cache-line flush the last
  89. * line to prevent affecting somebody else's buffer
  90. */
  91. if (stop & (line_size - 1)) {
  92. v7_outer_cache_flush_range(stop, stop + 1);
  93. /* align to the beginning of this cache line */
  94. stop &= ~(line_size - 1);
  95. }
  96. for (pa = start; pa < stop; pa = pa + line_size)
  97. writel(pa, &pl310->pl310_inv_line_pa);
  98. pl310_cache_sync();
  99. }