nv2a.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. #include "nv20.h"
  2. #include "regs.h"
  3. #include <core/gpuobj.h>
  4. #include <engine/fifo.h>
  5. #include <engine/fifo/chan.h>
  6. /*******************************************************************************
  7. * PGRAPH context
  8. ******************************************************************************/
  9. static const struct nvkm_object_func
  10. nv2a_gr_chan = {
  11. .dtor = nv20_gr_chan_dtor,
  12. .init = nv20_gr_chan_init,
  13. .fini = nv20_gr_chan_fini,
  14. };
  15. static int
  16. nv2a_gr_chan_new(struct nvkm_gr *base, struct nvkm_fifo_chan *fifoch,
  17. const struct nvkm_oclass *oclass, struct nvkm_object **pobject)
  18. {
  19. struct nv20_gr *gr = nv20_gr(base);
  20. struct nv20_gr_chan *chan;
  21. int ret, i;
  22. if (!(chan = kzalloc(sizeof(*chan), GFP_KERNEL)))
  23. return -ENOMEM;
  24. nvkm_object_ctor(&nv2a_gr_chan, oclass, &chan->object);
  25. chan->gr = gr;
  26. chan->chid = fifoch->chid;
  27. *pobject = &chan->object;
  28. ret = nvkm_memory_new(gr->base.engine.subdev.device,
  29. NVKM_MEM_TARGET_INST, 0x36b0, 16, true,
  30. &chan->inst);
  31. if (ret)
  32. return ret;
  33. nvkm_kmap(chan->inst);
  34. nvkm_wo32(chan->inst, 0x0000, 0x00000001 | (chan->chid << 24));
  35. nvkm_wo32(chan->inst, 0x033c, 0xffff0000);
  36. nvkm_wo32(chan->inst, 0x03a0, 0x0fff0000);
  37. nvkm_wo32(chan->inst, 0x03a4, 0x0fff0000);
  38. nvkm_wo32(chan->inst, 0x047c, 0x00000101);
  39. nvkm_wo32(chan->inst, 0x0490, 0x00000111);
  40. nvkm_wo32(chan->inst, 0x04a8, 0x44400000);
  41. for (i = 0x04d4; i <= 0x04e0; i += 4)
  42. nvkm_wo32(chan->inst, i, 0x00030303);
  43. for (i = 0x04f4; i <= 0x0500; i += 4)
  44. nvkm_wo32(chan->inst, i, 0x00080000);
  45. for (i = 0x050c; i <= 0x0518; i += 4)
  46. nvkm_wo32(chan->inst, i, 0x01012000);
  47. for (i = 0x051c; i <= 0x0528; i += 4)
  48. nvkm_wo32(chan->inst, i, 0x000105b8);
  49. for (i = 0x052c; i <= 0x0538; i += 4)
  50. nvkm_wo32(chan->inst, i, 0x00080008);
  51. for (i = 0x055c; i <= 0x0598; i += 4)
  52. nvkm_wo32(chan->inst, i, 0x07ff0000);
  53. nvkm_wo32(chan->inst, 0x05a4, 0x4b7fffff);
  54. nvkm_wo32(chan->inst, 0x05fc, 0x00000001);
  55. nvkm_wo32(chan->inst, 0x0604, 0x00004000);
  56. nvkm_wo32(chan->inst, 0x0610, 0x00000001);
  57. nvkm_wo32(chan->inst, 0x0618, 0x00040000);
  58. nvkm_wo32(chan->inst, 0x061c, 0x00010000);
  59. for (i = 0x1a9c; i <= 0x22fc; i += 16) { /*XXX: check!! */
  60. nvkm_wo32(chan->inst, (i + 0), 0x10700ff9);
  61. nvkm_wo32(chan->inst, (i + 4), 0x0436086c);
  62. nvkm_wo32(chan->inst, (i + 8), 0x000c001b);
  63. }
  64. nvkm_wo32(chan->inst, 0x269c, 0x3f800000);
  65. nvkm_wo32(chan->inst, 0x26b0, 0x3f800000);
  66. nvkm_wo32(chan->inst, 0x26dc, 0x40000000);
  67. nvkm_wo32(chan->inst, 0x26e0, 0x3f800000);
  68. nvkm_wo32(chan->inst, 0x26e4, 0x3f000000);
  69. nvkm_wo32(chan->inst, 0x26ec, 0x40000000);
  70. nvkm_wo32(chan->inst, 0x26f0, 0x3f800000);
  71. nvkm_wo32(chan->inst, 0x26f8, 0xbf800000);
  72. nvkm_wo32(chan->inst, 0x2700, 0xbf800000);
  73. nvkm_wo32(chan->inst, 0x3024, 0x000fe000);
  74. nvkm_wo32(chan->inst, 0x30a0, 0x000003f8);
  75. nvkm_wo32(chan->inst, 0x33fc, 0x002fe000);
  76. for (i = 0x341c; i <= 0x3438; i += 4)
  77. nvkm_wo32(chan->inst, i, 0x001c527c);
  78. nvkm_done(chan->inst);
  79. return 0;
  80. }
  81. /*******************************************************************************
  82. * PGRAPH engine/subdev functions
  83. ******************************************************************************/
  84. static const struct nvkm_gr_func
  85. nv2a_gr = {
  86. .dtor = nv20_gr_dtor,
  87. .oneinit = nv20_gr_oneinit,
  88. .init = nv20_gr_init,
  89. .intr = nv20_gr_intr,
  90. .tile = nv20_gr_tile,
  91. .chan_new = nv2a_gr_chan_new,
  92. .sclass = {
  93. { -1, -1, 0x0012, &nv04_gr_object }, /* beta1 */
  94. { -1, -1, 0x0019, &nv04_gr_object }, /* clip */
  95. { -1, -1, 0x0030, &nv04_gr_object }, /* null */
  96. { -1, -1, 0x0039, &nv04_gr_object }, /* m2mf */
  97. { -1, -1, 0x0043, &nv04_gr_object }, /* rop */
  98. { -1, -1, 0x0044, &nv04_gr_object }, /* patt */
  99. { -1, -1, 0x004a, &nv04_gr_object }, /* gdi */
  100. { -1, -1, 0x0062, &nv04_gr_object }, /* surf2d */
  101. { -1, -1, 0x0072, &nv04_gr_object }, /* beta4 */
  102. { -1, -1, 0x0089, &nv04_gr_object }, /* sifm */
  103. { -1, -1, 0x008a, &nv04_gr_object }, /* ifc */
  104. { -1, -1, 0x0096, &nv04_gr_object }, /* celcius */
  105. { -1, -1, 0x009e, &nv04_gr_object }, /* swzsurf */
  106. { -1, -1, 0x009f, &nv04_gr_object }, /* imageblit */
  107. { -1, -1, 0x0597, &nv04_gr_object }, /* kelvin */
  108. {}
  109. }
  110. };
  111. int
  112. nv2a_gr_new(struct nvkm_device *device, int index, struct nvkm_gr **pgr)
  113. {
  114. return nv20_gr_new_(&nv2a_gr, device, index, pgr);
  115. }