base.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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. #include "ram.h"
  26. #include <core/memory.h>
  27. #include <core/option.h>
  28. #include <subdev/bios.h>
  29. #include <subdev/bios/M0203.h>
  30. #include <engine/gr.h>
  31. #include <engine/mpeg.h>
  32. bool
  33. nvkm_fb_memtype_valid(struct nvkm_fb *fb, u32 memtype)
  34. {
  35. return fb->func->memtype_valid(fb, memtype);
  36. }
  37. void
  38. nvkm_fb_tile_fini(struct nvkm_fb *fb, int region, struct nvkm_fb_tile *tile)
  39. {
  40. fb->func->tile.fini(fb, region, tile);
  41. }
  42. void
  43. nvkm_fb_tile_init(struct nvkm_fb *fb, int region, u32 addr, u32 size,
  44. u32 pitch, u32 flags, struct nvkm_fb_tile *tile)
  45. {
  46. fb->func->tile.init(fb, region, addr, size, pitch, flags, tile);
  47. }
  48. void
  49. nvkm_fb_tile_prog(struct nvkm_fb *fb, int region, struct nvkm_fb_tile *tile)
  50. {
  51. struct nvkm_device *device = fb->subdev.device;
  52. if (fb->func->tile.prog) {
  53. fb->func->tile.prog(fb, region, tile);
  54. if (device->gr)
  55. nvkm_engine_tile(&device->gr->engine, region);
  56. if (device->mpeg)
  57. nvkm_engine_tile(device->mpeg, region);
  58. }
  59. }
  60. int
  61. nvkm_fb_bios_memtype(struct nvkm_bios *bios)
  62. {
  63. struct nvkm_subdev *subdev = &bios->subdev;
  64. struct nvkm_device *device = subdev->device;
  65. const u8 ramcfg = (nvkm_rd32(device, 0x101000) & 0x0000003c) >> 2;
  66. struct nvbios_M0203E M0203E;
  67. u8 ver, hdr;
  68. if (nvbios_M0203Em(bios, ramcfg, &ver, &hdr, &M0203E)) {
  69. switch (M0203E.type) {
  70. case M0203E_TYPE_DDR2 : return NVKM_RAM_TYPE_DDR2;
  71. case M0203E_TYPE_DDR3 : return NVKM_RAM_TYPE_DDR3;
  72. case M0203E_TYPE_GDDR3: return NVKM_RAM_TYPE_GDDR3;
  73. case M0203E_TYPE_GDDR5: return NVKM_RAM_TYPE_GDDR5;
  74. default:
  75. nvkm_warn(subdev, "M0203E type %02x\n", M0203E.type);
  76. return NVKM_RAM_TYPE_UNKNOWN;
  77. }
  78. }
  79. nvkm_warn(subdev, "M0203E not matched!\n");
  80. return NVKM_RAM_TYPE_UNKNOWN;
  81. }
  82. static void
  83. nvkm_fb_intr(struct nvkm_subdev *subdev)
  84. {
  85. struct nvkm_fb *fb = nvkm_fb(subdev);
  86. if (fb->func->intr)
  87. fb->func->intr(fb);
  88. }
  89. static int
  90. nvkm_fb_oneinit(struct nvkm_subdev *subdev)
  91. {
  92. struct nvkm_fb *fb = nvkm_fb(subdev);
  93. if (fb->func->ram_new) {
  94. int ret = fb->func->ram_new(fb, &fb->ram);
  95. if (ret) {
  96. nvkm_error(subdev, "vram setup failed, %d\n", ret);
  97. return ret;
  98. }
  99. }
  100. if (fb->func->oneinit) {
  101. int ret = fb->func->oneinit(fb);
  102. if (ret)
  103. return ret;
  104. }
  105. return 0;
  106. }
  107. static int
  108. nvkm_fb_init(struct nvkm_subdev *subdev)
  109. {
  110. struct nvkm_fb *fb = nvkm_fb(subdev);
  111. int ret, i;
  112. if (fb->ram) {
  113. ret = nvkm_ram_init(fb->ram);
  114. if (ret)
  115. return ret;
  116. }
  117. for (i = 0; i < fb->tile.regions; i++)
  118. fb->func->tile.prog(fb, i, &fb->tile.region[i]);
  119. if (fb->func->init)
  120. fb->func->init(fb);
  121. if (fb->func->init_page)
  122. fb->func->init_page(fb);
  123. if (fb->func->init_unkn)
  124. fb->func->init_unkn(fb);
  125. return 0;
  126. }
  127. static void *
  128. nvkm_fb_dtor(struct nvkm_subdev *subdev)
  129. {
  130. struct nvkm_fb *fb = nvkm_fb(subdev);
  131. int i;
  132. nvkm_memory_del(&fb->mmu_wr);
  133. nvkm_memory_del(&fb->mmu_rd);
  134. for (i = 0; i < fb->tile.regions; i++)
  135. fb->func->tile.fini(fb, i, &fb->tile.region[i]);
  136. nvkm_ram_del(&fb->ram);
  137. if (fb->func->dtor)
  138. return fb->func->dtor(fb);
  139. return fb;
  140. }
  141. static const struct nvkm_subdev_func
  142. nvkm_fb = {
  143. .dtor = nvkm_fb_dtor,
  144. .oneinit = nvkm_fb_oneinit,
  145. .init = nvkm_fb_init,
  146. .intr = nvkm_fb_intr,
  147. };
  148. void
  149. nvkm_fb_ctor(const struct nvkm_fb_func *func, struct nvkm_device *device,
  150. int index, struct nvkm_fb *fb)
  151. {
  152. nvkm_subdev_ctor(&nvkm_fb, device, index, &fb->subdev);
  153. fb->func = func;
  154. fb->tile.regions = fb->func->tile.regions;
  155. fb->page = nvkm_longopt(device->cfgopt, "NvFbBigPage", 0);
  156. }
  157. int
  158. nvkm_fb_new_(const struct nvkm_fb_func *func, struct nvkm_device *device,
  159. int index, struct nvkm_fb **pfb)
  160. {
  161. if (!(*pfb = kzalloc(sizeof(**pfb), GFP_KERNEL)))
  162. return -ENOMEM;
  163. nvkm_fb_ctor(func, device, index, *pfb);
  164. return 0;
  165. }