blob: 3a513149f547376b5e2e88617cf281e2d9c9d126 [file] [log] [blame]
Alexey Brodkin288aaac2014-02-04 12:56:13 +04001/*
2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#ifndef _ASM_ARC_ARCREGS_H
8#define _ASM_ARC_ARCREGS_H
9
Alexey Brodkin812980b2015-02-03 13:58:11 +030010#include <asm/cache.h>
Eugeniy Paltsev5e0c68e2018-03-21 15:58:49 +030011#include <config.h>
Alexey Brodkin812980b2015-02-03 13:58:11 +030012
Alexey Brodkin288aaac2014-02-04 12:56:13 +040013/*
14 * ARC architecture has additional address space - auxiliary registers.
15 * These registers are mostly used for configuration purposes.
16 * These registers are not memory mapped and special commands are used for
17 * access: "lr"/"sr".
18 */
19
20#define ARC_AUX_IDENTITY 0x04
21#define ARC_AUX_STATUS32 0x0a
22
23/* Instruction cache related auxiliary registers */
24#define ARC_AUX_IC_IVIC 0x10
25#define ARC_AUX_IC_CTRL 0x11
26#define ARC_AUX_IC_IVIL 0x19
Alexey Brodkin5ff40f32015-02-03 13:58:12 +030027#if (CONFIG_ARC_MMU_VER == 3)
Alexey Brodkin288aaac2014-02-04 12:56:13 +040028#define ARC_AUX_IC_PTAG 0x1E
29#endif
Igor Guryanovf8cf3d12014-12-24 16:07:07 +030030#define ARC_BCR_IC_BUILD 0x77
Eugeniy Paltsev64f47422017-11-28 16:51:07 +030031#define AUX_AUX_CACHE_LIMIT 0x5D
32#define ARC_AUX_NON_VOLATILE_LIMIT 0x5E
33
34/* ICCM and DCCM auxiliary registers */
35#define ARC_AUX_DCCM_BASE 0x18 /* DCCM Base Addr ARCv2 */
36#define ARC_AUX_ICCM_BASE 0x208 /* ICCM Base Addr ARCv2 */
Alexey Brodkin288aaac2014-02-04 12:56:13 +040037
38/* Timer related auxiliary registers */
39#define ARC_AUX_TIMER0_CNT 0x21 /* Timer 0 count */
40#define ARC_AUX_TIMER0_CTRL 0x22 /* Timer 0 control */
41#define ARC_AUX_TIMER0_LIMIT 0x23 /* Timer 0 limit */
42
Vlad Zakharovad9b5f72017-03-21 14:49:47 +030043#define ARC_AUX_TIMER1_CNT 0x100 /* Timer 1 count */
44#define ARC_AUX_TIMER1_CTRL 0x101 /* Timer 1 control */
45#define ARC_AUX_TIMER1_LIMIT 0x102 /* Timer 1 limit */
46
Alexey Brodkin288aaac2014-02-04 12:56:13 +040047#define ARC_AUX_INTR_VEC_BASE 0x25
48
49/* Data cache related auxiliary registers */
50#define ARC_AUX_DC_IVDC 0x47
51#define ARC_AUX_DC_CTRL 0x48
52
53#define ARC_AUX_DC_IVDL 0x4A
54#define ARC_AUX_DC_FLSH 0x4B
55#define ARC_AUX_DC_FLDL 0x4C
Alexey Brodkin5ff40f32015-02-03 13:58:12 +030056#if (CONFIG_ARC_MMU_VER == 3)
Alexey Brodkin288aaac2014-02-04 12:56:13 +040057#define ARC_AUX_DC_PTAG 0x5C
58#endif
Igor Guryanovf8cf3d12014-12-24 16:07:07 +030059#define ARC_BCR_DC_BUILD 0x72
Alexey Brodkin6eb15e52015-03-30 13:36:04 +030060#define ARC_BCR_SLC 0xce
Alexey Brodkinef639e62015-05-18 16:56:26 +030061#define ARC_AUX_SLC_CONFIG 0x901
62#define ARC_AUX_SLC_CTRL 0x903
Alexey Brodkin6eb15e52015-03-30 13:36:04 +030063#define ARC_AUX_SLC_FLUSH 0x904
64#define ARC_AUX_SLC_INVALIDATE 0x905
Alexey Brodkinef639e62015-05-18 16:56:26 +030065#define ARC_AUX_SLC_IVDL 0x910
66#define ARC_AUX_SLC_FLDL 0x912
Eugeniy Paltsev41cada42018-01-16 19:20:26 +030067#define ARC_AUX_SLC_RGN_START 0x914
68#define ARC_AUX_SLC_RGN_START1 0x915
69#define ARC_AUX_SLC_RGN_END 0x916
70#define ARC_AUX_SLC_RGN_END1 0x917
Alexey Brodkindb6ce232015-12-14 17:15:13 +030071#define ARC_BCR_CLUSTER 0xcf
72
Eugeniy Paltsev41cada42018-01-16 19:20:26 +030073/* MMU Management regs */
74#define ARC_AUX_MMU_BCR 0x06f
75
Alexey Brodkindb6ce232015-12-14 17:15:13 +030076/* IO coherency related auxiliary registers */
77#define ARC_AUX_IO_COH_ENABLE 0x500
78#define ARC_AUX_IO_COH_PARTIAL 0x501
79#define ARC_AUX_IO_COH_AP0_BASE 0x508
80#define ARC_AUX_IO_COH_AP0_SIZE 0x509
Alexey Brodkin288aaac2014-02-04 12:56:13 +040081
82#ifndef __ASSEMBLY__
83/* Accessors for auxiliary registers */
84#define read_aux_reg(reg) __builtin_arc_lr(reg)
85
86/* gcc builtin sr needs reg param to be long immediate */
87#define write_aux_reg(reg_immed, val) \
88 __builtin_arc_sr((unsigned int)val, reg_immed)
Eugeniy Paltseve59c3792017-11-28 16:48:40 +030089
90/* ARCNUM [15:8] - field to identify each core in a multi-core system */
91#define CPU_ID_GET() ((read_aux_reg(ARC_AUX_IDENTITY) & 0xFF00) >> 8)
Eugeniy Paltsev5e0c68e2018-03-21 15:58:49 +030092
93static const inline int is_isa_arcv2(void)
94{
95 return IS_ENABLED(CONFIG_ISA_ARCV2);
96}
97
98static const inline int is_isa_arcompact(void)
99{
100 return IS_ENABLED(CONFIG_ISA_ARCOMPACT);
101}
Alexey Brodkin288aaac2014-02-04 12:56:13 +0400102#endif /* __ASSEMBLY__ */
103
104#endif /* _ASM_ARC_ARCREGS_H */