pmu.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. * Copyright 2014 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 <bskeggs@redhat.com>
  23. */
  24. #include <subdev/bios.h>
  25. #include <subdev/bios/bit.h>
  26. #include <subdev/bios/image.h>
  27. #include <subdev/bios/pmu.h>
  28. static u32
  29. weirdo_pointer(struct nvkm_bios *bios, u32 data)
  30. {
  31. struct nvbios_image image;
  32. int idx = 0;
  33. if (nvbios_image(bios, idx++, &image)) {
  34. data -= image.size;
  35. while (nvbios_image(bios, idx++, &image)) {
  36. if (image.type == 0xe0)
  37. return image.base + data;
  38. }
  39. }
  40. return 0;
  41. }
  42. u32
  43. nvbios_pmuTe(struct nvkm_bios *bios, u8 *ver, u8 *hdr, u8 *cnt, u8 *len)
  44. {
  45. struct bit_entry bit_p;
  46. u32 data = 0;
  47. if (!bit_entry(bios, 'p', &bit_p)) {
  48. if (bit_p.version == 2 && bit_p.length >= 4)
  49. data = nvbios_rd32(bios, bit_p.offset + 0x00);
  50. if ((data = weirdo_pointer(bios, data))) {
  51. *ver = nvbios_rd08(bios, data + 0x00); /* maybe? */
  52. *hdr = nvbios_rd08(bios, data + 0x01);
  53. *len = nvbios_rd08(bios, data + 0x02);
  54. *cnt = nvbios_rd08(bios, data + 0x03);
  55. }
  56. }
  57. return data;
  58. }
  59. u32
  60. nvbios_pmuTp(struct nvkm_bios *bios, u8 *ver, u8 *hdr, u8 *cnt, u8 *len,
  61. struct nvbios_pmuT *info)
  62. {
  63. u32 data = nvbios_pmuTe(bios, ver, hdr, cnt, len);
  64. memset(info, 0x00, sizeof(*info));
  65. switch (!!data * *ver) {
  66. default:
  67. break;
  68. }
  69. return data;
  70. }
  71. u32
  72. nvbios_pmuEe(struct nvkm_bios *bios, int idx, u8 *ver, u8 *hdr)
  73. {
  74. u8 cnt, len;
  75. u32 data = nvbios_pmuTe(bios, ver, hdr, &cnt, &len);
  76. if (data && idx < cnt) {
  77. data = data + *hdr + (idx * len);
  78. *hdr = len;
  79. return data;
  80. }
  81. return 0;
  82. }
  83. u32
  84. nvbios_pmuEp(struct nvkm_bios *bios, int idx, u8 *ver, u8 *hdr,
  85. struct nvbios_pmuE *info)
  86. {
  87. u32 data = nvbios_pmuEe(bios, idx, ver, hdr);
  88. memset(info, 0x00, sizeof(*info));
  89. switch (!!data * *ver) {
  90. default:
  91. info->type = nvbios_rd08(bios, data + 0x00);
  92. info->data = nvbios_rd32(bios, data + 0x02);
  93. break;
  94. }
  95. return data;
  96. }
  97. bool
  98. nvbios_pmuRm(struct nvkm_bios *bios, u8 type, struct nvbios_pmuR *info)
  99. {
  100. struct nvbios_pmuE pmuE;
  101. u8 ver, hdr, idx = 0;
  102. u32 data;
  103. memset(info, 0x00, sizeof(*info));
  104. while ((data = nvbios_pmuEp(bios, idx++, &ver, &hdr, &pmuE))) {
  105. if ( pmuE.type == type &&
  106. (data = weirdo_pointer(bios, pmuE.data))) {
  107. info->init_addr_pmu = nvbios_rd32(bios, data + 0x08);
  108. info->args_addr_pmu = nvbios_rd32(bios, data + 0x0c);
  109. info->boot_addr = data + 0x30;
  110. info->boot_addr_pmu = nvbios_rd32(bios, data + 0x10) +
  111. nvbios_rd32(bios, data + 0x18);
  112. info->boot_size = nvbios_rd32(bios, data + 0x1c) -
  113. nvbios_rd32(bios, data + 0x18);
  114. info->code_addr = info->boot_addr + info->boot_size;
  115. info->code_addr_pmu = info->boot_addr_pmu +
  116. info->boot_size;
  117. info->code_size = nvbios_rd32(bios, data + 0x20);
  118. info->data_addr = data + 0x30 +
  119. nvbios_rd32(bios, data + 0x24);
  120. info->data_addr_pmu = nvbios_rd32(bios, data + 0x28);
  121. info->data_size = nvbios_rd32(bios, data + 0x2c);
  122. return true;
  123. }
  124. }
  125. return false;
  126. }