blob: 96756d0d641129ebd495e641da2d4454ce5fda0d [file] [log] [blame]
Ben Skeggs6ee73862009-12-11 19:24:15 +10001#include <linux/pci.h>
2#include <linux/acpi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09003#include <linux/slab.h>
Ben Skeggs6ee73862009-12-11 19:24:15 +10004#include <acpi/acpi_drivers.h>
5#include <acpi/acpi_bus.h>
Ben Skeggsa6ed76d2010-07-12 15:33:07 +10006#include <acpi/video.h>
Dave Airlie81161882010-12-06 12:57:45 +10007#include <acpi/acpi.h>
8#include <linux/mxm-wmi.h>
Ben Skeggs6ee73862009-12-11 19:24:15 +10009
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 "nv50_display.h"
Ben Skeggsa6ed76d2010-07-12 15:33:07 +100017#include "nouveau_connector.h"
Ben Skeggs6ee73862009-12-11 19:24:15 +100018
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100019#include <linux/vga_switcheroo.h>
20
Ben Skeggs6ee73862009-12-11 19:24:15 +100021#define NOUVEAU_DSM_LED 0x02
22#define NOUVEAU_DSM_LED_STATE 0x00
23#define NOUVEAU_DSM_LED_OFF 0x10
24#define NOUVEAU_DSM_LED_STAMINA 0x11
25#define NOUVEAU_DSM_LED_SPEED 0x12
26
27#define NOUVEAU_DSM_POWER 0x03
28#define NOUVEAU_DSM_POWER_STATE 0x00
29#define NOUVEAU_DSM_POWER_SPEED 0x01
30#define NOUVEAU_DSM_POWER_STAMINA 0x02
31
Peter Lekensteyn9075e852011-12-17 12:53:43 +010032#define NOUVEAU_DSM_OPTIMUS_FN 0x1A
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100033static struct nouveau_dsm_priv {
34 bool dsm_detected;
Dave Airlief19467c2011-03-22 14:10:27 +100035 bool optimus_detected;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100036 acpi_handle dhandle;
Dave Airlieafeb3e12010-04-07 13:55:09 +100037 acpi_handle rom_handle;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100038} nouveau_dsm_priv;
Ben Skeggs6ee73862009-12-11 19:24:15 +100039
Dave Airlief19467c2011-03-22 14:10:27 +100040#define NOUVEAU_DSM_HAS_MUX 0x1
41#define NOUVEAU_DSM_HAS_OPT 0x2
42
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100043static const char nouveau_dsm_muid[] = {
44 0xA0, 0xA0, 0x95, 0x9D, 0x60, 0x00, 0x48, 0x4D,
45 0xB3, 0x4D, 0x7E, 0x5F, 0xEA, 0x12, 0x9F, 0xD4,
46};
47
Dave Airlief19467c2011-03-22 14:10:27 +100048static const char nouveau_op_dsm_muid[] = {
49 0xF8, 0xD8, 0x86, 0xA4, 0xDA, 0x0B, 0x1B, 0x47,
50 0xA7, 0x2B, 0x60, 0x42, 0xA6, 0xB5, 0xBE, 0xE0,
51};
52
53static int nouveau_optimus_dsm(acpi_handle handle, int func, int arg, uint32_t *result)
54{
55 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
56 struct acpi_object_list input;
57 union acpi_object params[4];
58 union acpi_object *obj;
59 int err;
60
61 input.count = 4;
62 input.pointer = params;
63 params[0].type = ACPI_TYPE_BUFFER;
64 params[0].buffer.length = sizeof(nouveau_op_dsm_muid);
65 params[0].buffer.pointer = (char *)nouveau_op_dsm_muid;
66 params[1].type = ACPI_TYPE_INTEGER;
67 params[1].integer.value = 0x00000100;
68 params[2].type = ACPI_TYPE_INTEGER;
69 params[2].integer.value = func;
70 params[3].type = ACPI_TYPE_BUFFER;
71 params[3].buffer.length = 0;
72
73 err = acpi_evaluate_object(handle, "_DSM", &input, &output);
74 if (err) {
75 printk(KERN_INFO "failed to evaluate _DSM: %d\n", err);
76 return err;
77 }
78
79 obj = (union acpi_object *)output.pointer;
80
81 if (obj->type == ACPI_TYPE_INTEGER)
82 if (obj->integer.value == 0x80000002) {
83 return -ENODEV;
84 }
85
86 if (obj->type == ACPI_TYPE_BUFFER) {
87 if (obj->buffer.length == 4 && result) {
88 *result = 0;
89 *result |= obj->buffer.pointer[0];
90 *result |= (obj->buffer.pointer[1] << 8);
91 *result |= (obj->buffer.pointer[2] << 16);
92 *result |= (obj->buffer.pointer[3] << 24);
93 }
94 }
95
96 kfree(output.pointer);
97 return 0;
98}
99
Francisco Jerez6e86e042010-07-03 18:36:39 +0200100static int nouveau_dsm(acpi_handle handle, int func, int arg, uint32_t *result)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000101{
Ben Skeggs6ee73862009-12-11 19:24:15 +1000102 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
103 struct acpi_object_list input;
104 union acpi_object params[4];
105 union acpi_object *obj;
106 int err;
107
Ben Skeggs6ee73862009-12-11 19:24:15 +1000108 input.count = 4;
109 input.pointer = params;
110 params[0].type = ACPI_TYPE_BUFFER;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000111 params[0].buffer.length = sizeof(nouveau_dsm_muid);
112 params[0].buffer.pointer = (char *)nouveau_dsm_muid;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000113 params[1].type = ACPI_TYPE_INTEGER;
114 params[1].integer.value = 0x00000102;
115 params[2].type = ACPI_TYPE_INTEGER;
116 params[2].integer.value = func;
117 params[3].type = ACPI_TYPE_INTEGER;
118 params[3].integer.value = arg;
119
120 err = acpi_evaluate_object(handle, "_DSM", &input, &output);
121 if (err) {
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000122 printk(KERN_INFO "failed to evaluate _DSM: %d\n", err);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000123 return err;
124 }
125
126 obj = (union acpi_object *)output.pointer;
127
128 if (obj->type == ACPI_TYPE_INTEGER)
129 if (obj->integer.value == 0x80000002)
130 return -ENODEV;
131
132 if (obj->type == ACPI_TYPE_BUFFER) {
133 if (obj->buffer.length == 4 && result) {
134 *result = 0;
135 *result |= obj->buffer.pointer[0];
136 *result |= (obj->buffer.pointer[1] << 8);
137 *result |= (obj->buffer.pointer[2] << 16);
138 *result |= (obj->buffer.pointer[3] << 24);
139 }
140 }
141
142 kfree(output.pointer);
143 return 0;
144}
145
Peter Lekensteyn9075e852011-12-17 12:53:43 +0100146/* Returns 1 if a DSM function is usable and 0 otherwise */
147static int nouveau_test_dsm(acpi_handle test_handle,
148 int (*dsm_func)(acpi_handle, int, int, uint32_t *),
149 int sfnc)
150{
151 u32 result = 0;
152
153 /* Function 0 returns a Buffer containing available functions. The args
154 * parameter is ignored for function 0, so just put 0 in it */
155 if (dsm_func(test_handle, 0, 0, &result))
156 return 0;
157
158 /* ACPI Spec v4 9.14.1: if bit 0 is zero, no function is supported. If
159 * the n-th bit is enabled, function n is supported */
160 return result & 1 && result & (1 << sfnc);
161}
162
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000163static int nouveau_dsm_switch_mux(acpi_handle handle, int mux_id)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000164{
Dave Airlie000703f2011-05-09 11:40:25 +1000165 mxm_wmi_call_mxmx(mux_id == NOUVEAU_DSM_LED_STAMINA ? MXM_MXDS_ADAPTER_IGD : MXM_MXDS_ADAPTER_0);
Dave Airlie81161882010-12-06 12:57:45 +1000166 mxm_wmi_call_mxds(mux_id == NOUVEAU_DSM_LED_STAMINA ? MXM_MXDS_ADAPTER_IGD : MXM_MXDS_ADAPTER_0);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000167 return nouveau_dsm(handle, NOUVEAU_DSM_LED, mux_id, NULL);
168}
Ben Skeggs6ee73862009-12-11 19:24:15 +1000169
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000170static int nouveau_dsm_set_discrete_state(acpi_handle handle, enum vga_switcheroo_state state)
171{
172 int arg;
173 if (state == VGA_SWITCHEROO_ON)
174 arg = NOUVEAU_DSM_POWER_SPEED;
175 else
176 arg = NOUVEAU_DSM_POWER_STAMINA;
177 nouveau_dsm(handle, NOUVEAU_DSM_POWER, arg, NULL);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000178 return 0;
179}
180
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000181static int nouveau_dsm_switchto(enum vga_switcheroo_client_id id)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000182{
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000183 if (id == VGA_SWITCHEROO_IGD)
Dave Airliefc5ea292010-05-31 17:10:52 +1000184 return nouveau_dsm_switch_mux(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_LED_STAMINA);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000185 else
Dave Airliefc5ea292010-05-31 17:10:52 +1000186 return nouveau_dsm_switch_mux(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_LED_SPEED);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000187}
Ben Skeggs6ee73862009-12-11 19:24:15 +1000188
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000189static int nouveau_dsm_power_state(enum vga_switcheroo_client_id id,
190 enum vga_switcheroo_state state)
191{
192 if (id == VGA_SWITCHEROO_IGD)
193 return 0;
194
Dave Airliefc5ea292010-05-31 17:10:52 +1000195 return nouveau_dsm_set_discrete_state(nouveau_dsm_priv.dhandle, state);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000196}
197
198static int nouveau_dsm_init(void)
199{
200 return 0;
201}
202
203static int nouveau_dsm_get_client_id(struct pci_dev *pdev)
204{
Dave Airlied1fbd922010-12-06 12:56:44 +1000205 /* easy option one - intel vendor ID means Integrated */
206 if (pdev->vendor == PCI_VENDOR_ID_INTEL)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000207 return VGA_SWITCHEROO_IGD;
Dave Airlied1fbd922010-12-06 12:56:44 +1000208
209 /* is this device on Bus 0? - this may need improving */
210 if (pdev->bus->number == 0)
211 return VGA_SWITCHEROO_IGD;
212
213 return VGA_SWITCHEROO_DIS;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000214}
215
216static struct vga_switcheroo_handler nouveau_dsm_handler = {
217 .switchto = nouveau_dsm_switchto,
218 .power_state = nouveau_dsm_power_state,
219 .init = nouveau_dsm_init,
220 .get_client_id = nouveau_dsm_get_client_id,
221};
222
Dave Airlief19467c2011-03-22 14:10:27 +1000223static int nouveau_dsm_pci_probe(struct pci_dev *pdev)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000224{
225 acpi_handle dhandle, nvidia_handle;
226 acpi_status status;
Peter Lekensteyn9075e852011-12-17 12:53:43 +0100227 int retval = 0;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000228
229 dhandle = DEVICE_ACPI_HANDLE(&pdev->dev);
230 if (!dhandle)
231 return false;
Dave Airlieafeb3e12010-04-07 13:55:09 +1000232
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000233 status = acpi_get_handle(dhandle, "_DSM", &nvidia_handle);
234 if (ACPI_FAILURE(status)) {
235 return false;
236 }
237
Peter Lekensteyn9075e852011-12-17 12:53:43 +0100238 if (nouveau_test_dsm(dhandle, nouveau_dsm, NOUVEAU_DSM_POWER))
Dave Airlief19467c2011-03-22 14:10:27 +1000239 retval |= NOUVEAU_DSM_HAS_MUX;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000240
Peter Lekensteyn9075e852011-12-17 12:53:43 +0100241 if (nouveau_test_dsm(dhandle, nouveau_optimus_dsm,
242 NOUVEAU_DSM_OPTIMUS_FN))
Dave Airlief19467c2011-03-22 14:10:27 +1000243 retval |= NOUVEAU_DSM_HAS_OPT;
244
245 if (retval)
246 nouveau_dsm_priv.dhandle = dhandle;
247
248 return retval;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000249}
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000250
251static bool nouveau_dsm_detect(void)
252{
253 char acpi_method_name[255] = { 0 };
254 struct acpi_buffer buffer = {sizeof(acpi_method_name), acpi_method_name};
255 struct pci_dev *pdev = NULL;
256 int has_dsm = 0;
Dave Airlief19467c2011-03-22 14:10:27 +1000257 int has_optimus;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000258 int vga_count = 0;
Dave Airlie81161882010-12-06 12:57:45 +1000259 bool guid_valid;
Dave Airlief19467c2011-03-22 14:10:27 +1000260 int retval;
261 bool ret = false;
Dave Airlie81161882010-12-06 12:57:45 +1000262
Dave Airlief19467c2011-03-22 14:10:27 +1000263 /* lookup the MXM GUID */
Dave Airlie81161882010-12-06 12:57:45 +1000264 guid_valid = mxm_wmi_supported();
Dave Airlie81161882010-12-06 12:57:45 +1000265
Dave Airlief19467c2011-03-22 14:10:27 +1000266 if (guid_valid)
267 printk("MXM: GUID detected in BIOS\n");
Dave Airlieafeb3e12010-04-07 13:55:09 +1000268
Dave Airlief19467c2011-03-22 14:10:27 +1000269 /* now do DSM detection */
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000270 while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, pdev)) != NULL) {
271 vga_count++;
272
Dave Airlief19467c2011-03-22 14:10:27 +1000273 retval = nouveau_dsm_pci_probe(pdev);
Dave Airlief19467c2011-03-22 14:10:27 +1000274 if (retval & NOUVEAU_DSM_HAS_MUX)
275 has_dsm |= 1;
276 if (retval & NOUVEAU_DSM_HAS_OPT)
277 has_optimus = 1;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000278 }
279
Dave Airlief19467c2011-03-22 14:10:27 +1000280 if (vga_count == 2 && has_dsm && guid_valid) {
Dave Airliefc5ea292010-05-31 17:10:52 +1000281 acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME, &buffer);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000282 printk(KERN_INFO "VGA switcheroo: detected DSM switching method %s handle\n",
283 acpi_method_name);
284 nouveau_dsm_priv.dsm_detected = true;
Dave Airlief19467c2011-03-22 14:10:27 +1000285 ret = true;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000286 }
Dave Airlief19467c2011-03-22 14:10:27 +1000287
288 if (has_optimus == 1)
289 nouveau_dsm_priv.optimus_detected = true;
290
291 return ret;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000292}
293
294void nouveau_register_dsm_handler(void)
295{
296 bool r;
297
298 r = nouveau_dsm_detect();
299 if (!r)
300 return;
301
302 vga_switcheroo_register_handler(&nouveau_dsm_handler);
303}
304
305void nouveau_unregister_dsm_handler(void)
306{
307 vga_switcheroo_unregister_handler();
308}
Dave Airlieafeb3e12010-04-07 13:55:09 +1000309
310/* retrieve the ROM in 4k blocks */
311static int nouveau_rom_call(acpi_handle rom_handle, uint8_t *bios,
312 int offset, int len)
313{
314 acpi_status status;
315 union acpi_object rom_arg_elements[2], *obj;
316 struct acpi_object_list rom_arg;
317 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL};
318
319 rom_arg.count = 2;
320 rom_arg.pointer = &rom_arg_elements[0];
321
322 rom_arg_elements[0].type = ACPI_TYPE_INTEGER;
323 rom_arg_elements[0].integer.value = offset;
324
325 rom_arg_elements[1].type = ACPI_TYPE_INTEGER;
326 rom_arg_elements[1].integer.value = len;
327
328 status = acpi_evaluate_object(rom_handle, NULL, &rom_arg, &buffer);
329 if (ACPI_FAILURE(status)) {
330 printk(KERN_INFO "failed to evaluate ROM got %s\n", acpi_format_exception(status));
331 return -ENODEV;
332 }
333 obj = (union acpi_object *)buffer.pointer;
334 memcpy(bios+offset, obj->buffer.pointer, len);
335 kfree(buffer.pointer);
336 return len;
337}
338
339bool nouveau_acpi_rom_supported(struct pci_dev *pdev)
340{
341 acpi_status status;
342 acpi_handle dhandle, rom_handle;
343
Dave Airlief19467c2011-03-22 14:10:27 +1000344 if (!nouveau_dsm_priv.dsm_detected && !nouveau_dsm_priv.optimus_detected)
Dave Airlieafeb3e12010-04-07 13:55:09 +1000345 return false;
346
347 dhandle = DEVICE_ACPI_HANDLE(&pdev->dev);
348 if (!dhandle)
349 return false;
350
351 status = acpi_get_handle(dhandle, "_ROM", &rom_handle);
352 if (ACPI_FAILURE(status))
353 return false;
354
355 nouveau_dsm_priv.rom_handle = rom_handle;
356 return true;
357}
358
359int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len)
360{
361 return nouveau_rom_call(nouveau_dsm_priv.rom_handle, bios, offset, len);
362}
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000363
364int
365nouveau_acpi_edid(struct drm_device *dev, struct drm_connector *connector)
366{
367 struct nouveau_connector *nv_connector = nouveau_connector(connector);
368 struct acpi_device *acpidev;
369 acpi_handle handle;
370 int type, ret;
371 void *edid;
372
373 switch (connector->connector_type) {
374 case DRM_MODE_CONNECTOR_LVDS:
375 case DRM_MODE_CONNECTOR_eDP:
376 type = ACPI_VIDEO_DISPLAY_LCD;
377 break;
378 default:
379 return -EINVAL;
380 }
381
382 handle = DEVICE_ACPI_HANDLE(&dev->pdev->dev);
383 if (!handle)
384 return -ENODEV;
385
386 ret = acpi_bus_get_device(handle, &acpidev);
387 if (ret)
388 return -ENODEV;
389
390 ret = acpi_video_get_edid(acpidev, type, -1, &edid);
391 if (ret < 0)
392 return ret;
393
Ben Skeggs24b102d2010-09-10 15:33:11 +1000394 nv_connector->edid = kmemdup(edid, EDID_LENGTH, GFP_KERNEL);
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000395 return 0;
396}