nv04_fifo.c 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. /*
  2. * Copyright (C) 2007 Ben Skeggs.
  3. * All Rights Reserved.
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining
  6. * a copy of this software and associated documentation files (the
  7. * "Software"), to deal in the Software without restriction, including
  8. * without limitation the rights to use, copy, modify, merge, publish,
  9. * distribute, sublicense, and/or sell copies of the Software, and to
  10. * permit persons to whom the Software is furnished to do so, subject to
  11. * the following conditions:
  12. *
  13. * The above copyright notice and this permission notice (including the
  14. * next paragraph) shall be included in all copies or substantial
  15. * portions of the Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  19. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  20. * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
  21. * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  22. * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  23. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  24. *
  25. */
  26. #include "drmP.h"
  27. #include "drm.h"
  28. #include "nouveau_drv.h"
  29. #define NV04_RAMFC(c) (dev_priv->ramfc_offset + ((c) * NV04_RAMFC__SIZE))
  30. #define NV04_RAMFC__SIZE 32
  31. #define NV04_RAMFC_DMA_PUT 0x00
  32. #define NV04_RAMFC_DMA_GET 0x04
  33. #define NV04_RAMFC_DMA_INSTANCE 0x08
  34. #define NV04_RAMFC_DMA_STATE 0x0C
  35. #define NV04_RAMFC_DMA_FETCH 0x10
  36. #define NV04_RAMFC_ENGINE 0x14
  37. #define NV04_RAMFC_PULL1_ENGINE 0x18
  38. #define RAMFC_WR(offset, val) nv_wo32(dev, chan->ramfc->gpuobj, \
  39. NV04_RAMFC_##offset/4, (val))
  40. #define RAMFC_RD(offset) nv_ro32(dev, chan->ramfc->gpuobj, \
  41. NV04_RAMFC_##offset/4)
  42. void
  43. nv04_fifo_disable(struct drm_device *dev)
  44. {
  45. uint32_t tmp;
  46. tmp = nv_rd32(dev, NV04_PFIFO_CACHE1_DMA_PUSH);
  47. nv_wr32(dev, NV04_PFIFO_CACHE1_DMA_PUSH, tmp & ~1);
  48. nv_wr32(dev, NV03_PFIFO_CACHE1_PUSH0, 0);
  49. tmp = nv_rd32(dev, NV03_PFIFO_CACHE1_PULL1);
  50. nv_wr32(dev, NV04_PFIFO_CACHE1_PULL0, tmp & ~1);
  51. }
  52. void
  53. nv04_fifo_enable(struct drm_device *dev)
  54. {
  55. nv_wr32(dev, NV03_PFIFO_CACHE1_PUSH0, 1);
  56. nv_wr32(dev, NV04_PFIFO_CACHE1_PULL0, 1);
  57. }
  58. bool
  59. nv04_fifo_reassign(struct drm_device *dev, bool enable)
  60. {
  61. uint32_t reassign = nv_rd32(dev, NV03_PFIFO_CACHES);
  62. nv_wr32(dev, NV03_PFIFO_CACHES, enable ? 1 : 0);
  63. return (reassign == 1);
  64. }
  65. bool
  66. nv04_fifo_cache_flush(struct drm_device *dev)
  67. {
  68. struct drm_nouveau_private *dev_priv = dev->dev_private;
  69. struct nouveau_timer_engine *ptimer = &dev_priv->engine.timer;
  70. uint64_t start = ptimer->read(dev);
  71. do {
  72. if (nv_rd32(dev, NV03_PFIFO_CACHE1_GET) ==
  73. nv_rd32(dev, NV03_PFIFO_CACHE1_PUT))
  74. return true;
  75. } while (ptimer->read(dev) - start < 100000000);
  76. NV_ERROR(dev, "Timeout flushing the PFIFO cache.\n");
  77. return false;
  78. }
  79. bool
  80. nv04_fifo_cache_pull(struct drm_device *dev, bool enable)
  81. {
  82. uint32_t pull = nv_rd32(dev, NV04_PFIFO_CACHE1_PULL0);
  83. if (enable) {
  84. nv_wr32(dev, NV04_PFIFO_CACHE1_PULL0, pull | 1);
  85. } else {
  86. nv_wr32(dev, NV04_PFIFO_CACHE1_PULL0, pull & ~1);
  87. nv_wr32(dev, NV04_PFIFO_CACHE1_HASH, 0);
  88. }
  89. return !!(pull & 1);
  90. }
  91. int
  92. nv04_fifo_channel_id(struct drm_device *dev)
  93. {
  94. return nv_rd32(dev, NV03_PFIFO_CACHE1_PUSH1) &
  95. NV03_PFIFO_CACHE1_PUSH1_CHID_MASK;
  96. }
  97. int
  98. nv04_fifo_create_context(struct nouveau_channel *chan)
  99. {
  100. struct drm_device *dev = chan->dev;
  101. struct drm_nouveau_private *dev_priv = dev->dev_private;
  102. int ret;
  103. ret = nouveau_gpuobj_new_fake(dev, NV04_RAMFC(chan->id), ~0,
  104. NV04_RAMFC__SIZE,
  105. NVOBJ_FLAG_ZERO_ALLOC |
  106. NVOBJ_FLAG_ZERO_FREE,
  107. NULL, &chan->ramfc);
  108. if (ret)
  109. return ret;
  110. /* Setup initial state */
  111. dev_priv->engine.instmem.prepare_access(dev, true);
  112. RAMFC_WR(DMA_PUT, chan->pushbuf_base);
  113. RAMFC_WR(DMA_GET, chan->pushbuf_base);
  114. RAMFC_WR(DMA_INSTANCE, chan->pushbuf->instance >> 4);
  115. RAMFC_WR(DMA_FETCH, (NV_PFIFO_CACHE1_DMA_FETCH_TRIG_128_BYTES |
  116. NV_PFIFO_CACHE1_DMA_FETCH_SIZE_128_BYTES |
  117. NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_8 |
  118. #ifdef __BIG_ENDIAN
  119. NV_PFIFO_CACHE1_BIG_ENDIAN |
  120. #endif
  121. 0));
  122. dev_priv->engine.instmem.finish_access(dev);
  123. /* enable the fifo dma operation */
  124. nv_wr32(dev, NV04_PFIFO_MODE,
  125. nv_rd32(dev, NV04_PFIFO_MODE) | (1 << chan->id));
  126. return 0;
  127. }
  128. void
  129. nv04_fifo_destroy_context(struct nouveau_channel *chan)
  130. {
  131. struct drm_device *dev = chan->dev;
  132. nv_wr32(dev, NV04_PFIFO_MODE,
  133. nv_rd32(dev, NV04_PFIFO_MODE) & ~(1 << chan->id));
  134. nouveau_gpuobj_ref_del(dev, &chan->ramfc);
  135. }
  136. static void
  137. nv04_fifo_do_load_context(struct drm_device *dev, int chid)
  138. {
  139. struct drm_nouveau_private *dev_priv = dev->dev_private;
  140. uint32_t fc = NV04_RAMFC(chid), tmp;
  141. dev_priv->engine.instmem.prepare_access(dev, false);
  142. nv_wr32(dev, NV04_PFIFO_CACHE1_DMA_PUT, nv_ri32(dev, fc + 0));
  143. nv_wr32(dev, NV04_PFIFO_CACHE1_DMA_GET, nv_ri32(dev, fc + 4));
  144. tmp = nv_ri32(dev, fc + 8);
  145. nv_wr32(dev, NV04_PFIFO_CACHE1_DMA_INSTANCE, tmp & 0xFFFF);
  146. nv_wr32(dev, NV04_PFIFO_CACHE1_DMA_DCOUNT, tmp >> 16);
  147. nv_wr32(dev, NV04_PFIFO_CACHE1_DMA_STATE, nv_ri32(dev, fc + 12));
  148. nv_wr32(dev, NV04_PFIFO_CACHE1_DMA_FETCH, nv_ri32(dev, fc + 16));
  149. nv_wr32(dev, NV04_PFIFO_CACHE1_ENGINE, nv_ri32(dev, fc + 20));
  150. nv_wr32(dev, NV04_PFIFO_CACHE1_PULL1, nv_ri32(dev, fc + 24));
  151. dev_priv->engine.instmem.finish_access(dev);
  152. nv_wr32(dev, NV03_PFIFO_CACHE1_GET, 0);
  153. nv_wr32(dev, NV03_PFIFO_CACHE1_PUT, 0);
  154. }
  155. int
  156. nv04_fifo_load_context(struct nouveau_channel *chan)
  157. {
  158. uint32_t tmp;
  159. nv_wr32(chan->dev, NV03_PFIFO_CACHE1_PUSH1,
  160. NV03_PFIFO_CACHE1_PUSH1_DMA | chan->id);
  161. nv04_fifo_do_load_context(chan->dev, chan->id);
  162. nv_wr32(chan->dev, NV04_PFIFO_CACHE1_DMA_PUSH, 1);
  163. /* Reset NV04_PFIFO_CACHE1_DMA_CTL_AT_INFO to INVALID */
  164. tmp = nv_rd32(chan->dev, NV04_PFIFO_CACHE1_DMA_CTL) & ~(1 << 31);
  165. nv_wr32(chan->dev, NV04_PFIFO_CACHE1_DMA_CTL, tmp);
  166. return 0;
  167. }
  168. int
  169. nv04_fifo_unload_context(struct drm_device *dev)
  170. {
  171. struct drm_nouveau_private *dev_priv = dev->dev_private;
  172. struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo;
  173. struct nouveau_channel *chan = NULL;
  174. uint32_t tmp;
  175. int chid;
  176. chid = pfifo->channel_id(dev);
  177. if (chid < 0 || chid >= dev_priv->engine.fifo.channels)
  178. return 0;
  179. chan = dev_priv->fifos[chid];
  180. if (!chan) {
  181. NV_ERROR(dev, "Inactive channel on PFIFO: %d\n", chid);
  182. return -EINVAL;
  183. }
  184. dev_priv->engine.instmem.prepare_access(dev, true);
  185. RAMFC_WR(DMA_PUT, nv_rd32(dev, NV04_PFIFO_CACHE1_DMA_PUT));
  186. RAMFC_WR(DMA_GET, nv_rd32(dev, NV04_PFIFO_CACHE1_DMA_GET));
  187. tmp = nv_rd32(dev, NV04_PFIFO_CACHE1_DMA_DCOUNT) << 16;
  188. tmp |= nv_rd32(dev, NV04_PFIFO_CACHE1_DMA_INSTANCE);
  189. RAMFC_WR(DMA_INSTANCE, tmp);
  190. RAMFC_WR(DMA_STATE, nv_rd32(dev, NV04_PFIFO_CACHE1_DMA_STATE));
  191. RAMFC_WR(DMA_FETCH, nv_rd32(dev, NV04_PFIFO_CACHE1_DMA_FETCH));
  192. RAMFC_WR(ENGINE, nv_rd32(dev, NV04_PFIFO_CACHE1_ENGINE));
  193. RAMFC_WR(PULL1_ENGINE, nv_rd32(dev, NV04_PFIFO_CACHE1_PULL1));
  194. dev_priv->engine.instmem.finish_access(dev);
  195. nv04_fifo_do_load_context(dev, pfifo->channels - 1);
  196. nv_wr32(dev, NV03_PFIFO_CACHE1_PUSH1, pfifo->channels - 1);
  197. return 0;
  198. }
  199. static void
  200. nv04_fifo_init_reset(struct drm_device *dev)
  201. {
  202. nv_wr32(dev, NV03_PMC_ENABLE,
  203. nv_rd32(dev, NV03_PMC_ENABLE) & ~NV_PMC_ENABLE_PFIFO);
  204. nv_wr32(dev, NV03_PMC_ENABLE,
  205. nv_rd32(dev, NV03_PMC_ENABLE) | NV_PMC_ENABLE_PFIFO);
  206. nv_wr32(dev, 0x003224, 0x000f0078);
  207. nv_wr32(dev, 0x002044, 0x0101ffff);
  208. nv_wr32(dev, 0x002040, 0x000000ff);
  209. nv_wr32(dev, 0x002500, 0x00000000);
  210. nv_wr32(dev, 0x003000, 0x00000000);
  211. nv_wr32(dev, 0x003050, 0x00000000);
  212. nv_wr32(dev, 0x003200, 0x00000000);
  213. nv_wr32(dev, 0x003250, 0x00000000);
  214. nv_wr32(dev, 0x003220, 0x00000000);
  215. nv_wr32(dev, 0x003250, 0x00000000);
  216. nv_wr32(dev, 0x003270, 0x00000000);
  217. nv_wr32(dev, 0x003210, 0x00000000);
  218. }
  219. static void
  220. nv04_fifo_init_ramxx(struct drm_device *dev)
  221. {
  222. struct drm_nouveau_private *dev_priv = dev->dev_private;
  223. nv_wr32(dev, NV03_PFIFO_RAMHT, (0x03 << 24) /* search 128 */ |
  224. ((dev_priv->ramht_bits - 9) << 16) |
  225. (dev_priv->ramht_offset >> 8));
  226. nv_wr32(dev, NV03_PFIFO_RAMRO, dev_priv->ramro_offset>>8);
  227. nv_wr32(dev, NV03_PFIFO_RAMFC, dev_priv->ramfc_offset >> 8);
  228. }
  229. static void
  230. nv04_fifo_init_intr(struct drm_device *dev)
  231. {
  232. nv_wr32(dev, 0x002100, 0xffffffff);
  233. nv_wr32(dev, 0x002140, 0xffffffff);
  234. }
  235. int
  236. nv04_fifo_init(struct drm_device *dev)
  237. {
  238. struct drm_nouveau_private *dev_priv = dev->dev_private;
  239. struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo;
  240. int i;
  241. nv04_fifo_init_reset(dev);
  242. nv04_fifo_init_ramxx(dev);
  243. nv04_fifo_do_load_context(dev, pfifo->channels - 1);
  244. nv_wr32(dev, NV03_PFIFO_CACHE1_PUSH1, pfifo->channels - 1);
  245. nv04_fifo_init_intr(dev);
  246. pfifo->enable(dev);
  247. for (i = 0; i < dev_priv->engine.fifo.channels; i++) {
  248. if (dev_priv->fifos[i]) {
  249. uint32_t mode = nv_rd32(dev, NV04_PFIFO_MODE);
  250. nv_wr32(dev, NV04_PFIFO_MODE, mode | (1 << i));
  251. }
  252. }
  253. return 0;
  254. }