psr.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* psr.h: This file holds the macros for masking off various parts of
  2. * the processor status register on the Sparc. This is valid
  3. * for Version 8. On the V9 this is renamed to the PSTATE
  4. * register and its members are accessed as fields like
  5. * PSTATE.PRIV for the current CPU privilege level.
  6. *
  7. * taken from the SPARC port of Linux,
  8. *
  9. * Copyright (C) 1994 David S. Miller (davem@caip.rutgers.edu)
  10. * Copyright (C) 2007 Daniel Hellstrom (daniel@gaisler.com)
  11. *
  12. * SPDX-License-Identifier: GPL-2.0+
  13. */
  14. #ifndef __SPARC_PSR_H__
  15. #define __SPARC_PSR_H__
  16. /* The Sparc PSR fields are laid out as the following:
  17. *
  18. * ------------------------------------------------------------------------
  19. * | impl | vers | icc | resv | EC | EF | PIL | S | PS | ET | CWP |
  20. * | 31-28 | 27-24 | 23-20 | 19-14 | 13 | 12 | 11-8 | 7 | 6 | 5 | 4-0 |
  21. * ------------------------------------------------------------------------
  22. */
  23. #define PSR_CWP 0x0000001f /* current window pointer */
  24. #define PSR_ET 0x00000020 /* enable traps field */
  25. #define PSR_PS 0x00000040 /* previous privilege level */
  26. #define PSR_S 0x00000080 /* current privilege level */
  27. #define PSR_PIL 0x00000f00 /* processor interrupt level */
  28. #define PSR_EF 0x00001000 /* enable floating point */
  29. #define PSR_EC 0x00002000 /* enable co-processor */
  30. #define PSR_LE 0x00008000 /* SuperSparcII little-endian */
  31. #define PSR_ICC 0x00f00000 /* integer condition codes */
  32. #define PSR_C 0x00100000 /* carry bit */
  33. #define PSR_V 0x00200000 /* overflow bit */
  34. #define PSR_Z 0x00400000 /* zero bit */
  35. #define PSR_N 0x00800000 /* negative bit */
  36. #define PSR_VERS 0x0f000000 /* cpu-version field */
  37. #define PSR_IMPL 0xf0000000 /* cpu-implementation field */
  38. #define PSR_PIL_OFS 8
  39. #ifndef __ASSEMBLY__
  40. /* Get the %psr register. */
  41. static __inline__ unsigned int get_psr(void)
  42. {
  43. unsigned int psr;
  44. __asm__ __volatile__("rd %%psr, %0\n\t"
  45. "nop\n\t" "nop\n\t" "nop\n\t":"=r"(psr)
  46. : /* no inputs */
  47. :"memory");
  48. return psr;
  49. }
  50. static __inline__ void put_psr(unsigned int new_psr)
  51. {
  52. __asm__ __volatile__("wr %0, 0x0, %%psr\n\t" "nop\n\t" "nop\n\t" "nop\n\t": /* no outputs */
  53. :"r"(new_psr)
  54. :"memory", "cc");
  55. }
  56. /* Get the %fsr register. Be careful, make sure the floating point
  57. * enable bit is set in the %psr when you execute this or you will
  58. * incur a trap.
  59. */
  60. extern unsigned int fsr_storage;
  61. static __inline__ unsigned int get_fsr(void)
  62. {
  63. unsigned int fsr = 0;
  64. __asm__ __volatile__("st %%fsr, %1\n\t"
  65. "ld %1, %0\n\t":"=r"(fsr)
  66. :"m"(fsr_storage));
  67. return fsr;
  68. }
  69. #endif /* !(__ASSEMBLY__) */
  70. #endif /* !(__SPARC_PSR_H__) */