drm_edid_load.c 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. /*
  2. drm_edid_load.c: use a built-in EDID data set or load it via the firmware
  3. interface
  4. Copyright (C) 2012 Carsten Emde <C.Emde@osadl.org>
  5. This program is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU General Public License
  7. as published by the Free Software Foundation; either version 2
  8. of the License, or (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  16. */
  17. #include <linux/module.h>
  18. #include <linux/firmware.h>
  19. #include <drm/drmP.h>
  20. #include <drm/drm_crtc.h>
  21. #include <drm/drm_crtc_helper.h>
  22. #include <drm/drm_edid.h>
  23. static char edid_firmware[PATH_MAX];
  24. module_param_string(edid_firmware, edid_firmware, sizeof(edid_firmware), 0644);
  25. MODULE_PARM_DESC(edid_firmware, "Do not probe monitor, use specified EDID blob "
  26. "from built-in data or /lib/firmware instead. ");
  27. #define GENERIC_EDIDS 5
  28. static char *generic_edid_name[GENERIC_EDIDS] = {
  29. "edid/1024x768.bin",
  30. "edid/1280x1024.bin",
  31. "edid/1600x1200.bin",
  32. "edid/1680x1050.bin",
  33. "edid/1920x1080.bin",
  34. };
  35. static u8 generic_edid[GENERIC_EDIDS][128] = {
  36. {
  37. 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00,
  38. 0x31, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  39. 0x05, 0x16, 0x01, 0x03, 0x6d, 0x23, 0x1a, 0x78,
  40. 0xea, 0x5e, 0xc0, 0xa4, 0x59, 0x4a, 0x98, 0x25,
  41. 0x20, 0x50, 0x54, 0x00, 0x08, 0x00, 0x61, 0x40,
  42. 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
  43. 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x64, 0x19,
  44. 0x00, 0x40, 0x41, 0x00, 0x26, 0x30, 0x08, 0x90,
  45. 0x36, 0x00, 0x63, 0x0a, 0x11, 0x00, 0x00, 0x18,
  46. 0x00, 0x00, 0x00, 0xff, 0x00, 0x4c, 0x69, 0x6e,
  47. 0x75, 0x78, 0x20, 0x23, 0x30, 0x0a, 0x20, 0x20,
  48. 0x20, 0x20, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x3b,
  49. 0x3d, 0x2f, 0x31, 0x07, 0x00, 0x0a, 0x20, 0x20,
  50. 0x20, 0x20, 0x20, 0x20, 0x00, 0x00, 0x00, 0xfc,
  51. 0x00, 0x4c, 0x69, 0x6e, 0x75, 0x78, 0x20, 0x58,
  52. 0x47, 0x41, 0x0a, 0x20, 0x20, 0x20, 0x00, 0x55,
  53. },
  54. {
  55. 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00,
  56. 0x31, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  57. 0x05, 0x16, 0x01, 0x03, 0x6d, 0x2c, 0x23, 0x78,
  58. 0xea, 0x5e, 0xc0, 0xa4, 0x59, 0x4a, 0x98, 0x25,
  59. 0x20, 0x50, 0x54, 0x00, 0x00, 0x00, 0x81, 0x80,
  60. 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
  61. 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x30, 0x2a,
  62. 0x00, 0x98, 0x51, 0x00, 0x2a, 0x40, 0x30, 0x70,
  63. 0x13, 0x00, 0xbc, 0x63, 0x11, 0x00, 0x00, 0x1e,
  64. 0x00, 0x00, 0x00, 0xff, 0x00, 0x4c, 0x69, 0x6e,
  65. 0x75, 0x78, 0x20, 0x23, 0x30, 0x0a, 0x20, 0x20,
  66. 0x20, 0x20, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x3b,
  67. 0x3d, 0x3e, 0x40, 0x0b, 0x00, 0x0a, 0x20, 0x20,
  68. 0x20, 0x20, 0x20, 0x20, 0x00, 0x00, 0x00, 0xfc,
  69. 0x00, 0x4c, 0x69, 0x6e, 0x75, 0x78, 0x20, 0x53,
  70. 0x58, 0x47, 0x41, 0x0a, 0x20, 0x20, 0x00, 0xa0,
  71. },
  72. {
  73. 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00,
  74. 0x31, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  75. 0x05, 0x16, 0x01, 0x03, 0x6d, 0x37, 0x29, 0x78,
  76. 0xea, 0x5e, 0xc0, 0xa4, 0x59, 0x4a, 0x98, 0x25,
  77. 0x20, 0x50, 0x54, 0x00, 0x00, 0x00, 0xa9, 0x40,
  78. 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
  79. 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x48, 0x3f,
  80. 0x40, 0x30, 0x62, 0xb0, 0x32, 0x40, 0x40, 0xc0,
  81. 0x13, 0x00, 0x2b, 0xa0, 0x21, 0x00, 0x00, 0x1e,
  82. 0x00, 0x00, 0x00, 0xff, 0x00, 0x4c, 0x69, 0x6e,
  83. 0x75, 0x78, 0x20, 0x23, 0x30, 0x0a, 0x20, 0x20,
  84. 0x20, 0x20, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x3b,
  85. 0x3d, 0x4a, 0x4c, 0x11, 0x00, 0x0a, 0x20, 0x20,
  86. 0x20, 0x20, 0x20, 0x20, 0x00, 0x00, 0x00, 0xfc,
  87. 0x00, 0x4c, 0x69, 0x6e, 0x75, 0x78, 0x20, 0x55,
  88. 0x58, 0x47, 0x41, 0x0a, 0x20, 0x20, 0x00, 0x9d,
  89. },
  90. {
  91. 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00,
  92. 0x31, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  93. 0x05, 0x16, 0x01, 0x03, 0x6d, 0x2b, 0x1b, 0x78,
  94. 0xea, 0x5e, 0xc0, 0xa4, 0x59, 0x4a, 0x98, 0x25,
  95. 0x20, 0x50, 0x54, 0x00, 0x00, 0x00, 0xb3, 0x00,
  96. 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
  97. 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x21, 0x39,
  98. 0x90, 0x30, 0x62, 0x1a, 0x27, 0x40, 0x68, 0xb0,
  99. 0x36, 0x00, 0xb5, 0x11, 0x11, 0x00, 0x00, 0x1e,
  100. 0x00, 0x00, 0x00, 0xff, 0x00, 0x4c, 0x69, 0x6e,
  101. 0x75, 0x78, 0x20, 0x23, 0x30, 0x0a, 0x20, 0x20,
  102. 0x20, 0x20, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x3b,
  103. 0x3d, 0x40, 0x42, 0x0f, 0x00, 0x0a, 0x20, 0x20,
  104. 0x20, 0x20, 0x20, 0x20, 0x00, 0x00, 0x00, 0xfc,
  105. 0x00, 0x4c, 0x69, 0x6e, 0x75, 0x78, 0x20, 0x57,
  106. 0x53, 0x58, 0x47, 0x41, 0x0a, 0x20, 0x00, 0x26,
  107. },
  108. {
  109. 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00,
  110. 0x31, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  111. 0x05, 0x16, 0x01, 0x03, 0x6d, 0x32, 0x1c, 0x78,
  112. 0xea, 0x5e, 0xc0, 0xa4, 0x59, 0x4a, 0x98, 0x25,
  113. 0x20, 0x50, 0x54, 0x00, 0x00, 0x00, 0xd1, 0xc0,
  114. 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
  115. 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x3a,
  116. 0x80, 0x18, 0x71, 0x38, 0x2d, 0x40, 0x58, 0x2c,
  117. 0x45, 0x00, 0xf4, 0x19, 0x11, 0x00, 0x00, 0x1e,
  118. 0x00, 0x00, 0x00, 0xff, 0x00, 0x4c, 0x69, 0x6e,
  119. 0x75, 0x78, 0x20, 0x23, 0x30, 0x0a, 0x20, 0x20,
  120. 0x20, 0x20, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x3b,
  121. 0x3d, 0x42, 0x44, 0x0f, 0x00, 0x0a, 0x20, 0x20,
  122. 0x20, 0x20, 0x20, 0x20, 0x00, 0x00, 0x00, 0xfc,
  123. 0x00, 0x4c, 0x69, 0x6e, 0x75, 0x78, 0x20, 0x46,
  124. 0x48, 0x44, 0x0a, 0x20, 0x20, 0x20, 0x00, 0x05,
  125. },
  126. };
  127. static u8 *edid_load(struct drm_connector *connector, const char *name,
  128. const char *connector_name)
  129. {
  130. const struct firmware *fw;
  131. struct platform_device *pdev;
  132. u8 *fwdata = NULL, *edid, *new_edid;
  133. int fwsize, expected;
  134. int builtin = 0, err = 0;
  135. int i, valid_extensions = 0;
  136. bool print_bad_edid = !connector->bad_edid_counter || (drm_debug & DRM_UT_KMS);
  137. pdev = platform_device_register_simple(connector_name, -1, NULL, 0);
  138. if (IS_ERR(pdev)) {
  139. DRM_ERROR("Failed to register EDID firmware platform device "
  140. "for connector \"%s\"\n", connector_name);
  141. err = -EINVAL;
  142. goto out;
  143. }
  144. err = request_firmware(&fw, name, &pdev->dev);
  145. platform_device_unregister(pdev);
  146. if (err) {
  147. i = 0;
  148. while (i < GENERIC_EDIDS && strcmp(name, generic_edid_name[i]))
  149. i++;
  150. if (i < GENERIC_EDIDS) {
  151. err = 0;
  152. builtin = 1;
  153. fwdata = generic_edid[i];
  154. fwsize = sizeof(generic_edid[i]);
  155. }
  156. }
  157. if (err) {
  158. DRM_ERROR("Requesting EDID firmware \"%s\" failed (err=%d)\n",
  159. name, err);
  160. goto out;
  161. }
  162. if (fwdata == NULL) {
  163. fwdata = (u8 *) fw->data;
  164. fwsize = fw->size;
  165. }
  166. expected = (fwdata[0x7e] + 1) * EDID_LENGTH;
  167. if (expected != fwsize) {
  168. DRM_ERROR("Size of EDID firmware \"%s\" is invalid "
  169. "(expected %d, got %d)\n", name, expected, (int) fwsize);
  170. err = -EINVAL;
  171. goto relfw_out;
  172. }
  173. edid = kmemdup(fwdata, fwsize, GFP_KERNEL);
  174. if (edid == NULL) {
  175. err = -ENOMEM;
  176. goto relfw_out;
  177. }
  178. if (!drm_edid_block_valid(edid, 0, print_bad_edid)) {
  179. connector->bad_edid_counter++;
  180. DRM_ERROR("Base block of EDID firmware \"%s\" is invalid ",
  181. name);
  182. kfree(edid);
  183. err = -EINVAL;
  184. goto relfw_out;
  185. }
  186. for (i = 1; i <= edid[0x7e]; i++) {
  187. if (i != valid_extensions + 1)
  188. memcpy(edid + (valid_extensions + 1) * EDID_LENGTH,
  189. edid + i * EDID_LENGTH, EDID_LENGTH);
  190. if (drm_edid_block_valid(edid + i * EDID_LENGTH, i, print_bad_edid))
  191. valid_extensions++;
  192. }
  193. if (valid_extensions != edid[0x7e]) {
  194. edid[EDID_LENGTH-1] += edid[0x7e] - valid_extensions;
  195. DRM_INFO("Found %d valid extensions instead of %d in EDID data "
  196. "\"%s\" for connector \"%s\"\n", valid_extensions,
  197. edid[0x7e], name, connector_name);
  198. edid[0x7e] = valid_extensions;
  199. new_edid = krealloc(edid, (valid_extensions + 1) * EDID_LENGTH,
  200. GFP_KERNEL);
  201. if (new_edid == NULL) {
  202. err = -ENOMEM;
  203. kfree(edid);
  204. goto relfw_out;
  205. }
  206. edid = new_edid;
  207. }
  208. DRM_INFO("Got %s EDID base block and %d extension%s from "
  209. "\"%s\" for connector \"%s\"\n", builtin ? "built-in" :
  210. "external", valid_extensions, valid_extensions == 1 ? "" : "s",
  211. name, connector_name);
  212. relfw_out:
  213. release_firmware(fw);
  214. out:
  215. if (err)
  216. return ERR_PTR(err);
  217. return edid;
  218. }
  219. int drm_load_edid_firmware(struct drm_connector *connector)
  220. {
  221. const char *connector_name = drm_get_connector_name(connector);
  222. char *edidname = edid_firmware, *last, *colon;
  223. int ret;
  224. struct edid *edid;
  225. if (*edidname == '\0')
  226. return 0;
  227. colon = strchr(edidname, ':');
  228. if (colon != NULL) {
  229. if (strncmp(connector_name, edidname, colon - edidname))
  230. return 0;
  231. edidname = colon + 1;
  232. if (*edidname == '\0')
  233. return 0;
  234. }
  235. last = edidname + strlen(edidname) - 1;
  236. if (*last == '\n')
  237. *last = '\0';
  238. edid = (struct edid *) edid_load(connector, edidname, connector_name);
  239. if (IS_ERR_OR_NULL(edid))
  240. return 0;
  241. drm_mode_connector_update_edid_property(connector, edid);
  242. ret = drm_add_edid_modes(connector, edid);
  243. kfree(edid);
  244. return ret;
  245. }