cache.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* MN10300 cache management registers
  2. *
  3. * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public Licence
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the Licence, or (at your option) any later version.
  10. */
  11. #ifndef _ASM_CACHE_H
  12. #define _ASM_CACHE_H
  13. #include <asm/cpu-regs.h>
  14. #include <proc/cache.h>
  15. #ifndef __ASSEMBLY__
  16. #define L1_CACHE_DISPARITY (L1_CACHE_NENTRIES * L1_CACHE_BYTES)
  17. #else
  18. #define L1_CACHE_DISPARITY L1_CACHE_NENTRIES * L1_CACHE_BYTES
  19. #endif
  20. #define ARCH_DMA_MINALIGN L1_CACHE_BYTES
  21. /* data cache purge registers
  22. * - read from the register to unconditionally purge that cache line
  23. * - write address & 0xffffff00 to conditionally purge that cache line
  24. * - clear LSB to request invalidation as well
  25. */
  26. #define DCACHE_PURGE(WAY, ENTRY) \
  27. __SYSREG(0xc8400000 + (WAY) * L1_CACHE_WAYDISP + \
  28. (ENTRY) * L1_CACHE_BYTES, u32)
  29. #define DCACHE_PURGE_WAY0(ENTRY) \
  30. __SYSREG(0xc8400000 + 0 * L1_CACHE_WAYDISP + (ENTRY) * L1_CACHE_BYTES, u32)
  31. #define DCACHE_PURGE_WAY1(ENTRY) \
  32. __SYSREG(0xc8400000 + 1 * L1_CACHE_WAYDISP + (ENTRY) * L1_CACHE_BYTES, u32)
  33. #define DCACHE_PURGE_WAY2(ENTRY) \
  34. __SYSREG(0xc8400000 + 2 * L1_CACHE_WAYDISP + (ENTRY) * L1_CACHE_BYTES, u32)
  35. #define DCACHE_PURGE_WAY3(ENTRY) \
  36. __SYSREG(0xc8400000 + 3 * L1_CACHE_WAYDISP + (ENTRY) * L1_CACHE_BYTES, u32)
  37. /* instruction cache access registers */
  38. #define ICACHE_DATA(WAY, ENTRY, OFF) \
  39. __SYSREG(0xc8000000 + (WAY) * L1_CACHE_WAYDISP + (ENTRY) * 0x10 + (OFF) * 4, u32)
  40. #define ICACHE_TAG(WAY, ENTRY) \
  41. __SYSREG(0xc8100000 + (WAY) * L1_CACHE_WAYDISP + (ENTRY) * 0x10, u32)
  42. /* instruction cache access registers */
  43. #define DCACHE_DATA(WAY, ENTRY, OFF) \
  44. __SYSREG(0xc8200000 + (WAY) * L1_CACHE_WAYDISP + (ENTRY) * 0x10 + (OFF) * 4, u32)
  45. #define DCACHE_TAG(WAY, ENTRY) \
  46. __SYSREG(0xc8300000 + (WAY) * L1_CACHE_WAYDISP + (ENTRY) * 0x10, u32)
  47. #endif /* _ASM_CACHE_H */