nv50_fb.c 836 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 0xa5:
  21. case 0xa8:
  22. nv_wr32(dev, 0x100c90, 0x0d0fff);
  23. break;
  24. default:
  25. nv_wr32(dev, 0x100c90, 0x1d07ff);
  26. break;
  27. }
  28. return 0;
  29. }
  30. void
  31. nv50_fb_takedown(struct drm_device *dev)
  32. {
  33. }