blob: 83686ef75d044e19110930c308e076bb5c625d42 [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"
Ben Skeggs94580292012-07-06 12:14:00 +100015#include <nouveau_drm.h>
Ben Skeggsa6ed76d2010-07-12 15:33:07 +100016#include "nouveau_connector.h"
Ben Skeggs6ee73862009-12-11 19:24:15 +100017
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100018#include <linux/vga_switcheroo.h>
19
Ben Skeggs6ee73862009-12-11 19:24:15 +100020#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
Peter Lekensteyn9075e852011-12-17 12:53:43 +010031#define NOUVEAU_DSM_OPTIMUS_FN 0x1A
Peter Lekensteynd0992302011-12-17 12:54:04 +010032#define NOUVEAU_DSM_OPTIMUS_ARGS 0x03000001
33
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100034static struct nouveau_dsm_priv {
35 bool dsm_detected;
Dave Airlief19467c2011-03-22 14:10:27 +100036 bool optimus_detected;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100037 acpi_handle dhandle;
Dave Airlieafeb3e12010-04-07 13:55:09 +100038 acpi_handle rom_handle;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100039} nouveau_dsm_priv;
Ben Skeggs6ee73862009-12-11 19:24:15 +100040
Dave Airlief19467c2011-03-22 14:10:27 +100041#define NOUVEAU_DSM_HAS_MUX 0x1
42#define NOUVEAU_DSM_HAS_OPT 0x2
43
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100044static 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
Dave Airlief19467c2011-03-22 14:10:27 +100049static 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
54static 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;
Peter Lekensteynd0992302011-12-17 12:54:04 +010060 int i, err;
61 char args_buff[4];
Dave Airlief19467c2011-03-22 14:10:27 +100062
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;
Peter Lekensteynd0992302011-12-17 12:54:04 +010073 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;
Dave Airlief19467c2011-03-22 14:10:27 +100078
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
Francisco Jerez6e86e042010-07-03 18:36:39 +0200106static int nouveau_dsm(acpi_handle handle, int func, int arg, uint32_t *result)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000107{
Ben Skeggs6ee73862009-12-11 19:24:15 +1000108 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
Ben Skeggs6ee73862009-12-11 19:24:15 +1000114 input.count = 4;
115 input.pointer = params;
116 params[0].type = ACPI_TYPE_BUFFER;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000117 params[0].buffer.length = sizeof(nouveau_dsm_muid);
118 params[0].buffer.pointer = (char *)nouveau_dsm_muid;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000119 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) {
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000128 printk(KERN_INFO "failed to evaluate _DSM: %d\n", err);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000129 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
Peter Lekensteyn9075e852011-12-17 12:53:43 +0100152/* Returns 1 if a DSM function is usable and 0 otherwise */
153static 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
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000169static int nouveau_dsm_switch_mux(acpi_handle handle, int mux_id)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000170{
Dave Airlie000703f2011-05-09 11:40:25 +1000171 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 +1000172 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 +1000173 return nouveau_dsm(handle, NOUVEAU_DSM_LED, mux_id, NULL);
174}
Ben Skeggs6ee73862009-12-11 19:24:15 +1000175
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000176static 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);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000184 return 0;
185}
186
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000187static int nouveau_dsm_switchto(enum vga_switcheroo_client_id id)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000188{
Peter Lekensteynd0992302011-12-17 12:54:04 +0100189 /* 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;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000193 if (id == VGA_SWITCHEROO_IGD)
Dave Airliefc5ea292010-05-31 17:10:52 +1000194 return nouveau_dsm_switch_mux(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_LED_STAMINA);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000195 else
Dave Airliefc5ea292010-05-31 17:10:52 +1000196 return nouveau_dsm_switch_mux(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_LED_SPEED);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000197}
Ben Skeggs6ee73862009-12-11 19:24:15 +1000198
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000199static 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
Peter Lekensteynd0992302011-12-17 12:54:04 +0100205 /* 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
Dave Airliefc5ea292010-05-31 17:10:52 +1000210 return nouveau_dsm_set_discrete_state(nouveau_dsm_priv.dhandle, state);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000211}
212
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000213static int nouveau_dsm_get_client_id(struct pci_dev *pdev)
214{
Dave Airlied1fbd9232010-12-06 12:56:44 +1000215 /* easy option one - intel vendor ID means Integrated */
216 if (pdev->vendor == PCI_VENDOR_ID_INTEL)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000217 return VGA_SWITCHEROO_IGD;
Dave Airlied1fbd9232010-12-06 12:56:44 +1000218
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;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000224}
225
226static struct vga_switcheroo_handler nouveau_dsm_handler = {
227 .switchto = nouveau_dsm_switchto,
228 .power_state = nouveau_dsm_power_state,
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000229 .get_client_id = nouveau_dsm_get_client_id,
230};
231
Dave Airlief19467c2011-03-22 14:10:27 +1000232static int nouveau_dsm_pci_probe(struct pci_dev *pdev)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000233{
234 acpi_handle dhandle, nvidia_handle;
235 acpi_status status;
Peter Lekensteyn9075e852011-12-17 12:53:43 +0100236 int retval = 0;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000237
238 dhandle = DEVICE_ACPI_HANDLE(&pdev->dev);
239 if (!dhandle)
240 return false;
Dave Airlieafeb3e12010-04-07 13:55:09 +1000241
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000242 status = acpi_get_handle(dhandle, "_DSM", &nvidia_handle);
243 if (ACPI_FAILURE(status)) {
244 return false;
245 }
246
Peter Lekensteyn9075e852011-12-17 12:53:43 +0100247 if (nouveau_test_dsm(dhandle, nouveau_dsm, NOUVEAU_DSM_POWER))
Dave Airlief19467c2011-03-22 14:10:27 +1000248 retval |= NOUVEAU_DSM_HAS_MUX;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000249
Peter Lekensteyn9075e852011-12-17 12:53:43 +0100250 if (nouveau_test_dsm(dhandle, nouveau_optimus_dsm,
251 NOUVEAU_DSM_OPTIMUS_FN))
Dave Airlief19467c2011-03-22 14:10:27 +1000252 retval |= NOUVEAU_DSM_HAS_OPT;
253
254 if (retval)
255 nouveau_dsm_priv.dhandle = dhandle;
256
257 return retval;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000258}
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000259
260static 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;
Dave Airlieaddde4e2012-05-02 20:26:24 +0100266 int has_optimus = 0;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000267 int vga_count = 0;
Dave Airlie81161882010-12-06 12:57:45 +1000268 bool guid_valid;
Dave Airlief19467c2011-03-22 14:10:27 +1000269 int retval;
270 bool ret = false;
Dave Airlie81161882010-12-06 12:57:45 +1000271
Dave Airlief19467c2011-03-22 14:10:27 +1000272 /* lookup the MXM GUID */
Dave Airlie81161882010-12-06 12:57:45 +1000273 guid_valid = mxm_wmi_supported();
Dave Airlie81161882010-12-06 12:57:45 +1000274
Dave Airlief19467c2011-03-22 14:10:27 +1000275 if (guid_valid)
276 printk("MXM: GUID detected in BIOS\n");
Dave Airlieafeb3e12010-04-07 13:55:09 +1000277
Dave Airlief19467c2011-03-22 14:10:27 +1000278 /* now do DSM detection */
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000279 while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, pdev)) != NULL) {
280 vga_count++;
281
Dave Airlief19467c2011-03-22 14:10:27 +1000282 retval = nouveau_dsm_pci_probe(pdev);
Dave Airlief19467c2011-03-22 14:10:27 +1000283 if (retval & NOUVEAU_DSM_HAS_MUX)
284 has_dsm |= 1;
285 if (retval & NOUVEAU_DSM_HAS_OPT)
286 has_optimus = 1;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000287 }
288
Dave Airlief19467c2011-03-22 14:10:27 +1000289 if (vga_count == 2 && has_dsm && guid_valid) {
Peter Lekensteynd0992302011-12-17 12:54:04 +0100290 acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME,
291 &buffer);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000292 printk(KERN_INFO "VGA switcheroo: detected DSM switching method %s handle\n",
Peter Lekensteynd0992302011-12-17 12:54:04 +0100293 acpi_method_name);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000294 nouveau_dsm_priv.dsm_detected = true;
Dave Airlief19467c2011-03-22 14:10:27 +1000295 ret = true;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000296 }
Dave Airlief19467c2011-03-22 14:10:27 +1000297
Peter Lekensteynd0992302011-12-17 12:54:04 +0100298 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);
Dave Airlief19467c2011-03-22 14:10:27 +1000303 nouveau_dsm_priv.optimus_detected = true;
Peter Lekensteynd0992302011-12-17 12:54:04 +0100304 ret = true;
305 }
Dave Airlief19467c2011-03-22 14:10:27 +1000306
307 return ret;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000308}
309
310void 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
Peter Lekensteynd0992302011-12-17 12:54:04 +0100321/* Must be called for Optimus models before the card can be turned off */
322void 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
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000332void nouveau_unregister_dsm_handler(void)
333{
Andreas Heider2f3787a2012-05-21 00:14:50 +0100334 if (nouveau_dsm_priv.optimus_detected || nouveau_dsm_priv.dsm_detected)
335 vga_switcheroo_unregister_handler();
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000336}
Dave Airlieafeb3e12010-04-07 13:55:09 +1000337
338/* retrieve the ROM in 4k blocks */
339static 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
367bool nouveau_acpi_rom_supported(struct pci_dev *pdev)
368{
369 acpi_status status;
370 acpi_handle dhandle, rom_handle;
371
Dave Airlief19467c2011-03-22 14:10:27 +1000372 if (!nouveau_dsm_priv.dsm_detected && !nouveau_dsm_priv.optimus_detected)
Dave Airlieafeb3e12010-04-07 13:55:09 +1000373 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
387int 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}
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000391
392int
393nouveau_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
Ben Skeggs24b102d2010-09-10 15:33:11 +1000422 nv_connector->edid = kmemdup(edid, EDID_LENGTH, GFP_KERNEL);
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000423 return 0;
424}