nv04_fb.c 411 B

123456789101112131415161718192021
  1. #include "drmP.h"
  2. #include "drm.h"
  3. #include "nouveau_drv.h"
  4. #include "nouveau_drm.h"
  5. int
  6. nv04_fb_init(struct drm_device *dev)
  7. {
  8. /* This is what the DDX did for NV_ARCH_04, but a mmio-trace shows
  9. * nvidia reading PFB_CFG_0, then writing back its original value.
  10. * (which was 0x701114 in this case)
  11. */
  12. nv_wr32(dev, NV04_PFB_CFG0, 0x1114);
  13. return 0;
  14. }
  15. void
  16. nv04_fb_takedown(struct drm_device *dev)
  17. {
  18. }