z180.c 28 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066
  1. /* Copyright (c) 2002,2007-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 <linux/module.h>
  14. #include <linux/uaccess.h>
  15. #include <linux/sched.h>
  16. #include "kgsl.h"
  17. #include "kgsl_cffdump.h"
  18. #include "kgsl_sharedmem.h"
  19. #include "z180.h"
  20. #include "z180_reg.h"
  21. #include "z180_trace.h"
  22. #define DRIVER_VERSION_MAJOR 3
  23. #define DRIVER_VERSION_MINOR 1
  24. #define GSL_VGC_INT_MASK \
  25. (REG_VGC_IRQSTATUS__MH_MASK | \
  26. REG_VGC_IRQSTATUS__G2D_MASK | \
  27. REG_VGC_IRQSTATUS__FIFO_MASK)
  28. #define VGV3_NEXTCMD_JUMP 0x01
  29. #define VGV3_NEXTCMD_NEXTCMD_FSHIFT 12
  30. #define VGV3_NEXTCMD_NEXTCMD_FMASK 0x7
  31. #define VGV3_CONTROL_MARKADD_FSHIFT 0
  32. #define VGV3_CONTROL_MARKADD_FMASK 0xfff
  33. #define Z180_MARKER_SIZE 10
  34. #define Z180_CALL_CMD 0x1000
  35. #define Z180_MARKER_CMD 0x8000
  36. #define Z180_STREAM_END_CMD 0x9000
  37. #define Z180_STREAM_PACKET 0x7C000176
  38. #define Z180_STREAM_PACKET_CALL 0x7C000275
  39. #define NUMTEXUNITS 4
  40. #define TEXUNITREGCOUNT 25
  41. #define VG_REGCOUNT 0x39
  42. #define PACKETSIZE_BEGIN 3
  43. #define PACKETSIZE_G2DCOLOR 2
  44. #define PACKETSIZE_TEXUNIT (TEXUNITREGCOUNT * 2)
  45. #define PACKETSIZE_REG (VG_REGCOUNT * 2)
  46. #define PACKETSIZE_STATE (PACKETSIZE_TEXUNIT * NUMTEXUNITS + \
  47. PACKETSIZE_REG + PACKETSIZE_BEGIN + \
  48. PACKETSIZE_G2DCOLOR)
  49. #define PACKETSIZE_STATESTREAM (ALIGN((PACKETSIZE_STATE * \
  50. sizeof(unsigned int)), 32) / \
  51. sizeof(unsigned int))
  52. #define Z180_INVALID_CONTEXT UINT_MAX
  53. /* z180 MH arbiter config*/
  54. #define Z180_CFG_MHARB \
  55. (0x10 \
  56. | (0 << MH_ARBITER_CONFIG__SAME_PAGE_GRANULARITY__SHIFT) \
  57. | (1 << MH_ARBITER_CONFIG__L1_ARB_ENABLE__SHIFT) \
  58. | (1 << MH_ARBITER_CONFIG__L1_ARB_HOLD_ENABLE__SHIFT) \
  59. | (0 << MH_ARBITER_CONFIG__L2_ARB_CONTROL__SHIFT) \
  60. | (1 << MH_ARBITER_CONFIG__PAGE_SIZE__SHIFT) \
  61. | (1 << MH_ARBITER_CONFIG__TC_REORDER_ENABLE__SHIFT) \
  62. | (1 << MH_ARBITER_CONFIG__TC_ARB_HOLD_ENABLE__SHIFT) \
  63. | (0 << MH_ARBITER_CONFIG__IN_FLIGHT_LIMIT_ENABLE__SHIFT) \
  64. | (0x8 << MH_ARBITER_CONFIG__IN_FLIGHT_LIMIT__SHIFT) \
  65. | (1 << MH_ARBITER_CONFIG__CP_CLNT_ENABLE__SHIFT) \
  66. | (1 << MH_ARBITER_CONFIG__VGT_CLNT_ENABLE__SHIFT) \
  67. | (1 << MH_ARBITER_CONFIG__TC_CLNT_ENABLE__SHIFT) \
  68. | (1 << MH_ARBITER_CONFIG__RB_CLNT_ENABLE__SHIFT) \
  69. | (1 << MH_ARBITER_CONFIG__PA_CLNT_ENABLE__SHIFT))
  70. #define Z180_TIMESTAMP_EPSILON 20000
  71. #define Z180_IDLE_COUNT_MAX 1000000
  72. enum z180_cmdwindow_type {
  73. Z180_CMDWINDOW_2D = 0x00000000,
  74. Z180_CMDWINDOW_MMU = 0x00000002,
  75. };
  76. #define Z180_CMDWINDOW_TARGET_MASK 0x000000FF
  77. #define Z180_CMDWINDOW_ADDR_MASK 0x00FFFF00
  78. #define Z180_CMDWINDOW_TARGET_SHIFT 0
  79. #define Z180_CMDWINDOW_ADDR_SHIFT 8
  80. static int z180_init(struct kgsl_device *device);
  81. static int z180_start(struct kgsl_device *device, int priority);
  82. static int z180_stop(struct kgsl_device *device);
  83. static int z180_wait(struct kgsl_device *device,
  84. struct kgsl_context *context,
  85. unsigned int timestamp,
  86. unsigned int msecs);
  87. static void z180_regread(struct kgsl_device *device,
  88. unsigned int offsetwords,
  89. unsigned int *value);
  90. static void z180_regwrite(struct kgsl_device *device,
  91. unsigned int offsetwords,
  92. unsigned int value);
  93. static void z180_cmdwindow_write(struct kgsl_device *device,
  94. unsigned int addr,
  95. unsigned int data);
  96. #define Z180_MMU_CONFIG \
  97. (0x01 \
  98. | (MMU_CONFIG << MH_MMU_CONFIG__RB_W_CLNT_BEHAVIOR__SHIFT) \
  99. | (MMU_CONFIG << MH_MMU_CONFIG__CP_W_CLNT_BEHAVIOR__SHIFT) \
  100. | (MMU_CONFIG << MH_MMU_CONFIG__CP_R0_CLNT_BEHAVIOR__SHIFT) \
  101. | (MMU_CONFIG << MH_MMU_CONFIG__CP_R1_CLNT_BEHAVIOR__SHIFT) \
  102. | (MMU_CONFIG << MH_MMU_CONFIG__CP_R2_CLNT_BEHAVIOR__SHIFT) \
  103. | (MMU_CONFIG << MH_MMU_CONFIG__CP_R3_CLNT_BEHAVIOR__SHIFT) \
  104. | (MMU_CONFIG << MH_MMU_CONFIG__CP_R4_CLNT_BEHAVIOR__SHIFT) \
  105. | (MMU_CONFIG << MH_MMU_CONFIG__VGT_R0_CLNT_BEHAVIOR__SHIFT) \
  106. | (MMU_CONFIG << MH_MMU_CONFIG__VGT_R1_CLNT_BEHAVIOR__SHIFT) \
  107. | (MMU_CONFIG << MH_MMU_CONFIG__TC_R_CLNT_BEHAVIOR__SHIFT) \
  108. | (MMU_CONFIG << MH_MMU_CONFIG__PA_W_CLNT_BEHAVIOR__SHIFT))
  109. #define KGSL_LOG_LEVEL_DEFAULT 3
  110. static const struct kgsl_functable z180_functable;
  111. static struct z180_device device_2d0 = {
  112. .dev = {
  113. KGSL_DEVICE_COMMON_INIT(device_2d0.dev),
  114. .name = DEVICE_2D0_NAME,
  115. .id = KGSL_DEVICE_2D0,
  116. .mh = {
  117. .mharb = Z180_CFG_MHARB,
  118. .mh_intf_cfg1 = 0x00032f07,
  119. .mh_intf_cfg2 = 0x004b274f,
  120. /* turn off memory protection unit by setting
  121. acceptable physical address range to include
  122. all pages. */
  123. .mpu_base = 0x00000000,
  124. .mpu_range = 0xFFFFF000,
  125. },
  126. .mmu = {
  127. .config = Z180_MMU_CONFIG,
  128. },
  129. .pwrctrl = {
  130. .irq_name = KGSL_2D0_IRQ,
  131. },
  132. .iomemname = KGSL_2D0_REG_MEMORY,
  133. .ftbl = &z180_functable,
  134. .cmd_log = KGSL_LOG_LEVEL_DEFAULT,
  135. .ctxt_log = KGSL_LOG_LEVEL_DEFAULT,
  136. .drv_log = KGSL_LOG_LEVEL_DEFAULT,
  137. .mem_log = KGSL_LOG_LEVEL_DEFAULT,
  138. .pwr_log = KGSL_LOG_LEVEL_DEFAULT,
  139. .pm_dump_enable = 0,
  140. },
  141. .cmdwin_lock = __SPIN_LOCK_INITIALIZER(device_2d1.cmdwin_lock),
  142. };
  143. static struct z180_device device_2d1 = {
  144. .dev = {
  145. KGSL_DEVICE_COMMON_INIT(device_2d1.dev),
  146. .name = DEVICE_2D1_NAME,
  147. .id = KGSL_DEVICE_2D1,
  148. .mh = {
  149. .mharb = Z180_CFG_MHARB,
  150. .mh_intf_cfg1 = 0x00032f07,
  151. .mh_intf_cfg2 = 0x004b274f,
  152. /* turn off memory protection unit by setting
  153. acceptable physical address range to include
  154. all pages. */
  155. .mpu_base = 0x00000000,
  156. .mpu_range = 0xFFFFF000,
  157. },
  158. .mmu = {
  159. .config = Z180_MMU_CONFIG,
  160. },
  161. .pwrctrl = {
  162. .irq_name = KGSL_2D1_IRQ,
  163. },
  164. .iomemname = KGSL_2D1_REG_MEMORY,
  165. .ftbl = &z180_functable,
  166. },
  167. .cmdwin_lock = __SPIN_LOCK_INITIALIZER(device_2d1.cmdwin_lock),
  168. };
  169. static irqreturn_t z180_irq_handler(struct kgsl_device *device)
  170. {
  171. irqreturn_t result = IRQ_NONE;
  172. unsigned int status;
  173. struct z180_device *z180_dev = Z180_DEVICE(device);
  174. z180_regread(device, ADDR_VGC_IRQSTATUS >> 2, &status);
  175. trace_kgsl_z180_irq_status(device, status);
  176. if (status & GSL_VGC_INT_MASK) {
  177. z180_regwrite(device,
  178. ADDR_VGC_IRQSTATUS >> 2, status & GSL_VGC_INT_MASK);
  179. result = IRQ_HANDLED;
  180. if (status & REG_VGC_IRQSTATUS__FIFO_MASK)
  181. KGSL_DRV_ERR(device, "z180 fifo interrupt\n");
  182. if (status & REG_VGC_IRQSTATUS__MH_MASK)
  183. kgsl_mh_intrcallback(device);
  184. if (status & REG_VGC_IRQSTATUS__G2D_MASK) {
  185. int count;
  186. z180_regread(device,
  187. ADDR_VGC_IRQ_ACTIVE_CNT >> 2,
  188. &count);
  189. count >>= 8;
  190. count &= 255;
  191. z180_dev->timestamp += count;
  192. queue_work(device->work_queue, &device->event_work);
  193. wake_up_interruptible(&device->wait_queue);
  194. }
  195. }
  196. if (device->requested_state == KGSL_STATE_NONE) {
  197. kgsl_pwrctrl_request_state(device, KGSL_STATE_NAP);
  198. queue_work(device->work_queue, &device->idle_check_ws);
  199. }
  200. mod_timer_pending(&device->idle_timer,
  201. jiffies + device->pwrctrl.interval_timeout);
  202. return result;
  203. }
  204. static void z180_cleanup_pt(struct kgsl_device *device,
  205. struct kgsl_pagetable *pagetable)
  206. {
  207. struct z180_device *z180_dev = Z180_DEVICE(device);
  208. kgsl_mmu_unmap(pagetable, &device->mmu.setstate_memory);
  209. kgsl_mmu_unmap(pagetable, &device->memstore);
  210. kgsl_mmu_unmap(pagetable, &z180_dev->ringbuffer.cmdbufdesc);
  211. }
  212. static int z180_setup_pt(struct kgsl_device *device,
  213. struct kgsl_pagetable *pagetable)
  214. {
  215. int result = 0;
  216. struct z180_device *z180_dev = Z180_DEVICE(device);
  217. result = kgsl_mmu_map_global(pagetable, &device->mmu.setstate_memory);
  218. if (result)
  219. goto error;
  220. result = kgsl_mmu_map_global(pagetable, &device->memstore);
  221. if (result)
  222. goto error_unmap_dummy;
  223. result = kgsl_mmu_map_global(pagetable,
  224. &z180_dev->ringbuffer.cmdbufdesc);
  225. if (result)
  226. goto error_unmap_memstore;
  227. /*
  228. * Set the mpu end to the last "normal" global memory we use.
  229. * For the IOMMU, this will be used to restrict access to the
  230. * mapped registers.
  231. */
  232. device->mh.mpu_range = z180_dev->ringbuffer.cmdbufdesc.gpuaddr +
  233. z180_dev->ringbuffer.cmdbufdesc.size;
  234. return result;
  235. error_unmap_dummy:
  236. kgsl_mmu_unmap(pagetable, &device->mmu.setstate_memory);
  237. error_unmap_memstore:
  238. kgsl_mmu_unmap(pagetable, &device->memstore);
  239. error:
  240. return result;
  241. }
  242. static inline unsigned int rb_offset(unsigned int timestamp)
  243. {
  244. return (timestamp % Z180_PACKET_COUNT)
  245. *sizeof(unsigned int)*(Z180_PACKET_SIZE);
  246. }
  247. static inline unsigned int rb_gpuaddr(struct z180_device *z180_dev,
  248. unsigned int timestamp)
  249. {
  250. return z180_dev->ringbuffer.cmdbufdesc.gpuaddr + rb_offset(timestamp);
  251. }
  252. static void addmarker(struct z180_ringbuffer *rb, unsigned int timestamp)
  253. {
  254. char *ptr = (char *)(rb->cmdbufdesc.hostptr);
  255. unsigned int *p = (unsigned int *)(ptr + rb_offset(timestamp));
  256. *p++ = Z180_STREAM_PACKET;
  257. *p++ = (Z180_MARKER_CMD | 5);
  258. *p++ = ADDR_VGV3_LAST << 24;
  259. *p++ = ADDR_VGV3_LAST << 24;
  260. *p++ = ADDR_VGV3_LAST << 24;
  261. *p++ = Z180_STREAM_PACKET;
  262. *p++ = 5;
  263. *p++ = ADDR_VGV3_LAST << 24;
  264. *p++ = ADDR_VGV3_LAST << 24;
  265. *p++ = ADDR_VGV3_LAST << 24;
  266. }
  267. static void addcmd(struct z180_ringbuffer *rb, unsigned int timestamp,
  268. unsigned int cmd, unsigned int nextcnt)
  269. {
  270. char * ptr = (char *)(rb->cmdbufdesc.hostptr);
  271. unsigned int *p = (unsigned int *)(ptr + (rb_offset(timestamp)
  272. + (Z180_MARKER_SIZE * sizeof(unsigned int))));
  273. *p++ = Z180_STREAM_PACKET_CALL;
  274. *p++ = cmd;
  275. *p++ = Z180_CALL_CMD | nextcnt;
  276. *p++ = ADDR_VGV3_LAST << 24;
  277. *p++ = ADDR_VGV3_LAST << 24;
  278. }
  279. static void z180_cmdstream_start(struct kgsl_device *device)
  280. {
  281. struct z180_device *z180_dev = Z180_DEVICE(device);
  282. unsigned int cmd = VGV3_NEXTCMD_JUMP << VGV3_NEXTCMD_NEXTCMD_FSHIFT;
  283. addmarker(&z180_dev->ringbuffer, 0);
  284. z180_cmdwindow_write(device, ADDR_VGV3_MODE, 4);
  285. z180_cmdwindow_write(device, ADDR_VGV3_NEXTADDR,
  286. rb_gpuaddr(z180_dev, z180_dev->current_timestamp));
  287. z180_cmdwindow_write(device, ADDR_VGV3_NEXTCMD, cmd | 5);
  288. z180_cmdwindow_write(device, ADDR_VGV3_WRITEADDR,
  289. device->memstore.gpuaddr);
  290. cmd = (int)(((1) & VGV3_CONTROL_MARKADD_FMASK)
  291. << VGV3_CONTROL_MARKADD_FSHIFT);
  292. z180_cmdwindow_write(device, ADDR_VGV3_CONTROL, cmd);
  293. z180_cmdwindow_write(device, ADDR_VGV3_CONTROL, 0);
  294. }
  295. static int room_in_rb(struct z180_device *device)
  296. {
  297. int ts_diff;
  298. ts_diff = device->current_timestamp - device->timestamp;
  299. return ts_diff < Z180_PACKET_COUNT;
  300. }
  301. /**
  302. * z180_idle() - Idle the 2D device
  303. * @device: Pointer to the KGSL device struct for the Z180
  304. *
  305. * wait until the z180 submission queue is idle
  306. */
  307. int z180_idle(struct kgsl_device *device)
  308. {
  309. int status = 0;
  310. struct z180_device *z180_dev = Z180_DEVICE(device);
  311. if (timestamp_cmp(z180_dev->current_timestamp,
  312. z180_dev->timestamp) > 0)
  313. status = z180_wait(device, NULL,
  314. z180_dev->current_timestamp,
  315. Z180_IDLE_TIMEOUT);
  316. if (status)
  317. KGSL_DRV_ERR(device, "z180_waittimestamp() timed out\n");
  318. return status;
  319. }
  320. int
  321. z180_cmdstream_issueibcmds(struct kgsl_device_private *dev_priv,
  322. struct kgsl_context *context,
  323. struct kgsl_cmdbatch *cmdbatch,
  324. uint32_t *timestamp)
  325. {
  326. long result = 0;
  327. unsigned int ofs = PACKETSIZE_STATESTREAM * sizeof(unsigned int);
  328. unsigned int cnt = 5;
  329. unsigned int old_timestamp = 0;
  330. unsigned int nextcnt = Z180_STREAM_END_CMD | 5;
  331. struct kgsl_mem_entry *entry = NULL;
  332. unsigned int cmd;
  333. struct kgsl_device *device = dev_priv->device;
  334. struct kgsl_pagetable *pagetable = dev_priv->process_priv->pagetable;
  335. struct z180_device *z180_dev = Z180_DEVICE(device);
  336. unsigned int sizedwords;
  337. unsigned int numibs = 0;
  338. struct kgsl_memobj_node *ib;
  339. kgsl_mutex_lock(&device->mutex, &device->mutex_owner);
  340. result = kgsl_active_count_get(device);
  341. if (result)
  342. goto error_active_count;
  343. if (cmdbatch == NULL) {
  344. result = EINVAL;
  345. goto error;
  346. }
  347. /* Get the total IBs in the list */
  348. list_for_each_entry(ib, &cmdbatch->cmdlist, node)
  349. numibs++;
  350. if (device->state & KGSL_STATE_HUNG) {
  351. result = -EINVAL;
  352. goto error;
  353. }
  354. if (numibs != 1) {
  355. KGSL_DRV_ERR(device, "Invalid number of ibs: %d\n", numibs);
  356. result = -EINVAL;
  357. goto error;
  358. }
  359. cmd = ib->gpuaddr;
  360. sizedwords = ib->sizedwords;
  361. /*
  362. * Get a kernel mapping to the IB for monkey patching.
  363. * See the end of this function.
  364. */
  365. entry = kgsl_sharedmem_find_region(dev_priv->process_priv, cmd,
  366. sizedwords);
  367. if (entry == NULL) {
  368. KGSL_DRV_ERR(device, "Bad ibdesc: gpuaddr 0x%x size %d\n",
  369. cmd, sizedwords);
  370. result = -EINVAL;
  371. goto error;
  372. }
  373. /*
  374. * This will only map memory if it exists, otherwise it will reuse the
  375. * mapping. And the 2d userspace reuses IBs so we likely won't create
  376. * too many mappings.
  377. */
  378. if (kgsl_gpuaddr_to_vaddr(&entry->memdesc, cmd) == NULL) {
  379. KGSL_DRV_ERR(device,
  380. "Cannot make kernel mapping for gpuaddr 0x%x\n",
  381. cmd);
  382. result = -EINVAL;
  383. goto error_put;
  384. }
  385. KGSL_CMD_INFO(device, "ctxt %d ibaddr 0x%08x sizedwords %d\n",
  386. context->id, cmd, sizedwords);
  387. /* context switch */
  388. if ((context->id != (int)z180_dev->ringbuffer.prevctx) ||
  389. (cmdbatch->flags & KGSL_CONTEXT_CTX_SWITCH)) {
  390. KGSL_CMD_INFO(device, "context switch %d -> %d\n",
  391. context->id, z180_dev->ringbuffer.prevctx);
  392. kgsl_mmu_setstate(&device->mmu, pagetable,
  393. KGSL_MEMSTORE_GLOBAL);
  394. cnt = PACKETSIZE_STATESTREAM;
  395. ofs = 0;
  396. }
  397. result = kgsl_setstate(&device->mmu,
  398. KGSL_MEMSTORE_GLOBAL,
  399. kgsl_mmu_pt_get_flags(device->mmu.hwpagetable,
  400. device->id));
  401. if (result < 0)
  402. goto error;
  403. result = wait_event_interruptible_timeout(device->wait_queue,
  404. room_in_rb(z180_dev),
  405. msecs_to_jiffies(KGSL_TIMEOUT_DEFAULT));
  406. if (result < 0) {
  407. KGSL_CMD_ERR(device, "wait_event_interruptible_timeout "
  408. "failed: %ld\n", result);
  409. goto error_put;
  410. }
  411. result = 0;
  412. old_timestamp = z180_dev->current_timestamp;
  413. z180_dev->current_timestamp++;
  414. *timestamp = z180_dev->current_timestamp;
  415. z180_dev->ringbuffer.prevctx = context->id;
  416. addcmd(&z180_dev->ringbuffer, old_timestamp, cmd + ofs, cnt);
  417. kgsl_pwrscale_busy(device);
  418. /* Make sure the next ringbuffer entry has a marker */
  419. addmarker(&z180_dev->ringbuffer, z180_dev->current_timestamp);
  420. /* monkey patch the IB so that it jumps back to the ringbuffer */
  421. kgsl_sharedmem_writel(device, &entry->memdesc,
  422. ((sizedwords + 1) * sizeof(unsigned int)),
  423. rb_gpuaddr(z180_dev, z180_dev->current_timestamp));
  424. kgsl_sharedmem_writel(device, &entry->memdesc,
  425. ((sizedwords + 2) * sizeof(unsigned int)),
  426. nextcnt);
  427. /* sync memory before activating the hardware for the new command*/
  428. mb();
  429. cmd = (int)(((2) & VGV3_CONTROL_MARKADD_FMASK)
  430. << VGV3_CONTROL_MARKADD_FSHIFT);
  431. z180_cmdwindow_write(device, ADDR_VGV3_CONTROL, cmd);
  432. z180_cmdwindow_write(device, ADDR_VGV3_CONTROL, 0);
  433. error_put:
  434. kgsl_mem_entry_put(entry);
  435. error:
  436. kgsl_trace_issueibcmds(device, context->id, cmdbatch, numibs,
  437. *timestamp, cmdbatch ? cmdbatch->flags : 0, result, 0);
  438. kgsl_active_count_put(device);
  439. error_active_count:
  440. kgsl_mutex_unlock(&device->mutex, &device->mutex_owner);
  441. return (int)result;
  442. }
  443. static int z180_ringbuffer_init(struct kgsl_device *device)
  444. {
  445. struct z180_device *z180_dev = Z180_DEVICE(device);
  446. memset(&z180_dev->ringbuffer, 0, sizeof(struct z180_ringbuffer));
  447. z180_dev->ringbuffer.prevctx = Z180_INVALID_CONTEXT;
  448. z180_dev->ringbuffer.cmdbufdesc.flags = KGSL_MEMFLAGS_GPUREADONLY;
  449. return kgsl_allocate_contiguous(&z180_dev->ringbuffer.cmdbufdesc,
  450. Z180_RB_SIZE);
  451. }
  452. static void z180_ringbuffer_close(struct kgsl_device *device)
  453. {
  454. struct z180_device *z180_dev = Z180_DEVICE(device);
  455. kgsl_sharedmem_free(&z180_dev->ringbuffer.cmdbufdesc);
  456. memset(&z180_dev->ringbuffer, 0, sizeof(struct z180_ringbuffer));
  457. }
  458. static int __devinit z180_probe(struct platform_device *pdev)
  459. {
  460. int status = -EINVAL;
  461. struct kgsl_device *device = NULL;
  462. struct z180_device *z180_dev;
  463. device = (struct kgsl_device *)pdev->id_entry->driver_data;
  464. device->parentdev = &pdev->dev;
  465. z180_dev = Z180_DEVICE(device);
  466. status = z180_ringbuffer_init(device);
  467. if (status != 0)
  468. goto error;
  469. status = kgsl_device_platform_probe(device);
  470. if (status)
  471. goto error_close_ringbuffer;
  472. kgsl_pwrscale_init(&pdev->dev, CONFIG_MSM_Z180_DEFAULT_GOVERNOR);
  473. return status;
  474. error_close_ringbuffer:
  475. z180_ringbuffer_close(device);
  476. error:
  477. device->parentdev = NULL;
  478. return status;
  479. }
  480. static int __devexit z180_remove(struct platform_device *pdev)
  481. {
  482. struct kgsl_device *device = NULL;
  483. device = (struct kgsl_device *)pdev->id_entry->driver_data;
  484. kgsl_pwrscale_close(device);
  485. kgsl_device_platform_remove(device);
  486. z180_ringbuffer_close(device);
  487. return 0;
  488. }
  489. static int z180_init(struct kgsl_device *device)
  490. {
  491. struct z180_device *z180_dev = Z180_DEVICE(device);
  492. z180_dev->timestamp = 0;
  493. z180_dev->current_timestamp = 0;
  494. return 0;
  495. }
  496. static int z180_start(struct kgsl_device *device, int priority)
  497. {
  498. int status = 0;
  499. kgsl_pwrctrl_set_state(device, KGSL_STATE_INIT);
  500. kgsl_pwrctrl_enable(device);
  501. /* Set interrupts to 0 to ensure a good state */
  502. z180_regwrite(device, (ADDR_VGC_IRQENABLE >> 2), 0x0);
  503. kgsl_mh_start(device);
  504. status = kgsl_mmu_start(device);
  505. if (status)
  506. goto error_clk_off;
  507. z180_cmdstream_start(device);
  508. kgsl_pwrctrl_irq(device, KGSL_PWRFLAGS_ON);
  509. device->ftbl->irqctrl(device, 1);
  510. device->reset_counter++;
  511. return 0;
  512. error_clk_off:
  513. z180_regwrite(device, (ADDR_VGC_IRQENABLE >> 2), 0);
  514. kgsl_pwrctrl_disable(device);
  515. return status;
  516. }
  517. static int z180_stop(struct kgsl_device *device)
  518. {
  519. int ret;
  520. device->ftbl->irqctrl(device, 0);
  521. ret = z180_idle(device);
  522. if (ret)
  523. return ret;
  524. del_timer_sync(&device->idle_timer);
  525. kgsl_mmu_stop(&device->mmu);
  526. /* Disable the clocks before the power rail. */
  527. kgsl_pwrctrl_irq(device, KGSL_PWRFLAGS_OFF);
  528. kgsl_pwrctrl_disable(device);
  529. return 0;
  530. }
  531. static int z180_getproperty(struct kgsl_device *device,
  532. enum kgsl_property_type type,
  533. void *value,
  534. unsigned int sizebytes)
  535. {
  536. int status = -EINVAL;
  537. switch (type) {
  538. case KGSL_PROP_DEVICE_INFO:
  539. {
  540. struct kgsl_devinfo devinfo;
  541. if (sizebytes != sizeof(devinfo)) {
  542. status = -EINVAL;
  543. break;
  544. }
  545. memset(&devinfo, 0, sizeof(devinfo));
  546. devinfo.device_id = device->id+1;
  547. devinfo.chip_id = 0;
  548. devinfo.mmu_enabled = kgsl_mmu_enabled();
  549. if (copy_to_user(value, &devinfo, sizeof(devinfo)) !=
  550. 0) {
  551. status = -EFAULT;
  552. break;
  553. }
  554. status = 0;
  555. }
  556. break;
  557. case KGSL_PROP_MMU_ENABLE:
  558. {
  559. int mmu_prop = kgsl_mmu_enabled();
  560. if (sizebytes != sizeof(int)) {
  561. status = -EINVAL;
  562. break;
  563. }
  564. if (copy_to_user(value, &mmu_prop, sizeof(mmu_prop))) {
  565. status = -EFAULT;
  566. break;
  567. }
  568. status = 0;
  569. }
  570. break;
  571. default:
  572. KGSL_DRV_ERR(device, "invalid property: %d\n", type);
  573. status = -EINVAL;
  574. }
  575. return status;
  576. }
  577. static bool z180_isidle(struct kgsl_device *device)
  578. {
  579. struct z180_device *z180_dev = Z180_DEVICE(device);
  580. return (timestamp_cmp(z180_dev->timestamp,
  581. z180_dev->current_timestamp) == 0) ? true : false;
  582. }
  583. static int z180_suspend_context(struct kgsl_device *device)
  584. {
  585. struct z180_device *z180_dev = Z180_DEVICE(device);
  586. z180_dev->ringbuffer.prevctx = Z180_INVALID_CONTEXT;
  587. return 0;
  588. }
  589. /* Not all Z180 registers are directly accessible.
  590. * The _z180_(read|write)_simple functions below handle the ones that are.
  591. */
  592. static void _z180_regread_simple(struct kgsl_device *device,
  593. unsigned int offsetwords,
  594. unsigned int *value)
  595. {
  596. unsigned int *reg;
  597. BUG_ON(offsetwords * sizeof(uint32_t) >= device->reg_len);
  598. reg = (unsigned int *)(device->reg_virt + (offsetwords << 2));
  599. /*ensure this read finishes before the next one.
  600. * i.e. act like normal readl() */
  601. *value = __raw_readl(reg);
  602. rmb();
  603. }
  604. static void _z180_regwrite_simple(struct kgsl_device *device,
  605. unsigned int offsetwords,
  606. unsigned int value)
  607. {
  608. unsigned int *reg;
  609. BUG_ON(offsetwords*sizeof(uint32_t) >= device->reg_len);
  610. reg = (unsigned int *)(device->reg_virt + (offsetwords << 2));
  611. kgsl_cffdump_regwrite(device, offsetwords << 2, value);
  612. /*ensure previous writes post before this one,
  613. * i.e. act like normal writel() */
  614. wmb();
  615. __raw_writel(value, reg);
  616. }
  617. /* The MH registers must be accessed through via a 2 step write, (read|write)
  618. * process. These registers may be accessed from interrupt context during
  619. * the handling of MH or MMU error interrupts. Therefore a spin lock is used
  620. * to ensure that the 2 step sequence is not interrupted.
  621. */
  622. static void _z180_regread_mmu(struct kgsl_device *device,
  623. unsigned int offsetwords,
  624. unsigned int *value)
  625. {
  626. struct z180_device *z180_dev = Z180_DEVICE(device);
  627. unsigned long flags;
  628. spin_lock_irqsave(&z180_dev->cmdwin_lock, flags);
  629. _z180_regwrite_simple(device, (ADDR_VGC_MH_READ_ADDR >> 2),
  630. offsetwords);
  631. _z180_regread_simple(device, (ADDR_VGC_MH_DATA_ADDR >> 2), value);
  632. spin_unlock_irqrestore(&z180_dev->cmdwin_lock, flags);
  633. }
  634. static void _z180_regwrite_mmu(struct kgsl_device *device,
  635. unsigned int offsetwords,
  636. unsigned int value)
  637. {
  638. struct z180_device *z180_dev = Z180_DEVICE(device);
  639. unsigned int cmdwinaddr;
  640. unsigned long flags;
  641. cmdwinaddr = ((Z180_CMDWINDOW_MMU << Z180_CMDWINDOW_TARGET_SHIFT) &
  642. Z180_CMDWINDOW_TARGET_MASK);
  643. cmdwinaddr |= ((offsetwords << Z180_CMDWINDOW_ADDR_SHIFT) &
  644. Z180_CMDWINDOW_ADDR_MASK);
  645. spin_lock_irqsave(&z180_dev->cmdwin_lock, flags);
  646. _z180_regwrite_simple(device, ADDR_VGC_MMUCOMMANDSTREAM >> 2,
  647. cmdwinaddr);
  648. _z180_regwrite_simple(device, ADDR_VGC_MMUCOMMANDSTREAM >> 2, value);
  649. spin_unlock_irqrestore(&z180_dev->cmdwin_lock, flags);
  650. }
  651. /* the rest of the code doesn't want to think about if it is writing mmu
  652. * registers or normal registers so handle it here
  653. */
  654. static void z180_regread(struct kgsl_device *device,
  655. unsigned int offsetwords,
  656. unsigned int *value)
  657. {
  658. if (!in_interrupt())
  659. kgsl_pre_hwaccess(device);
  660. if ((offsetwords >= MH_ARBITER_CONFIG &&
  661. offsetwords <= MH_AXI_HALT_CONTROL) ||
  662. (offsetwords >= MH_MMU_CONFIG &&
  663. offsetwords <= MH_MMU_MPU_END)) {
  664. _z180_regread_mmu(device, offsetwords, value);
  665. } else {
  666. _z180_regread_simple(device, offsetwords, value);
  667. }
  668. }
  669. static void z180_regwrite(struct kgsl_device *device,
  670. unsigned int offsetwords,
  671. unsigned int value)
  672. {
  673. if (!in_interrupt())
  674. kgsl_pre_hwaccess(device);
  675. if ((offsetwords >= MH_ARBITER_CONFIG &&
  676. offsetwords <= MH_CLNT_INTF_CTRL_CONFIG2) ||
  677. (offsetwords >= MH_MMU_CONFIG &&
  678. offsetwords <= MH_MMU_MPU_END)) {
  679. _z180_regwrite_mmu(device, offsetwords, value);
  680. } else {
  681. _z180_regwrite_simple(device, offsetwords, value);
  682. }
  683. }
  684. static void z180_cmdwindow_write(struct kgsl_device *device,
  685. unsigned int addr, unsigned int data)
  686. {
  687. unsigned int cmdwinaddr;
  688. cmdwinaddr = ((Z180_CMDWINDOW_2D << Z180_CMDWINDOW_TARGET_SHIFT) &
  689. Z180_CMDWINDOW_TARGET_MASK);
  690. cmdwinaddr |= ((addr << Z180_CMDWINDOW_ADDR_SHIFT) &
  691. Z180_CMDWINDOW_ADDR_MASK);
  692. z180_regwrite(device, ADDR_VGC_COMMANDSTREAM >> 2, cmdwinaddr);
  693. z180_regwrite(device, ADDR_VGC_COMMANDSTREAM >> 2, data);
  694. }
  695. static unsigned int z180_readtimestamp(struct kgsl_device *device,
  696. struct kgsl_context *context, enum kgsl_timestamp_type type)
  697. {
  698. struct z180_device *z180_dev = Z180_DEVICE(device);
  699. (void)context;
  700. /* get current EOP timestamp */
  701. return z180_dev->timestamp;
  702. }
  703. static int z180_waittimestamp(struct kgsl_device *device,
  704. struct kgsl_context *context,
  705. unsigned int timestamp,
  706. unsigned int msecs)
  707. {
  708. int status = -EINVAL;
  709. /* Don't wait forever, set a max of Z180_IDLE_TIMEOUT */
  710. if (msecs == -1)
  711. msecs = Z180_IDLE_TIMEOUT;
  712. status = kgsl_active_count_get(device);
  713. if (!status) {
  714. kgsl_mutex_unlock(&device->mutex, &device->mutex_owner);
  715. status = z180_wait(device, context, timestamp, msecs);
  716. kgsl_mutex_lock(&device->mutex, &device->mutex_owner);
  717. kgsl_active_count_put(device);
  718. }
  719. return status;
  720. }
  721. static int z180_wait(struct kgsl_device *device,
  722. struct kgsl_context *context,
  723. unsigned int timestamp,
  724. unsigned int msecs)
  725. {
  726. int status = -EINVAL;
  727. long timeout = 0;
  728. timeout = wait_io_event_interruptible_timeout(
  729. device->wait_queue,
  730. kgsl_check_timestamp(device, context, timestamp),
  731. msecs_to_jiffies(msecs));
  732. if (timeout > 0)
  733. status = 0;
  734. else if (timeout == 0) {
  735. status = -ETIMEDOUT;
  736. kgsl_pwrctrl_set_state(device, KGSL_STATE_HUNG);
  737. kgsl_postmortem_dump(device, 0);
  738. } else
  739. status = timeout;
  740. return status;
  741. }
  742. struct kgsl_context *
  743. z180_drawctxt_create(struct kgsl_device_private *dev_priv,
  744. uint32_t *flags)
  745. {
  746. int ret;
  747. struct kgsl_context *context = kzalloc(sizeof(*context), GFP_KERNEL);
  748. if (context == NULL)
  749. return ERR_PTR(-ENOMEM);
  750. ret = kgsl_context_init(dev_priv, context);
  751. if (ret != 0) {
  752. kfree(context);
  753. return ERR_PTR(ret);
  754. }
  755. return context;
  756. }
  757. static int
  758. z180_drawctxt_detach(struct kgsl_context *context)
  759. {
  760. int ret;
  761. struct kgsl_device *device;
  762. struct z180_device *z180_dev;
  763. device = context->device;
  764. z180_dev = Z180_DEVICE(device);
  765. ret = kgsl_active_count_get(device);
  766. if (ret)
  767. return ret;
  768. z180_idle(device);
  769. if (z180_dev->ringbuffer.prevctx == context->id) {
  770. z180_dev->ringbuffer.prevctx = Z180_INVALID_CONTEXT;
  771. device->mmu.hwpagetable = device->mmu.defaultpagetable;
  772. /* Ignore the result - we are going down anyway */
  773. kgsl_setstate(&device->mmu, KGSL_MEMSTORE_GLOBAL,
  774. KGSL_MMUFLAGS_PTUPDATE);
  775. }
  776. kgsl_active_count_put(device);
  777. return 0;
  778. }
  779. static void
  780. z180_drawctxt_destroy(struct kgsl_context *context)
  781. {
  782. kfree(context);
  783. }
  784. static void z180_power_stats(struct kgsl_device *device,
  785. struct kgsl_power_stats *stats)
  786. {
  787. struct kgsl_pwrscale *pwrscale = &device->pwrscale;
  788. s64 tmp = ktime_to_us(ktime_get());
  789. memset(stats, 0, sizeof(stats));
  790. if (pwrscale->on_time == 0) {
  791. pwrscale->on_time = tmp;
  792. stats->busy_time = 0;
  793. } else {
  794. stats->busy_time = tmp - pwrscale->on_time;
  795. pwrscale->on_time = tmp;
  796. }
  797. }
  798. static void z180_irqctrl(struct kgsl_device *device, int state)
  799. {
  800. /* Control interrupts for Z180 and the Z180 MMU */
  801. if (state) {
  802. z180_regwrite(device, (ADDR_VGC_IRQENABLE >> 2), 3);
  803. z180_regwrite(device, MH_INTERRUPT_MASK,
  804. kgsl_mmu_get_int_mask());
  805. } else {
  806. z180_regwrite(device, (ADDR_VGC_IRQENABLE >> 2), 0);
  807. z180_regwrite(device, MH_INTERRUPT_MASK, 0);
  808. }
  809. }
  810. static unsigned int z180_gpuid(struct kgsl_device *device, unsigned int *chipid)
  811. {
  812. if (chipid != NULL)
  813. *chipid = 0;
  814. /* Standard KGSL gpuid format:
  815. * top word is 0x0002 for 2D or 0x0003 for 3D
  816. * Bottom word is core specific identifer
  817. */
  818. return (0x0002 << 16) | 180;
  819. }
  820. static const struct kgsl_functable z180_functable = {
  821. /* Mandatory functions */
  822. .regread = z180_regread,
  823. .regwrite = z180_regwrite,
  824. .idle = z180_idle,
  825. .isidle = z180_isidle,
  826. .suspend_context = z180_suspend_context,
  827. .init = z180_init,
  828. .start = z180_start,
  829. .stop = z180_stop,
  830. .getproperty = z180_getproperty,
  831. .waittimestamp = z180_waittimestamp,
  832. .readtimestamp = z180_readtimestamp,
  833. .issueibcmds = z180_cmdstream_issueibcmds,
  834. .setup_pt = z180_setup_pt,
  835. .cleanup_pt = z180_cleanup_pt,
  836. .power_stats = z180_power_stats,
  837. .irqctrl = z180_irqctrl,
  838. .gpuid = z180_gpuid,
  839. .irq_handler = z180_irq_handler,
  840. .drain = z180_idle, /* drain == idle for the z180 */
  841. /* Optional functions */
  842. .drawctxt_create = z180_drawctxt_create,
  843. .drawctxt_detach = z180_drawctxt_detach,
  844. .drawctxt_destroy = z180_drawctxt_destroy,
  845. .ioctl = NULL,
  846. .postmortem_dump = z180_dump,
  847. };
  848. static struct platform_device_id z180_id_table[] = {
  849. { DEVICE_2D0_NAME, (kernel_ulong_t)&device_2d0.dev, },
  850. { DEVICE_2D1_NAME, (kernel_ulong_t)&device_2d1.dev, },
  851. { },
  852. };
  853. MODULE_DEVICE_TABLE(platform, z180_id_table);
  854. static struct platform_driver z180_platform_driver = {
  855. .probe = z180_probe,
  856. .remove = __devexit_p(z180_remove),
  857. .suspend = kgsl_suspend_driver,
  858. .resume = kgsl_resume_driver,
  859. .id_table = z180_id_table,
  860. .driver = {
  861. .owner = THIS_MODULE,
  862. .name = DEVICE_2D_NAME,
  863. .pm = &kgsl_pm_ops,
  864. }
  865. };
  866. static int __init kgsl_2d_init(void)
  867. {
  868. return platform_driver_register(&z180_platform_driver);
  869. }
  870. static void __exit kgsl_2d_exit(void)
  871. {
  872. platform_driver_unregister(&z180_platform_driver);
  873. }
  874. module_init(kgsl_2d_init);
  875. module_exit(kgsl_2d_exit);
  876. MODULE_DESCRIPTION("2D Graphics driver");
  877. MODULE_VERSION("1.2");
  878. MODULE_LICENSE("GPL v2");
  879. MODULE_ALIAS("platform:kgsl_2d");