cache_flush.S 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* cache.S - Flush the processor cache for a specific region. */
  2. /*
  3. * GRUB -- GRand Unified Bootloader
  4. * Copyright (C) 2004,2007,2010 Free Software Foundation, Inc.
  5. *
  6. * GRUB is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * GRUB is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #undef CACHE_LINE_BYTES
  20. #define CACHE_LINE_BYTES 32
  21. /* `address' may not be CACHE_LINE_BYTES-aligned. */
  22. andi. 6, 3, CACHE_LINE_BYTES - 1 /* Find the misalignment. */
  23. add 4, 4, 6 /* Adjust `size' to compensate. */
  24. /* Force the dcache lines to memory. */
  25. li 5, 0
  26. 1: dcbst 5, 3
  27. addi 5, 5, CACHE_LINE_BYTES
  28. cmpw 5, 4
  29. blt 1b
  30. sync /* Force all dcbsts to complete. */
  31. /* Invalidate the icache lines. */
  32. li 5, 0
  33. 1: icbi 5, 3
  34. addi 5, 5, CACHE_LINE_BYTES
  35. cmpw 5, 4
  36. blt 1b
  37. sync /* Force all icbis to complete. */
  38. isync /* Discard partially executed instructions that were
  39. loaded from the invalid icache. */