nios2.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * (C) Copyright 2004, Psyent Corporation <www.psyent.com>
  3. * Scott McNutt <smcnutt@psyent.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef __ASM_NIOS2_H__
  8. #define __ASM_NIOS2_H__
  9. /*------------------------------------------------------------------------
  10. * Control registers -- use with wrctl() & rdctl()
  11. *----------------------------------------------------------------------*/
  12. #define CTL_STATUS 0 /* Processor status reg */
  13. #define CTL_ESTATUS 1 /* Exception status reg */
  14. #define CTL_BSTATUS 2 /* Break status reg */
  15. #define CTL_IENABLE 3 /* Interrut enable reg */
  16. #define CTL_IPENDING 4 /* Interrut pending reg */
  17. /*------------------------------------------------------------------------
  18. * Access to control regs
  19. *----------------------------------------------------------------------*/
  20. #define rdctl(reg) __builtin_rdctl(reg)
  21. #define wrctl(reg, val) __builtin_wrctl(reg, val)
  22. /*------------------------------------------------------------------------
  23. * Control reg bit masks
  24. *----------------------------------------------------------------------*/
  25. #define STATUS_IE (1<<0) /* Interrupt enable */
  26. #define STATUS_U (1<<1) /* User-mode */
  27. /*------------------------------------------------------------------------
  28. * Bit-31 Cache bypass -- only valid for data access. When data cache
  29. * is not implemented, bit 31 is ignored for compatibility.
  30. *----------------------------------------------------------------------*/
  31. #define CACHE_BYPASS(a) ((a) | 0x80000000)
  32. #define CACHE_NO_BYPASS(a) ((a) & ~0x80000000)
  33. #endif /* __ASM_NIOS2_H__ */