blob: d1abf4bb7c819ca34426aed485cdf4142f2294eb [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Jesse Barnes723bfd72010-10-07 16:01:13 -07002/*
3 * Intel ACPI functions
4 *
5 * _DSM related code stolen from nouveau_acpi.c.
6 */
7#include <linux/pci.h>
8#include <linux/acpi.h>
David Howells760285e2012-10-02 18:01:07 +01009#include <drm/drmP.h>
Ben Widawskyc43b5632012-04-16 14:07:40 -070010#include "i915_drv.h"
Jesse Barnes723bfd72010-10-07 16:01:13 -070011
12#define INTEL_DSM_REVISION_ID 1 /* For Calpella anyway... */
Jesse Barnes723bfd72010-10-07 16:01:13 -070013#define INTEL_DSM_FN_PLATFORM_MUX_INFO 1 /* No args */
14
15static struct intel_dsm_priv {
16 acpi_handle dhandle;
17} intel_dsm_priv;
18
Andy Shevchenko94116f82017-06-05 19:40:46 +030019static const guid_t intel_dsm_guid =
20 GUID_INIT(0x7ed873d3, 0xc2d0, 0x4e4f,
21 0xa8, 0x54, 0x0f, 0x13, 0x17, 0xb0, 0x1c, 0x2c);
Jesse Barnes723bfd72010-10-07 16:01:13 -070022
Jesse Barnes723bfd72010-10-07 16:01:13 -070023static char *intel_dsm_port_name(u8 id)
24{
25 switch (id) {
26 case 0:
27 return "Reserved";
28 case 1:
29 return "Analog VGA";
30 case 2:
31 return "LVDS";
32 case 3:
33 return "Reserved";
34 case 4:
35 return "HDMI/DVI_B";
36 case 5:
37 return "HDMI/DVI_C";
38 case 6:
39 return "HDMI/DVI_D";
40 case 7:
41 return "DisplayPort_A";
42 case 8:
43 return "DisplayPort_B";
44 case 9:
45 return "DisplayPort_C";
46 case 0xa:
47 return "DisplayPort_D";
48 case 0xb:
49 case 0xc:
50 case 0xd:
51 return "Reserved";
52 case 0xe:
53 return "WiDi";
54 default:
55 return "bad type";
56 }
57}
58
59static char *intel_dsm_mux_type(u8 type)
60{
61 switch (type) {
62 case 0:
63 return "unknown";
64 case 1:
65 return "No MUX, iGPU only";
66 case 2:
67 return "No MUX, dGPU only";
68 case 3:
69 return "MUXed between iGPU and dGPU";
70 default:
71 return "bad type";
72 }
73}
74
75static void intel_dsm_platform_mux_info(void)
76{
Jiang Liud5c3d792013-12-19 20:38:20 +080077 int i;
78 union acpi_object *pkg, *connector_count;
Jesse Barnes723bfd72010-10-07 16:01:13 -070079
Andy Shevchenko94116f82017-06-05 19:40:46 +030080 pkg = acpi_evaluate_dsm_typed(intel_dsm_priv.dhandle, &intel_dsm_guid,
Jiang Liud5c3d792013-12-19 20:38:20 +080081 INTEL_DSM_REVISION_ID, INTEL_DSM_FN_PLATFORM_MUX_INFO,
82 NULL, ACPI_TYPE_PACKAGE);
83 if (!pkg) {
84 DRM_DEBUG_DRIVER("failed to evaluate _DSM\n");
85 return;
Jesse Barnes723bfd72010-10-07 16:01:13 -070086 }
87
Jiang Liud5c3d792013-12-19 20:38:20 +080088 connector_count = &pkg->package.elements[0];
89 DRM_DEBUG_DRIVER("MUX info connectors: %lld\n",
90 (unsigned long long)connector_count->integer.value);
91 for (i = 1; i < pkg->package.count; i++) {
92 union acpi_object *obj = &pkg->package.elements[i];
93 union acpi_object *connector_id = &obj->package.elements[0];
94 union acpi_object *info = &obj->package.elements[1];
95 DRM_DEBUG_DRIVER("Connector id: 0x%016llx\n",
96 (unsigned long long)connector_id->integer.value);
97 DRM_DEBUG_DRIVER(" port id: %s\n",
98 intel_dsm_port_name(info->buffer.pointer[0]));
99 DRM_DEBUG_DRIVER(" display mux info: %s\n",
100 intel_dsm_mux_type(info->buffer.pointer[1]));
101 DRM_DEBUG_DRIVER(" aux/dc mux info: %s\n",
102 intel_dsm_mux_type(info->buffer.pointer[2]));
103 DRM_DEBUG_DRIVER(" hpd mux info: %s\n",
104 intel_dsm_mux_type(info->buffer.pointer[3]));
Jesse Barnes723bfd72010-10-07 16:01:13 -0700105 }
106
Jiang Liud5c3d792013-12-19 20:38:20 +0800107 ACPI_FREE(pkg);
Jesse Barnes723bfd72010-10-07 16:01:13 -0700108}
109
Jesse Barnes723bfd72010-10-07 16:01:13 -0700110static bool intel_dsm_pci_probe(struct pci_dev *pdev)
111{
Zhang Rui2a3ca142013-09-03 08:31:59 +0800112 acpi_handle dhandle;
Jesse Barnes723bfd72010-10-07 16:01:13 -0700113
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +0100114 dhandle = ACPI_HANDLE(&pdev->dev);
Jesse Barnes723bfd72010-10-07 16:01:13 -0700115 if (!dhandle)
116 return false;
117
Andy Shevchenko94116f82017-06-05 19:40:46 +0300118 if (!acpi_check_dsm(dhandle, &intel_dsm_guid, INTEL_DSM_REVISION_ID,
Jiang Liud5c3d792013-12-19 20:38:20 +0800119 1 << INTEL_DSM_FN_PLATFORM_MUX_INFO)) {
Jesse Barnes723bfd72010-10-07 16:01:13 -0700120 DRM_DEBUG_KMS("no _DSM method for intel device\n");
121 return false;
122 }
123
Jesse Barnes723bfd72010-10-07 16:01:13 -0700124 intel_dsm_priv.dhandle = dhandle;
Jesse Barnes723bfd72010-10-07 16:01:13 -0700125 intel_dsm_platform_mux_info();
Jiang Liud5c3d792013-12-19 20:38:20 +0800126
Jesse Barnes723bfd72010-10-07 16:01:13 -0700127 return true;
128}
129
130static bool intel_dsm_detect(void)
131{
132 char acpi_method_name[255] = { 0 };
133 struct acpi_buffer buffer = {sizeof(acpi_method_name), acpi_method_name};
134 struct pci_dev *pdev = NULL;
135 bool has_dsm = false;
136 int vga_count = 0;
137
138 while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, pdev)) != NULL) {
139 vga_count++;
140 has_dsm |= intel_dsm_pci_probe(pdev);
141 }
142
143 if (vga_count == 2 && has_dsm) {
144 acpi_get_name(intel_dsm_priv.dhandle, ACPI_FULL_PATHNAME, &buffer);
Lukas Wunner5389e912015-09-04 21:06:15 +0200145 DRM_DEBUG_DRIVER("vga_switcheroo: detected DSM switching method %s handle\n",
Jesse Barnes723bfd72010-10-07 16:01:13 -0700146 acpi_method_name);
147 return true;
148 }
149
150 return false;
151}
152
153void intel_register_dsm_handler(void)
154{
155 if (!intel_dsm_detect())
156 return;
Jesse Barnes723bfd72010-10-07 16:01:13 -0700157}
158
159void intel_unregister_dsm_handler(void)
160{
Jesse Barnes723bfd72010-10-07 16:01:13 -0700161}