nv04.c 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * Copyright 2012 Red Hat Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20. * OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. * Authors: Ben Skeggs
  23. */
  24. #include "priv.h"
  25. static const struct nvkm_disp_oclass *
  26. nv04_disp_root(struct nvkm_disp *disp)
  27. {
  28. return &nv04_disp_root_oclass;
  29. }
  30. static void
  31. nv04_disp_vblank_init(struct nvkm_disp *disp, int head)
  32. {
  33. struct nvkm_device *device = disp->engine.subdev.device;
  34. nvkm_wr32(device, 0x600140 + (head * 0x2000) , 0x00000001);
  35. }
  36. static void
  37. nv04_disp_vblank_fini(struct nvkm_disp *disp, int head)
  38. {
  39. struct nvkm_device *device = disp->engine.subdev.device;
  40. nvkm_wr32(device, 0x600140 + (head * 0x2000) , 0x00000000);
  41. }
  42. static void
  43. nv04_disp_intr(struct nvkm_disp *disp)
  44. {
  45. struct nvkm_subdev *subdev = &disp->engine.subdev;
  46. struct nvkm_device *device = subdev->device;
  47. u32 crtc0 = nvkm_rd32(device, 0x600100);
  48. u32 crtc1 = nvkm_rd32(device, 0x602100);
  49. u32 pvideo;
  50. if (crtc0 & 0x00000001) {
  51. nvkm_disp_vblank(disp, 0);
  52. nvkm_wr32(device, 0x600100, 0x00000001);
  53. }
  54. if (crtc1 & 0x00000001) {
  55. nvkm_disp_vblank(disp, 1);
  56. nvkm_wr32(device, 0x602100, 0x00000001);
  57. }
  58. if (device->chipset >= 0x10 && device->chipset <= 0x40) {
  59. pvideo = nvkm_rd32(device, 0x8100);
  60. if (pvideo & ~0x11)
  61. nvkm_info(subdev, "PVIDEO intr: %08x\n", pvideo);
  62. nvkm_wr32(device, 0x8100, pvideo);
  63. }
  64. }
  65. static const struct nvkm_disp_func
  66. nv04_disp = {
  67. .intr = nv04_disp_intr,
  68. .root = nv04_disp_root,
  69. .head.vblank_init = nv04_disp_vblank_init,
  70. .head.vblank_fini = nv04_disp_vblank_fini,
  71. };
  72. int
  73. nv04_disp_new(struct nvkm_device *device, int index, struct nvkm_disp **pdisp)
  74. {
  75. return nvkm_disp_new_(&nv04_disp, device, index, 2, pdisp);
  76. }