2 * Copyright (C) 2016-2017 Synopsys, Inc. (www.synopsys.com)
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
10 #ifndef __SOC_ARC_AUX_H__
11 #define __SOC_ARC_AUX_H__
15 #define read_aux_reg(r) __builtin_arc_lr(r)
17 /* gcc builtin sr needs reg param to be long immediate */
18 #define write_aux_reg(r, v) __builtin_arc_sr((unsigned int)(v), r)
20 #else /* !CONFIG_ARC */
22 static inline int read_aux_reg(u32 r
)
28 * function helps elide unused variable warning
29 * see: http://lists.infradead.org/pipermail/linux-snps-arc/2016-November/001748.html
31 static inline void write_aux_reg(u32 r
, u32 v
)
38 #define READ_BCR(reg, into) \
41 tmp = read_aux_reg(reg); \
42 if (sizeof(tmp) == sizeof(into)) { \
43 into = *((typeof(into) *)&tmp); \
45 extern void bogus_undefined(void); \
50 #define WRITE_AUX(reg, into) \
53 if (sizeof(tmp) == sizeof(into)) { \
54 tmp = (*(unsigned int *)&(into)); \
55 write_aux_reg(reg, tmp); \
57 extern void bogus_undefined(void); \