blob: f0d459bb46e4152a2f40c0fa2e0b54311c79a328 [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_SUPPORTED 0x00
22#define NOUVEAU_DSM_SUPPORTED_FUNCTIONS 0x00
23
24#define NOUVEAU_DSM_ACTIVE 0x01
25#define NOUVEAU_DSM_ACTIVE_QUERY 0x00
26
27#define NOUVEAU_DSM_LED 0x02
28#define NOUVEAU_DSM_LED_STATE 0x00
29#define NOUVEAU_DSM_LED_OFF 0x10
30#define NOUVEAU_DSM_LED_STAMINA 0x11
31#define NOUVEAU_DSM_LED_SPEED 0x12
32
33#define NOUVEAU_DSM_POWER 0x03
34#define NOUVEAU_DSM_POWER_STATE 0x00
35#define NOUVEAU_DSM_POWER_SPEED 0x01
36#define NOUVEAU_DSM_POWER_STAMINA 0x02
37
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100038static struct nouveau_dsm_priv {
39 bool dsm_detected;
Dave Airlief19467c2011-03-22 14:10:27 +100040 bool optimus_detected;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100041 acpi_handle dhandle;
Dave Airlieafeb3e12010-04-07 13:55:09 +100042 acpi_handle rom_handle;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100043} nouveau_dsm_priv;
Ben Skeggs6ee73862009-12-11 19:24:15 +100044
Dave Airlief19467c2011-03-22 14:10:27 +100045#define NOUVEAU_DSM_HAS_MUX 0x1
46#define NOUVEAU_DSM_HAS_OPT 0x2
47
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100048static const char nouveau_dsm_muid[] = {
49 0xA0, 0xA0, 0x95, 0x9D, 0x60, 0x00, 0x48, 0x4D,
50 0xB3, 0x4D, 0x7E, 0x5F, 0xEA, 0x12, 0x9F, 0xD4,
51};
52
Dave Airlief19467c2011-03-22 14:10:27 +100053static const char nouveau_op_dsm_muid[] = {
54 0xF8, 0xD8, 0x86, 0xA4, 0xDA, 0x0B, 0x1B, 0x47,
55 0xA7, 0x2B, 0x60, 0x42, 0xA6, 0xB5, 0xBE, 0xE0,
56};
57
58static int nouveau_optimus_dsm(acpi_handle handle, int func, int arg, uint32_t *result)
59{
60 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
61 struct acpi_object_list input;
62 union acpi_object params[4];
63 union acpi_object *obj;
64 int err;
65
66 input.count = 4;
67 input.pointer = params;
68 params[0].type = ACPI_TYPE_BUFFER;
69 params[0].buffer.length = sizeof(nouveau_op_dsm_muid);
70 params[0].buffer.pointer = (char *)nouveau_op_dsm_muid;
71 params[1].type = ACPI_TYPE_INTEGER;
72 params[1].integer.value = 0x00000100;
73 params[2].type = ACPI_TYPE_INTEGER;
74 params[2].integer.value = func;
75 params[3].type = ACPI_TYPE_BUFFER;
76 params[3].buffer.length = 0;
77
78 err = acpi_evaluate_object(handle, "_DSM", &input, &output);
79 if (err) {
80 printk(KERN_INFO "failed to evaluate _DSM: %d\n", err);
81 return err;
82 }
83
84 obj = (union acpi_object *)output.pointer;
85
86 if (obj->type == ACPI_TYPE_INTEGER)
87 if (obj->integer.value == 0x80000002) {
88 return -ENODEV;
89 }
90
91 if (obj->type == ACPI_TYPE_BUFFER) {
92 if (obj->buffer.length == 4 && result) {
93 *result = 0;
94 *result |= obj->buffer.pointer[0];
95 *result |= (obj->buffer.pointer[1] << 8);
96 *result |= (obj->buffer.pointer[2] << 16);
97 *result |= (obj->buffer.pointer[3] << 24);
98 }
99 }
100
101 kfree(output.pointer);
102 return 0;
103}
104
Francisco Jerez6e86e042010-07-03 18:36:39 +0200105static int nouveau_dsm(acpi_handle handle, int func, int arg, uint32_t *result)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000106{
Ben Skeggs6ee73862009-12-11 19:24:15 +1000107 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
108 struct acpi_object_list input;
109 union acpi_object params[4];
110 union acpi_object *obj;
111 int err;
112
Ben Skeggs6ee73862009-12-11 19:24:15 +1000113 input.count = 4;
114 input.pointer = params;
115 params[0].type = ACPI_TYPE_BUFFER;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000116 params[0].buffer.length = sizeof(nouveau_dsm_muid);
117 params[0].buffer.pointer = (char *)nouveau_dsm_muid;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000118 params[1].type = ACPI_TYPE_INTEGER;
119 params[1].integer.value = 0x00000102;
120 params[2].type = ACPI_TYPE_INTEGER;
121 params[2].integer.value = func;
122 params[3].type = ACPI_TYPE_INTEGER;
123 params[3].integer.value = arg;
124
125 err = acpi_evaluate_object(handle, "_DSM", &input, &output);
126 if (err) {
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000127 printk(KERN_INFO "failed to evaluate _DSM: %d\n", err);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000128 return err;
129 }
130
131 obj = (union acpi_object *)output.pointer;
132
133 if (obj->type == ACPI_TYPE_INTEGER)
134 if (obj->integer.value == 0x80000002)
135 return -ENODEV;
136
137 if (obj->type == ACPI_TYPE_BUFFER) {
138 if (obj->buffer.length == 4 && result) {
139 *result = 0;
140 *result |= obj->buffer.pointer[0];
141 *result |= (obj->buffer.pointer[1] << 8);
142 *result |= (obj->buffer.pointer[2] << 16);
143 *result |= (obj->buffer.pointer[3] << 24);
144 }
145 }
146
147 kfree(output.pointer);
148 return 0;
149}
150
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000151static int nouveau_dsm_switch_mux(acpi_handle handle, int mux_id)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000152{
Dave Airlie000703f2011-05-09 11:40:25 +1000153 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 +1000154 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 +1000155 return nouveau_dsm(handle, NOUVEAU_DSM_LED, mux_id, NULL);
156}
Ben Skeggs6ee73862009-12-11 19:24:15 +1000157
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000158static int nouveau_dsm_set_discrete_state(acpi_handle handle, enum vga_switcheroo_state state)
159{
160 int arg;
161 if (state == VGA_SWITCHEROO_ON)
162 arg = NOUVEAU_DSM_POWER_SPEED;
163 else
164 arg = NOUVEAU_DSM_POWER_STAMINA;
165 nouveau_dsm(handle, NOUVEAU_DSM_POWER, arg, NULL);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000166 return 0;
167}
168
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000169static int nouveau_dsm_switchto(enum vga_switcheroo_client_id id)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000170{
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000171 if (id == VGA_SWITCHEROO_IGD)
Dave Airliefc5ea292010-05-31 17:10:52 +1000172 return nouveau_dsm_switch_mux(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_LED_STAMINA);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000173 else
Dave Airliefc5ea292010-05-31 17:10:52 +1000174 return nouveau_dsm_switch_mux(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_LED_SPEED);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000175}
Ben Skeggs6ee73862009-12-11 19:24:15 +1000176
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000177static int nouveau_dsm_power_state(enum vga_switcheroo_client_id id,
178 enum vga_switcheroo_state state)
179{
180 if (id == VGA_SWITCHEROO_IGD)
181 return 0;
182
Dave Airliefc5ea292010-05-31 17:10:52 +1000183 return nouveau_dsm_set_discrete_state(nouveau_dsm_priv.dhandle, state);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000184}
185
186static int nouveau_dsm_init(void)
187{
188 return 0;
189}
190
191static int nouveau_dsm_get_client_id(struct pci_dev *pdev)
192{
Dave Airlied1fbd922010-12-06 12:56:44 +1000193 /* easy option one - intel vendor ID means Integrated */
194 if (pdev->vendor == PCI_VENDOR_ID_INTEL)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000195 return VGA_SWITCHEROO_IGD;
Dave Airlied1fbd922010-12-06 12:56:44 +1000196
197 /* is this device on Bus 0? - this may need improving */
198 if (pdev->bus->number == 0)
199 return VGA_SWITCHEROO_IGD;
200
201 return VGA_SWITCHEROO_DIS;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000202}
203
204static struct vga_switcheroo_handler nouveau_dsm_handler = {
205 .switchto = nouveau_dsm_switchto,
206 .power_state = nouveau_dsm_power_state,
207 .init = nouveau_dsm_init,
208 .get_client_id = nouveau_dsm_get_client_id,
209};
210
Dave Airlief19467c2011-03-22 14:10:27 +1000211static int nouveau_dsm_pci_probe(struct pci_dev *pdev)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000212{
213 acpi_handle dhandle, nvidia_handle;
214 acpi_status status;
Dave Airlief19467c2011-03-22 14:10:27 +1000215 int ret, retval = 0;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000216 uint32_t result;
217
218 dhandle = DEVICE_ACPI_HANDLE(&pdev->dev);
219 if (!dhandle)
220 return false;
Dave Airlieafeb3e12010-04-07 13:55:09 +1000221
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000222 status = acpi_get_handle(dhandle, "_DSM", &nvidia_handle);
223 if (ACPI_FAILURE(status)) {
224 return false;
225 }
226
Dave Airliefc5ea292010-05-31 17:10:52 +1000227 ret = nouveau_dsm(dhandle, NOUVEAU_DSM_SUPPORTED,
228 NOUVEAU_DSM_SUPPORTED_FUNCTIONS, &result);
Dave Airlief19467c2011-03-22 14:10:27 +1000229 if (ret == 0)
230 retval |= NOUVEAU_DSM_HAS_MUX;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000231
Dave Airlief19467c2011-03-22 14:10:27 +1000232 ret = nouveau_optimus_dsm(dhandle, 0, 0, &result);
233 if (ret == 0)
234 retval |= NOUVEAU_DSM_HAS_OPT;
235
236 if (retval)
237 nouveau_dsm_priv.dhandle = dhandle;
238
239 return retval;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000240}
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000241
242static bool nouveau_dsm_detect(void)
243{
244 char acpi_method_name[255] = { 0 };
245 struct acpi_buffer buffer = {sizeof(acpi_method_name), acpi_method_name};
246 struct pci_dev *pdev = NULL;
247 int has_dsm = 0;
Dave Airlief19467c2011-03-22 14:10:27 +1000248 int has_optimus;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000249 int vga_count = 0;
Dave Airlie81161882010-12-06 12:57:45 +1000250 bool guid_valid;
Dave Airlief19467c2011-03-22 14:10:27 +1000251 int retval;
252 bool ret = false;
Dave Airlie81161882010-12-06 12:57:45 +1000253
Dave Airlief19467c2011-03-22 14:10:27 +1000254 /* lookup the MXM GUID */
Dave Airlie81161882010-12-06 12:57:45 +1000255 guid_valid = mxm_wmi_supported();
Dave Airlie81161882010-12-06 12:57:45 +1000256
Dave Airlief19467c2011-03-22 14:10:27 +1000257 if (guid_valid)
258 printk("MXM: GUID detected in BIOS\n");
Dave Airlieafeb3e12010-04-07 13:55:09 +1000259
Dave Airlief19467c2011-03-22 14:10:27 +1000260 /* now do DSM detection */
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000261 while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, pdev)) != NULL) {
262 vga_count++;
263
Dave Airlief19467c2011-03-22 14:10:27 +1000264 retval = nouveau_dsm_pci_probe(pdev);
265 printk("ret val is %d\n", retval);
266 if (retval & NOUVEAU_DSM_HAS_MUX)
267 has_dsm |= 1;
268 if (retval & NOUVEAU_DSM_HAS_OPT)
269 has_optimus = 1;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000270 }
271
Dave Airlief19467c2011-03-22 14:10:27 +1000272 if (vga_count == 2 && has_dsm && guid_valid) {
Dave Airliefc5ea292010-05-31 17:10:52 +1000273 acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME, &buffer);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000274 printk(KERN_INFO "VGA switcheroo: detected DSM switching method %s handle\n",
275 acpi_method_name);
276 nouveau_dsm_priv.dsm_detected = true;
Dave Airlief19467c2011-03-22 14:10:27 +1000277 ret = true;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000278 }
Dave Airlief19467c2011-03-22 14:10:27 +1000279
280 if (has_optimus == 1)
281 nouveau_dsm_priv.optimus_detected = true;
282
283 return ret;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000284}
285
286void nouveau_register_dsm_handler(void)
287{
288 bool r;
289
290 r = nouveau_dsm_detect();
291 if (!r)
292 return;
293
294 vga_switcheroo_register_handler(&nouveau_dsm_handler);
295}
296
297void nouveau_unregister_dsm_handler(void)
298{
299 vga_switcheroo_unregister_handler();
300}
Dave Airlieafeb3e12010-04-07 13:55:09 +1000301
302/* retrieve the ROM in 4k blocks */
303static int nouveau_rom_call(acpi_handle rom_handle, uint8_t *bios,
304 int offset, int len)
305{
306 acpi_status status;
307 union acpi_object rom_arg_elements[2], *obj;
308 struct acpi_object_list rom_arg;
309 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL};
310
311 rom_arg.count = 2;
312 rom_arg.pointer = &rom_arg_elements[0];
313
314 rom_arg_elements[0].type = ACPI_TYPE_INTEGER;
315 rom_arg_elements[0].integer.value = offset;
316
317 rom_arg_elements[1].type = ACPI_TYPE_INTEGER;
318 rom_arg_elements[1].integer.value = len;
319
320 status = acpi_evaluate_object(rom_handle, NULL, &rom_arg, &buffer);
321 if (ACPI_FAILURE(status)) {
322 printk(KERN_INFO "failed to evaluate ROM got %s\n", acpi_format_exception(status));
323 return -ENODEV;
324 }
325 obj = (union acpi_object *)buffer.pointer;
326 memcpy(bios+offset, obj->buffer.pointer, len);
327 kfree(buffer.pointer);
328 return len;
329}
330
331bool nouveau_acpi_rom_supported(struct pci_dev *pdev)
332{
333 acpi_status status;
334 acpi_handle dhandle, rom_handle;
335
Dave Airlief19467c2011-03-22 14:10:27 +1000336 if (!nouveau_dsm_priv.dsm_detected && !nouveau_dsm_priv.optimus_detected)
Dave Airlieafeb3e12010-04-07 13:55:09 +1000337 return false;
338
339 dhandle = DEVICE_ACPI_HANDLE(&pdev->dev);
340 if (!dhandle)
341 return false;
342
343 status = acpi_get_handle(dhandle, "_ROM", &rom_handle);
344 if (ACPI_FAILURE(status))
345 return false;
346
347 nouveau_dsm_priv.rom_handle = rom_handle;
348 return true;
349}
350
351int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len)
352{
353 return nouveau_rom_call(nouveau_dsm_priv.rom_handle, bios, offset, len);
354}
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000355
356int
357nouveau_acpi_edid(struct drm_device *dev, struct drm_connector *connector)
358{
359 struct nouveau_connector *nv_connector = nouveau_connector(connector);
360 struct acpi_device *acpidev;
361 acpi_handle handle;
362 int type, ret;
363 void *edid;
364
365 switch (connector->connector_type) {
366 case DRM_MODE_CONNECTOR_LVDS:
367 case DRM_MODE_CONNECTOR_eDP:
368 type = ACPI_VIDEO_DISPLAY_LCD;
369 break;
370 default:
371 return -EINVAL;
372 }
373
374 handle = DEVICE_ACPI_HANDLE(&dev->pdev->dev);
375 if (!handle)
376 return -ENODEV;
377
378 ret = acpi_bus_get_device(handle, &acpidev);
379 if (ret)
380 return -ENODEV;
381
382 ret = acpi_video_get_edid(acpidev, type, -1, &edid);
383 if (ret < 0)
384 return ret;
385
Ben Skeggs24b102d2010-09-10 15:33:11 +1000386 nv_connector->edid = kmemdup(edid, EDID_LENGTH, GFP_KERNEL);
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000387 return 0;
388}