blob: 163317fd3d7e9f58feb5070883831267dd1de439 [file] [log] [blame]
Paul Burton9f98f3d2014-01-15 10:31:51 +00001/*
2 * Copyright (C) 2013 Imagination Technologies
3 * Author: Paul Burton <paul.burton@imgtec.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
9 */
10
11#ifndef __MIPS_ASM_MIPS_CM_H__
12#define __MIPS_ASM_MIPS_CM_H__
13
Paul Burton47b26a42015-09-22 10:26:41 -070014#include <linux/bitops.h>
Paul Burton56d4c992015-05-22 16:51:01 +010015#include <linux/errno.h>
Paul Burton9f98f3d2014-01-15 10:31:51 +000016#include <linux/io.h>
17#include <linux/types.h>
18
19/* The base address of the CM GCR block */
20extern void __iomem *mips_cm_base;
21
22/* The base address of the CM L2-only sync region */
23extern void __iomem *mips_cm_l2sync_base;
24
25/**
26 * __mips_cm_phys_base - retrieve the physical base address of the CM
27 *
28 * This function returns the physical base address of the Coherence Manager
29 * global control block, or 0 if no Coherence Manager is present. It provides
30 * a default implementation which reads the CMGCRBase register where available,
Adam Buchbinder92a76f62016-02-25 00:44:58 -080031 * and may be overridden by platforms which determine this address in a
Paul Burton9f98f3d2014-01-15 10:31:51 +000032 * different way by defining a function with the same prototype except for the
33 * name mips_cm_phys_base (without underscores).
34 */
Ralf Baechle15d45cc2014-11-22 00:22:09 +010035extern phys_addr_t __mips_cm_phys_base(void);
Paul Burton9f98f3d2014-01-15 10:31:51 +000036
Markos Chandrasc0b584a2015-07-14 09:14:12 +010037/*
38 * mips_cm_is64 - determine CM register width
39 *
Paul Burton77844942015-09-22 10:26:37 -070040 * The CM register width is determined by the version of the CM, with CM3
41 * introducing 64 bit GCRs and all prior CM versions having 32 bit GCRs.
42 * However we may run a kernel built for MIPS32 on a system with 64 bit GCRs,
43 * or vice-versa. This variable indicates the width of the memory accesses
44 * that the kernel will perform to GCRs, which may differ from the actual
45 * width of the GCRs.
Markos Chandrasc0b584a2015-07-14 09:14:12 +010046 *
47 * It's set to 0 for 32-bit accesses and 1 for 64-bit accesses.
48 */
49extern int mips_cm_is64;
50
Paul Burton9f98f3d2014-01-15 10:31:51 +000051/**
Markos Chandras3885c2b2015-07-09 10:40:47 +010052 * mips_cm_error_report - Report CM cache errors
53 */
54#ifdef CONFIG_MIPS_CM
55extern void mips_cm_error_report(void);
56#else
57static inline void mips_cm_error_report(void) {}
58#endif
59
60/**
Paul Burton9f98f3d2014-01-15 10:31:51 +000061 * mips_cm_probe - probe for a Coherence Manager
62 *
63 * Attempt to detect the presence of a Coherence Manager. Returns 0 if a CM
64 * is successfully detected, else -errno.
65 */
66#ifdef CONFIG_MIPS_CM
67extern int mips_cm_probe(void);
68#else
69static inline int mips_cm_probe(void)
70{
71 return -ENODEV;
72}
73#endif
74
75/**
76 * mips_cm_present - determine whether a Coherence Manager is present
77 *
78 * Returns true if a CM is present in the system, else false.
79 */
80static inline bool mips_cm_present(void)
81{
82#ifdef CONFIG_MIPS_CM
83 return mips_cm_base != NULL;
84#else
85 return false;
86#endif
87}
88
89/**
90 * mips_cm_has_l2sync - determine whether an L2-only sync region is present
91 *
92 * Returns true if the system implements an L2-only sync region, else false.
93 */
94static inline bool mips_cm_has_l2sync(void)
95{
96#ifdef CONFIG_MIPS_CM
97 return mips_cm_l2sync_base != NULL;
98#else
99 return false;
100#endif
101}
102
103/* Offsets to register blocks from the CM base address */
104#define MIPS_CM_GCB_OFS 0x0000 /* Global Control Block */
105#define MIPS_CM_CLCB_OFS 0x2000 /* Core Local Control Block */
106#define MIPS_CM_COCB_OFS 0x4000 /* Core Other Control Block */
107#define MIPS_CM_GDB_OFS 0x6000 /* Global Debug Block */
108
109/* Total size of the CM memory mapped registers */
110#define MIPS_CM_GCR_SIZE 0x8000
111
112/* Size of the L2-only sync region */
113#define MIPS_CM_L2SYNC_SIZE 0x1000
114
115/* Macros to ease the creation of register access functions */
116#define BUILD_CM_R_(name, off) \
Markos Chandrasc0b584a2015-07-14 09:14:12 +0100117static inline unsigned long __iomem *addr_gcr_##name(void) \
Paul Burton9f98f3d2014-01-15 10:31:51 +0000118{ \
Markos Chandrasc0b584a2015-07-14 09:14:12 +0100119 return (unsigned long __iomem *)(mips_cm_base + (off)); \
Paul Burton9f98f3d2014-01-15 10:31:51 +0000120} \
121 \
Markos Chandrasc0b584a2015-07-14 09:14:12 +0100122static inline u32 read32_gcr_##name(void) \
Paul Burton9f98f3d2014-01-15 10:31:51 +0000123{ \
Paul Burtoncd217542014-03-24 10:19:34 +0000124 return __raw_readl(addr_gcr_##name()); \
Markos Chandrasc0b584a2015-07-14 09:14:12 +0100125} \
126 \
127static inline u64 read64_gcr_##name(void) \
128{ \
Paul Burtonb657a622015-09-22 10:26:40 -0700129 void __iomem *addr = addr_gcr_##name(); \
130 u64 ret; \
131 \
132 if (mips_cm_is64) { \
133 ret = __raw_readq(addr); \
134 } else { \
135 ret = __raw_readl(addr); \
136 ret |= (u64)__raw_readl(addr + 0x4) << 32; \
137 } \
138 \
139 return ret; \
Markos Chandrasc0b584a2015-07-14 09:14:12 +0100140} \
141 \
142static inline unsigned long read_gcr_##name(void) \
143{ \
144 if (mips_cm_is64) \
145 return read64_gcr_##name(); \
146 else \
147 return read32_gcr_##name(); \
Paul Burton9f98f3d2014-01-15 10:31:51 +0000148}
149
150#define BUILD_CM__W(name, off) \
Markos Chandrasc0b584a2015-07-14 09:14:12 +0100151static inline void write32_gcr_##name(u32 value) \
Paul Burton9f98f3d2014-01-15 10:31:51 +0000152{ \
Paul Burtoncd217542014-03-24 10:19:34 +0000153 __raw_writel(value, addr_gcr_##name()); \
Markos Chandrasc0b584a2015-07-14 09:14:12 +0100154} \
155 \
156static inline void write64_gcr_##name(u64 value) \
157{ \
158 __raw_writeq(value, addr_gcr_##name()); \
159} \
160 \
161static inline void write_gcr_##name(unsigned long value) \
162{ \
163 if (mips_cm_is64) \
164 write64_gcr_##name(value); \
165 else \
166 write32_gcr_##name(value); \
Paul Burton9f98f3d2014-01-15 10:31:51 +0000167}
168
169#define BUILD_CM_RW(name, off) \
170 BUILD_CM_R_(name, off) \
171 BUILD_CM__W(name, off)
172
173#define BUILD_CM_Cx_R_(name, off) \
174 BUILD_CM_R_(cl_##name, MIPS_CM_CLCB_OFS + (off)) \
175 BUILD_CM_R_(co_##name, MIPS_CM_COCB_OFS + (off))
176
177#define BUILD_CM_Cx__W(name, off) \
178 BUILD_CM__W(cl_##name, MIPS_CM_CLCB_OFS + (off)) \
179 BUILD_CM__W(co_##name, MIPS_CM_COCB_OFS + (off))
180
181#define BUILD_CM_Cx_RW(name, off) \
182 BUILD_CM_Cx_R_(name, off) \
183 BUILD_CM_Cx__W(name, off)
184
185/* GCB register accessor functions */
186BUILD_CM_R_(config, MIPS_CM_GCB_OFS + 0x00)
187BUILD_CM_RW(base, MIPS_CM_GCB_OFS + 0x08)
188BUILD_CM_RW(access, MIPS_CM_GCB_OFS + 0x20)
189BUILD_CM_R_(rev, MIPS_CM_GCB_OFS + 0x30)
Paul Burtonade4b222016-10-17 16:01:07 +0100190BUILD_CM_RW(err_control, MIPS_CM_GCB_OFS + 0x38)
Paul Burton9f98f3d2014-01-15 10:31:51 +0000191BUILD_CM_RW(error_mask, MIPS_CM_GCB_OFS + 0x40)
192BUILD_CM_RW(error_cause, MIPS_CM_GCB_OFS + 0x48)
193BUILD_CM_RW(error_addr, MIPS_CM_GCB_OFS + 0x50)
194BUILD_CM_RW(error_mult, MIPS_CM_GCB_OFS + 0x58)
195BUILD_CM_RW(l2_only_sync_base, MIPS_CM_GCB_OFS + 0x70)
196BUILD_CM_RW(gic_base, MIPS_CM_GCB_OFS + 0x80)
197BUILD_CM_RW(cpc_base, MIPS_CM_GCB_OFS + 0x88)
198BUILD_CM_RW(reg0_base, MIPS_CM_GCB_OFS + 0x90)
199BUILD_CM_RW(reg0_mask, MIPS_CM_GCB_OFS + 0x98)
200BUILD_CM_RW(reg1_base, MIPS_CM_GCB_OFS + 0xa0)
201BUILD_CM_RW(reg1_mask, MIPS_CM_GCB_OFS + 0xa8)
202BUILD_CM_RW(reg2_base, MIPS_CM_GCB_OFS + 0xb0)
203BUILD_CM_RW(reg2_mask, MIPS_CM_GCB_OFS + 0xb8)
204BUILD_CM_RW(reg3_base, MIPS_CM_GCB_OFS + 0xc0)
205BUILD_CM_RW(reg3_mask, MIPS_CM_GCB_OFS + 0xc8)
206BUILD_CM_R_(gic_status, MIPS_CM_GCB_OFS + 0xd0)
207BUILD_CM_R_(cpc_status, MIPS_CM_GCB_OFS + 0xf0)
Paul Burton0ba3c122015-07-09 10:40:40 +0100208BUILD_CM_RW(l2_config, MIPS_CM_GCB_OFS + 0x130)
Paul Burton7573b942015-09-22 11:29:09 -0700209BUILD_CM_RW(sys_config2, MIPS_CM_GCB_OFS + 0x150)
Paul Burton4d035512015-09-22 10:10:54 -0700210BUILD_CM_RW(l2_pft_control, MIPS_CM_GCB_OFS + 0x300)
211BUILD_CM_RW(l2_pft_control_b, MIPS_CM_GCB_OFS + 0x308)
Paul Burtondb8e00a2016-02-03 03:15:25 +0000212BUILD_CM_RW(bev_base, MIPS_CM_GCB_OFS + 0x680)
Paul Burton9f98f3d2014-01-15 10:31:51 +0000213
214/* Core Local & Core Other register accessor functions */
215BUILD_CM_Cx_RW(reset_release, 0x00)
216BUILD_CM_Cx_RW(coherence, 0x08)
217BUILD_CM_Cx_R_(config, 0x10)
218BUILD_CM_Cx_RW(other, 0x18)
219BUILD_CM_Cx_RW(reset_base, 0x20)
220BUILD_CM_Cx_R_(id, 0x28)
221BUILD_CM_Cx_RW(reset_ext_base, 0x30)
222BUILD_CM_Cx_R_(tcid_0_priority, 0x40)
223BUILD_CM_Cx_R_(tcid_1_priority, 0x48)
224BUILD_CM_Cx_R_(tcid_2_priority, 0x50)
225BUILD_CM_Cx_R_(tcid_3_priority, 0x58)
226BUILD_CM_Cx_R_(tcid_4_priority, 0x60)
227BUILD_CM_Cx_R_(tcid_5_priority, 0x68)
228BUILD_CM_Cx_R_(tcid_6_priority, 0x70)
229BUILD_CM_Cx_R_(tcid_7_priority, 0x78)
230BUILD_CM_Cx_R_(tcid_8_priority, 0x80)
231
232/* GCR_CONFIG register fields */
233#define CM_GCR_CONFIG_NUMIOCU_SHF 8
234#define CM_GCR_CONFIG_NUMIOCU_MSK (_ULCAST_(0xf) << 8)
235#define CM_GCR_CONFIG_PCORES_SHF 0
236#define CM_GCR_CONFIG_PCORES_MSK (_ULCAST_(0xff) << 0)
237
238/* GCR_BASE register fields */
239#define CM_GCR_BASE_GCRBASE_SHF 15
240#define CM_GCR_BASE_GCRBASE_MSK (_ULCAST_(0x1ffff) << 15)
241#define CM_GCR_BASE_CMDEFTGT_SHF 0
242#define CM_GCR_BASE_CMDEFTGT_MSK (_ULCAST_(0x3) << 0)
Paul Burton71bcb372017-10-31 15:09:22 -0700243#define CM_GCR_BASE_CMDEFTGT_MEM 0
244#define CM_GCR_BASE_CMDEFTGT_RESERVED 1
Paul Burton9f98f3d2014-01-15 10:31:51 +0000245#define CM_GCR_BASE_CMDEFTGT_IOCU0 2
246#define CM_GCR_BASE_CMDEFTGT_IOCU1 3
247
Matt Redfearn497e803e2015-12-18 12:47:00 +0000248/* GCR_RESET_EXT_BASE register fields */
249#define CM_GCR_RESET_EXT_BASE_EVARESET BIT(31)
250#define CM_GCR_RESET_EXT_BASE_UEB BIT(30)
251
Paul Burton9f98f3d2014-01-15 10:31:51 +0000252/* GCR_ACCESS register fields */
253#define CM_GCR_ACCESS_ACCESSEN_SHF 0
254#define CM_GCR_ACCESS_ACCESSEN_MSK (_ULCAST_(0xff) << 0)
255
256/* GCR_REV register fields */
257#define CM_GCR_REV_MAJOR_SHF 8
258#define CM_GCR_REV_MAJOR_MSK (_ULCAST_(0xff) << 8)
259#define CM_GCR_REV_MINOR_SHF 0
260#define CM_GCR_REV_MINOR_MSK (_ULCAST_(0xff) << 0)
261
Paul Burton197e89e2015-07-10 10:12:52 +0100262#define CM_ENCODE_REV(major, minor) \
263 (((major) << CM_GCR_REV_MAJOR_SHF) | \
264 ((minor) << CM_GCR_REV_MINOR_SHF))
265
266#define CM_REV_CM2 CM_ENCODE_REV(6, 0)
Paul Burton4d035512015-09-22 10:10:54 -0700267#define CM_REV_CM2_5 CM_ENCODE_REV(7, 0)
Paul Burton197e89e2015-07-10 10:12:52 +0100268#define CM_REV_CM3 CM_ENCODE_REV(8, 0)
269
Paul Burtonade4b222016-10-17 16:01:07 +0100270/* GCR_ERR_CONTROL register fields */
271#define CM_GCR_ERR_CONTROL_L2_ECC_EN_SHF 1
272#define CM_GCR_ERR_CONTROL_L2_ECC_EN_MSK (_ULCAST_(0x1) << 1)
273#define CM_GCR_ERR_CONTROL_L2_ECC_SUPPORT_SHF 0
274#define CM_GCR_ERR_CONTROL_L2_ECC_SUPPORT_MSK (_ULCAST_(0x1) << 0)
275
Paul Burton9f98f3d2014-01-15 10:31:51 +0000276/* GCR_ERROR_CAUSE register fields */
277#define CM_GCR_ERROR_CAUSE_ERRTYPE_SHF 27
278#define CM_GCR_ERROR_CAUSE_ERRTYPE_MSK (_ULCAST_(0x1f) << 27)
Paul Burton47b26a42015-09-22 10:26:41 -0700279#define CM3_GCR_ERROR_CAUSE_ERRTYPE_SHF 58
280#define CM3_GCR_ERROR_CAUSE_ERRTYPE_MSK GENMASK_ULL(63, 58)
Paul Burton9f98f3d2014-01-15 10:31:51 +0000281#define CM_GCR_ERROR_CAUSE_ERRINFO_SHF 0
282#define CM_GCR_ERROR_CAUSE_ERRINGO_MSK (_ULCAST_(0x7ffffff) << 0)
283
284/* GCR_ERROR_MULT register fields */
285#define CM_GCR_ERROR_MULT_ERR2ND_SHF 0
286#define CM_GCR_ERROR_MULT_ERR2ND_MSK (_ULCAST_(0x1f) << 0)
287
288/* GCR_L2_ONLY_SYNC_BASE register fields */
289#define CM_GCR_L2_ONLY_SYNC_BASE_SYNCBASE_SHF 12
290#define CM_GCR_L2_ONLY_SYNC_BASE_SYNCBASE_MSK (_ULCAST_(0xfffff) << 12)
291#define CM_GCR_L2_ONLY_SYNC_BASE_SYNCEN_SHF 0
292#define CM_GCR_L2_ONLY_SYNC_BASE_SYNCEN_MSK (_ULCAST_(0x1) << 0)
293
294/* GCR_GIC_BASE register fields */
295#define CM_GCR_GIC_BASE_GICBASE_SHF 17
296#define CM_GCR_GIC_BASE_GICBASE_MSK (_ULCAST_(0x7fff) << 17)
297#define CM_GCR_GIC_BASE_GICEN_SHF 0
298#define CM_GCR_GIC_BASE_GICEN_MSK (_ULCAST_(0x1) << 0)
299
300/* GCR_CPC_BASE register fields */
Nikolay Martynove03ac9f2015-12-08 13:27:02 -0500301#define CM_GCR_CPC_BASE_CPCBASE_SHF 15
302#define CM_GCR_CPC_BASE_CPCBASE_MSK (_ULCAST_(0x1ffff) << 15)
Paul Burton9f98f3d2014-01-15 10:31:51 +0000303#define CM_GCR_CPC_BASE_CPCEN_SHF 0
304#define CM_GCR_CPC_BASE_CPCEN_MSK (_ULCAST_(0x1) << 0)
305
Paul Burton921d55e2015-05-22 16:51:00 +0100306/* GCR_GIC_STATUS register fields */
307#define CM_GCR_GIC_STATUS_GICEX_SHF 0
308#define CM_GCR_GIC_STATUS_GICEX_MSK (_ULCAST_(0x1) << 0)
309
Paul Burton9f98f3d2014-01-15 10:31:51 +0000310/* GCR_REGn_BASE register fields */
311#define CM_GCR_REGn_BASE_BASEADDR_SHF 16
312#define CM_GCR_REGn_BASE_BASEADDR_MSK (_ULCAST_(0xffff) << 16)
313
314/* GCR_REGn_MASK register fields */
315#define CM_GCR_REGn_MASK_ADDRMASK_SHF 16
316#define CM_GCR_REGn_MASK_ADDRMASK_MSK (_ULCAST_(0xffff) << 16)
317#define CM_GCR_REGn_MASK_CCAOVR_SHF 5
318#define CM_GCR_REGn_MASK_CCAOVR_MSK (_ULCAST_(0x3) << 5)
319#define CM_GCR_REGn_MASK_CCAOVREN_SHF 4
320#define CM_GCR_REGn_MASK_CCAOVREN_MSK (_ULCAST_(0x1) << 4)
321#define CM_GCR_REGn_MASK_DROPL2_SHF 2
322#define CM_GCR_REGn_MASK_DROPL2_MSK (_ULCAST_(0x1) << 2)
323#define CM_GCR_REGn_MASK_CMTGT_SHF 0
324#define CM_GCR_REGn_MASK_CMTGT_MSK (_ULCAST_(0x3) << 0)
325#define CM_GCR_REGn_MASK_CMTGT_DISABLED (_ULCAST_(0x0) << 0)
326#define CM_GCR_REGn_MASK_CMTGT_MEM (_ULCAST_(0x1) << 0)
327#define CM_GCR_REGn_MASK_CMTGT_IOCU0 (_ULCAST_(0x2) << 0)
328#define CM_GCR_REGn_MASK_CMTGT_IOCU1 (_ULCAST_(0x3) << 0)
329
330/* GCR_GIC_STATUS register fields */
331#define CM_GCR_GIC_STATUS_EX_SHF 0
332#define CM_GCR_GIC_STATUS_EX_MSK (_ULCAST_(0x1) << 0)
333
334/* GCR_CPC_STATUS register fields */
335#define CM_GCR_CPC_STATUS_EX_SHF 0
336#define CM_GCR_CPC_STATUS_EX_MSK (_ULCAST_(0x1) << 0)
337
Paul Burton0ba3c122015-07-09 10:40:40 +0100338/* GCR_L2_CONFIG register fields */
339#define CM_GCR_L2_CONFIG_BYPASS_SHF 20
340#define CM_GCR_L2_CONFIG_BYPASS_MSK (_ULCAST_(0x1) << 20)
341#define CM_GCR_L2_CONFIG_SET_SIZE_SHF 12
342#define CM_GCR_L2_CONFIG_SET_SIZE_MSK (_ULCAST_(0xf) << 12)
343#define CM_GCR_L2_CONFIG_LINE_SIZE_SHF 8
344#define CM_GCR_L2_CONFIG_LINE_SIZE_MSK (_ULCAST_(0xf) << 8)
345#define CM_GCR_L2_CONFIG_ASSOC_SHF 0
346#define CM_GCR_L2_CONFIG_ASSOC_MSK (_ULCAST_(0xff) << 0)
347
Paul Burton7573b942015-09-22 11:29:09 -0700348/* GCR_SYS_CONFIG2 register fields */
349#define CM_GCR_SYS_CONFIG2_MAXVPW_SHF 0
350#define CM_GCR_SYS_CONFIG2_MAXVPW_MSK (_ULCAST_(0xf) << 0)
351
Paul Burton4d035512015-09-22 10:10:54 -0700352/* GCR_L2_PFT_CONTROL register fields */
353#define CM_GCR_L2_PFT_CONTROL_PAGEMASK_SHF 12
354#define CM_GCR_L2_PFT_CONTROL_PAGEMASK_MSK (_ULCAST_(0xfffff) << 12)
355#define CM_GCR_L2_PFT_CONTROL_PFTEN_SHF 8
356#define CM_GCR_L2_PFT_CONTROL_PFTEN_MSK (_ULCAST_(0x1) << 8)
357#define CM_GCR_L2_PFT_CONTROL_NPFT_SHF 0
358#define CM_GCR_L2_PFT_CONTROL_NPFT_MSK (_ULCAST_(0xff) << 0)
359
360/* GCR_L2_PFT_CONTROL_B register fields */
361#define CM_GCR_L2_PFT_CONTROL_B_CEN_SHF 8
362#define CM_GCR_L2_PFT_CONTROL_B_CEN_MSK (_ULCAST_(0x1) << 8)
363#define CM_GCR_L2_PFT_CONTROL_B_PORTID_SHF 0
364#define CM_GCR_L2_PFT_CONTROL_B_PORTID_MSK (_ULCAST_(0xff) << 0)
365
Paul Burton9f98f3d2014-01-15 10:31:51 +0000366/* GCR_Cx_COHERENCE register fields */
367#define CM_GCR_Cx_COHERENCE_COHDOMAINEN_SHF 0
368#define CM_GCR_Cx_COHERENCE_COHDOMAINEN_MSK (_ULCAST_(0xff) << 0)
Matt Redfearn77451992016-09-07 10:45:18 +0100369#define CM3_GCR_Cx_COHERENCE_COHEN_MSK (_ULCAST_(0x1) << 0)
Paul Burton9f98f3d2014-01-15 10:31:51 +0000370
371/* GCR_Cx_CONFIG register fields */
372#define CM_GCR_Cx_CONFIG_IOCUTYPE_SHF 10
373#define CM_GCR_Cx_CONFIG_IOCUTYPE_MSK (_ULCAST_(0x3) << 10)
374#define CM_GCR_Cx_CONFIG_PVPE_SHF 0
Paul Burton252d6aa2015-09-22 11:12:15 -0700375#define CM_GCR_Cx_CONFIG_PVPE_MSK (_ULCAST_(0x3ff) << 0)
Paul Burton9f98f3d2014-01-15 10:31:51 +0000376
377/* GCR_Cx_OTHER register fields */
378#define CM_GCR_Cx_OTHER_CORENUM_SHF 16
379#define CM_GCR_Cx_OTHER_CORENUM_MSK (_ULCAST_(0xffff) << 16)
Paul Burton23d5de82015-09-22 11:12:16 -0700380#define CM3_GCR_Cx_OTHER_CORE_SHF 8
381#define CM3_GCR_Cx_OTHER_CORE_MSK (_ULCAST_(0x3f) << 8)
382#define CM3_GCR_Cx_OTHER_VP_SHF 0
383#define CM3_GCR_Cx_OTHER_VP_MSK (_ULCAST_(0x7) << 0)
Paul Burton9f98f3d2014-01-15 10:31:51 +0000384
385/* GCR_Cx_RESET_BASE register fields */
386#define CM_GCR_Cx_RESET_BASE_BEVEXCBASE_SHF 12
387#define CM_GCR_Cx_RESET_BASE_BEVEXCBASE_MSK (_ULCAST_(0xfffff) << 12)
388
389/* GCR_Cx_RESET_EXT_BASE register fields */
390#define CM_GCR_Cx_RESET_EXT_BASE_EVARESET_SHF 31
391#define CM_GCR_Cx_RESET_EXT_BASE_EVARESET_MSK (_ULCAST_(0x1) << 31)
392#define CM_GCR_Cx_RESET_EXT_BASE_UEB_SHF 30
393#define CM_GCR_Cx_RESET_EXT_BASE_UEB_MSK (_ULCAST_(0x1) << 30)
394#define CM_GCR_Cx_RESET_EXT_BASE_BEVEXCMASK_SHF 20
395#define CM_GCR_Cx_RESET_EXT_BASE_BEVEXCMASK_MSK (_ULCAST_(0xff) << 20)
396#define CM_GCR_Cx_RESET_EXT_BASE_BEVEXCPA_SHF 1
397#define CM_GCR_Cx_RESET_EXT_BASE_BEVEXCPA_MSK (_ULCAST_(0x7f) << 1)
398#define CM_GCR_Cx_RESET_EXT_BASE_PRESENT_SHF 0
399#define CM_GCR_Cx_RESET_EXT_BASE_PRESENT_MSK (_ULCAST_(0x1) << 0)
400
401/**
402 * mips_cm_numcores - return the number of cores present in the system
403 *
404 * Returns the value of the PCORES field of the GCR_CONFIG register plus 1, or
405 * zero if no Coherence Manager is present.
406 */
407static inline unsigned mips_cm_numcores(void)
408{
409 if (!mips_cm_present())
410 return 0;
411
412 return ((read_gcr_config() & CM_GCR_CONFIG_PCORES_MSK)
413 >> CM_GCR_CONFIG_PCORES_SHF) + 1;
414}
415
416/**
417 * mips_cm_numiocu - return the number of IOCUs present in the system
418 *
419 * Returns the value of the NUMIOCU field of the GCR_CONFIG register, or zero
420 * if no Coherence Manager is present.
421 */
422static inline unsigned mips_cm_numiocu(void)
423{
424 if (!mips_cm_present())
425 return 0;
426
427 return (read_gcr_config() & CM_GCR_CONFIG_NUMIOCU_MSK)
428 >> CM_GCR_CONFIG_NUMIOCU_SHF;
429}
430
431/**
432 * mips_cm_l2sync - perform an L2-only sync operation
433 *
434 * If an L2-only sync region is present in the system then this function
435 * performs and L2-only sync and returns zero. Otherwise it returns -ENODEV.
436 */
437static inline int mips_cm_l2sync(void)
438{
439 if (!mips_cm_has_l2sync())
440 return -ENODEV;
441
442 writel(0, mips_cm_l2sync_base);
443 return 0;
444}
445
Paul Burton197e89e2015-07-10 10:12:52 +0100446/**
447 * mips_cm_revision() - return CM revision
448 *
449 * Return: The revision of the CM, from GCR_REV, or 0 if no CM is present. The
450 * return value should be checked against the CM_REV_* macros.
451 */
452static inline int mips_cm_revision(void)
453{
454 if (!mips_cm_present())
455 return 0;
456
457 return read_gcr_rev();
458}
459
Paul Burton7573b942015-09-22 11:29:09 -0700460/**
461 * mips_cm_max_vp_width() - return the width in bits of VP indices
462 *
463 * Return: the width, in bits, of VP indices in fields that combine core & VP
464 * indices.
465 */
466static inline unsigned int mips_cm_max_vp_width(void)
467{
468 extern int smp_num_siblings;
Paul Burton6605d152016-09-30 17:25:01 +0100469 uint32_t cfg;
Paul Burton7573b942015-09-22 11:29:09 -0700470
471 if (mips_cm_revision() >= CM_REV_CM3)
472 return read_gcr_sys_config2() & CM_GCR_SYS_CONFIG2_MAXVPW_MSK;
473
Paul Burton6605d152016-09-30 17:25:01 +0100474 if (mips_cm_present()) {
475 /*
476 * We presume that all cores in the system will have the same
477 * number of VP(E)s, and if that ever changes then this will
478 * need revisiting.
479 */
480 cfg = read_gcr_cl_config() & CM_GCR_Cx_CONFIG_PVPE_MSK;
481 return (cfg >> CM_GCR_Cx_CONFIG_PVPE_SHF) + 1;
482 }
483
Masahiro Yamada97f26452016-08-03 13:45:50 -0700484 if (IS_ENABLED(CONFIG_SMP))
Paul Burtona60ae812016-02-03 03:15:26 +0000485 return smp_num_siblings;
486
487 return 1;
Paul Burton7573b942015-09-22 11:29:09 -0700488}
489
490/**
491 * mips_cm_vp_id() - calculate the hardware VP ID for a CPU
492 * @cpu: the CPU whose VP ID to calculate
493 *
494 * Hardware such as the GIC uses identifiers for VPs which may not match the
495 * CPU numbers used by Linux. This function calculates the hardware VP
496 * identifier corresponding to a given CPU.
497 *
498 * Return: the VP ID for the CPU.
499 */
500static inline unsigned int mips_cm_vp_id(unsigned int cpu)
501{
502 unsigned int core = cpu_data[cpu].core;
503 unsigned int vp = cpu_vpe_id(&cpu_data[cpu]);
504
505 return (core * mips_cm_max_vp_width()) + vp;
506}
507
Paul Burton23d5de82015-09-22 11:12:16 -0700508#ifdef CONFIG_MIPS_CM
509
510/**
511 * mips_cm_lock_other - lock access to another core
512 * @core: the other core to be accessed
513 * @vp: the VP within the other core to be accessed
514 *
515 * Call before operating upon a core via the 'other' register region in
516 * order to prevent the region being moved during access. Must be followed
517 * by a call to mips_cm_unlock_other.
518 */
519extern void mips_cm_lock_other(unsigned int core, unsigned int vp);
520
521/**
522 * mips_cm_unlock_other - unlock access to another core
523 *
524 * Call after operating upon another core via the 'other' register region.
525 * Must be called after mips_cm_lock_other.
526 */
527extern void mips_cm_unlock_other(void);
528
529#else /* !CONFIG_MIPS_CM */
530
Tony Wu08689712015-12-04 19:40:00 +0800531static inline void mips_cm_lock_other(unsigned int core, unsigned int vp) { }
Paul Burton23d5de82015-09-22 11:12:16 -0700532static inline void mips_cm_unlock_other(void) { }
533
534#endif /* !CONFIG_MIPS_CM */
535
Paul Burton9f98f3d2014-01-15 10:31:51 +0000536#endif /* __MIPS_ASM_MIPS_CM_H__ */