ramgp100.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * Copyright 2013 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 "ram.h"
  25. #include <subdev/bios.h>
  26. #include <subdev/bios/init.h>
  27. #include <subdev/bios/rammap.h>
  28. static int
  29. gp100_ram_init(struct nvkm_ram *ram)
  30. {
  31. struct nvkm_subdev *subdev = &ram->fb->subdev;
  32. struct nvkm_device *device = subdev->device;
  33. struct nvkm_bios *bios = device->bios;
  34. u8 ver, hdr, cnt, len, snr, ssz;
  35. u32 data;
  36. int i;
  37. /* run a bunch of tables from rammap table. there's actually
  38. * individual pointers for each rammap entry too, but, nvidia
  39. * seem to just run the last two entries' scripts early on in
  40. * their init, and never again.. we'll just run 'em all once
  41. * for now.
  42. *
  43. * i strongly suspect that each script is for a separate mode
  44. * (likely selected by 0x9a065c's lower bits?), and the
  45. * binary driver skips the one that's already been setup by
  46. * the init tables.
  47. */
  48. data = nvbios_rammapTe(bios, &ver, &hdr, &cnt, &len, &snr, &ssz);
  49. if (!data || hdr < 0x15)
  50. return -EINVAL;
  51. cnt = nvbios_rd08(bios, data + 0x14); /* guess at count */
  52. data = nvbios_rd32(bios, data + 0x10); /* guess u32... */
  53. if (cnt) {
  54. u32 save = nvkm_rd32(device, 0x9a065c) & 0x000000f0;
  55. for (i = 0; i < cnt; i++, data += 4) {
  56. if (i != save >> 4) {
  57. nvkm_mask(device, 0x9a065c, 0x000000f0, i << 4);
  58. nvbios_exec(&(struct nvbios_init) {
  59. .subdev = subdev,
  60. .bios = bios,
  61. .offset = nvbios_rd32(bios, data),
  62. .execute = 1,
  63. });
  64. }
  65. }
  66. nvkm_mask(device, 0x9a065c, 0x000000f0, save);
  67. }
  68. nvkm_mask(device, 0x9a0584, 0x11000000, 0x00000000);
  69. nvkm_wr32(device, 0x10ecc0, 0xffffffff);
  70. nvkm_mask(device, 0x9a0160, 0x00000010, 0x00000010);
  71. return 0;
  72. }
  73. static u32
  74. gp100_ram_probe_fbpa(struct nvkm_device *device, int fbpa)
  75. {
  76. return nvkm_rd32(device, 0x90020c + (fbpa * 0x4000));
  77. }
  78. static const struct nvkm_ram_func
  79. gp100_ram = {
  80. .upper = 0x1000000000,
  81. .probe_fbp = gm107_ram_probe_fbp,
  82. .probe_fbp_amount = gm200_ram_probe_fbp_amount,
  83. .probe_fbpa_amount = gp100_ram_probe_fbpa,
  84. .init = gp100_ram_init,
  85. .get = gf100_ram_get,
  86. .put = gf100_ram_put,
  87. };
  88. int
  89. gp100_ram_new(struct nvkm_fb *fb, struct nvkm_ram **pram)
  90. {
  91. struct nvkm_ram *ram;
  92. if (!(ram = *pram = kzalloc(sizeof(*ram), GFP_KERNEL)))
  93. return -ENOMEM;
  94. return gf100_ram_ctor(&gp100_ram, fb, ram);
  95. }