nv40_fifo.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. /*
  2. * Copyright (C) 2012 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. #include "nouveau_fifo.h"
  30. #include "nouveau_util.h"
  31. #include "nouveau_ramht.h"
  32. static struct ramfc_desc {
  33. unsigned bits:6;
  34. unsigned ctxs:5;
  35. unsigned ctxp:8;
  36. unsigned regs:5;
  37. unsigned regp;
  38. } nv40_ramfc[] = {
  39. { 32, 0, 0x00, 0, NV04_PFIFO_CACHE1_DMA_PUT },
  40. { 32, 0, 0x04, 0, NV04_PFIFO_CACHE1_DMA_GET },
  41. { 32, 0, 0x08, 0, NV10_PFIFO_CACHE1_REF_CNT },
  42. { 32, 0, 0x0c, 0, NV04_PFIFO_CACHE1_DMA_INSTANCE },
  43. { 32, 0, 0x10, 0, NV04_PFIFO_CACHE1_DMA_DCOUNT },
  44. { 32, 0, 0x14, 0, NV04_PFIFO_CACHE1_DMA_STATE },
  45. { 28, 0, 0x18, 0, NV04_PFIFO_CACHE1_DMA_FETCH },
  46. { 2, 28, 0x18, 28, 0x002058 },
  47. { 32, 0, 0x1c, 0, NV04_PFIFO_CACHE1_ENGINE },
  48. { 32, 0, 0x20, 0, NV04_PFIFO_CACHE1_PULL1 },
  49. { 32, 0, 0x24, 0, NV10_PFIFO_CACHE1_ACQUIRE_VALUE },
  50. { 32, 0, 0x28, 0, NV10_PFIFO_CACHE1_ACQUIRE_TIMESTAMP },
  51. { 32, 0, 0x2c, 0, NV10_PFIFO_CACHE1_ACQUIRE_TIMEOUT },
  52. { 32, 0, 0x30, 0, NV10_PFIFO_CACHE1_SEMAPHORE },
  53. { 32, 0, 0x34, 0, NV10_PFIFO_CACHE1_DMA_SUBROUTINE },
  54. { 32, 0, 0x38, 0, NV40_PFIFO_GRCTX_INSTANCE },
  55. { 17, 0, 0x3c, 0, NV04_PFIFO_DMA_TIMESLICE },
  56. { 32, 0, 0x40, 0, 0x0032e4 },
  57. { 32, 0, 0x44, 0, 0x0032e8 },
  58. { 32, 0, 0x4c, 0, 0x002088 },
  59. { 32, 0, 0x50, 0, 0x003300 },
  60. { 32, 0, 0x54, 0, 0x00330c },
  61. {}
  62. };
  63. struct nv40_fifo_priv {
  64. struct nouveau_fifo_priv base;
  65. struct ramfc_desc *ramfc_desc;
  66. };
  67. struct nv40_fifo_chan {
  68. struct nouveau_fifo_chan base;
  69. struct nouveau_gpuobj *ramfc;
  70. };
  71. static int
  72. nv40_fifo_context_new(struct nouveau_channel *chan, int engine)
  73. {
  74. struct drm_device *dev = chan->dev;
  75. struct drm_nouveau_private *dev_priv = dev->dev_private;
  76. struct nv40_fifo_priv *priv = nv_engine(dev, engine);
  77. struct nv40_fifo_chan *fctx;
  78. unsigned long flags;
  79. int ret;
  80. fctx = chan->engctx[engine] = kzalloc(sizeof(*fctx), GFP_KERNEL);
  81. if (!fctx)
  82. return -ENOMEM;
  83. /* map channel control registers */
  84. chan->user = ioremap(pci_resource_start(dev->pdev, 0) +
  85. NV03_USER(chan->id), PAGE_SIZE);
  86. if (!chan->user) {
  87. ret = -ENOMEM;
  88. goto error;
  89. }
  90. /* initialise default fifo context */
  91. ret = nouveau_gpuobj_new_fake(dev, dev_priv->ramfc->pinst +
  92. chan->id * 128, ~0, 128,
  93. NVOBJ_FLAG_ZERO_ALLOC |
  94. NVOBJ_FLAG_ZERO_FREE, &fctx->ramfc);
  95. if (ret)
  96. goto error;
  97. nv_wo32(fctx->ramfc, 0x00, chan->pushbuf_base);
  98. nv_wo32(fctx->ramfc, 0x04, chan->pushbuf_base);
  99. nv_wo32(fctx->ramfc, 0x0c, chan->pushbuf->pinst >> 4);
  100. nv_wo32(fctx->ramfc, 0x18, 0x30000000 |
  101. NV_PFIFO_CACHE1_DMA_FETCH_TRIG_128_BYTES |
  102. NV_PFIFO_CACHE1_DMA_FETCH_SIZE_128_BYTES |
  103. #ifdef __BIG_ENDIAN
  104. NV_PFIFO_CACHE1_BIG_ENDIAN |
  105. #endif
  106. NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_8);
  107. nv_wo32(fctx->ramfc, 0x3c, 0x0001ffff);
  108. /* enable dma mode on the channel */
  109. spin_lock_irqsave(&dev_priv->context_switch_lock, flags);
  110. nv_mask(dev, NV04_PFIFO_MODE, (1 << chan->id), (1 << chan->id));
  111. spin_unlock_irqrestore(&dev_priv->context_switch_lock, flags);
  112. /*XXX: remove this later, need fifo engine context commit hook */
  113. nouveau_gpuobj_ref(fctx->ramfc, &chan->ramfc);
  114. error:
  115. if (ret)
  116. priv->base.base.context_del(chan, engine);
  117. return ret;
  118. }
  119. static int
  120. nv40_fifo_init(struct drm_device *dev, int engine)
  121. {
  122. struct drm_nouveau_private *dev_priv = dev->dev_private;
  123. struct nv40_fifo_priv *priv = nv_engine(dev, engine);
  124. int i;
  125. nv_mask(dev, NV03_PMC_ENABLE, NV_PMC_ENABLE_PFIFO, 0);
  126. nv_mask(dev, NV03_PMC_ENABLE, NV_PMC_ENABLE_PFIFO, NV_PMC_ENABLE_PFIFO);
  127. nv_wr32(dev, 0x002040, 0x000000ff);
  128. nv_wr32(dev, 0x002044, 0x2101ffff);
  129. nv_wr32(dev, 0x002058, 0x00000001);
  130. nv_wr32(dev, NV03_PFIFO_RAMHT, (0x03 << 24) /* search 128 */ |
  131. ((dev_priv->ramht->bits - 9) << 16) |
  132. (dev_priv->ramht->gpuobj->pinst >> 8));
  133. nv_wr32(dev, NV03_PFIFO_RAMRO, dev_priv->ramro->pinst >> 8);
  134. switch (dev_priv->chipset) {
  135. case 0x47:
  136. case 0x49:
  137. case 0x4b:
  138. nv_wr32(dev, 0x002230, 0x00000001);
  139. case 0x40:
  140. case 0x41:
  141. case 0x42:
  142. case 0x43:
  143. case 0x45:
  144. case 0x48:
  145. nv_wr32(dev, 0x002220, 0x00030002);
  146. break;
  147. default:
  148. nv_wr32(dev, 0x002230, 0x00000000);
  149. nv_wr32(dev, 0x002220, ((dev_priv->vram_size - 512 * 1024 +
  150. dev_priv->ramfc->pinst) >> 16) |
  151. 0x00030000);
  152. break;
  153. }
  154. nv_wr32(dev, NV03_PFIFO_CACHE1_PUSH1, priv->base.channels);
  155. nv_wr32(dev, NV03_PFIFO_INTR_0, 0xffffffff);
  156. nv_wr32(dev, NV03_PFIFO_INTR_EN_0, 0xffffffff);
  157. nv_wr32(dev, NV03_PFIFO_CACHE1_PUSH0, 1);
  158. nv_wr32(dev, NV04_PFIFO_CACHE1_PULL0, 1);
  159. nv_wr32(dev, NV03_PFIFO_CACHES, 1);
  160. for (i = 0; i < priv->base.channels; i++) {
  161. if (dev_priv->channels.ptr[i])
  162. nv_mask(dev, NV04_PFIFO_MODE, (1 << i), (1 << i));
  163. }
  164. return 0;
  165. }
  166. int
  167. nv40_fifo_create(struct drm_device *dev)
  168. {
  169. struct drm_nouveau_private *dev_priv = dev->dev_private;
  170. struct nv40_fifo_priv *priv;
  171. priv = kzalloc(sizeof(*priv), GFP_KERNEL);
  172. if (!priv)
  173. return -ENOMEM;
  174. priv->base.base.destroy = nv04_fifo_destroy;
  175. priv->base.base.init = nv40_fifo_init;
  176. priv->base.base.fini = nv04_fifo_fini;
  177. priv->base.base.context_new = nv40_fifo_context_new;
  178. priv->base.base.context_del = nv04_fifo_context_del;
  179. priv->base.channels = 31;
  180. priv->ramfc_desc = nv40_ramfc;
  181. dev_priv->eng[NVOBJ_ENGINE_FIFO] = &priv->base.base;
  182. nouveau_irq_register(dev, 8, nv04_fifo_isr);
  183. return 0;
  184. }