nv10_fifo.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. } nv10_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. { 16, 0, 0x0c, 0, NV04_PFIFO_CACHE1_DMA_INSTANCE },
  43. { 16, 16, 0x0c, 0, NV04_PFIFO_CACHE1_DMA_DCOUNT },
  44. { 32, 0, 0x10, 0, NV04_PFIFO_CACHE1_DMA_STATE },
  45. { 32, 0, 0x14, 0, NV04_PFIFO_CACHE1_DMA_FETCH },
  46. { 32, 0, 0x18, 0, NV04_PFIFO_CACHE1_ENGINE },
  47. { 32, 0, 0x1c, 0, NV04_PFIFO_CACHE1_PULL1 },
  48. {}
  49. };
  50. struct nv10_fifo_priv {
  51. struct nouveau_fifo_priv base;
  52. struct ramfc_desc *ramfc_desc;
  53. };
  54. struct nv10_fifo_chan {
  55. struct nouveau_fifo_chan base;
  56. struct nouveau_gpuobj *ramfc;
  57. };
  58. static int
  59. nv10_fifo_context_new(struct nouveau_channel *chan, int engine)
  60. {
  61. struct drm_device *dev = chan->dev;
  62. struct drm_nouveau_private *dev_priv = dev->dev_private;
  63. struct nv10_fifo_priv *priv = nv_engine(dev, engine);
  64. struct nv10_fifo_chan *fctx;
  65. unsigned long flags;
  66. int ret;
  67. fctx = chan->engctx[engine] = kzalloc(sizeof(*fctx), GFP_KERNEL);
  68. if (!fctx)
  69. return -ENOMEM;
  70. /* map channel control registers */
  71. chan->user = ioremap(pci_resource_start(dev->pdev, 0) +
  72. NV03_USER(chan->id), PAGE_SIZE);
  73. if (!chan->user) {
  74. ret = -ENOMEM;
  75. goto error;
  76. }
  77. /* initialise default fifo context */
  78. ret = nouveau_gpuobj_new_fake(dev, dev_priv->ramfc->pinst +
  79. chan->id * 32, ~0, 32,
  80. NVOBJ_FLAG_ZERO_FREE, &fctx->ramfc);
  81. if (ret)
  82. goto error;
  83. nv_wo32(fctx->ramfc, 0x00, chan->pushbuf_base);
  84. nv_wo32(fctx->ramfc, 0x04, chan->pushbuf_base);
  85. nv_wo32(fctx->ramfc, 0x08, 0x00000000);
  86. nv_wo32(fctx->ramfc, 0x0c, chan->pushbuf->pinst >> 4);
  87. nv_wo32(fctx->ramfc, 0x10, 0x00000000);
  88. nv_wo32(fctx->ramfc, 0x14, NV_PFIFO_CACHE1_DMA_FETCH_TRIG_128_BYTES |
  89. NV_PFIFO_CACHE1_DMA_FETCH_SIZE_128_BYTES |
  90. #ifdef __BIG_ENDIAN
  91. NV_PFIFO_CACHE1_BIG_ENDIAN |
  92. #endif
  93. NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_8);
  94. nv_wo32(fctx->ramfc, 0x18, 0x00000000);
  95. nv_wo32(fctx->ramfc, 0x1c, 0x00000000);
  96. /* enable dma mode on the channel */
  97. spin_lock_irqsave(&dev_priv->context_switch_lock, flags);
  98. nv_mask(dev, NV04_PFIFO_MODE, (1 << chan->id), (1 << chan->id));
  99. spin_unlock_irqrestore(&dev_priv->context_switch_lock, flags);
  100. error:
  101. if (ret)
  102. priv->base.base.context_del(chan, engine);
  103. return ret;
  104. }
  105. int
  106. nv10_fifo_create(struct drm_device *dev)
  107. {
  108. struct drm_nouveau_private *dev_priv = dev->dev_private;
  109. struct nv10_fifo_priv *priv;
  110. priv = kzalloc(sizeof(*priv), GFP_KERNEL);
  111. if (!priv)
  112. return -ENOMEM;
  113. priv->base.base.destroy = nv04_fifo_destroy;
  114. priv->base.base.init = nv04_fifo_init;
  115. priv->base.base.fini = nv04_fifo_fini;
  116. priv->base.base.context_new = nv10_fifo_context_new;
  117. priv->base.base.context_del = nv04_fifo_context_del;
  118. priv->base.channels = 31;
  119. priv->ramfc_desc = nv10_ramfc;
  120. dev_priv->eng[NVOBJ_ENGINE_FIFO] = &priv->base.base;
  121. nouveau_irq_register(dev, 8, nv04_fifo_isr);
  122. return 0;
  123. }