]> Pileus Git - ~andy/linux/blob - drivers/gpu/drm/nouveau/nouveau_acpi.c
drm/nouveau: port all engines to new engine module format
[~andy/linux] / drivers / gpu / drm / nouveau / nouveau_acpi.c
1 #include <linux/pci.h>
2 #include <linux/acpi.h>
3 #include <linux/slab.h>
4 #include <acpi/acpi_drivers.h>
5 #include <acpi/acpi_bus.h>
6 #include <acpi/video.h>
7 #include <acpi/acpi.h>
8 #include <linux/mxm-wmi.h>
9
10 #include "drmP.h"
11 #include "drm.h"
12 #include "drm_sarea.h"
13 #include "drm_crtc_helper.h"
14 #include "nouveau_drv.h"
15 #include <nouveau_drm.h>
16 #include "nouveau_connector.h"
17
18 #include <linux/vga_switcheroo.h>
19
20 #define NOUVEAU_DSM_LED 0x02
21 #define NOUVEAU_DSM_LED_STATE 0x00
22 #define NOUVEAU_DSM_LED_OFF 0x10
23 #define NOUVEAU_DSM_LED_STAMINA 0x11
24 #define NOUVEAU_DSM_LED_SPEED 0x12
25
26 #define NOUVEAU_DSM_POWER 0x03
27 #define NOUVEAU_DSM_POWER_STATE 0x00
28 #define NOUVEAU_DSM_POWER_SPEED 0x01
29 #define NOUVEAU_DSM_POWER_STAMINA 0x02
30
31 #define NOUVEAU_DSM_OPTIMUS_FN 0x1A
32 #define NOUVEAU_DSM_OPTIMUS_ARGS 0x03000001
33
34 static struct nouveau_dsm_priv {
35         bool dsm_detected;
36         bool optimus_detected;
37         acpi_handle dhandle;
38         acpi_handle rom_handle;
39 } nouveau_dsm_priv;
40
41 #define NOUVEAU_DSM_HAS_MUX 0x1
42 #define NOUVEAU_DSM_HAS_OPT 0x2
43
44 static const char nouveau_dsm_muid[] = {
45         0xA0, 0xA0, 0x95, 0x9D, 0x60, 0x00, 0x48, 0x4D,
46         0xB3, 0x4D, 0x7E, 0x5F, 0xEA, 0x12, 0x9F, 0xD4,
47 };
48
49 static const char nouveau_op_dsm_muid[] = {
50         0xF8, 0xD8, 0x86, 0xA4, 0xDA, 0x0B, 0x1B, 0x47,
51         0xA7, 0x2B, 0x60, 0x42, 0xA6, 0xB5, 0xBE, 0xE0,
52 };
53
54 static int nouveau_optimus_dsm(acpi_handle handle, int func, int arg, uint32_t *result)
55 {
56         struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
57         struct acpi_object_list input;
58         union acpi_object params[4];
59         union acpi_object *obj;
60         int i, err;
61         char args_buff[4];
62
63         input.count = 4;
64         input.pointer = params;
65         params[0].type = ACPI_TYPE_BUFFER;
66         params[0].buffer.length = sizeof(nouveau_op_dsm_muid);
67         params[0].buffer.pointer = (char *)nouveau_op_dsm_muid;
68         params[1].type = ACPI_TYPE_INTEGER;
69         params[1].integer.value = 0x00000100;
70         params[2].type = ACPI_TYPE_INTEGER;
71         params[2].integer.value = func;
72         params[3].type = ACPI_TYPE_BUFFER;
73         params[3].buffer.length = 4;
74         /* ACPI is little endian, AABBCCDD becomes {DD,CC,BB,AA} */
75         for (i = 0; i < 4; i++)
76                 args_buff[i] = (arg >> i * 8) & 0xFF;
77         params[3].buffer.pointer = args_buff;
78
79         err = acpi_evaluate_object(handle, "_DSM", &input, &output);
80         if (err) {
81                 printk(KERN_INFO "failed to evaluate _DSM: %d\n", err);
82                 return err;
83         }
84
85         obj = (union acpi_object *)output.pointer;
86
87         if (obj->type == ACPI_TYPE_INTEGER)
88                 if (obj->integer.value == 0x80000002) {
89                         return -ENODEV;
90                 }
91
92         if (obj->type == ACPI_TYPE_BUFFER) {
93                 if (obj->buffer.length == 4 && result) {
94                         *result = 0;
95                         *result |= obj->buffer.pointer[0];
96                         *result |= (obj->buffer.pointer[1] << 8);
97                         *result |= (obj->buffer.pointer[2] << 16);
98                         *result |= (obj->buffer.pointer[3] << 24);
99                 }
100         }
101
102         kfree(output.pointer);
103         return 0;
104 }
105
106 static int nouveau_dsm(acpi_handle handle, int func, int arg, uint32_t *result)
107 {
108         struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
109         struct acpi_object_list input;
110         union acpi_object params[4];
111         union acpi_object *obj;
112         int err;
113
114         input.count = 4;
115         input.pointer = params;
116         params[0].type = ACPI_TYPE_BUFFER;
117         params[0].buffer.length = sizeof(nouveau_dsm_muid);
118         params[0].buffer.pointer = (char *)nouveau_dsm_muid;
119         params[1].type = ACPI_TYPE_INTEGER;
120         params[1].integer.value = 0x00000102;
121         params[2].type = ACPI_TYPE_INTEGER;
122         params[2].integer.value = func;
123         params[3].type = ACPI_TYPE_INTEGER;
124         params[3].integer.value = arg;
125
126         err = acpi_evaluate_object(handle, "_DSM", &input, &output);
127         if (err) {
128                 printk(KERN_INFO "failed to evaluate _DSM: %d\n", err);
129                 return err;
130         }
131
132         obj = (union acpi_object *)output.pointer;
133
134         if (obj->type == ACPI_TYPE_INTEGER)
135                 if (obj->integer.value == 0x80000002)
136                         return -ENODEV;
137
138         if (obj->type == ACPI_TYPE_BUFFER) {
139                 if (obj->buffer.length == 4 && result) {
140                         *result = 0;
141                         *result |= obj->buffer.pointer[0];
142                         *result |= (obj->buffer.pointer[1] << 8);
143                         *result |= (obj->buffer.pointer[2] << 16);
144                         *result |= (obj->buffer.pointer[3] << 24);
145                 }
146         }
147
148         kfree(output.pointer);
149         return 0;
150 }
151
152 /* Returns 1 if a DSM function is usable and 0 otherwise */
153 static int nouveau_test_dsm(acpi_handle test_handle,
154         int (*dsm_func)(acpi_handle, int, int, uint32_t *),
155         int sfnc)
156 {
157         u32 result = 0;
158
159         /* Function 0 returns a Buffer containing available functions. The args
160          * parameter is ignored for function 0, so just put 0 in it */
161         if (dsm_func(test_handle, 0, 0, &result))
162                 return 0;
163
164         /* ACPI Spec v4 9.14.1: if bit 0 is zero, no function is supported. If
165          * the n-th bit is enabled, function n is supported */
166         return result & 1 && result & (1 << sfnc);
167 }
168
169 static int nouveau_dsm_switch_mux(acpi_handle handle, int mux_id)
170 {
171         mxm_wmi_call_mxmx(mux_id == NOUVEAU_DSM_LED_STAMINA ? MXM_MXDS_ADAPTER_IGD : MXM_MXDS_ADAPTER_0);
172         mxm_wmi_call_mxds(mux_id == NOUVEAU_DSM_LED_STAMINA ? MXM_MXDS_ADAPTER_IGD : MXM_MXDS_ADAPTER_0);
173         return nouveau_dsm(handle, NOUVEAU_DSM_LED, mux_id, NULL);
174 }
175
176 static int nouveau_dsm_set_discrete_state(acpi_handle handle, enum vga_switcheroo_state state)
177 {
178         int arg;
179         if (state == VGA_SWITCHEROO_ON)
180                 arg = NOUVEAU_DSM_POWER_SPEED;
181         else
182                 arg = NOUVEAU_DSM_POWER_STAMINA;
183         nouveau_dsm(handle, NOUVEAU_DSM_POWER, arg, NULL);
184         return 0;
185 }
186
187 static int nouveau_dsm_switchto(enum vga_switcheroo_client_id id)
188 {
189         /* perhaps the _DSM functions are mutually exclusive, but prepare for
190          * the future */
191         if (!nouveau_dsm_priv.dsm_detected && nouveau_dsm_priv.optimus_detected)
192                 return 0;
193         if (id == VGA_SWITCHEROO_IGD)
194                 return nouveau_dsm_switch_mux(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_LED_STAMINA);
195         else
196                 return nouveau_dsm_switch_mux(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_LED_SPEED);
197 }
198
199 static int nouveau_dsm_power_state(enum vga_switcheroo_client_id id,
200                                    enum vga_switcheroo_state state)
201 {
202         if (id == VGA_SWITCHEROO_IGD)
203                 return 0;
204
205         /* Optimus laptops have the card already disabled in
206          * nouveau_switcheroo_set_state */
207         if (!nouveau_dsm_priv.dsm_detected && nouveau_dsm_priv.optimus_detected)
208                 return 0;
209
210         return nouveau_dsm_set_discrete_state(nouveau_dsm_priv.dhandle, state);
211 }
212
213 static int nouveau_dsm_get_client_id(struct pci_dev *pdev)
214 {
215         /* easy option one - intel vendor ID means Integrated */
216         if (pdev->vendor == PCI_VENDOR_ID_INTEL)
217                 return VGA_SWITCHEROO_IGD;
218
219         /* is this device on Bus 0? - this may need improving */
220         if (pdev->bus->number == 0)
221                 return VGA_SWITCHEROO_IGD;
222
223         return VGA_SWITCHEROO_DIS;
224 }
225
226 static struct vga_switcheroo_handler nouveau_dsm_handler = {
227         .switchto = nouveau_dsm_switchto,
228         .power_state = nouveau_dsm_power_state,
229         .get_client_id = nouveau_dsm_get_client_id,
230 };
231
232 static int nouveau_dsm_pci_probe(struct pci_dev *pdev)
233 {
234         acpi_handle dhandle, nvidia_handle;
235         acpi_status status;
236         int retval = 0;
237
238         dhandle = DEVICE_ACPI_HANDLE(&pdev->dev);
239         if (!dhandle)
240                 return false;
241
242         status = acpi_get_handle(dhandle, "_DSM", &nvidia_handle);
243         if (ACPI_FAILURE(status)) {
244                 return false;
245         }
246
247         if (nouveau_test_dsm(dhandle, nouveau_dsm, NOUVEAU_DSM_POWER))
248                 retval |= NOUVEAU_DSM_HAS_MUX;
249
250         if (nouveau_test_dsm(dhandle, nouveau_optimus_dsm,
251                 NOUVEAU_DSM_OPTIMUS_FN))
252                 retval |= NOUVEAU_DSM_HAS_OPT;
253
254         if (retval)
255                 nouveau_dsm_priv.dhandle = dhandle;
256
257         return retval;
258 }
259
260 static bool nouveau_dsm_detect(void)
261 {
262         char acpi_method_name[255] = { 0 };
263         struct acpi_buffer buffer = {sizeof(acpi_method_name), acpi_method_name};
264         struct pci_dev *pdev = NULL;
265         int has_dsm = 0;
266         int has_optimus = 0;
267         int vga_count = 0;
268         bool guid_valid;
269         int retval;
270         bool ret = false;
271
272         /* lookup the MXM GUID */
273         guid_valid = mxm_wmi_supported();
274
275         if (guid_valid)
276                 printk("MXM: GUID detected in BIOS\n");
277
278         /* now do DSM detection */
279         while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, pdev)) != NULL) {
280                 vga_count++;
281
282                 retval = nouveau_dsm_pci_probe(pdev);
283                 if (retval & NOUVEAU_DSM_HAS_MUX)
284                         has_dsm |= 1;
285                 if (retval & NOUVEAU_DSM_HAS_OPT)
286                         has_optimus = 1;
287         }
288
289         if (vga_count == 2 && has_dsm && guid_valid) {
290                 acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME,
291                         &buffer);
292                 printk(KERN_INFO "VGA switcheroo: detected DSM switching method %s handle\n",
293                         acpi_method_name);
294                 nouveau_dsm_priv.dsm_detected = true;
295                 ret = true;
296         }
297
298         if (has_optimus == 1) {
299                 acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME,
300                         &buffer);
301                 printk(KERN_INFO "VGA switcheroo: detected Optimus DSM method %s handle\n",
302                         acpi_method_name);
303                 nouveau_dsm_priv.optimus_detected = true;
304                 ret = true;
305         }
306
307         return ret;
308 }
309
310 void nouveau_register_dsm_handler(void)
311 {
312         bool r;
313
314         r = nouveau_dsm_detect();
315         if (!r)
316                 return;
317
318         vga_switcheroo_register_handler(&nouveau_dsm_handler);
319 }
320
321 /* Must be called for Optimus models before the card can be turned off */
322 void nouveau_switcheroo_optimus_dsm(void)
323 {
324         u32 result = 0;
325         if (!nouveau_dsm_priv.optimus_detected)
326                 return;
327
328         nouveau_optimus_dsm(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_OPTIMUS_FN,
329                 NOUVEAU_DSM_OPTIMUS_ARGS, &result);
330 }
331
332 void nouveau_unregister_dsm_handler(void)
333 {
334         if (nouveau_dsm_priv.optimus_detected || nouveau_dsm_priv.dsm_detected)
335                 vga_switcheroo_unregister_handler();
336 }
337
338 /* retrieve the ROM in 4k blocks */
339 static int nouveau_rom_call(acpi_handle rom_handle, uint8_t *bios,
340                             int offset, int len)
341 {
342         acpi_status status;
343         union acpi_object rom_arg_elements[2], *obj;
344         struct acpi_object_list rom_arg;
345         struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL};
346
347         rom_arg.count = 2;
348         rom_arg.pointer = &rom_arg_elements[0];
349
350         rom_arg_elements[0].type = ACPI_TYPE_INTEGER;
351         rom_arg_elements[0].integer.value = offset;
352
353         rom_arg_elements[1].type = ACPI_TYPE_INTEGER;
354         rom_arg_elements[1].integer.value = len;
355
356         status = acpi_evaluate_object(rom_handle, NULL, &rom_arg, &buffer);
357         if (ACPI_FAILURE(status)) {
358                 printk(KERN_INFO "failed to evaluate ROM got %s\n", acpi_format_exception(status));
359                 return -ENODEV;
360         }
361         obj = (union acpi_object *)buffer.pointer;
362         memcpy(bios+offset, obj->buffer.pointer, len);
363         kfree(buffer.pointer);
364         return len;
365 }
366
367 bool nouveau_acpi_rom_supported(struct pci_dev *pdev)
368 {
369         acpi_status status;
370         acpi_handle dhandle, rom_handle;
371
372         if (!nouveau_dsm_priv.dsm_detected && !nouveau_dsm_priv.optimus_detected)
373                 return false;
374
375         dhandle = DEVICE_ACPI_HANDLE(&pdev->dev);
376         if (!dhandle)
377                 return false;
378
379         status = acpi_get_handle(dhandle, "_ROM", &rom_handle);
380         if (ACPI_FAILURE(status))
381                 return false;
382
383         nouveau_dsm_priv.rom_handle = rom_handle;
384         return true;
385 }
386
387 int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len)
388 {
389         return nouveau_rom_call(nouveau_dsm_priv.rom_handle, bios, offset, len);
390 }
391
392 int
393 nouveau_acpi_edid(struct drm_device *dev, struct drm_connector *connector)
394 {
395         struct nouveau_connector *nv_connector = nouveau_connector(connector);
396         struct acpi_device *acpidev;
397         acpi_handle handle;
398         int type, ret;
399         void *edid;
400
401         switch (connector->connector_type) {
402         case DRM_MODE_CONNECTOR_LVDS:
403         case DRM_MODE_CONNECTOR_eDP:
404                 type = ACPI_VIDEO_DISPLAY_LCD;
405                 break;
406         default:
407                 return -EINVAL;
408         }
409
410         handle = DEVICE_ACPI_HANDLE(&dev->pdev->dev);
411         if (!handle)
412                 return -ENODEV;
413
414         ret = acpi_bus_get_device(handle, &acpidev);
415         if (ret)
416                 return -ENODEV;
417
418         ret = acpi_video_get_edid(acpidev, type, -1, &edid);
419         if (ret < 0)
420                 return ret;
421
422         nv_connector->edid = kmemdup(edid, EDID_LENGTH, GFP_KERNEL);
423         return 0;
424 }