processor.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* SPARC Processor specifics
  2. * taken from the SPARC port of Linux (ptrace.h).
  3. *
  4. * (C) Copyright 2007
  5. * Daniel Hellstrom, Gaisler Research, daniel@gaisler.com.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. *
  22. */
  23. #ifndef __ASM_SPARC_PROCESSOR_H
  24. #define __ASM_SPARC_PROCESSOR_H
  25. #include <asm/arch/asi.h>
  26. /* Includeprocessor specific header file here */
  27. #error Unknown SPARC Processor
  28. #ifndef __ASSEMBLY__
  29. /* flush data cache */
  30. static __inline__ void sparc_dcache_flush_all(void)
  31. {
  32. __asm__ __volatile__("sta %%g0, [%%g0] %0\n\t"::"i"(ASI_DFLUSH):"memory");
  33. }
  34. /* flush instruction cache */
  35. static __inline__ void sparc_icache_flush_all(void)
  36. {
  37. __asm__ __volatile__("sta %%g0, [%%g0] %0\n\t"::"i"(ASI_IFLUSH):"memory");
  38. }
  39. /* do a cache miss load */
  40. static __inline__ unsigned long long sparc_load_reg_cachemiss_qword(unsigned
  41. long paddr)
  42. {
  43. unsigned long long retval;
  44. __asm__ __volatile__("ldda [%1] %2, %0\n\t":
  45. "=r"(retval):"r"(paddr), "i"(ASI_CACHEMISS));
  46. return retval;
  47. }
  48. static __inline__ unsigned long sparc_load_reg_cachemiss(unsigned long paddr)
  49. {
  50. unsigned long retval;
  51. __asm__ __volatile__("lda [%1] %2, %0\n\t":
  52. "=r"(retval):"r"(paddr), "i"(ASI_CACHEMISS));
  53. return retval;
  54. }
  55. static __inline__ unsigned short sparc_load_reg_cachemiss_word(unsigned long
  56. paddr)
  57. {
  58. unsigned short retval;
  59. __asm__ __volatile__("lduha [%1] %2, %0\n\t":
  60. "=r"(retval):"r"(paddr), "i"(ASI_CACHEMISS));
  61. return retval;
  62. }
  63. static __inline__ unsigned char sparc_load_reg_cachemiss_byte(unsigned long
  64. paddr)
  65. {
  66. unsigned char retval;
  67. __asm__ __volatile__("lduba [%1] %2, %0\n\t":
  68. "=r"(retval):"r"(paddr), "i"(ASI_CACHEMISS));
  69. return retval;
  70. }
  71. /* do a physical address bypass write, i.e. for 0x80000000 */
  72. static __inline__ void sparc_store_reg_bypass(unsigned long paddr,
  73. unsigned long value)
  74. {
  75. __asm__ __volatile__("sta %0, [%1] %2\n\t"::"r"(value), "r"(paddr),
  76. "i"(ASI_BYPASS):"memory");
  77. }
  78. static __inline__ unsigned long sparc_load_reg_bypass(unsigned long paddr)
  79. {
  80. unsigned long retval;
  81. __asm__ __volatile__("lda [%1] %2, %0\n\t":
  82. "=r"(retval):"r"(paddr), "i"(ASI_BYPASS));
  83. return retval;
  84. }
  85. /* Macros for bypassing cache when reading */
  86. #define SPARC_NOCACHE_READ_DWORD(address) sparc_load_reg_cachemiss_qword((unsigned int)(address))
  87. #define SPARC_NOCACHE_READ(address) sparc_load_reg_cachemiss((unsigned int)(address))
  88. #define SPARC_NOCACHE_READ_HWORD(address) sparc_load_reg_cachemiss_word((unsigned int)(address))
  89. #define SPARC_NOCACHE_READ_BYTE(address) sparc_load_reg_cachemiss_byte((unsigned int)(address))
  90. #define SPARC_BYPASS_READ(address) sparc_load_reg_bypass((unsigned int)(address))
  91. #define SPARC_BYPASS_WRITE(address,value) sparc_store_reg_bypass((unsigned int)(address),(unsigned int)(value))
  92. #endif
  93. #endif /* __ASM_SPARC_PROCESSOR_H */