https://github.com/torvalds/linux
Raw File
Tip revision: 168309855a7d1e16db751e9c647119fe2d2dc878 authored by Linus Torvalds on 03 January 2016, 23:15:37 UTC
Linux 4.4-rc8
Tip revision: 1683098
core_reg.h
#ifndef __ASM_METAG_CORE_REG_H_
#define __ASM_METAG_CORE_REG_H_

#include <asm/metag_regs.h>

extern void core_reg_write(int unit, int reg, int thread, unsigned int val);
extern unsigned int core_reg_read(int unit, int reg, int thread);

/*
 * These macros allow direct access from C to any register known to the
 * assembler. Example candidates are TXTACTCYC, TXIDLECYC, and TXPRIVEXT.
 */

#define __core_reg_get(reg) ({						\
	unsigned int __grvalue;						\
	asm volatile("MOV	%0," #reg				\
		     : "=r" (__grvalue));				\
	__grvalue;							\
})

#define __core_reg_set(reg, value) do {					\
	unsigned int __srvalue = (value);				\
	asm volatile("MOV	" #reg ",%0"				\
		     :							\
		     : "r" (__srvalue));				\
} while (0)

#define __core_reg_swap(reg, value) do {				\
	unsigned int __srvalue = (value);				\
	asm volatile("SWAP	" #reg ",%0"				\
		     : "+r" (__srvalue));				\
	(value) = __srvalue;						\
} while (0)

#endif
back to top