aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/intel_acpi.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/i915/intel_acpi.c')
-rw-r--r--drivers/gpu/drm/i915/intel_acpi.c144
1 files changed, 30 insertions, 114 deletions
diff --git a/drivers/gpu/drm/i915/intel_acpi.c b/drivers/gpu/drm/i915/intel_acpi.c
index 5325b25ccbb4..d96eee1ae9c5 100644
--- a/drivers/gpu/drm/i915/intel_acpi.c
+++ b/drivers/gpu/drm/i915/intel_acpi.c
@@ -10,8 +10,6 @@
10#include "i915_drv.h" 10#include "i915_drv.h"
11 11
12#define INTEL_DSM_REVISION_ID 1 /* For Calpella anyway... */ 12#define INTEL_DSM_REVISION_ID 1 /* For Calpella anyway... */
13
14#define INTEL_DSM_FN_SUPPORTED_FUNCTIONS 0 /* No args */
15#define INTEL_DSM_FN_PLATFORM_MUX_INFO 1 /* No args */ 13#define INTEL_DSM_FN_PLATFORM_MUX_INFO 1 /* No args */
16 14
17static struct intel_dsm_priv { 15static struct intel_dsm_priv {
@@ -26,61 +24,6 @@ static const u8 intel_dsm_guid[] = {
26 0x0f, 0x13, 0x17, 0xb0, 0x1c, 0x2c 24 0x0f, 0x13, 0x17, 0xb0, 0x1c, 0x2c
27}; 25};
28 26
29static int intel_dsm(acpi_handle handle, int func)
30{
31 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
32 struct acpi_object_list input;
33 union acpi_object params[4];
34 union acpi_object *obj;
35 u32 result;
36 int ret = 0;
37
38 input.count = 4;
39 input.pointer = params;
40 params[0].type = ACPI_TYPE_BUFFER;
41 params[0].buffer.length = sizeof(intel_dsm_guid);
42 params[0].buffer.pointer = (char *)intel_dsm_guid;
43 params[1].type = ACPI_TYPE_INTEGER;
44 params[1].integer.value = INTEL_DSM_REVISION_ID;
45 params[2].type = ACPI_TYPE_INTEGER;
46 params[2].integer.value = func;
47 params[3].type = ACPI_TYPE_PACKAGE;
48 params[3].package.count = 0;
49 params[3].package.elements = NULL;
50
51 ret = acpi_evaluate_object(handle, "_DSM", &input, &output);
52 if (ret) {
53 DRM_DEBUG_DRIVER("failed to evaluate _DSM: %d\n", ret);
54 return ret;
55 }
56
57 obj = (union acpi_object *)output.pointer;
58
59 result = 0;
60 switch (obj->type) {
61 case ACPI_TYPE_INTEGER:
62 result = obj->integer.value;
63 break;
64
65 case ACPI_TYPE_BUFFER:
66 if (obj->buffer.length == 4) {
67 result = (obj->buffer.pointer[0] |
68 (obj->buffer.pointer[1] << 8) |
69 (obj->buffer.pointer[2] << 16) |
70 (obj->buffer.pointer[3] << 24));
71 break;
72 }
73 default:
74 ret = -EINVAL;
75 break;
76 }
77 if (result == 0x80000002)
78 ret = -ENODEV;
79
80 kfree(output.pointer);
81 return ret;
82}
83
84static char *intel_dsm_port_name(u8 id) 27static char *intel_dsm_port_name(u8 id)
85{ 28{
86 switch (id) { 29 switch (id) {
@@ -135,83 +78,56 @@ static char *intel_dsm_mux_type(u8 type)
135 78
136static void intel_dsm_platform_mux_info(void) 79static void intel_dsm_platform_mux_info(void)
137{ 80{
138 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL }; 81 int i;
139 struct acpi_object_list input; 82 union acpi_object *pkg, *connector_count;
140 union acpi_object params[4]; 83
141 union acpi_object *pkg; 84 pkg = acpi_evaluate_dsm_typed(intel_dsm_priv.dhandle, intel_dsm_guid,
142 int i, ret; 85 INTEL_DSM_REVISION_ID, INTEL_DSM_FN_PLATFORM_MUX_INFO,
143 86 NULL, ACPI_TYPE_PACKAGE);
144 input.count = 4; 87 if (!pkg) {
145 input.pointer = params; 88 DRM_DEBUG_DRIVER("failed to evaluate _DSM\n");
146 params[0].type = ACPI_TYPE_BUFFER; 89 return;
147 params[0].buffer.length = sizeof(intel_dsm_guid);
148 params[0].buffer.pointer = (char *)intel_dsm_guid;
149 params[1].type = ACPI_TYPE_INTEGER;
150 params[1].integer.value = INTEL_DSM_REVISION_ID;
151 params[2].type = ACPI_TYPE_INTEGER;
152 params[2].integer.value = INTEL_DSM_FN_PLATFORM_MUX_INFO;
153 params[3].type = ACPI_TYPE_PACKAGE;
154 params[3].package.count = 0;
155 params[3].package.elements = NULL;
156
157 ret = acpi_evaluate_object(intel_dsm_priv.dhandle, "_DSM", &input,
158 &output);
159 if (ret) {
160 DRM_DEBUG_DRIVER("failed to evaluate _DSM: %d\n", ret);
161 goto out;
162 } 90 }
163 91
164 pkg = (union acpi_object *)output.pointer; 92 connector_count = &pkg->package.elements[0];
165 93 DRM_DEBUG_DRIVER("MUX info connectors: %lld\n",
166 if (pkg->type == ACPI_TYPE_PACKAGE) { 94 (unsigned long long)connector_count->integer.value);
167 union acpi_object *connector_count = &pkg->package.elements[0]; 95 for (i = 1; i < pkg->package.count; i++) {
168 DRM_DEBUG_DRIVER("MUX info connectors: %lld\n", 96 union acpi_object *obj = &pkg->package.elements[i];
169 (unsigned long long)connector_count->integer.value); 97 union acpi_object *connector_id = &obj->package.elements[0];
170 for (i = 1; i < pkg->package.count; i++) { 98 union acpi_object *info = &obj->package.elements[1];
171 union acpi_object *obj = &pkg->package.elements[i]; 99 DRM_DEBUG_DRIVER("Connector id: 0x%016llx\n",
172 union acpi_object *connector_id = 100 (unsigned long long)connector_id->integer.value);
173 &obj->package.elements[0]; 101 DRM_DEBUG_DRIVER(" port id: %s\n",
174 union acpi_object *info = &obj->package.elements[1]; 102 intel_dsm_port_name(info->buffer.pointer[0]));
175 DRM_DEBUG_DRIVER("Connector id: 0x%016llx\n", 103 DRM_DEBUG_DRIVER(" display mux info: %s\n",
176 (unsigned long long)connector_id->integer.value); 104 intel_dsm_mux_type(info->buffer.pointer[1]));
177 DRM_DEBUG_DRIVER(" port id: %s\n", 105 DRM_DEBUG_DRIVER(" aux/dc mux info: %s\n",
178 intel_dsm_port_name(info->buffer.pointer[0])); 106 intel_dsm_mux_type(info->buffer.pointer[2]));
179 DRM_DEBUG_DRIVER(" display mux info: %s\n", 107 DRM_DEBUG_DRIVER(" hpd mux info: %s\n",
180 intel_dsm_mux_type(info->buffer.pointer[1])); 108 intel_dsm_mux_type(info->buffer.pointer[3]));
181 DRM_DEBUG_DRIVER(" aux/dc mux info: %s\n",
182 intel_dsm_mux_type(info->buffer.pointer[2]));
183 DRM_DEBUG_DRIVER(" hpd mux info: %s\n",
184 intel_dsm_mux_type(info->buffer.pointer[3]));
185 }
186 } 109 }
187 110
188out: 111 ACPI_FREE(pkg);
189 kfree(output.pointer);
190} 112}
191 113
192static bool intel_dsm_pci_probe(struct pci_dev *pdev) 114static bool intel_dsm_pci_probe(struct pci_dev *pdev)
193{ 115{
194 acpi_handle dhandle; 116 acpi_handle dhandle;
195 int ret;
196 117
197 dhandle = ACPI_HANDLE(&pdev->dev); 118 dhandle = ACPI_HANDLE(&pdev->dev);
198 if (!dhandle) 119 if (!dhandle)
199 return false; 120 return false;
200 121
201 if (!acpi_has_method(dhandle, "_DSM")) { 122 if (!acpi_check_dsm(dhandle, intel_dsm_guid, INTEL_DSM_REVISION_ID,
123 1 << INTEL_DSM_FN_PLATFORM_MUX_INFO)) {
202 DRM_DEBUG_KMS("no _DSM method for intel device\n"); 124 DRM_DEBUG_KMS("no _DSM method for intel device\n");
203 return false; 125 return false;
204 } 126 }
205 127
206 ret = intel_dsm(dhandle, INTEL_DSM_FN_SUPPORTED_FUNCTIONS);
207 if (ret < 0) {
208 DRM_DEBUG_KMS("failed to get supported _DSM functions\n");
209 return false;
210 }
211
212 intel_dsm_priv.dhandle = dhandle; 128 intel_dsm_priv.dhandle = dhandle;
213
214 intel_dsm_platform_mux_info(); 129 intel_dsm_platform_mux_info();
130
215 return true; 131 return true;
216} 132}
217 133