mips-cm.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  1. /*
  2. * Copyright (C) 2013 Imagination Technologies
  3. * Author: Paul Burton <paul.burton@mips.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. #ifndef __MIPS_ASM_MIPS_CPS_H__
  11. # error Please include asm/mips-cps.h rather than asm/mips-cm.h
  12. #endif
  13. #ifndef __MIPS_ASM_MIPS_CM_H__
  14. #define __MIPS_ASM_MIPS_CM_H__
  15. #include <linux/bitops.h>
  16. #include <linux/errno.h>
  17. /* The base address of the CM GCR block */
  18. extern void __iomem *mips_gcr_base;
  19. /* The base address of the CM L2-only sync region */
  20. extern void __iomem *mips_cm_l2sync_base;
  21. /**
  22. * __mips_cm_phys_base - retrieve the physical base address of the CM
  23. *
  24. * This function returns the physical base address of the Coherence Manager
  25. * global control block, or 0 if no Coherence Manager is present. It provides
  26. * a default implementation which reads the CMGCRBase register where available,
  27. * and may be overridden by platforms which determine this address in a
  28. * different way by defining a function with the same prototype except for the
  29. * name mips_cm_phys_base (without underscores).
  30. */
  31. extern phys_addr_t __mips_cm_phys_base(void);
  32. /*
  33. * mips_cm_is64 - determine CM register width
  34. *
  35. * The CM register width is determined by the version of the CM, with CM3
  36. * introducing 64 bit GCRs and all prior CM versions having 32 bit GCRs.
  37. * However we may run a kernel built for MIPS32 on a system with 64 bit GCRs,
  38. * or vice-versa. This variable indicates the width of the memory accesses
  39. * that the kernel will perform to GCRs, which may differ from the actual
  40. * width of the GCRs.
  41. *
  42. * It's set to 0 for 32-bit accesses and 1 for 64-bit accesses.
  43. */
  44. extern int mips_cm_is64;
  45. /**
  46. * mips_cm_error_report - Report CM cache errors
  47. */
  48. #ifdef CONFIG_MIPS_CM
  49. extern void mips_cm_error_report(void);
  50. #else
  51. static inline void mips_cm_error_report(void) {}
  52. #endif
  53. /**
  54. * mips_cm_probe - probe for a Coherence Manager
  55. *
  56. * Attempt to detect the presence of a Coherence Manager. Returns 0 if a CM
  57. * is successfully detected, else -errno.
  58. */
  59. #ifdef CONFIG_MIPS_CM
  60. extern int mips_cm_probe(void);
  61. #else
  62. static inline int mips_cm_probe(void)
  63. {
  64. return -ENODEV;
  65. }
  66. #endif
  67. /**
  68. * mips_cm_present - determine whether a Coherence Manager is present
  69. *
  70. * Returns true if a CM is present in the system, else false.
  71. */
  72. static inline bool mips_cm_present(void)
  73. {
  74. #ifdef CONFIG_MIPS_CM
  75. return mips_gcr_base != NULL;
  76. #else
  77. return false;
  78. #endif
  79. }
  80. /**
  81. * mips_cm_has_l2sync - determine whether an L2-only sync region is present
  82. *
  83. * Returns true if the system implements an L2-only sync region, else false.
  84. */
  85. static inline bool mips_cm_has_l2sync(void)
  86. {
  87. #ifdef CONFIG_MIPS_CM
  88. return mips_cm_l2sync_base != NULL;
  89. #else
  90. return false;
  91. #endif
  92. }
  93. /* Offsets to register blocks from the CM base address */
  94. #define MIPS_CM_GCB_OFS 0x0000 /* Global Control Block */
  95. #define MIPS_CM_CLCB_OFS 0x2000 /* Core Local Control Block */
  96. #define MIPS_CM_COCB_OFS 0x4000 /* Core Other Control Block */
  97. #define MIPS_CM_GDB_OFS 0x6000 /* Global Debug Block */
  98. /* Total size of the CM memory mapped registers */
  99. #define MIPS_CM_GCR_SIZE 0x8000
  100. /* Size of the L2-only sync region */
  101. #define MIPS_CM_L2SYNC_SIZE 0x1000
  102. #define GCR_ACCESSOR_RO(sz, off, name) \
  103. CPS_ACCESSOR_RO(gcr, sz, MIPS_CM_GCB_OFS + off, name) \
  104. CPS_ACCESSOR_RO(gcr, sz, MIPS_CM_COCB_OFS + off, redir_##name)
  105. #define GCR_ACCESSOR_RW(sz, off, name) \
  106. CPS_ACCESSOR_RW(gcr, sz, MIPS_CM_GCB_OFS + off, name) \
  107. CPS_ACCESSOR_RW(gcr, sz, MIPS_CM_COCB_OFS + off, redir_##name)
  108. #define GCR_CX_ACCESSOR_RO(sz, off, name) \
  109. CPS_ACCESSOR_RO(gcr, sz, MIPS_CM_CLCB_OFS + off, cl_##name) \
  110. CPS_ACCESSOR_RO(gcr, sz, MIPS_CM_COCB_OFS + off, co_##name)
  111. #define GCR_CX_ACCESSOR_RW(sz, off, name) \
  112. CPS_ACCESSOR_RW(gcr, sz, MIPS_CM_CLCB_OFS + off, cl_##name) \
  113. CPS_ACCESSOR_RW(gcr, sz, MIPS_CM_COCB_OFS + off, co_##name)
  114. /* GCR_CONFIG - Information about the system */
  115. GCR_ACCESSOR_RO(64, 0x000, config)
  116. #define CM_GCR_CONFIG_CLUSTER_COH_CAPABLE BIT_ULL(43)
  117. #define CM_GCR_CONFIG_CLUSTER_ID GENMASK_ULL(39, 32)
  118. #define CM_GCR_CONFIG_NUM_CLUSTERS GENMASK(29, 23)
  119. #define CM_GCR_CONFIG_NUMIOCU GENMASK(15, 8)
  120. #define CM_GCR_CONFIG_PCORES GENMASK(7, 0)
  121. /* GCR_BASE - Base address of the Global Configuration Registers (GCRs) */
  122. GCR_ACCESSOR_RW(64, 0x008, base)
  123. #define CM_GCR_BASE_GCRBASE GENMASK_ULL(47, 15)
  124. #define CM_GCR_BASE_CMDEFTGT GENMASK(1, 0)
  125. #define CM_GCR_BASE_CMDEFTGT_MEM 0
  126. #define CM_GCR_BASE_CMDEFTGT_RESERVED 1
  127. #define CM_GCR_BASE_CMDEFTGT_IOCU0 2
  128. #define CM_GCR_BASE_CMDEFTGT_IOCU1 3
  129. /* GCR_ACCESS - Controls core/IOCU access to GCRs */
  130. GCR_ACCESSOR_RW(32, 0x020, access)
  131. #define CM_GCR_ACCESS_ACCESSEN GENMASK(7, 0)
  132. /* GCR_REV - Indicates the Coherence Manager revision */
  133. GCR_ACCESSOR_RO(32, 0x030, rev)
  134. #define CM_GCR_REV_MAJOR GENMASK(15, 8)
  135. #define CM_GCR_REV_MINOR GENMASK(7, 0)
  136. #define CM_ENCODE_REV(major, minor) \
  137. (((major) << __ffs(CM_GCR_REV_MAJOR)) | \
  138. ((minor) << __ffs(CM_GCR_REV_MINOR)))
  139. #define CM_REV_CM2 CM_ENCODE_REV(6, 0)
  140. #define CM_REV_CM2_5 CM_ENCODE_REV(7, 0)
  141. #define CM_REV_CM3 CM_ENCODE_REV(8, 0)
  142. #define CM_REV_CM3_5 CM_ENCODE_REV(9, 0)
  143. /* GCR_ERR_CONTROL - Control error checking logic */
  144. GCR_ACCESSOR_RW(32, 0x038, err_control)
  145. #define CM_GCR_ERR_CONTROL_L2_ECC_EN BIT(1)
  146. #define CM_GCR_ERR_CONTROL_L2_ECC_SUPPORT BIT(0)
  147. /* GCR_ERR_MASK - Control which errors are reported as interrupts */
  148. GCR_ACCESSOR_RW(64, 0x040, error_mask)
  149. /* GCR_ERR_CAUSE - Indicates the type of error that occurred */
  150. GCR_ACCESSOR_RW(64, 0x048, error_cause)
  151. #define CM_GCR_ERROR_CAUSE_ERRTYPE GENMASK(31, 27)
  152. #define CM3_GCR_ERROR_CAUSE_ERRTYPE GENMASK_ULL(63, 58)
  153. #define CM_GCR_ERROR_CAUSE_ERRINFO GENMASK(26, 0)
  154. /* GCR_ERR_ADDR - Indicates the address associated with an error */
  155. GCR_ACCESSOR_RW(64, 0x050, error_addr)
  156. /* GCR_ERR_MULT - Indicates when multiple errors have occurred */
  157. GCR_ACCESSOR_RW(64, 0x058, error_mult)
  158. #define CM_GCR_ERROR_MULT_ERR2ND GENMASK(4, 0)
  159. /* GCR_L2_ONLY_SYNC_BASE - Base address of the L2 cache-only sync region */
  160. GCR_ACCESSOR_RW(64, 0x070, l2_only_sync_base)
  161. #define CM_GCR_L2_ONLY_SYNC_BASE_SYNCBASE GENMASK(31, 12)
  162. #define CM_GCR_L2_ONLY_SYNC_BASE_SYNCEN BIT(0)
  163. /* GCR_GIC_BASE - Base address of the Global Interrupt Controller (GIC) */
  164. GCR_ACCESSOR_RW(64, 0x080, gic_base)
  165. #define CM_GCR_GIC_BASE_GICBASE GENMASK(31, 17)
  166. #define CM_GCR_GIC_BASE_GICEN BIT(0)
  167. /* GCR_CPC_BASE - Base address of the Cluster Power Controller (CPC) */
  168. GCR_ACCESSOR_RW(64, 0x088, cpc_base)
  169. #define CM_GCR_CPC_BASE_CPCBASE GENMASK(31, 15)
  170. #define CM_GCR_CPC_BASE_CPCEN BIT(0)
  171. /* GCR_REGn_BASE - Base addresses of CM address regions */
  172. GCR_ACCESSOR_RW(64, 0x090, reg0_base)
  173. GCR_ACCESSOR_RW(64, 0x0a0, reg1_base)
  174. GCR_ACCESSOR_RW(64, 0x0b0, reg2_base)
  175. GCR_ACCESSOR_RW(64, 0x0c0, reg3_base)
  176. #define CM_GCR_REGn_BASE_BASEADDR GENMASK(31, 16)
  177. /* GCR_REGn_MASK - Size & destination of CM address regions */
  178. GCR_ACCESSOR_RW(64, 0x098, reg0_mask)
  179. GCR_ACCESSOR_RW(64, 0x0a8, reg1_mask)
  180. GCR_ACCESSOR_RW(64, 0x0b8, reg2_mask)
  181. GCR_ACCESSOR_RW(64, 0x0c8, reg3_mask)
  182. #define CM_GCR_REGn_MASK_ADDRMASK GENMASK(31, 16)
  183. #define CM_GCR_REGn_MASK_CCAOVR GENMASK(7, 5)
  184. #define CM_GCR_REGn_MASK_CCAOVREN BIT(4)
  185. #define CM_GCR_REGn_MASK_DROPL2 BIT(2)
  186. #define CM_GCR_REGn_MASK_CMTGT GENMASK(1, 0)
  187. #define CM_GCR_REGn_MASK_CMTGT_DISABLED 0x0
  188. #define CM_GCR_REGn_MASK_CMTGT_MEM 0x1
  189. #define CM_GCR_REGn_MASK_CMTGT_IOCU0 0x2
  190. #define CM_GCR_REGn_MASK_CMTGT_IOCU1 0x3
  191. /* GCR_GIC_STATUS - Indicates presence of a Global Interrupt Controller (GIC) */
  192. GCR_ACCESSOR_RO(32, 0x0d0, gic_status)
  193. #define CM_GCR_GIC_STATUS_EX BIT(0)
  194. /* GCR_CPC_STATUS - Indicates presence of a Cluster Power Controller (CPC) */
  195. GCR_ACCESSOR_RO(32, 0x0f0, cpc_status)
  196. #define CM_GCR_CPC_STATUS_EX BIT(0)
  197. /* GCR_L2_CONFIG - Indicates L2 cache configuration when Config5.L2C=1 */
  198. GCR_ACCESSOR_RW(32, 0x130, l2_config)
  199. #define CM_GCR_L2_CONFIG_BYPASS BIT(20)
  200. #define CM_GCR_L2_CONFIG_SET_SIZE GENMASK(15, 12)
  201. #define CM_GCR_L2_CONFIG_LINE_SIZE GENMASK(11, 8)
  202. #define CM_GCR_L2_CONFIG_ASSOC GENMASK(7, 0)
  203. /* GCR_SYS_CONFIG2 - Further information about the system */
  204. GCR_ACCESSOR_RO(32, 0x150, sys_config2)
  205. #define CM_GCR_SYS_CONFIG2_MAXVPW GENMASK(3, 0)
  206. /* GCR_L2_PFT_CONTROL - Controls hardware L2 prefetching */
  207. GCR_ACCESSOR_RW(32, 0x300, l2_pft_control)
  208. #define CM_GCR_L2_PFT_CONTROL_PAGEMASK GENMASK(31, 12)
  209. #define CM_GCR_L2_PFT_CONTROL_PFTEN BIT(8)
  210. #define CM_GCR_L2_PFT_CONTROL_NPFT GENMASK(7, 0)
  211. /* GCR_L2_PFT_CONTROL_B - Controls hardware L2 prefetching */
  212. GCR_ACCESSOR_RW(32, 0x308, l2_pft_control_b)
  213. #define CM_GCR_L2_PFT_CONTROL_B_CEN BIT(8)
  214. #define CM_GCR_L2_PFT_CONTROL_B_PORTID GENMASK(7, 0)
  215. /* GCR_L2SM_COP - L2 cache op state machine control */
  216. GCR_ACCESSOR_RW(32, 0x620, l2sm_cop)
  217. #define CM_GCR_L2SM_COP_PRESENT BIT(31)
  218. #define CM_GCR_L2SM_COP_RESULT GENMASK(8, 6)
  219. #define CM_GCR_L2SM_COP_RESULT_DONTCARE 0
  220. #define CM_GCR_L2SM_COP_RESULT_DONE_OK 1
  221. #define CM_GCR_L2SM_COP_RESULT_DONE_ERROR 2
  222. #define CM_GCR_L2SM_COP_RESULT_ABORT_OK 3
  223. #define CM_GCR_L2SM_COP_RESULT_ABORT_ERROR 4
  224. #define CM_GCR_L2SM_COP_RUNNING BIT(5)
  225. #define CM_GCR_L2SM_COP_TYPE GENMASK(4, 2)
  226. #define CM_GCR_L2SM_COP_TYPE_IDX_WBINV 0
  227. #define CM_GCR_L2SM_COP_TYPE_IDX_STORETAG 1
  228. #define CM_GCR_L2SM_COP_TYPE_IDX_STORETAGDATA 2
  229. #define CM_GCR_L2SM_COP_TYPE_HIT_INV 4
  230. #define CM_GCR_L2SM_COP_TYPE_HIT_WBINV 5
  231. #define CM_GCR_L2SM_COP_TYPE_HIT_WB 6
  232. #define CM_GCR_L2SM_COP_TYPE_FETCHLOCK 7
  233. #define CM_GCR_L2SM_COP_CMD GENMASK(1, 0)
  234. #define CM_GCR_L2SM_COP_CMD_START 1 /* only when idle */
  235. #define CM_GCR_L2SM_COP_CMD_ABORT 3 /* only when running */
  236. /* GCR_L2SM_TAG_ADDR_COP - L2 cache op state machine address control */
  237. GCR_ACCESSOR_RW(64, 0x628, l2sm_tag_addr_cop)
  238. #define CM_GCR_L2SM_TAG_ADDR_COP_NUM_LINES GENMASK_ULL(63, 48)
  239. #define CM_GCR_L2SM_TAG_ADDR_COP_START_TAG GENMASK_ULL(47, 6)
  240. /* GCR_BEV_BASE - Controls the location of the BEV for powered up cores */
  241. GCR_ACCESSOR_RW(64, 0x680, bev_base)
  242. /* GCR_Cx_RESET_RELEASE - Controls core reset for CM 1.x */
  243. GCR_CX_ACCESSOR_RW(32, 0x000, reset_release)
  244. /* GCR_Cx_COHERENCE - Controls core coherence */
  245. GCR_CX_ACCESSOR_RW(32, 0x008, coherence)
  246. #define CM_GCR_Cx_COHERENCE_COHDOMAINEN GENMASK(7, 0)
  247. #define CM3_GCR_Cx_COHERENCE_COHEN BIT(0)
  248. /* GCR_Cx_CONFIG - Information about a core's configuration */
  249. GCR_CX_ACCESSOR_RO(32, 0x010, config)
  250. #define CM_GCR_Cx_CONFIG_IOCUTYPE GENMASK(11, 10)
  251. #define CM_GCR_Cx_CONFIG_PVPE GENMASK(9, 0)
  252. /* GCR_Cx_OTHER - Configure the core-other/redirect GCR block */
  253. GCR_CX_ACCESSOR_RW(32, 0x018, other)
  254. #define CM_GCR_Cx_OTHER_CORENUM GENMASK(31, 16) /* CM < 3 */
  255. #define CM_GCR_Cx_OTHER_CLUSTER_EN BIT(31) /* CM >= 3.5 */
  256. #define CM_GCR_Cx_OTHER_GIC_EN BIT(30) /* CM >= 3.5 */
  257. #define CM_GCR_Cx_OTHER_BLOCK GENMASK(25, 24) /* CM >= 3.5 */
  258. #define CM_GCR_Cx_OTHER_BLOCK_LOCAL 0
  259. #define CM_GCR_Cx_OTHER_BLOCK_GLOBAL 1
  260. #define CM_GCR_Cx_OTHER_BLOCK_USER 2
  261. #define CM_GCR_Cx_OTHER_BLOCK_GLOBAL_HIGH 3
  262. #define CM_GCR_Cx_OTHER_CLUSTER GENMASK(21, 16) /* CM >= 3.5 */
  263. #define CM3_GCR_Cx_OTHER_CORE GENMASK(13, 8) /* CM >= 3 */
  264. #define CM_GCR_Cx_OTHER_CORE_CM 32
  265. #define CM3_GCR_Cx_OTHER_VP GENMASK(2, 0) /* CM >= 3 */
  266. /* GCR_Cx_RESET_BASE - Configure where powered up cores will fetch from */
  267. GCR_CX_ACCESSOR_RW(32, 0x020, reset_base)
  268. #define CM_GCR_Cx_RESET_BASE_BEVEXCBASE GENMASK(31, 12)
  269. /* GCR_Cx_ID - Identify the current core */
  270. GCR_CX_ACCESSOR_RO(32, 0x028, id)
  271. #define CM_GCR_Cx_ID_CLUSTER GENMASK(15, 8)
  272. #define CM_GCR_Cx_ID_CORE GENMASK(7, 0)
  273. /* GCR_Cx_RESET_EXT_BASE - Configure behaviour when cores reset or power up */
  274. GCR_CX_ACCESSOR_RW(32, 0x030, reset_ext_base)
  275. #define CM_GCR_Cx_RESET_EXT_BASE_EVARESET BIT(31)
  276. #define CM_GCR_Cx_RESET_EXT_BASE_UEB BIT(30)
  277. #define CM_GCR_Cx_RESET_EXT_BASE_BEVEXCMASK GENMASK(27, 20)
  278. #define CM_GCR_Cx_RESET_EXT_BASE_BEVEXCPA GENMASK(7, 1)
  279. #define CM_GCR_Cx_RESET_EXT_BASE_PRESENT BIT(0)
  280. /**
  281. * mips_cm_l2sync - perform an L2-only sync operation
  282. *
  283. * If an L2-only sync region is present in the system then this function
  284. * performs and L2-only sync and returns zero. Otherwise it returns -ENODEV.
  285. */
  286. static inline int mips_cm_l2sync(void)
  287. {
  288. if (!mips_cm_has_l2sync())
  289. return -ENODEV;
  290. writel(0, mips_cm_l2sync_base);
  291. return 0;
  292. }
  293. /**
  294. * mips_cm_revision() - return CM revision
  295. *
  296. * Return: The revision of the CM, from GCR_REV, or 0 if no CM is present. The
  297. * return value should be checked against the CM_REV_* macros.
  298. */
  299. static inline int mips_cm_revision(void)
  300. {
  301. if (!mips_cm_present())
  302. return 0;
  303. return read_gcr_rev();
  304. }
  305. /**
  306. * mips_cm_max_vp_width() - return the width in bits of VP indices
  307. *
  308. * Return: the width, in bits, of VP indices in fields that combine core & VP
  309. * indices.
  310. */
  311. static inline unsigned int mips_cm_max_vp_width(void)
  312. {
  313. extern int smp_num_siblings;
  314. uint32_t cfg;
  315. if (mips_cm_revision() >= CM_REV_CM3)
  316. return read_gcr_sys_config2() & CM_GCR_SYS_CONFIG2_MAXVPW;
  317. if (mips_cm_present()) {
  318. /*
  319. * We presume that all cores in the system will have the same
  320. * number of VP(E)s, and if that ever changes then this will
  321. * need revisiting.
  322. */
  323. cfg = read_gcr_cl_config() & CM_GCR_Cx_CONFIG_PVPE;
  324. return (cfg >> __ffs(CM_GCR_Cx_CONFIG_PVPE)) + 1;
  325. }
  326. if (IS_ENABLED(CONFIG_SMP))
  327. return smp_num_siblings;
  328. return 1;
  329. }
  330. /**
  331. * mips_cm_vp_id() - calculate the hardware VP ID for a CPU
  332. * @cpu: the CPU whose VP ID to calculate
  333. *
  334. * Hardware such as the GIC uses identifiers for VPs which may not match the
  335. * CPU numbers used by Linux. This function calculates the hardware VP
  336. * identifier corresponding to a given CPU.
  337. *
  338. * Return: the VP ID for the CPU.
  339. */
  340. static inline unsigned int mips_cm_vp_id(unsigned int cpu)
  341. {
  342. unsigned int core = cpu_core(&cpu_data[cpu]);
  343. unsigned int vp = cpu_vpe_id(&cpu_data[cpu]);
  344. return (core * mips_cm_max_vp_width()) + vp;
  345. }
  346. #ifdef CONFIG_MIPS_CM
  347. /**
  348. * mips_cm_lock_other - lock access to redirect/other region
  349. * @cluster: the other cluster to be accessed
  350. * @core: the other core to be accessed
  351. * @vp: the VP within the other core to be accessed
  352. * @block: the register block to be accessed
  353. *
  354. * Configure the redirect/other region for the local core/VP (depending upon
  355. * the CM revision) to target the specified @cluster, @core, @vp & register
  356. * @block. Must be called before using the redirect/other region, and followed
  357. * by a call to mips_cm_unlock_other() when access to the redirect/other region
  358. * is complete.
  359. *
  360. * This function acquires a spinlock such that code between it &
  361. * mips_cm_unlock_other() calls cannot be pre-empted by anything which may
  362. * reconfigure the redirect/other region, and cannot be interfered with by
  363. * another VP in the core. As such calls to this function should not be nested.
  364. */
  365. extern void mips_cm_lock_other(unsigned int cluster, unsigned int core,
  366. unsigned int vp, unsigned int block);
  367. /**
  368. * mips_cm_unlock_other - unlock access to redirect/other region
  369. *
  370. * Must be called after mips_cm_lock_other() once all required access to the
  371. * redirect/other region has been completed.
  372. */
  373. extern void mips_cm_unlock_other(void);
  374. #else /* !CONFIG_MIPS_CM */
  375. static inline void mips_cm_lock_other(unsigned int cluster, unsigned int core,
  376. unsigned int vp, unsigned int block) { }
  377. static inline void mips_cm_unlock_other(void) { }
  378. #endif /* !CONFIG_MIPS_CM */
  379. /**
  380. * mips_cm_lock_other_cpu - lock access to redirect/other region
  381. * @cpu: the other CPU whose register we want to access
  382. *
  383. * Configure the redirect/other region for the local core/VP (depending upon
  384. * the CM revision) to target the specified @cpu & register @block. This is
  385. * equivalent to calling mips_cm_lock_other() but accepts a Linux CPU number
  386. * for convenience.
  387. */
  388. static inline void mips_cm_lock_other_cpu(unsigned int cpu, unsigned int block)
  389. {
  390. struct cpuinfo_mips *d = &cpu_data[cpu];
  391. mips_cm_lock_other(cpu_cluster(d), cpu_core(d), cpu_vpe_id(d), block);
  392. }
  393. #endif /* __MIPS_ASM_MIPS_CM_H__ */