nv50_fb.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. #include "drmP.h"
  2. #include "drm.h"
  3. #include "nouveau_drv.h"
  4. #include "nouveau_drm.h"
  5. int
  6. nv50_fb_init(struct drm_device *dev)
  7. {
  8. struct drm_nouveau_private *dev_priv = dev->dev_private;
  9. /* Not a clue what this is exactly. Without pointing it at a
  10. * scratch page, VRAM->GART blits with M2MF (as in DDX DFS)
  11. * cause IOMMU "read from address 0" errors (rh#561267)
  12. */
  13. nv_wr32(dev, 0x100c08, dev_priv->gart_info.sg_dummy_bus >> 8);
  14. /* This is needed to get meaningful information from 100c90
  15. * on traps. No idea what these values mean exactly. */
  16. switch (dev_priv->chipset) {
  17. case 0x50:
  18. nv_wr32(dev, 0x100c90, 0x0707ff);
  19. break;
  20. case 0xa3:
  21. case 0xa5:
  22. case 0xa8:
  23. nv_wr32(dev, 0x100c90, 0x0d0fff);
  24. break;
  25. default:
  26. nv_wr32(dev, 0x100c90, 0x1d07ff);
  27. break;
  28. }
  29. return 0;
  30. }
  31. void
  32. nv50_fb_takedown(struct drm_device *dev)
  33. {
  34. }
  35. void
  36. nv50_fb_vm_trap(struct drm_device *dev, int display, const char *name)
  37. {
  38. struct drm_nouveau_private *dev_priv = dev->dev_private;
  39. unsigned long flags;
  40. u32 trap[6], idx, chinst;
  41. int i, ch;
  42. idx = nv_rd32(dev, 0x100c90);
  43. if (!(idx & 0x80000000))
  44. return;
  45. idx &= 0x00ffffff;
  46. for (i = 0; i < 6; i++) {
  47. nv_wr32(dev, 0x100c90, idx | i << 24);
  48. trap[i] = nv_rd32(dev, 0x100c94);
  49. }
  50. nv_wr32(dev, 0x100c90, idx | 0x80000000);
  51. if (!display)
  52. return;
  53. chinst = (trap[2] << 16) | trap[1];
  54. spin_lock_irqsave(&dev_priv->channels.lock, flags);
  55. for (ch = 0; ch < dev_priv->engine.fifo.channels; ch++) {
  56. struct nouveau_channel *chan = dev_priv->channels.ptr[ch];
  57. if (!chan || !chan->ramin)
  58. continue;
  59. if (chinst == chan->ramin->vinst >> 12)
  60. break;
  61. }
  62. spin_unlock_irqrestore(&dev_priv->channels.lock, flags);
  63. NV_INFO(dev, "%s - VM: Trapped %s at %02x%04x%04x status %08x "
  64. "channel %d (0x%08x)\n",
  65. name, (trap[5] & 0x100 ? "read" : "write"),
  66. trap[5] & 0xff, trap[4] & 0xffff, trap[3] & 0xffff,
  67. trap[0], ch, chinst);
  68. }