a4xx_gpu.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623
  1. /* Copyright (c) 2014 The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. */
  13. #include "a4xx_gpu.h"
  14. #ifdef CONFIG_MSM_OCMEM
  15. # include <soc/qcom/ocmem.h>
  16. #endif
  17. #define A4XX_INT0_MASK \
  18. (A4XX_INT0_RBBM_AHB_ERROR | \
  19. A4XX_INT0_RBBM_ATB_BUS_OVERFLOW | \
  20. A4XX_INT0_CP_T0_PACKET_IN_IB | \
  21. A4XX_INT0_CP_OPCODE_ERROR | \
  22. A4XX_INT0_CP_RESERVED_BIT_ERROR | \
  23. A4XX_INT0_CP_HW_FAULT | \
  24. A4XX_INT0_CP_IB1_INT | \
  25. A4XX_INT0_CP_IB2_INT | \
  26. A4XX_INT0_CP_RB_INT | \
  27. A4XX_INT0_CP_REG_PROTECT_FAULT | \
  28. A4XX_INT0_CP_AHB_ERROR_HALT | \
  29. A4XX_INT0_CACHE_FLUSH_TS | \
  30. A4XX_INT0_UCHE_OOB_ACCESS)
  31. extern bool hang_debug;
  32. static void a4xx_dump(struct msm_gpu *gpu);
  33. static bool a4xx_idle(struct msm_gpu *gpu);
  34. /*
  35. * a4xx_enable_hwcg() - Program the clock control registers
  36. * @device: The adreno device pointer
  37. */
  38. static void a4xx_enable_hwcg(struct msm_gpu *gpu)
  39. {
  40. struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
  41. unsigned int i;
  42. for (i = 0; i < 4; i++)
  43. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL_TP(i), 0x02222202);
  44. for (i = 0; i < 4; i++)
  45. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL2_TP(i), 0x00002222);
  46. for (i = 0; i < 4; i++)
  47. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_HYST_TP(i), 0x0E739CE7);
  48. for (i = 0; i < 4; i++)
  49. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_DELAY_TP(i), 0x00111111);
  50. for (i = 0; i < 4; i++)
  51. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL_SP(i), 0x22222222);
  52. for (i = 0; i < 4; i++)
  53. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL2_SP(i), 0x00222222);
  54. for (i = 0; i < 4; i++)
  55. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_HYST_SP(i), 0x00000104);
  56. for (i = 0; i < 4; i++)
  57. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_DELAY_SP(i), 0x00000081);
  58. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL_UCHE, 0x22222222);
  59. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL2_UCHE, 0x02222222);
  60. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL3_UCHE, 0x00000000);
  61. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL4_UCHE, 0x00000000);
  62. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_HYST_UCHE, 0x00004444);
  63. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_DELAY_UCHE, 0x00001112);
  64. for (i = 0; i < 4; i++)
  65. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL_RB(i), 0x22222222);
  66. /* Disable L1 clocking in A420 due to CCU issues with it */
  67. for (i = 0; i < 4; i++) {
  68. if (adreno_is_a420(adreno_gpu)) {
  69. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL2_RB(i),
  70. 0x00002020);
  71. } else {
  72. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL2_RB(i),
  73. 0x00022020);
  74. }
  75. }
  76. for (i = 0; i < 4; i++) {
  77. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL_MARB_CCU(i),
  78. 0x00000922);
  79. }
  80. for (i = 0; i < 4; i++) {
  81. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_HYST_RB_MARB_CCU(i),
  82. 0x00000000);
  83. }
  84. for (i = 0; i < 4; i++) {
  85. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_DELAY_RB_MARB_CCU_L1(i),
  86. 0x00000001);
  87. }
  88. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_MODE_GPC, 0x02222222);
  89. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_HYST_GPC, 0x04100104);
  90. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_DELAY_GPC, 0x00022222);
  91. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL_COM_DCOM, 0x00000022);
  92. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_HYST_COM_DCOM, 0x0000010F);
  93. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_DELAY_COM_DCOM, 0x00000022);
  94. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL_TSE_RAS_RBBM, 0x00222222);
  95. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_HYST_TSE_RAS_RBBM, 0x00004104);
  96. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_DELAY_TSE_RAS_RBBM, 0x00000222);
  97. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL_HLSQ , 0x00000000);
  98. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_HYST_HLSQ, 0x00000000);
  99. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_DELAY_HLSQ, 0x00220000);
  100. /* Early A430's have a timing issue with SP/TP power collapse;
  101. disabling HW clock gating prevents it. */
  102. if (adreno_is_a430(adreno_gpu) && adreno_gpu->rev.patchid < 2)
  103. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL, 0);
  104. else
  105. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL, 0xAAAAAAAA);
  106. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL2, 0);
  107. }
  108. static bool a4xx_me_init(struct msm_gpu *gpu)
  109. {
  110. struct msm_ringbuffer *ring = gpu->rb[0];
  111. OUT_PKT3(ring, CP_ME_INIT, 17);
  112. OUT_RING(ring, 0x000003f7);
  113. OUT_RING(ring, 0x00000000);
  114. OUT_RING(ring, 0x00000000);
  115. OUT_RING(ring, 0x00000000);
  116. OUT_RING(ring, 0x00000080);
  117. OUT_RING(ring, 0x00000100);
  118. OUT_RING(ring, 0x00000180);
  119. OUT_RING(ring, 0x00006600);
  120. OUT_RING(ring, 0x00000150);
  121. OUT_RING(ring, 0x0000014e);
  122. OUT_RING(ring, 0x00000154);
  123. OUT_RING(ring, 0x00000001);
  124. OUT_RING(ring, 0x00000000);
  125. OUT_RING(ring, 0x00000000);
  126. OUT_RING(ring, 0x00000000);
  127. OUT_RING(ring, 0x00000000);
  128. OUT_RING(ring, 0x00000000);
  129. gpu->funcs->flush(gpu, ring);
  130. return a4xx_idle(gpu);
  131. }
  132. static int a4xx_hw_init(struct msm_gpu *gpu)
  133. {
  134. struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
  135. struct a4xx_gpu *a4xx_gpu = to_a4xx_gpu(adreno_gpu);
  136. uint32_t *ptr, len;
  137. int i, ret;
  138. if (adreno_is_a420(adreno_gpu)) {
  139. gpu_write(gpu, REG_A4XX_VBIF_ABIT_SORT, 0x0001001F);
  140. gpu_write(gpu, REG_A4XX_VBIF_ABIT_SORT_CONF, 0x000000A4);
  141. gpu_write(gpu, REG_A4XX_VBIF_GATE_OFF_WRREQ_EN, 0x00000001);
  142. gpu_write(gpu, REG_A4XX_VBIF_IN_RD_LIM_CONF0, 0x18181818);
  143. gpu_write(gpu, REG_A4XX_VBIF_IN_RD_LIM_CONF1, 0x00000018);
  144. gpu_write(gpu, REG_A4XX_VBIF_IN_WR_LIM_CONF0, 0x18181818);
  145. gpu_write(gpu, REG_A4XX_VBIF_IN_WR_LIM_CONF1, 0x00000018);
  146. gpu_write(gpu, REG_A4XX_VBIF_ROUND_ROBIN_QOS_ARB, 0x00000003);
  147. } else if (adreno_is_a430(adreno_gpu)) {
  148. gpu_write(gpu, REG_A4XX_VBIF_GATE_OFF_WRREQ_EN, 0x00000001);
  149. gpu_write(gpu, REG_A4XX_VBIF_IN_RD_LIM_CONF0, 0x18181818);
  150. gpu_write(gpu, REG_A4XX_VBIF_IN_RD_LIM_CONF1, 0x00000018);
  151. gpu_write(gpu, REG_A4XX_VBIF_IN_WR_LIM_CONF0, 0x18181818);
  152. gpu_write(gpu, REG_A4XX_VBIF_IN_WR_LIM_CONF1, 0x00000018);
  153. gpu_write(gpu, REG_A4XX_VBIF_ROUND_ROBIN_QOS_ARB, 0x00000003);
  154. } else {
  155. BUG();
  156. }
  157. /* Make all blocks contribute to the GPU BUSY perf counter */
  158. gpu_write(gpu, REG_A4XX_RBBM_GPU_BUSY_MASKED, 0xffffffff);
  159. /* Tune the hystersis counters for SP and CP idle detection */
  160. gpu_write(gpu, REG_A4XX_RBBM_SP_HYST_CNT, 0x10);
  161. gpu_write(gpu, REG_A4XX_RBBM_WAIT_IDLE_CLOCKS_CTL, 0x10);
  162. if (adreno_is_a430(adreno_gpu)) {
  163. gpu_write(gpu, REG_A4XX_RBBM_WAIT_IDLE_CLOCKS_CTL2, 0x30);
  164. }
  165. /* Enable the RBBM error reporting bits */
  166. gpu_write(gpu, REG_A4XX_RBBM_AHB_CTL0, 0x00000001);
  167. /* Enable AHB error reporting*/
  168. gpu_write(gpu, REG_A4XX_RBBM_AHB_CTL1, 0xa6ffffff);
  169. /* Enable power counters*/
  170. gpu_write(gpu, REG_A4XX_RBBM_RBBM_CTL, 0x00000030);
  171. /*
  172. * Turn on hang detection - this spews a lot of useful information
  173. * into the RBBM registers on a hang:
  174. */
  175. gpu_write(gpu, REG_A4XX_RBBM_INTERFACE_HANG_INT_CTL,
  176. (1 << 30) | 0xFFFF);
  177. gpu_write(gpu, REG_A4XX_RB_GMEM_BASE_ADDR,
  178. (unsigned int)(a4xx_gpu->ocmem_base >> 14));
  179. /* Turn on performance counters: */
  180. gpu_write(gpu, REG_A4XX_RBBM_PERFCTR_CTL, 0x01);
  181. /* use the first CP counter for timestamp queries.. userspace may set
  182. * this as well but it selects the same counter/countable:
  183. */
  184. gpu_write(gpu, REG_A4XX_CP_PERFCTR_CP_SEL_0, CP_ALWAYS_COUNT);
  185. if (adreno_is_a430(adreno_gpu))
  186. gpu_write(gpu, REG_A4XX_UCHE_CACHE_WAYS_VFD, 0x07);
  187. /* Disable L2 bypass to avoid UCHE out of bounds errors */
  188. gpu_write(gpu, REG_A4XX_UCHE_TRAP_BASE_LO, 0xffff0000);
  189. gpu_write(gpu, REG_A4XX_UCHE_TRAP_BASE_HI, 0xffff0000);
  190. gpu_write(gpu, REG_A4XX_CP_DEBUG, (1 << 25) |
  191. (adreno_is_a420(adreno_gpu) ? (1 << 29) : 0));
  192. /* On A430 enable SP regfile sleep for power savings */
  193. /* TODO downstream does this for !420, so maybe applies for 405 too? */
  194. if (!adreno_is_a420(adreno_gpu)) {
  195. gpu_write(gpu, REG_A4XX_RBBM_SP_REGFILE_SLEEP_CNTL_0,
  196. 0x00000441);
  197. gpu_write(gpu, REG_A4XX_RBBM_SP_REGFILE_SLEEP_CNTL_1,
  198. 0x00000441);
  199. }
  200. a4xx_enable_hwcg(gpu);
  201. /*
  202. * For A420 set RBBM_CLOCK_DELAY_HLSQ.CGC_HLSQ_TP_EARLY_CYC >= 2
  203. * due to timing issue with HLSQ_TP_CLK_EN
  204. */
  205. if (adreno_is_a420(adreno_gpu)) {
  206. unsigned int val;
  207. val = gpu_read(gpu, REG_A4XX_RBBM_CLOCK_DELAY_HLSQ);
  208. val &= ~A4XX_CGC_HLSQ_EARLY_CYC__MASK;
  209. val |= 2 << A4XX_CGC_HLSQ_EARLY_CYC__SHIFT;
  210. gpu_write(gpu, REG_A4XX_RBBM_CLOCK_DELAY_HLSQ, val);
  211. }
  212. /* setup access protection: */
  213. gpu_write(gpu, REG_A4XX_CP_PROTECT_CTRL, 0x00000007);
  214. /* RBBM registers */
  215. gpu_write(gpu, REG_A4XX_CP_PROTECT(0), 0x62000010);
  216. gpu_write(gpu, REG_A4XX_CP_PROTECT(1), 0x63000020);
  217. gpu_write(gpu, REG_A4XX_CP_PROTECT(2), 0x64000040);
  218. gpu_write(gpu, REG_A4XX_CP_PROTECT(3), 0x65000080);
  219. gpu_write(gpu, REG_A4XX_CP_PROTECT(4), 0x66000100);
  220. gpu_write(gpu, REG_A4XX_CP_PROTECT(5), 0x64000200);
  221. /* CP registers */
  222. gpu_write(gpu, REG_A4XX_CP_PROTECT(6), 0x67000800);
  223. gpu_write(gpu, REG_A4XX_CP_PROTECT(7), 0x64001600);
  224. /* RB registers */
  225. gpu_write(gpu, REG_A4XX_CP_PROTECT(8), 0x60003300);
  226. /* HLSQ registers */
  227. gpu_write(gpu, REG_A4XX_CP_PROTECT(9), 0x60003800);
  228. /* VPC registers */
  229. gpu_write(gpu, REG_A4XX_CP_PROTECT(10), 0x61003980);
  230. /* SMMU registers */
  231. gpu_write(gpu, REG_A4XX_CP_PROTECT(11), 0x6e010000);
  232. gpu_write(gpu, REG_A4XX_RBBM_INT_0_MASK, A4XX_INT0_MASK);
  233. ret = adreno_hw_init(gpu);
  234. if (ret)
  235. return ret;
  236. /* Load PM4: */
  237. ptr = (uint32_t *)(adreno_gpu->fw[ADRENO_FW_PM4]->data);
  238. len = adreno_gpu->fw[ADRENO_FW_PM4]->size / 4;
  239. DBG("loading PM4 ucode version: %u", ptr[0]);
  240. gpu_write(gpu, REG_A4XX_CP_ME_RAM_WADDR, 0);
  241. for (i = 1; i < len; i++)
  242. gpu_write(gpu, REG_A4XX_CP_ME_RAM_DATA, ptr[i]);
  243. /* Load PFP: */
  244. ptr = (uint32_t *)(adreno_gpu->fw[ADRENO_FW_PFP]->data);
  245. len = adreno_gpu->fw[ADRENO_FW_PFP]->size / 4;
  246. DBG("loading PFP ucode version: %u", ptr[0]);
  247. gpu_write(gpu, REG_A4XX_CP_PFP_UCODE_ADDR, 0);
  248. for (i = 1; i < len; i++)
  249. gpu_write(gpu, REG_A4XX_CP_PFP_UCODE_DATA, ptr[i]);
  250. /* clear ME_HALT to start micro engine */
  251. gpu_write(gpu, REG_A4XX_CP_ME_CNTL, 0);
  252. return a4xx_me_init(gpu) ? 0 : -EINVAL;
  253. }
  254. static void a4xx_recover(struct msm_gpu *gpu)
  255. {
  256. int i;
  257. adreno_dump_info(gpu);
  258. for (i = 0; i < 8; i++) {
  259. printk("CP_SCRATCH_REG%d: %u\n", i,
  260. gpu_read(gpu, REG_AXXX_CP_SCRATCH_REG0 + i));
  261. }
  262. /* dump registers before resetting gpu, if enabled: */
  263. if (hang_debug)
  264. a4xx_dump(gpu);
  265. gpu_write(gpu, REG_A4XX_RBBM_SW_RESET_CMD, 1);
  266. gpu_read(gpu, REG_A4XX_RBBM_SW_RESET_CMD);
  267. gpu_write(gpu, REG_A4XX_RBBM_SW_RESET_CMD, 0);
  268. adreno_recover(gpu);
  269. }
  270. static void a4xx_destroy(struct msm_gpu *gpu)
  271. {
  272. struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
  273. struct a4xx_gpu *a4xx_gpu = to_a4xx_gpu(adreno_gpu);
  274. DBG("%s", gpu->name);
  275. adreno_gpu_cleanup(adreno_gpu);
  276. #ifdef CONFIG_MSM_OCMEM
  277. if (a4xx_gpu->ocmem_base)
  278. ocmem_free(OCMEM_GRAPHICS, a4xx_gpu->ocmem_hdl);
  279. #endif
  280. kfree(a4xx_gpu);
  281. }
  282. static bool a4xx_idle(struct msm_gpu *gpu)
  283. {
  284. /* wait for ringbuffer to drain: */
  285. if (!adreno_idle(gpu, gpu->rb[0]))
  286. return false;
  287. /* then wait for GPU to finish: */
  288. if (spin_until(!(gpu_read(gpu, REG_A4XX_RBBM_STATUS) &
  289. A4XX_RBBM_STATUS_GPU_BUSY))) {
  290. DRM_ERROR("%s: timeout waiting for GPU to idle!\n", gpu->name);
  291. /* TODO maybe we need to reset GPU here to recover from hang? */
  292. return false;
  293. }
  294. return true;
  295. }
  296. static irqreturn_t a4xx_irq(struct msm_gpu *gpu)
  297. {
  298. uint32_t status;
  299. status = gpu_read(gpu, REG_A4XX_RBBM_INT_0_STATUS);
  300. DBG("%s: Int status %08x", gpu->name, status);
  301. if (status & A4XX_INT0_CP_REG_PROTECT_FAULT) {
  302. uint32_t reg = gpu_read(gpu, REG_A4XX_CP_PROTECT_STATUS);
  303. printk("CP | Protected mode error| %s | addr=%x\n",
  304. reg & (1 << 24) ? "WRITE" : "READ",
  305. (reg & 0xFFFFF) >> 2);
  306. }
  307. gpu_write(gpu, REG_A4XX_RBBM_INT_CLEAR_CMD, status);
  308. msm_gpu_retire(gpu);
  309. return IRQ_HANDLED;
  310. }
  311. static const unsigned int a4xx_registers[] = {
  312. /* RBBM */
  313. 0x0000, 0x0002, 0x0004, 0x0021, 0x0023, 0x0024, 0x0026, 0x0026,
  314. 0x0028, 0x002B, 0x002E, 0x0034, 0x0037, 0x0044, 0x0047, 0x0066,
  315. 0x0068, 0x0095, 0x009C, 0x0170, 0x0174, 0x01AF,
  316. /* CP */
  317. 0x0200, 0x0233, 0x0240, 0x0250, 0x04C0, 0x04DD, 0x0500, 0x050B,
  318. 0x0578, 0x058F,
  319. /* VSC */
  320. 0x0C00, 0x0C03, 0x0C08, 0x0C41, 0x0C50, 0x0C51,
  321. /* GRAS */
  322. 0x0C80, 0x0C81, 0x0C88, 0x0C8F,
  323. /* RB */
  324. 0x0CC0, 0x0CC0, 0x0CC4, 0x0CD2,
  325. /* PC */
  326. 0x0D00, 0x0D0C, 0x0D10, 0x0D17, 0x0D20, 0x0D23,
  327. /* VFD */
  328. 0x0E40, 0x0E4A,
  329. /* VPC */
  330. 0x0E60, 0x0E61, 0x0E63, 0x0E68,
  331. /* UCHE */
  332. 0x0E80, 0x0E84, 0x0E88, 0x0E95,
  333. /* VMIDMT */
  334. 0x1000, 0x1000, 0x1002, 0x1002, 0x1004, 0x1004, 0x1008, 0x100A,
  335. 0x100C, 0x100D, 0x100F, 0x1010, 0x1012, 0x1016, 0x1024, 0x1024,
  336. 0x1027, 0x1027, 0x1100, 0x1100, 0x1102, 0x1102, 0x1104, 0x1104,
  337. 0x1110, 0x1110, 0x1112, 0x1116, 0x1124, 0x1124, 0x1300, 0x1300,
  338. 0x1380, 0x1380,
  339. /* GRAS CTX 0 */
  340. 0x2000, 0x2004, 0x2008, 0x2067, 0x2070, 0x2078, 0x207B, 0x216E,
  341. /* PC CTX 0 */
  342. 0x21C0, 0x21C6, 0x21D0, 0x21D0, 0x21D9, 0x21D9, 0x21E5, 0x21E7,
  343. /* VFD CTX 0 */
  344. 0x2200, 0x2204, 0x2208, 0x22A9,
  345. /* GRAS CTX 1 */
  346. 0x2400, 0x2404, 0x2408, 0x2467, 0x2470, 0x2478, 0x247B, 0x256E,
  347. /* PC CTX 1 */
  348. 0x25C0, 0x25C6, 0x25D0, 0x25D0, 0x25D9, 0x25D9, 0x25E5, 0x25E7,
  349. /* VFD CTX 1 */
  350. 0x2600, 0x2604, 0x2608, 0x26A9,
  351. /* XPU */
  352. 0x2C00, 0x2C01, 0x2C10, 0x2C10, 0x2C12, 0x2C16, 0x2C1D, 0x2C20,
  353. 0x2C28, 0x2C28, 0x2C30, 0x2C30, 0x2C32, 0x2C36, 0x2C40, 0x2C40,
  354. 0x2C50, 0x2C50, 0x2C52, 0x2C56, 0x2C80, 0x2C80, 0x2C94, 0x2C95,
  355. /* VBIF */
  356. 0x3000, 0x3007, 0x300C, 0x3014, 0x3018, 0x301D, 0x3020, 0x3022,
  357. 0x3024, 0x3026, 0x3028, 0x302A, 0x302C, 0x302D, 0x3030, 0x3031,
  358. 0x3034, 0x3036, 0x3038, 0x3038, 0x303C, 0x303D, 0x3040, 0x3040,
  359. 0x3049, 0x3049, 0x3058, 0x3058, 0x305B, 0x3061, 0x3064, 0x3068,
  360. 0x306C, 0x306D, 0x3080, 0x3088, 0x308B, 0x308C, 0x3090, 0x3094,
  361. 0x3098, 0x3098, 0x309C, 0x309C, 0x30C0, 0x30C0, 0x30C8, 0x30C8,
  362. 0x30D0, 0x30D0, 0x30D8, 0x30D8, 0x30E0, 0x30E0, 0x3100, 0x3100,
  363. 0x3108, 0x3108, 0x3110, 0x3110, 0x3118, 0x3118, 0x3120, 0x3120,
  364. 0x3124, 0x3125, 0x3129, 0x3129, 0x3131, 0x3131, 0x330C, 0x330C,
  365. 0x3310, 0x3310, 0x3400, 0x3401, 0x3410, 0x3410, 0x3412, 0x3416,
  366. 0x341D, 0x3420, 0x3428, 0x3428, 0x3430, 0x3430, 0x3432, 0x3436,
  367. 0x3440, 0x3440, 0x3450, 0x3450, 0x3452, 0x3456, 0x3480, 0x3480,
  368. 0x3494, 0x3495, 0x4000, 0x4000, 0x4002, 0x4002, 0x4004, 0x4004,
  369. 0x4008, 0x400A, 0x400C, 0x400D, 0x400F, 0x4012, 0x4014, 0x4016,
  370. 0x401D, 0x401D, 0x4020, 0x4027, 0x4060, 0x4062, 0x4200, 0x4200,
  371. 0x4300, 0x4300, 0x4400, 0x4400, 0x4500, 0x4500, 0x4800, 0x4802,
  372. 0x480F, 0x480F, 0x4811, 0x4811, 0x4813, 0x4813, 0x4815, 0x4816,
  373. 0x482B, 0x482B, 0x4857, 0x4857, 0x4883, 0x4883, 0x48AF, 0x48AF,
  374. 0x48C5, 0x48C5, 0x48E5, 0x48E5, 0x4905, 0x4905, 0x4925, 0x4925,
  375. 0x4945, 0x4945, 0x4950, 0x4950, 0x495B, 0x495B, 0x4980, 0x498E,
  376. 0x4B00, 0x4B00, 0x4C00, 0x4C00, 0x4D00, 0x4D00, 0x4E00, 0x4E00,
  377. 0x4E80, 0x4E80, 0x4F00, 0x4F00, 0x4F08, 0x4F08, 0x4F10, 0x4F10,
  378. 0x4F18, 0x4F18, 0x4F20, 0x4F20, 0x4F30, 0x4F30, 0x4F60, 0x4F60,
  379. 0x4F80, 0x4F81, 0x4F88, 0x4F89, 0x4FEE, 0x4FEE, 0x4FF3, 0x4FF3,
  380. 0x6000, 0x6001, 0x6008, 0x600F, 0x6014, 0x6016, 0x6018, 0x601B,
  381. 0x61FD, 0x61FD, 0x623C, 0x623C, 0x6380, 0x6380, 0x63A0, 0x63A0,
  382. 0x63C0, 0x63C1, 0x63C8, 0x63C9, 0x63D0, 0x63D4, 0x63D6, 0x63D6,
  383. 0x63EE, 0x63EE, 0x6400, 0x6401, 0x6408, 0x640F, 0x6414, 0x6416,
  384. 0x6418, 0x641B, 0x65FD, 0x65FD, 0x663C, 0x663C, 0x6780, 0x6780,
  385. 0x67A0, 0x67A0, 0x67C0, 0x67C1, 0x67C8, 0x67C9, 0x67D0, 0x67D4,
  386. 0x67D6, 0x67D6, 0x67EE, 0x67EE, 0x6800, 0x6801, 0x6808, 0x680F,
  387. 0x6814, 0x6816, 0x6818, 0x681B, 0x69FD, 0x69FD, 0x6A3C, 0x6A3C,
  388. 0x6B80, 0x6B80, 0x6BA0, 0x6BA0, 0x6BC0, 0x6BC1, 0x6BC8, 0x6BC9,
  389. 0x6BD0, 0x6BD4, 0x6BD6, 0x6BD6, 0x6BEE, 0x6BEE,
  390. ~0 /* sentinel */
  391. };
  392. static struct msm_gpu_state *a4xx_gpu_state_get(struct msm_gpu *gpu)
  393. {
  394. struct msm_gpu_state *state = kzalloc(sizeof(*state), GFP_KERNEL);
  395. if (!state)
  396. return ERR_PTR(-ENOMEM);
  397. adreno_gpu_state_get(gpu, state);
  398. state->rbbm_status = gpu_read(gpu, REG_A4XX_RBBM_STATUS);
  399. return state;
  400. }
  401. /* Register offset defines for A4XX, in order of enum adreno_regs */
  402. static const unsigned int a4xx_register_offsets[REG_ADRENO_REGISTER_MAX] = {
  403. REG_ADRENO_DEFINE(REG_ADRENO_CP_RB_BASE, REG_A4XX_CP_RB_BASE),
  404. REG_ADRENO_SKIP(REG_ADRENO_CP_RB_BASE_HI),
  405. REG_ADRENO_DEFINE(REG_ADRENO_CP_RB_RPTR_ADDR, REG_A4XX_CP_RB_RPTR_ADDR),
  406. REG_ADRENO_SKIP(REG_ADRENO_CP_RB_RPTR_ADDR_HI),
  407. REG_ADRENO_DEFINE(REG_ADRENO_CP_RB_RPTR, REG_A4XX_CP_RB_RPTR),
  408. REG_ADRENO_DEFINE(REG_ADRENO_CP_RB_WPTR, REG_A4XX_CP_RB_WPTR),
  409. REG_ADRENO_DEFINE(REG_ADRENO_CP_RB_CNTL, REG_A4XX_CP_RB_CNTL),
  410. };
  411. static void a4xx_dump(struct msm_gpu *gpu)
  412. {
  413. printk("status: %08x\n",
  414. gpu_read(gpu, REG_A4XX_RBBM_STATUS));
  415. adreno_dump(gpu);
  416. }
  417. static int a4xx_pm_resume(struct msm_gpu *gpu) {
  418. struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
  419. int ret;
  420. ret = msm_gpu_pm_resume(gpu);
  421. if (ret)
  422. return ret;
  423. if (adreno_is_a430(adreno_gpu)) {
  424. unsigned int reg;
  425. /* Set the default register values; set SW_COLLAPSE to 0 */
  426. gpu_write(gpu, REG_A4XX_RBBM_POWER_CNTL_IP, 0x778000);
  427. do {
  428. udelay(5);
  429. reg = gpu_read(gpu, REG_A4XX_RBBM_POWER_STATUS);
  430. } while (!(reg & A4XX_RBBM_POWER_CNTL_IP_SP_TP_PWR_ON));
  431. }
  432. return 0;
  433. }
  434. static int a4xx_pm_suspend(struct msm_gpu *gpu) {
  435. struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
  436. int ret;
  437. ret = msm_gpu_pm_suspend(gpu);
  438. if (ret)
  439. return ret;
  440. if (adreno_is_a430(adreno_gpu)) {
  441. /* Set the default register values; set SW_COLLAPSE to 1 */
  442. gpu_write(gpu, REG_A4XX_RBBM_POWER_CNTL_IP, 0x778001);
  443. }
  444. return 0;
  445. }
  446. static int a4xx_get_timestamp(struct msm_gpu *gpu, uint64_t *value)
  447. {
  448. *value = gpu_read64(gpu, REG_A4XX_RBBM_PERFCTR_CP_0_LO,
  449. REG_A4XX_RBBM_PERFCTR_CP_0_HI);
  450. return 0;
  451. }
  452. static const struct adreno_gpu_funcs funcs = {
  453. .base = {
  454. .get_param = adreno_get_param,
  455. .hw_init = a4xx_hw_init,
  456. .pm_suspend = a4xx_pm_suspend,
  457. .pm_resume = a4xx_pm_resume,
  458. .recover = a4xx_recover,
  459. .submit = adreno_submit,
  460. .flush = adreno_flush,
  461. .active_ring = adreno_active_ring,
  462. .irq = a4xx_irq,
  463. .destroy = a4xx_destroy,
  464. #if defined(CONFIG_DEBUG_FS) || defined(CONFIG_DEV_COREDUMP)
  465. .show = adreno_show,
  466. #endif
  467. .gpu_state_get = a4xx_gpu_state_get,
  468. .gpu_state_put = adreno_gpu_state_put,
  469. },
  470. .get_timestamp = a4xx_get_timestamp,
  471. };
  472. struct msm_gpu *a4xx_gpu_init(struct drm_device *dev)
  473. {
  474. struct a4xx_gpu *a4xx_gpu = NULL;
  475. struct adreno_gpu *adreno_gpu;
  476. struct msm_gpu *gpu;
  477. struct msm_drm_private *priv = dev->dev_private;
  478. struct platform_device *pdev = priv->gpu_pdev;
  479. int ret;
  480. if (!pdev) {
  481. dev_err(dev->dev, "no a4xx device\n");
  482. ret = -ENXIO;
  483. goto fail;
  484. }
  485. a4xx_gpu = kzalloc(sizeof(*a4xx_gpu), GFP_KERNEL);
  486. if (!a4xx_gpu) {
  487. ret = -ENOMEM;
  488. goto fail;
  489. }
  490. adreno_gpu = &a4xx_gpu->base;
  491. gpu = &adreno_gpu->base;
  492. gpu->perfcntrs = NULL;
  493. gpu->num_perfcntrs = 0;
  494. adreno_gpu->registers = a4xx_registers;
  495. adreno_gpu->reg_offsets = a4xx_register_offsets;
  496. ret = adreno_gpu_init(dev, pdev, adreno_gpu, &funcs, 1);
  497. if (ret)
  498. goto fail;
  499. /* if needed, allocate gmem: */
  500. if (adreno_is_a4xx(adreno_gpu)) {
  501. #ifdef CONFIG_MSM_OCMEM
  502. /* TODO this is different/missing upstream: */
  503. struct ocmem_buf *ocmem_hdl =
  504. ocmem_allocate(OCMEM_GRAPHICS, adreno_gpu->gmem);
  505. a4xx_gpu->ocmem_hdl = ocmem_hdl;
  506. a4xx_gpu->ocmem_base = ocmem_hdl->addr;
  507. adreno_gpu->gmem = ocmem_hdl->len;
  508. DBG("using %dK of OCMEM at 0x%08x", adreno_gpu->gmem / 1024,
  509. a4xx_gpu->ocmem_base);
  510. #endif
  511. }
  512. if (!gpu->aspace) {
  513. /* TODO we think it is possible to configure the GPU to
  514. * restrict access to VRAM carveout. But the required
  515. * registers are unknown. For now just bail out and
  516. * limp along with just modesetting. If it turns out
  517. * to not be possible to restrict access, then we must
  518. * implement a cmdstream validator.
  519. */
  520. dev_err(dev->dev, "No memory protection without IOMMU\n");
  521. ret = -ENXIO;
  522. goto fail;
  523. }
  524. return gpu;
  525. fail:
  526. if (a4xx_gpu)
  527. a4xx_destroy(&a4xx_gpu->base.base);
  528. return ERR_PTR(ret);
  529. }