2015-08-25 16:34:37 +00:00
|
|
|
/** xtensa_ops.h
|
|
|
|
*
|
|
|
|
* Special macros/etc which deal with Xtensa-specific architecture/CPU
|
|
|
|
* considerations.
|
|
|
|
*
|
|
|
|
* Part of esp-open-rtos
|
|
|
|
* Copyright (C) 2015 Superhouse Automation Pty Ltd
|
|
|
|
* BSD Licensed as described in the file LICENSE
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _XTENSA_OPS_H
|
|
|
|
#define _XTENSA_OPS_H
|
|
|
|
|
|
|
|
// GCC macros for reading, writing, and exchanging Xtensa processor special
|
|
|
|
// registers:
|
|
|
|
|
2015-10-11 04:56:11 +00:00
|
|
|
#define RSR(var, reg) asm volatile ("rsr %0, " #reg : "=r" (var))
|
|
|
|
#define WSR(var, reg) asm volatile ("wsr %0, " #reg : : "r" (var))
|
|
|
|
#define XSR(var, reg) asm volatile ("xsr %0, " #reg : "+r" (var))
|
|
|
|
|
|
|
|
// GCC macros for performing associated "*sync" opcodes
|
|
|
|
|
|
|
|
#define ISYNC() asm volatile ( "isync" )
|
|
|
|
#define RSYNC() asm volatile ( "rsync" )
|
|
|
|
#define ESYNC() asm volatile ( "esync" )
|
|
|
|
#define DSYNC() asm volatile ( "dsync" )
|
2015-08-25 16:34:37 +00:00
|
|
|
|
|
|
|
#endif /* _XTENSA_OPS_H */
|