blob: 9920d2e71952e10e3c956a41bee00391141d4759 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Alexey Brodkin544c5f52014-02-04 12:56:13 +04002/*
3 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. All rights reserved.
Alexey Brodkin544c5f52014-02-04 12:56:13 +04004 */
5
6#ifndef _ASM_ARC_ARCREGS_H
7#define _ASM_ARC_ARCREGS_H
8
Alexey Brodkinf431e262015-02-03 13:58:11 +03009#include <asm/cache.h>
Eugeniy Paltsev8bd73422018-03-21 15:58:49 +030010#include <config.h>
Alexey Brodkinf431e262015-02-03 13:58:11 +030011
Alexey Brodkin544c5f52014-02-04 12:56:13 +040012/*
13 * ARC architecture has additional address space - auxiliary registers.
14 * These registers are mostly used for configuration purposes.
15 * These registers are not memory mapped and special commands are used for
16 * access: "lr"/"sr".
17 */
18
19#define ARC_AUX_IDENTITY 0x04
20#define ARC_AUX_STATUS32 0x0a
21
Alexey Brodkin9b56b5d2018-07-29 09:47:52 +030022/* STATUS32 Bits Positions */
23#define STATUS_AD_BIT 19 /* Enable unaligned access */
24
Alexey Brodkin544c5f52014-02-04 12:56:13 +040025/* Instruction cache related auxiliary registers */
26#define ARC_AUX_IC_IVIC 0x10
27#define ARC_AUX_IC_CTRL 0x11
28#define ARC_AUX_IC_IVIL 0x19
Alexey Brodkin6da8cfc2015-02-03 13:58:12 +030029#if (CONFIG_ARC_MMU_VER == 3)
Alexey Brodkin544c5f52014-02-04 12:56:13 +040030#define ARC_AUX_IC_PTAG 0x1E
31#endif
Igor Guryanovbd889f92014-12-24 16:07:07 +030032#define ARC_BCR_IC_BUILD 0x77
Eugeniy Paltseve6f26292017-11-28 16:51:07 +030033#define AUX_AUX_CACHE_LIMIT 0x5D
34#define ARC_AUX_NON_VOLATILE_LIMIT 0x5E
35
36/* ICCM and DCCM auxiliary registers */
37#define ARC_AUX_DCCM_BASE 0x18 /* DCCM Base Addr ARCv2 */
38#define ARC_AUX_ICCM_BASE 0x208 /* ICCM Base Addr ARCv2 */
Alexey Brodkin544c5f52014-02-04 12:56:13 +040039
40/* Timer related auxiliary registers */
41#define ARC_AUX_TIMER0_CNT 0x21 /* Timer 0 count */
42#define ARC_AUX_TIMER0_CTRL 0x22 /* Timer 0 control */
43#define ARC_AUX_TIMER0_LIMIT 0x23 /* Timer 0 limit */
44
Vlad Zakharov8f2c1da2017-03-21 14:49:47 +030045#define ARC_AUX_TIMER1_CNT 0x100 /* Timer 1 count */
46#define ARC_AUX_TIMER1_CTRL 0x101 /* Timer 1 control */
47#define ARC_AUX_TIMER1_LIMIT 0x102 /* Timer 1 limit */
48
Alexey Brodkin544c5f52014-02-04 12:56:13 +040049#define ARC_AUX_INTR_VEC_BASE 0x25
50
51/* Data cache related auxiliary registers */
52#define ARC_AUX_DC_IVDC 0x47
53#define ARC_AUX_DC_CTRL 0x48
54
55#define ARC_AUX_DC_IVDL 0x4A
56#define ARC_AUX_DC_FLSH 0x4B
57#define ARC_AUX_DC_FLDL 0x4C
Alexey Brodkin6da8cfc2015-02-03 13:58:12 +030058#if (CONFIG_ARC_MMU_VER == 3)
Alexey Brodkin544c5f52014-02-04 12:56:13 +040059#define ARC_AUX_DC_PTAG 0x5C
60#endif
Igor Guryanovbd889f92014-12-24 16:07:07 +030061#define ARC_BCR_DC_BUILD 0x72
Alexey Brodkin275583e2015-03-30 13:36:04 +030062#define ARC_BCR_SLC 0xce
Alexey Brodkin9f916ee2015-05-18 16:56:26 +030063#define ARC_AUX_SLC_CONFIG 0x901
64#define ARC_AUX_SLC_CTRL 0x903
Alexey Brodkin275583e2015-03-30 13:36:04 +030065#define ARC_AUX_SLC_FLUSH 0x904
66#define ARC_AUX_SLC_INVALIDATE 0x905
Alexey Brodkin9f916ee2015-05-18 16:56:26 +030067#define ARC_AUX_SLC_IVDL 0x910
68#define ARC_AUX_SLC_FLDL 0x912
Eugeniy Paltsev1d0578e2018-01-16 19:20:26 +030069#define ARC_AUX_SLC_RGN_START 0x914
70#define ARC_AUX_SLC_RGN_START1 0x915
71#define ARC_AUX_SLC_RGN_END 0x916
72#define ARC_AUX_SLC_RGN_END1 0x917
Alexey Brodkin4764d262015-12-14 17:15:13 +030073#define ARC_BCR_CLUSTER 0xcf
74
Eugeniy Paltsev1d0578e2018-01-16 19:20:26 +030075/* MMU Management regs */
76#define ARC_AUX_MMU_BCR 0x06f
77
Alexey Brodkin4764d262015-12-14 17:15:13 +030078/* IO coherency related auxiliary registers */
79#define ARC_AUX_IO_COH_ENABLE 0x500
80#define ARC_AUX_IO_COH_PARTIAL 0x501
81#define ARC_AUX_IO_COH_AP0_BASE 0x508
82#define ARC_AUX_IO_COH_AP0_SIZE 0x509
Alexey Brodkin544c5f52014-02-04 12:56:13 +040083
84#ifndef __ASSEMBLY__
85/* Accessors for auxiliary registers */
86#define read_aux_reg(reg) __builtin_arc_lr(reg)
87
88/* gcc builtin sr needs reg param to be long immediate */
89#define write_aux_reg(reg_immed, val) \
90 __builtin_arc_sr((unsigned int)val, reg_immed)
Eugeniy Paltsev5dbb1c92017-11-28 16:48:40 +030091
92/* ARCNUM [15:8] - field to identify each core in a multi-core system */
93#define CPU_ID_GET() ((read_aux_reg(ARC_AUX_IDENTITY) & 0xFF00) >> 8)
Eugeniy Paltsev8bd73422018-03-21 15:58:49 +030094
95static const inline int is_isa_arcv2(void)
96{
97 return IS_ENABLED(CONFIG_ISA_ARCV2);
98}
99
100static const inline int is_isa_arcompact(void)
101{
102 return IS_ENABLED(CONFIG_ISA_ARCOMPACT);
103}
Alexey Brodkin544c5f52014-02-04 12:56:13 +0400104#endif /* __ASSEMBLY__ */
105
106#endif /* _ASM_ARC_ARCREGS_H */