intel_acpi.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*
  2. * Intel ACPI functions
  3. *
  4. * _DSM related code stolen from nouveau_acpi.c.
  5. */
  6. #include <linux/pci.h>
  7. #include <linux/acpi.h>
  8. #include <drm/drmP.h>
  9. #include "i915_drv.h"
  10. #define INTEL_DSM_REVISION_ID 1 /* For Calpella anyway... */
  11. #define INTEL_DSM_FN_PLATFORM_MUX_INFO 1 /* No args */
  12. static struct intel_dsm_priv {
  13. acpi_handle dhandle;
  14. } intel_dsm_priv;
  15. static const guid_t intel_dsm_guid =
  16. GUID_INIT(0x7ed873d3, 0xc2d0, 0x4e4f,
  17. 0xa8, 0x54, 0x0f, 0x13, 0x17, 0xb0, 0x1c, 0x2c);
  18. static char *intel_dsm_port_name(u8 id)
  19. {
  20. switch (id) {
  21. case 0:
  22. return "Reserved";
  23. case 1:
  24. return "Analog VGA";
  25. case 2:
  26. return "LVDS";
  27. case 3:
  28. return "Reserved";
  29. case 4:
  30. return "HDMI/DVI_B";
  31. case 5:
  32. return "HDMI/DVI_C";
  33. case 6:
  34. return "HDMI/DVI_D";
  35. case 7:
  36. return "DisplayPort_A";
  37. case 8:
  38. return "DisplayPort_B";
  39. case 9:
  40. return "DisplayPort_C";
  41. case 0xa:
  42. return "DisplayPort_D";
  43. case 0xb:
  44. case 0xc:
  45. case 0xd:
  46. return "Reserved";
  47. case 0xe:
  48. return "WiDi";
  49. default:
  50. return "bad type";
  51. }
  52. }
  53. static char *intel_dsm_mux_type(u8 type)
  54. {
  55. switch (type) {
  56. case 0:
  57. return "unknown";
  58. case 1:
  59. return "No MUX, iGPU only";
  60. case 2:
  61. return "No MUX, dGPU only";
  62. case 3:
  63. return "MUXed between iGPU and dGPU";
  64. default:
  65. return "bad type";
  66. }
  67. }
  68. static void intel_dsm_platform_mux_info(void)
  69. {
  70. int i;
  71. union acpi_object *pkg, *connector_count;
  72. pkg = acpi_evaluate_dsm_typed(intel_dsm_priv.dhandle, &intel_dsm_guid,
  73. INTEL_DSM_REVISION_ID, INTEL_DSM_FN_PLATFORM_MUX_INFO,
  74. NULL, ACPI_TYPE_PACKAGE);
  75. if (!pkg) {
  76. DRM_DEBUG_DRIVER("failed to evaluate _DSM\n");
  77. return;
  78. }
  79. connector_count = &pkg->package.elements[0];
  80. DRM_DEBUG_DRIVER("MUX info connectors: %lld\n",
  81. (unsigned long long)connector_count->integer.value);
  82. for (i = 1; i < pkg->package.count; i++) {
  83. union acpi_object *obj = &pkg->package.elements[i];
  84. union acpi_object *connector_id = &obj->package.elements[0];
  85. union acpi_object *info = &obj->package.elements[1];
  86. DRM_DEBUG_DRIVER("Connector id: 0x%016llx\n",
  87. (unsigned long long)connector_id->integer.value);
  88. DRM_DEBUG_DRIVER(" port id: %s\n",
  89. intel_dsm_port_name(info->buffer.pointer[0]));
  90. DRM_DEBUG_DRIVER(" display mux info: %s\n",
  91. intel_dsm_mux_type(info->buffer.pointer[1]));
  92. DRM_DEBUG_DRIVER(" aux/dc mux info: %s\n",
  93. intel_dsm_mux_type(info->buffer.pointer[2]));
  94. DRM_DEBUG_DRIVER(" hpd mux info: %s\n",
  95. intel_dsm_mux_type(info->buffer.pointer[3]));
  96. }
  97. ACPI_FREE(pkg);
  98. }
  99. static bool intel_dsm_pci_probe(struct pci_dev *pdev)
  100. {
  101. acpi_handle dhandle;
  102. dhandle = ACPI_HANDLE(&pdev->dev);
  103. if (!dhandle)
  104. return false;
  105. if (!acpi_check_dsm(dhandle, &intel_dsm_guid, INTEL_DSM_REVISION_ID,
  106. 1 << INTEL_DSM_FN_PLATFORM_MUX_INFO)) {
  107. DRM_DEBUG_KMS("no _DSM method for intel device\n");
  108. return false;
  109. }
  110. intel_dsm_priv.dhandle = dhandle;
  111. intel_dsm_platform_mux_info();
  112. return true;
  113. }
  114. static bool intel_dsm_detect(void)
  115. {
  116. char acpi_method_name[255] = { 0 };
  117. struct acpi_buffer buffer = {sizeof(acpi_method_name), acpi_method_name};
  118. struct pci_dev *pdev = NULL;
  119. bool has_dsm = false;
  120. int vga_count = 0;
  121. while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, pdev)) != NULL) {
  122. vga_count++;
  123. has_dsm |= intel_dsm_pci_probe(pdev);
  124. }
  125. if (vga_count == 2 && has_dsm) {
  126. acpi_get_name(intel_dsm_priv.dhandle, ACPI_FULL_PATHNAME, &buffer);
  127. DRM_DEBUG_DRIVER("vga_switcheroo: detected DSM switching method %s handle\n",
  128. acpi_method_name);
  129. return true;
  130. }
  131. return false;
  132. }
  133. void intel_register_dsm_handler(void)
  134. {
  135. if (!intel_dsm_detect())
  136. return;
  137. }
  138. void intel_unregister_dsm_handler(void)
  139. {
  140. }