mips-cm.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537
  1. /*
  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. #ifndef __MIPS_ASM_MIPS_CM_H__
  11. #define __MIPS_ASM_MIPS_CM_H__
  12. #include <linux/bitops.h>
  13. #include <linux/errno.h>
  14. #include <linux/io.h>
  15. #include <linux/types.h>
  16. /* The base address of the CM GCR block */
  17. extern void __iomem *mips_cm_base;
  18. /* The base address of the CM L2-only sync region */
  19. extern void __iomem *mips_cm_l2sync_base;
  20. /**
  21. * __mips_cm_phys_base - retrieve the physical base address of the CM
  22. *
  23. * This function returns the physical base address of the Coherence Manager
  24. * global control block, or 0 if no Coherence Manager is present. It provides
  25. * a default implementation which reads the CMGCRBase register where available,
  26. * and may be overridden by platforms which determine this address in a
  27. * different way by defining a function with the same prototype except for the
  28. * name mips_cm_phys_base (without underscores).
  29. */
  30. extern phys_addr_t __mips_cm_phys_base(void);
  31. /*
  32. * mips_cm_is64 - determine CM register width
  33. *
  34. * The CM register width is determined by the version of the CM, with CM3
  35. * introducing 64 bit GCRs and all prior CM versions having 32 bit GCRs.
  36. * However we may run a kernel built for MIPS32 on a system with 64 bit GCRs,
  37. * or vice-versa. This variable indicates the width of the memory accesses
  38. * that the kernel will perform to GCRs, which may differ from the actual
  39. * width of the GCRs.
  40. *
  41. * It's set to 0 for 32-bit accesses and 1 for 64-bit accesses.
  42. */
  43. extern int mips_cm_is64;
  44. /**
  45. * mips_cm_error_report - Report CM cache errors
  46. */
  47. #ifdef CONFIG_MIPS_CM
  48. extern void mips_cm_error_report(void);
  49. #else
  50. static inline void mips_cm_error_report(void) {}
  51. #endif
  52. /**
  53. * mips_cm_probe - probe for a Coherence Manager
  54. *
  55. * Attempt to detect the presence of a Coherence Manager. Returns 0 if a CM
  56. * is successfully detected, else -errno.
  57. */
  58. #ifdef CONFIG_MIPS_CM
  59. extern int mips_cm_probe(void);
  60. #else
  61. static inline int mips_cm_probe(void)
  62. {
  63. return -ENODEV;
  64. }
  65. #endif
  66. /**
  67. * mips_cm_present - determine whether a Coherence Manager is present
  68. *
  69. * Returns true if a CM is present in the system, else false.
  70. */
  71. static inline bool mips_cm_present(void)
  72. {
  73. #ifdef CONFIG_MIPS_CM
  74. return mips_cm_base != NULL;
  75. #else
  76. return false;
  77. #endif
  78. }
  79. /**
  80. * mips_cm_has_l2sync - determine whether an L2-only sync region is present
  81. *
  82. * Returns true if the system implements an L2-only sync region, else false.
  83. */
  84. static inline bool mips_cm_has_l2sync(void)
  85. {
  86. #ifdef CONFIG_MIPS_CM
  87. return mips_cm_l2sync_base != NULL;
  88. #else
  89. return false;
  90. #endif
  91. }
  92. /* Offsets to register blocks from the CM base address */
  93. #define MIPS_CM_GCB_OFS 0x0000 /* Global Control Block */
  94. #define MIPS_CM_CLCB_OFS 0x2000 /* Core Local Control Block */
  95. #define MIPS_CM_COCB_OFS 0x4000 /* Core Other Control Block */
  96. #define MIPS_CM_GDB_OFS 0x6000 /* Global Debug Block */
  97. /* Total size of the CM memory mapped registers */
  98. #define MIPS_CM_GCR_SIZE 0x8000
  99. /* Size of the L2-only sync region */
  100. #define MIPS_CM_L2SYNC_SIZE 0x1000
  101. /* Macros to ease the creation of register access functions */
  102. #define BUILD_CM_R_(name, off) \
  103. static inline unsigned long __iomem *addr_gcr_##name(void) \
  104. { \
  105. return (unsigned long __iomem *)(mips_cm_base + (off)); \
  106. } \
  107. \
  108. static inline u32 read32_gcr_##name(void) \
  109. { \
  110. return __raw_readl(addr_gcr_##name()); \
  111. } \
  112. \
  113. static inline u64 read64_gcr_##name(void) \
  114. { \
  115. void __iomem *addr = addr_gcr_##name(); \
  116. u64 ret; \
  117. \
  118. if (mips_cm_is64) { \
  119. ret = __raw_readq(addr); \
  120. } else { \
  121. ret = __raw_readl(addr); \
  122. ret |= (u64)__raw_readl(addr + 0x4) << 32; \
  123. } \
  124. \
  125. return ret; \
  126. } \
  127. \
  128. static inline unsigned long read_gcr_##name(void) \
  129. { \
  130. if (mips_cm_is64) \
  131. return read64_gcr_##name(); \
  132. else \
  133. return read32_gcr_##name(); \
  134. }
  135. #define BUILD_CM__W(name, off) \
  136. static inline void write32_gcr_##name(u32 value) \
  137. { \
  138. __raw_writel(value, addr_gcr_##name()); \
  139. } \
  140. \
  141. static inline void write64_gcr_##name(u64 value) \
  142. { \
  143. __raw_writeq(value, addr_gcr_##name()); \
  144. } \
  145. \
  146. static inline void write_gcr_##name(unsigned long value) \
  147. { \
  148. if (mips_cm_is64) \
  149. write64_gcr_##name(value); \
  150. else \
  151. write32_gcr_##name(value); \
  152. }
  153. #define BUILD_CM_RW(name, off) \
  154. BUILD_CM_R_(name, off) \
  155. BUILD_CM__W(name, off)
  156. #define BUILD_CM_Cx_R_(name, off) \
  157. BUILD_CM_R_(cl_##name, MIPS_CM_CLCB_OFS + (off)) \
  158. BUILD_CM_R_(co_##name, MIPS_CM_COCB_OFS + (off))
  159. #define BUILD_CM_Cx__W(name, off) \
  160. BUILD_CM__W(cl_##name, MIPS_CM_CLCB_OFS + (off)) \
  161. BUILD_CM__W(co_##name, MIPS_CM_COCB_OFS + (off))
  162. #define BUILD_CM_Cx_RW(name, off) \
  163. BUILD_CM_Cx_R_(name, off) \
  164. BUILD_CM_Cx__W(name, off)
  165. /* GCB register accessor functions */
  166. BUILD_CM_R_(config, MIPS_CM_GCB_OFS + 0x00)
  167. BUILD_CM_RW(base, MIPS_CM_GCB_OFS + 0x08)
  168. BUILD_CM_RW(access, MIPS_CM_GCB_OFS + 0x20)
  169. BUILD_CM_R_(rev, MIPS_CM_GCB_OFS + 0x30)
  170. BUILD_CM_RW(err_control, MIPS_CM_GCB_OFS + 0x38)
  171. BUILD_CM_RW(error_mask, MIPS_CM_GCB_OFS + 0x40)
  172. BUILD_CM_RW(error_cause, MIPS_CM_GCB_OFS + 0x48)
  173. BUILD_CM_RW(error_addr, MIPS_CM_GCB_OFS + 0x50)
  174. BUILD_CM_RW(error_mult, MIPS_CM_GCB_OFS + 0x58)
  175. BUILD_CM_RW(l2_only_sync_base, MIPS_CM_GCB_OFS + 0x70)
  176. BUILD_CM_RW(gic_base, MIPS_CM_GCB_OFS + 0x80)
  177. BUILD_CM_RW(cpc_base, MIPS_CM_GCB_OFS + 0x88)
  178. BUILD_CM_RW(reg0_base, MIPS_CM_GCB_OFS + 0x90)
  179. BUILD_CM_RW(reg0_mask, MIPS_CM_GCB_OFS + 0x98)
  180. BUILD_CM_RW(reg1_base, MIPS_CM_GCB_OFS + 0xa0)
  181. BUILD_CM_RW(reg1_mask, MIPS_CM_GCB_OFS + 0xa8)
  182. BUILD_CM_RW(reg2_base, MIPS_CM_GCB_OFS + 0xb0)
  183. BUILD_CM_RW(reg2_mask, MIPS_CM_GCB_OFS + 0xb8)
  184. BUILD_CM_RW(reg3_base, MIPS_CM_GCB_OFS + 0xc0)
  185. BUILD_CM_RW(reg3_mask, MIPS_CM_GCB_OFS + 0xc8)
  186. BUILD_CM_R_(gic_status, MIPS_CM_GCB_OFS + 0xd0)
  187. BUILD_CM_R_(cpc_status, MIPS_CM_GCB_OFS + 0xf0)
  188. BUILD_CM_RW(l2_config, MIPS_CM_GCB_OFS + 0x130)
  189. BUILD_CM_RW(sys_config2, MIPS_CM_GCB_OFS + 0x150)
  190. BUILD_CM_RW(l2_pft_control, MIPS_CM_GCB_OFS + 0x300)
  191. BUILD_CM_RW(l2_pft_control_b, MIPS_CM_GCB_OFS + 0x308)
  192. BUILD_CM_RW(bev_base, MIPS_CM_GCB_OFS + 0x680)
  193. /* Core Local & Core Other register accessor functions */
  194. BUILD_CM_Cx_RW(reset_release, 0x00)
  195. BUILD_CM_Cx_RW(coherence, 0x08)
  196. BUILD_CM_Cx_R_(config, 0x10)
  197. BUILD_CM_Cx_RW(other, 0x18)
  198. BUILD_CM_Cx_RW(reset_base, 0x20)
  199. BUILD_CM_Cx_R_(id, 0x28)
  200. BUILD_CM_Cx_RW(reset_ext_base, 0x30)
  201. BUILD_CM_Cx_R_(tcid_0_priority, 0x40)
  202. BUILD_CM_Cx_R_(tcid_1_priority, 0x48)
  203. BUILD_CM_Cx_R_(tcid_2_priority, 0x50)
  204. BUILD_CM_Cx_R_(tcid_3_priority, 0x58)
  205. BUILD_CM_Cx_R_(tcid_4_priority, 0x60)
  206. BUILD_CM_Cx_R_(tcid_5_priority, 0x68)
  207. BUILD_CM_Cx_R_(tcid_6_priority, 0x70)
  208. BUILD_CM_Cx_R_(tcid_7_priority, 0x78)
  209. BUILD_CM_Cx_R_(tcid_8_priority, 0x80)
  210. /* GCR_CONFIG register fields */
  211. #define CM_GCR_CONFIG_NUMIOCU_SHF 8
  212. #define CM_GCR_CONFIG_NUMIOCU_MSK (_ULCAST_(0xf) << 8)
  213. #define CM_GCR_CONFIG_PCORES_SHF 0
  214. #define CM_GCR_CONFIG_PCORES_MSK (_ULCAST_(0xff) << 0)
  215. /* GCR_BASE register fields */
  216. #define CM_GCR_BASE_GCRBASE_SHF 15
  217. #define CM_GCR_BASE_GCRBASE_MSK (_ULCAST_(0x1ffff) << 15)
  218. #define CM_GCR_BASE_CMDEFTGT_SHF 0
  219. #define CM_GCR_BASE_CMDEFTGT_MSK (_ULCAST_(0x3) << 0)
  220. #define CM_GCR_BASE_CMDEFTGT_MEM 0
  221. #define CM_GCR_BASE_CMDEFTGT_RESERVED 1
  222. #define CM_GCR_BASE_CMDEFTGT_IOCU0 2
  223. #define CM_GCR_BASE_CMDEFTGT_IOCU1 3
  224. /* GCR_RESET_EXT_BASE register fields */
  225. #define CM_GCR_RESET_EXT_BASE_EVARESET BIT(31)
  226. #define CM_GCR_RESET_EXT_BASE_UEB BIT(30)
  227. /* GCR_ACCESS register fields */
  228. #define CM_GCR_ACCESS_ACCESSEN_SHF 0
  229. #define CM_GCR_ACCESS_ACCESSEN_MSK (_ULCAST_(0xff) << 0)
  230. /* GCR_REV register fields */
  231. #define CM_GCR_REV_MAJOR_SHF 8
  232. #define CM_GCR_REV_MAJOR_MSK (_ULCAST_(0xff) << 8)
  233. #define CM_GCR_REV_MINOR_SHF 0
  234. #define CM_GCR_REV_MINOR_MSK (_ULCAST_(0xff) << 0)
  235. #define CM_ENCODE_REV(major, minor) \
  236. (((major) << CM_GCR_REV_MAJOR_SHF) | \
  237. ((minor) << CM_GCR_REV_MINOR_SHF))
  238. #define CM_REV_CM2 CM_ENCODE_REV(6, 0)
  239. #define CM_REV_CM2_5 CM_ENCODE_REV(7, 0)
  240. #define CM_REV_CM3 CM_ENCODE_REV(8, 0)
  241. /* GCR_ERR_CONTROL register fields */
  242. #define CM_GCR_ERR_CONTROL_L2_ECC_EN_SHF 1
  243. #define CM_GCR_ERR_CONTROL_L2_ECC_EN_MSK (_ULCAST_(0x1) << 1)
  244. #define CM_GCR_ERR_CONTROL_L2_ECC_SUPPORT_SHF 0
  245. #define CM_GCR_ERR_CONTROL_L2_ECC_SUPPORT_MSK (_ULCAST_(0x1) << 0)
  246. /* GCR_ERROR_CAUSE register fields */
  247. #define CM_GCR_ERROR_CAUSE_ERRTYPE_SHF 27
  248. #define CM_GCR_ERROR_CAUSE_ERRTYPE_MSK (_ULCAST_(0x1f) << 27)
  249. #define CM3_GCR_ERROR_CAUSE_ERRTYPE_SHF 58
  250. #define CM3_GCR_ERROR_CAUSE_ERRTYPE_MSK GENMASK_ULL(63, 58)
  251. #define CM_GCR_ERROR_CAUSE_ERRINFO_SHF 0
  252. #define CM_GCR_ERROR_CAUSE_ERRINGO_MSK (_ULCAST_(0x7ffffff) << 0)
  253. /* GCR_ERROR_MULT register fields */
  254. #define CM_GCR_ERROR_MULT_ERR2ND_SHF 0
  255. #define CM_GCR_ERROR_MULT_ERR2ND_MSK (_ULCAST_(0x1f) << 0)
  256. /* GCR_L2_ONLY_SYNC_BASE register fields */
  257. #define CM_GCR_L2_ONLY_SYNC_BASE_SYNCBASE_SHF 12
  258. #define CM_GCR_L2_ONLY_SYNC_BASE_SYNCBASE_MSK (_ULCAST_(0xfffff) << 12)
  259. #define CM_GCR_L2_ONLY_SYNC_BASE_SYNCEN_SHF 0
  260. #define CM_GCR_L2_ONLY_SYNC_BASE_SYNCEN_MSK (_ULCAST_(0x1) << 0)
  261. /* GCR_GIC_BASE register fields */
  262. #define CM_GCR_GIC_BASE_GICBASE_SHF 17
  263. #define CM_GCR_GIC_BASE_GICBASE_MSK (_ULCAST_(0x7fff) << 17)
  264. #define CM_GCR_GIC_BASE_GICEN_SHF 0
  265. #define CM_GCR_GIC_BASE_GICEN_MSK (_ULCAST_(0x1) << 0)
  266. /* GCR_CPC_BASE register fields */
  267. #define CM_GCR_CPC_BASE_CPCBASE_SHF 15
  268. #define CM_GCR_CPC_BASE_CPCBASE_MSK (_ULCAST_(0x1ffff) << 15)
  269. #define CM_GCR_CPC_BASE_CPCEN_SHF 0
  270. #define CM_GCR_CPC_BASE_CPCEN_MSK (_ULCAST_(0x1) << 0)
  271. /* GCR_GIC_STATUS register fields */
  272. #define CM_GCR_GIC_STATUS_GICEX_SHF 0
  273. #define CM_GCR_GIC_STATUS_GICEX_MSK (_ULCAST_(0x1) << 0)
  274. /* GCR_REGn_BASE register fields */
  275. #define CM_GCR_REGn_BASE_BASEADDR_SHF 16
  276. #define CM_GCR_REGn_BASE_BASEADDR_MSK (_ULCAST_(0xffff) << 16)
  277. /* GCR_REGn_MASK register fields */
  278. #define CM_GCR_REGn_MASK_ADDRMASK_SHF 16
  279. #define CM_GCR_REGn_MASK_ADDRMASK_MSK (_ULCAST_(0xffff) << 16)
  280. #define CM_GCR_REGn_MASK_CCAOVR_SHF 5
  281. #define CM_GCR_REGn_MASK_CCAOVR_MSK (_ULCAST_(0x3) << 5)
  282. #define CM_GCR_REGn_MASK_CCAOVREN_SHF 4
  283. #define CM_GCR_REGn_MASK_CCAOVREN_MSK (_ULCAST_(0x1) << 4)
  284. #define CM_GCR_REGn_MASK_DROPL2_SHF 2
  285. #define CM_GCR_REGn_MASK_DROPL2_MSK (_ULCAST_(0x1) << 2)
  286. #define CM_GCR_REGn_MASK_CMTGT_SHF 0
  287. #define CM_GCR_REGn_MASK_CMTGT_MSK (_ULCAST_(0x3) << 0)
  288. #define CM_GCR_REGn_MASK_CMTGT_DISABLED (_ULCAST_(0x0) << 0)
  289. #define CM_GCR_REGn_MASK_CMTGT_MEM (_ULCAST_(0x1) << 0)
  290. #define CM_GCR_REGn_MASK_CMTGT_IOCU0 (_ULCAST_(0x2) << 0)
  291. #define CM_GCR_REGn_MASK_CMTGT_IOCU1 (_ULCAST_(0x3) << 0)
  292. /* GCR_GIC_STATUS register fields */
  293. #define CM_GCR_GIC_STATUS_EX_SHF 0
  294. #define CM_GCR_GIC_STATUS_EX_MSK (_ULCAST_(0x1) << 0)
  295. /* GCR_CPC_STATUS register fields */
  296. #define CM_GCR_CPC_STATUS_EX_SHF 0
  297. #define CM_GCR_CPC_STATUS_EX_MSK (_ULCAST_(0x1) << 0)
  298. /* GCR_L2_CONFIG register fields */
  299. #define CM_GCR_L2_CONFIG_BYPASS_SHF 20
  300. #define CM_GCR_L2_CONFIG_BYPASS_MSK (_ULCAST_(0x1) << 20)
  301. #define CM_GCR_L2_CONFIG_SET_SIZE_SHF 12
  302. #define CM_GCR_L2_CONFIG_SET_SIZE_MSK (_ULCAST_(0xf) << 12)
  303. #define CM_GCR_L2_CONFIG_LINE_SIZE_SHF 8
  304. #define CM_GCR_L2_CONFIG_LINE_SIZE_MSK (_ULCAST_(0xf) << 8)
  305. #define CM_GCR_L2_CONFIG_ASSOC_SHF 0
  306. #define CM_GCR_L2_CONFIG_ASSOC_MSK (_ULCAST_(0xff) << 0)
  307. /* GCR_SYS_CONFIG2 register fields */
  308. #define CM_GCR_SYS_CONFIG2_MAXVPW_SHF 0
  309. #define CM_GCR_SYS_CONFIG2_MAXVPW_MSK (_ULCAST_(0xf) << 0)
  310. /* GCR_L2_PFT_CONTROL register fields */
  311. #define CM_GCR_L2_PFT_CONTROL_PAGEMASK_SHF 12
  312. #define CM_GCR_L2_PFT_CONTROL_PAGEMASK_MSK (_ULCAST_(0xfffff) << 12)
  313. #define CM_GCR_L2_PFT_CONTROL_PFTEN_SHF 8
  314. #define CM_GCR_L2_PFT_CONTROL_PFTEN_MSK (_ULCAST_(0x1) << 8)
  315. #define CM_GCR_L2_PFT_CONTROL_NPFT_SHF 0
  316. #define CM_GCR_L2_PFT_CONTROL_NPFT_MSK (_ULCAST_(0xff) << 0)
  317. /* GCR_L2_PFT_CONTROL_B register fields */
  318. #define CM_GCR_L2_PFT_CONTROL_B_CEN_SHF 8
  319. #define CM_GCR_L2_PFT_CONTROL_B_CEN_MSK (_ULCAST_(0x1) << 8)
  320. #define CM_GCR_L2_PFT_CONTROL_B_PORTID_SHF 0
  321. #define CM_GCR_L2_PFT_CONTROL_B_PORTID_MSK (_ULCAST_(0xff) << 0)
  322. /* GCR_Cx_COHERENCE register fields */
  323. #define CM_GCR_Cx_COHERENCE_COHDOMAINEN_SHF 0
  324. #define CM_GCR_Cx_COHERENCE_COHDOMAINEN_MSK (_ULCAST_(0xff) << 0)
  325. #define CM3_GCR_Cx_COHERENCE_COHEN_MSK (_ULCAST_(0x1) << 0)
  326. /* GCR_Cx_CONFIG register fields */
  327. #define CM_GCR_Cx_CONFIG_IOCUTYPE_SHF 10
  328. #define CM_GCR_Cx_CONFIG_IOCUTYPE_MSK (_ULCAST_(0x3) << 10)
  329. #define CM_GCR_Cx_CONFIG_PVPE_SHF 0
  330. #define CM_GCR_Cx_CONFIG_PVPE_MSK (_ULCAST_(0x3ff) << 0)
  331. /* GCR_Cx_OTHER register fields */
  332. #define CM_GCR_Cx_OTHER_CORENUM_SHF 16
  333. #define CM_GCR_Cx_OTHER_CORENUM_MSK (_ULCAST_(0xffff) << 16)
  334. #define CM3_GCR_Cx_OTHER_CORE_SHF 8
  335. #define CM3_GCR_Cx_OTHER_CORE_MSK (_ULCAST_(0x3f) << 8)
  336. #define CM3_GCR_Cx_OTHER_VP_SHF 0
  337. #define CM3_GCR_Cx_OTHER_VP_MSK (_ULCAST_(0x7) << 0)
  338. /* GCR_Cx_RESET_BASE register fields */
  339. #define CM_GCR_Cx_RESET_BASE_BEVEXCBASE_SHF 12
  340. #define CM_GCR_Cx_RESET_BASE_BEVEXCBASE_MSK (_ULCAST_(0xfffff) << 12)
  341. /* GCR_Cx_RESET_EXT_BASE register fields */
  342. #define CM_GCR_Cx_RESET_EXT_BASE_EVARESET_SHF 31
  343. #define CM_GCR_Cx_RESET_EXT_BASE_EVARESET_MSK (_ULCAST_(0x1) << 31)
  344. #define CM_GCR_Cx_RESET_EXT_BASE_UEB_SHF 30
  345. #define CM_GCR_Cx_RESET_EXT_BASE_UEB_MSK (_ULCAST_(0x1) << 30)
  346. #define CM_GCR_Cx_RESET_EXT_BASE_BEVEXCMASK_SHF 20
  347. #define CM_GCR_Cx_RESET_EXT_BASE_BEVEXCMASK_MSK (_ULCAST_(0xff) << 20)
  348. #define CM_GCR_Cx_RESET_EXT_BASE_BEVEXCPA_SHF 1
  349. #define CM_GCR_Cx_RESET_EXT_BASE_BEVEXCPA_MSK (_ULCAST_(0x7f) << 1)
  350. #define CM_GCR_Cx_RESET_EXT_BASE_PRESENT_SHF 0
  351. #define CM_GCR_Cx_RESET_EXT_BASE_PRESENT_MSK (_ULCAST_(0x1) << 0)
  352. /**
  353. * mips_cm_numcores - return the number of cores present in the system
  354. *
  355. * Returns the value of the PCORES field of the GCR_CONFIG register plus 1, or
  356. * zero if no Coherence Manager is present.
  357. */
  358. static inline unsigned mips_cm_numcores(void)
  359. {
  360. if (!mips_cm_present())
  361. return 0;
  362. return ((read_gcr_config() & CM_GCR_CONFIG_PCORES_MSK)
  363. >> CM_GCR_CONFIG_PCORES_SHF) + 1;
  364. }
  365. /**
  366. * mips_cm_numiocu - return the number of IOCUs present in the system
  367. *
  368. * Returns the value of the NUMIOCU field of the GCR_CONFIG register, or zero
  369. * if no Coherence Manager is present.
  370. */
  371. static inline unsigned mips_cm_numiocu(void)
  372. {
  373. if (!mips_cm_present())
  374. return 0;
  375. return (read_gcr_config() & CM_GCR_CONFIG_NUMIOCU_MSK)
  376. >> CM_GCR_CONFIG_NUMIOCU_SHF;
  377. }
  378. /**
  379. * mips_cm_l2sync - perform an L2-only sync operation
  380. *
  381. * If an L2-only sync region is present in the system then this function
  382. * performs and L2-only sync and returns zero. Otherwise it returns -ENODEV.
  383. */
  384. static inline int mips_cm_l2sync(void)
  385. {
  386. if (!mips_cm_has_l2sync())
  387. return -ENODEV;
  388. writel(0, mips_cm_l2sync_base);
  389. return 0;
  390. }
  391. /**
  392. * mips_cm_revision() - return CM revision
  393. *
  394. * Return: The revision of the CM, from GCR_REV, or 0 if no CM is present. The
  395. * return value should be checked against the CM_REV_* macros.
  396. */
  397. static inline int mips_cm_revision(void)
  398. {
  399. if (!mips_cm_present())
  400. return 0;
  401. return read_gcr_rev();
  402. }
  403. /**
  404. * mips_cm_max_vp_width() - return the width in bits of VP indices
  405. *
  406. * Return: the width, in bits, of VP indices in fields that combine core & VP
  407. * indices.
  408. */
  409. static inline unsigned int mips_cm_max_vp_width(void)
  410. {
  411. extern int smp_num_siblings;
  412. uint32_t cfg;
  413. if (mips_cm_revision() >= CM_REV_CM3)
  414. return read_gcr_sys_config2() & CM_GCR_SYS_CONFIG2_MAXVPW_MSK;
  415. if (mips_cm_present()) {
  416. /*
  417. * We presume that all cores in the system will have the same
  418. * number of VP(E)s, and if that ever changes then this will
  419. * need revisiting.
  420. */
  421. cfg = read_gcr_cl_config() & CM_GCR_Cx_CONFIG_PVPE_MSK;
  422. return (cfg >> CM_GCR_Cx_CONFIG_PVPE_SHF) + 1;
  423. }
  424. if (IS_ENABLED(CONFIG_SMP))
  425. return smp_num_siblings;
  426. return 1;
  427. }
  428. /**
  429. * mips_cm_vp_id() - calculate the hardware VP ID for a CPU
  430. * @cpu: the CPU whose VP ID to calculate
  431. *
  432. * Hardware such as the GIC uses identifiers for VPs which may not match the
  433. * CPU numbers used by Linux. This function calculates the hardware VP
  434. * identifier corresponding to a given CPU.
  435. *
  436. * Return: the VP ID for the CPU.
  437. */
  438. static inline unsigned int mips_cm_vp_id(unsigned int cpu)
  439. {
  440. unsigned int core = cpu_data[cpu].core;
  441. unsigned int vp = cpu_vpe_id(&cpu_data[cpu]);
  442. return (core * mips_cm_max_vp_width()) + vp;
  443. }
  444. #ifdef CONFIG_MIPS_CM
  445. /**
  446. * mips_cm_lock_other - lock access to another core
  447. * @core: the other core to be accessed
  448. * @vp: the VP within the other core to be accessed
  449. *
  450. * Call before operating upon a core via the 'other' register region in
  451. * order to prevent the region being moved during access. Must be followed
  452. * by a call to mips_cm_unlock_other.
  453. */
  454. extern void mips_cm_lock_other(unsigned int core, unsigned int vp);
  455. /**
  456. * mips_cm_unlock_other - unlock access to another core
  457. *
  458. * Call after operating upon another core via the 'other' register region.
  459. * Must be called after mips_cm_lock_other.
  460. */
  461. extern void mips_cm_unlock_other(void);
  462. #else /* !CONFIG_MIPS_CM */
  463. static inline void mips_cm_lock_other(unsigned int core, unsigned int vp) { }
  464. static inline void mips_cm_unlock_other(void) { }
  465. #endif /* !CONFIG_MIPS_CM */
  466. #endif /* __MIPS_ASM_MIPS_CM_H__ */