blob: f2ad17aa33f069897dd44013b7ad1a6240f23481 [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>
Dave Airlie81161882010-12-06 12:57:45 +10004#include <linux/mxm-wmi.h>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10005#include <linux/vga_switcheroo.h>
Linus Torvalds612a9aa2012-10-03 23:29:23 -07006#include <drm/drm_edid.h>
Lv Zheng8b484632013-12-03 08:49:16 +08007#include <acpi/video.h>
Ben Skeggsc0077062012-07-26 08:51:21 +10008
Ben Skeggs4dc28132016-05-20 09:22:55 +10009#include "nouveau_drv.h"
Ben Skeggsc0077062012-07-26 08:51:21 +100010#include "nouveau_acpi.h"
11
Ben Skeggs6ee73862009-12-11 19:24:15 +100012#define NOUVEAU_DSM_LED 0x02
13#define NOUVEAU_DSM_LED_STATE 0x00
14#define NOUVEAU_DSM_LED_OFF 0x10
15#define NOUVEAU_DSM_LED_STAMINA 0x11
16#define NOUVEAU_DSM_LED_SPEED 0x12
17
18#define NOUVEAU_DSM_POWER 0x03
19#define NOUVEAU_DSM_POWER_STATE 0x00
20#define NOUVEAU_DSM_POWER_SPEED 0x01
21#define NOUVEAU_DSM_POWER_STAMINA 0x02
22
Dave Airlie5addcf02012-09-10 14:20:51 +100023#define NOUVEAU_DSM_OPTIMUS_CAPS 0x1A
24#define NOUVEAU_DSM_OPTIMUS_FLAGS 0x1B
25
26#define NOUVEAU_DSM_OPTIMUS_POWERDOWN_PS3 (3 << 24)
27#define NOUVEAU_DSM_OPTIMUS_NO_POWERDOWN_PS3 (2 << 24)
28#define NOUVEAU_DSM_OPTIMUS_FLAGS_CHANGED (1)
29
30#define NOUVEAU_DSM_OPTIMUS_SET_POWERDOWN (NOUVEAU_DSM_OPTIMUS_POWERDOWN_PS3 | NOUVEAU_DSM_OPTIMUS_FLAGS_CHANGED)
31
32/* result of the optimus caps function */
33#define OPTIMUS_ENABLED (1 << 0)
34#define OPTIMUS_STATUS_MASK (3 << 3)
35#define OPTIMUS_STATUS_OFF (0 << 3)
36#define OPTIMUS_STATUS_ON_ENABLED (1 << 3)
37#define OPTIMUS_STATUS_PWR_STABLE (3 << 3)
38#define OPTIMUS_DISPLAY_HOTPLUG (1 << 6)
39#define OPTIMUS_CAPS_MASK (7 << 24)
40#define OPTIMUS_DYNAMIC_PWR_CAP (1 << 24)
41
42#define OPTIMUS_AUDIO_CAPS_MASK (3 << 27)
43#define OPTIMUS_HDA_CODEC_MASK (2 << 27) /* hda bios control */
Peter Lekensteynd0992302011-12-17 12:54:04 +010044
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100045static struct nouveau_dsm_priv {
46 bool dsm_detected;
Dave Airlief19467c2011-03-22 14:10:27 +100047 bool optimus_detected;
Peter Wucba97802016-07-15 15:12:17 +020048 bool optimus_flags_detected;
Peter Wu692a17d2016-07-15 15:12:18 +020049 bool optimus_skip_dsm;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100050 acpi_handle dhandle;
Dave Airlieafeb3e12010-04-07 13:55:09 +100051 acpi_handle rom_handle;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100052} nouveau_dsm_priv;
Ben Skeggs6ee73862009-12-11 19:24:15 +100053
Dave Airliec839d742012-11-02 11:04:27 +100054bool nouveau_is_optimus(void) {
55 return nouveau_dsm_priv.optimus_detected;
56}
57
58bool nouveau_is_v1_dsm(void) {
59 return nouveau_dsm_priv.dsm_detected;
60}
61
Jeff Mahoneyd0ce7b8562014-01-21 14:34:52 -080062#ifdef CONFIG_VGA_SWITCHEROO
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100063static const char nouveau_dsm_muid[] = {
64 0xA0, 0xA0, 0x95, 0x9D, 0x60, 0x00, 0x48, 0x4D,
65 0xB3, 0x4D, 0x7E, 0x5F, 0xEA, 0x12, 0x9F, 0xD4,
66};
67
Dave Airlief19467c2011-03-22 14:10:27 +100068static const char nouveau_op_dsm_muid[] = {
69 0xF8, 0xD8, 0x86, 0xA4, 0xDA, 0x0B, 0x1B, 0x47,
70 0xA7, 0x2B, 0x60, 0x42, 0xA6, 0xB5, 0xBE, 0xE0,
71};
72
73static int nouveau_optimus_dsm(acpi_handle handle, int func, int arg, uint32_t *result)
74{
Jiang Liub072e532013-12-19 20:38:22 +080075 int i;
Dave Airlief19467c2011-03-22 14:10:27 +100076 union acpi_object *obj;
Peter Lekensteynd0992302011-12-17 12:54:04 +010077 char args_buff[4];
Jiang Liub072e532013-12-19 20:38:22 +080078 union acpi_object argv4 = {
79 .buffer.type = ACPI_TYPE_BUFFER,
80 .buffer.length = 4,
81 .buffer.pointer = args_buff
82 };
Dave Airlief19467c2011-03-22 14:10:27 +100083
Peter Lekensteynd0992302011-12-17 12:54:04 +010084 /* ACPI is little endian, AABBCCDD becomes {DD,CC,BB,AA} */
85 for (i = 0; i < 4; i++)
86 args_buff[i] = (arg >> i * 8) & 0xFF;
Dave Airlief19467c2011-03-22 14:10:27 +100087
Jiang Liub072e532013-12-19 20:38:22 +080088 *result = 0;
89 obj = acpi_evaluate_dsm_typed(handle, nouveau_op_dsm_muid, 0x00000100,
90 func, &argv4, ACPI_TYPE_BUFFER);
91 if (!obj) {
92 acpi_handle_info(handle, "failed to evaluate _DSM\n");
93 return AE_ERROR;
94 } else {
95 if (obj->buffer.length == 4) {
Dave Airlief19467c2011-03-22 14:10:27 +100096 *result |= obj->buffer.pointer[0];
97 *result |= (obj->buffer.pointer[1] << 8);
98 *result |= (obj->buffer.pointer[2] << 16);
99 *result |= (obj->buffer.pointer[3] << 24);
100 }
Jiang Liub072e532013-12-19 20:38:22 +0800101 ACPI_FREE(obj);
Dave Airlief19467c2011-03-22 14:10:27 +1000102 }
103
Dave Airlief19467c2011-03-22 14:10:27 +1000104 return 0;
105}
106
Jiang Liue2841752014-02-20 17:23:16 +0800107/*
108 * On some platforms, _DSM(nouveau_op_dsm_muid, func0) has special
109 * requirements on the fourth parameter, so a private implementation
110 * instead of using acpi_check_dsm().
111 */
Peter Wua12e78d2016-07-15 15:12:16 +0200112static int nouveau_dsm_get_optimus_functions(acpi_handle handle)
Jiang Liue2841752014-02-20 17:23:16 +0800113{
114 int result;
115
116 /*
117 * Function 0 returns a Buffer containing available functions.
118 * The args parameter is ignored for function 0, so just put 0 in it
119 */
120 if (nouveau_optimus_dsm(handle, 0, 0, &result))
121 return 0;
122
123 /*
124 * ACPI Spec v4 9.14.1: if bit 0 is zero, no function is supported.
125 * If the n-th bit is enabled, function n is supported
126 */
Peter Wua12e78d2016-07-15 15:12:16 +0200127 if (result & 1 && result & (1 << NOUVEAU_DSM_OPTIMUS_CAPS))
128 return result;
129 return 0;
Jiang Liue2841752014-02-20 17:23:16 +0800130}
131
Jiang Liub072e532013-12-19 20:38:22 +0800132static int nouveau_dsm(acpi_handle handle, int func, int arg)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000133{
Jiang Liub072e532013-12-19 20:38:22 +0800134 int ret = 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000135 union acpi_object *obj;
Jiang Liub072e532013-12-19 20:38:22 +0800136 union acpi_object argv4 = {
137 .integer.type = ACPI_TYPE_INTEGER,
138 .integer.value = arg,
139 };
Ben Skeggs6ee73862009-12-11 19:24:15 +1000140
Jiang Liub072e532013-12-19 20:38:22 +0800141 obj = acpi_evaluate_dsm_typed(handle, nouveau_dsm_muid, 0x00000102,
142 func, &argv4, ACPI_TYPE_INTEGER);
143 if (!obj) {
144 acpi_handle_info(handle, "failed to evaluate _DSM\n");
145 return AE_ERROR;
146 } else {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000147 if (obj->integer.value == 0x80000002)
Jiang Liub072e532013-12-19 20:38:22 +0800148 ret = -ENODEV;
149 ACPI_FREE(obj);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000150 }
151
Jiang Liub072e532013-12-19 20:38:22 +0800152 return ret;
Peter Lekensteyn9075e852011-12-17 12:53:43 +0100153}
154
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000155static int nouveau_dsm_switch_mux(acpi_handle handle, int mux_id)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000156{
Dave Airlie000703f2011-05-09 11:40:25 +1000157 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 +1000158 mxm_wmi_call_mxds(mux_id == NOUVEAU_DSM_LED_STAMINA ? MXM_MXDS_ADAPTER_IGD : MXM_MXDS_ADAPTER_0);
Jiang Liub072e532013-12-19 20:38:22 +0800159 return nouveau_dsm(handle, NOUVEAU_DSM_LED, mux_id);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000160}
Ben Skeggs6ee73862009-12-11 19:24:15 +1000161
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000162static int nouveau_dsm_set_discrete_state(acpi_handle handle, enum vga_switcheroo_state state)
163{
164 int arg;
165 if (state == VGA_SWITCHEROO_ON)
166 arg = NOUVEAU_DSM_POWER_SPEED;
167 else
168 arg = NOUVEAU_DSM_POWER_STAMINA;
Jiang Liub072e532013-12-19 20:38:22 +0800169 nouveau_dsm(handle, NOUVEAU_DSM_POWER, arg);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000170 return 0;
171}
172
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000173static int nouveau_dsm_switchto(enum vga_switcheroo_client_id id)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000174{
Dave Airliec839d742012-11-02 11:04:27 +1000175 if (!nouveau_dsm_priv.dsm_detected)
Peter Lekensteynd0992302011-12-17 12:54:04 +0100176 return 0;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000177 if (id == VGA_SWITCHEROO_IGD)
Dave Airliefc5ea292010-05-31 17:10:52 +1000178 return nouveau_dsm_switch_mux(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_LED_STAMINA);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000179 else
Dave Airliefc5ea292010-05-31 17:10:52 +1000180 return nouveau_dsm_switch_mux(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_LED_SPEED);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000181}
Ben Skeggs6ee73862009-12-11 19:24:15 +1000182
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000183static int nouveau_dsm_power_state(enum vga_switcheroo_client_id id,
184 enum vga_switcheroo_state state)
185{
186 if (id == VGA_SWITCHEROO_IGD)
187 return 0;
188
Peter Lekensteynd0992302011-12-17 12:54:04 +0100189 /* Optimus laptops have the card already disabled in
190 * nouveau_switcheroo_set_state */
Dave Airliec839d742012-11-02 11:04:27 +1000191 if (!nouveau_dsm_priv.dsm_detected)
Peter Lekensteynd0992302011-12-17 12:54:04 +0100192 return 0;
193
Dave Airliefc5ea292010-05-31 17:10:52 +1000194 return nouveau_dsm_set_discrete_state(nouveau_dsm_priv.dhandle, state);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000195}
196
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000197static int nouveau_dsm_get_client_id(struct pci_dev *pdev)
198{
Dave Airlied1fbd9232010-12-06 12:56:44 +1000199 /* easy option one - intel vendor ID means Integrated */
200 if (pdev->vendor == PCI_VENDOR_ID_INTEL)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000201 return VGA_SWITCHEROO_IGD;
Dave Airlied1fbd9232010-12-06 12:56:44 +1000202
203 /* is this device on Bus 0? - this may need improving */
204 if (pdev->bus->number == 0)
205 return VGA_SWITCHEROO_IGD;
206
207 return VGA_SWITCHEROO_DIS;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000208}
209
Lukas Wunner5d170132015-10-18 13:05:40 +0200210static const struct vga_switcheroo_handler nouveau_dsm_handler = {
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000211 .switchto = nouveau_dsm_switchto,
212 .power_state = nouveau_dsm_power_state,
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000213 .get_client_id = nouveau_dsm_get_client_id,
214};
215
Peter Wu692a17d2016-07-15 15:12:18 +0200216/*
217 * Firmware supporting Windows 8 or later do not use _DSM to put the device into
218 * D3cold, they instead rely on disabling power resources on the parent.
219 */
220static bool nouveau_pr3_present(struct pci_dev *pdev)
221{
222 struct pci_dev *parent_pdev = pci_upstream_bridge(pdev);
223 struct acpi_device *parent_adev;
224
225 if (!parent_pdev)
226 return false;
227
228 parent_adev = ACPI_COMPANION(&parent_pdev->dev);
229 if (!parent_adev)
230 return false;
231
232 return acpi_has_method(parent_adev->handle, "_PR3");
233}
234
Peter Wudf421942016-07-15 15:12:15 +0200235static void nouveau_dsm_pci_probe(struct pci_dev *pdev, acpi_handle *dhandle_out,
Peter Wucba97802016-07-15 15:12:17 +0200236 bool *has_mux, bool *has_opt,
Peter Wu692a17d2016-07-15 15:12:18 +0200237 bool *has_opt_flags, bool *has_pr3)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000238{
Zhang Rui187b5b52013-09-03 08:32:00 +0800239 acpi_handle dhandle;
Peter Wudf421942016-07-15 15:12:15 +0200240 bool supports_mux;
Peter Wua12e78d2016-07-15 15:12:16 +0200241 int optimus_funcs;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000242
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +0100243 dhandle = ACPI_HANDLE(&pdev->dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000244 if (!dhandle)
Peter Wudf421942016-07-15 15:12:15 +0200245 return;
Dave Airlieafeb3e12010-04-07 13:55:09 +1000246
Bjorn Helgaasf91ce352014-09-10 15:30:08 -0600247 if (!acpi_has_method(dhandle, "_DSM"))
Peter Wudf421942016-07-15 15:12:15 +0200248 return;
Bjorn Helgaasf91ce352014-09-10 15:30:08 -0600249
Peter Wudf421942016-07-15 15:12:15 +0200250 supports_mux = acpi_check_dsm(dhandle, nouveau_dsm_muid, 0x00000102,
251 1 << NOUVEAU_DSM_POWER);
Peter Wua12e78d2016-07-15 15:12:16 +0200252 optimus_funcs = nouveau_dsm_get_optimus_functions(dhandle);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000253
Peter Wudf421942016-07-15 15:12:15 +0200254 /* Does not look like a Nvidia device. */
Peter Wua12e78d2016-07-15 15:12:16 +0200255 if (!supports_mux && !optimus_funcs)
Peter Wudf421942016-07-15 15:12:15 +0200256 return;
Dave Airlief19467c2011-03-22 14:10:27 +1000257
Peter Wudf421942016-07-15 15:12:15 +0200258 *dhandle_out = dhandle;
259 *has_mux = supports_mux;
Peter Wua12e78d2016-07-15 15:12:16 +0200260 *has_opt = !!optimus_funcs;
Peter Wucba97802016-07-15 15:12:17 +0200261 *has_opt_flags = optimus_funcs & (1 << NOUVEAU_DSM_OPTIMUS_FLAGS);
Peter Wu692a17d2016-07-15 15:12:18 +0200262 *has_pr3 = false;
Peter Wudf421942016-07-15 15:12:15 +0200263
Peter Wua12e78d2016-07-15 15:12:16 +0200264 if (optimus_funcs) {
Dave Airlie5addcf02012-09-10 14:20:51 +1000265 uint32_t result;
266 nouveau_optimus_dsm(dhandle, NOUVEAU_DSM_OPTIMUS_CAPS, 0,
267 &result);
268 dev_info(&pdev->dev, "optimus capabilities: %s, status %s%s\n",
269 (result & OPTIMUS_ENABLED) ? "enabled" : "disabled",
270 (result & OPTIMUS_DYNAMIC_PWR_CAP) ? "dynamic power, " : "",
271 (result & OPTIMUS_HDA_CODEC_MASK) ? "hda bios codec supported" : "");
Peter Wu692a17d2016-07-15 15:12:18 +0200272
273 *has_pr3 = nouveau_pr3_present(pdev);
Dave Airlie5addcf02012-09-10 14:20:51 +1000274 }
Ben Skeggs6ee73862009-12-11 19:24:15 +1000275}
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000276
277static bool nouveau_dsm_detect(void)
278{
279 char acpi_method_name[255] = { 0 };
280 struct acpi_buffer buffer = {sizeof(acpi_method_name), acpi_method_name};
281 struct pci_dev *pdev = NULL;
Peter Wudf421942016-07-15 15:12:15 +0200282 acpi_handle dhandle = NULL;
283 bool has_mux = false;
284 bool has_optimus = false;
Peter Wucba97802016-07-15 15:12:17 +0200285 bool has_optimus_flags = false;
Peter Wu692a17d2016-07-15 15:12:18 +0200286 bool has_power_resources = false;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000287 int vga_count = 0;
Dave Airlie81161882010-12-06 12:57:45 +1000288 bool guid_valid;
Dave Airlief19467c2011-03-22 14:10:27 +1000289 bool ret = false;
Dave Airlie81161882010-12-06 12:57:45 +1000290
Dave Airlief19467c2011-03-22 14:10:27 +1000291 /* lookup the MXM GUID */
Dave Airlie81161882010-12-06 12:57:45 +1000292 guid_valid = mxm_wmi_supported();
Dave Airlie81161882010-12-06 12:57:45 +1000293
Dave Airlief19467c2011-03-22 14:10:27 +1000294 if (guid_valid)
295 printk("MXM: GUID detected in BIOS\n");
Dave Airlieafeb3e12010-04-07 13:55:09 +1000296
Dave Airlief19467c2011-03-22 14:10:27 +1000297 /* now do DSM detection */
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000298 while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, pdev)) != NULL) {
299 vga_count++;
300
Peter Wucba97802016-07-15 15:12:17 +0200301 nouveau_dsm_pci_probe(pdev, &dhandle, &has_mux, &has_optimus,
Peter Wu692a17d2016-07-15 15:12:18 +0200302 &has_optimus_flags, &has_power_resources);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000303 }
304
Emil Velikov4c60fac2013-10-09 08:25:16 +0100305 while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_3D << 8, pdev)) != NULL) {
306 vga_count++;
307
Peter Wucba97802016-07-15 15:12:17 +0200308 nouveau_dsm_pci_probe(pdev, &dhandle, &has_mux, &has_optimus,
Peter Wu692a17d2016-07-15 15:12:18 +0200309 &has_optimus_flags, &has_power_resources);
Emil Velikov4c60fac2013-10-09 08:25:16 +0100310 }
311
Dave Airliec839d742012-11-02 11:04:27 +1000312 /* find the optimus DSM or the old v1 DSM */
Peter Wudf421942016-07-15 15:12:15 +0200313 if (has_optimus) {
314 nouveau_dsm_priv.dhandle = dhandle;
Dave Airliec839d742012-11-02 11:04:27 +1000315 acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME,
316 &buffer);
317 printk(KERN_INFO "VGA switcheroo: detected Optimus DSM method %s handle\n",
318 acpi_method_name);
Peter Wu692a17d2016-07-15 15:12:18 +0200319 if (has_power_resources)
320 pr_info("nouveau: detected PR support, will not use DSM\n");
Dave Airliec839d742012-11-02 11:04:27 +1000321 nouveau_dsm_priv.optimus_detected = true;
Peter Wucba97802016-07-15 15:12:17 +0200322 nouveau_dsm_priv.optimus_flags_detected = has_optimus_flags;
Peter Wu692a17d2016-07-15 15:12:18 +0200323 nouveau_dsm_priv.optimus_skip_dsm = has_power_resources;
Dave Airliec839d742012-11-02 11:04:27 +1000324 ret = true;
Peter Wudf421942016-07-15 15:12:15 +0200325 } else if (vga_count == 2 && has_mux && guid_valid) {
326 nouveau_dsm_priv.dhandle = dhandle;
Peter Lekensteynd0992302011-12-17 12:54:04 +0100327 acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME,
328 &buffer);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000329 printk(KERN_INFO "VGA switcheroo: detected DSM switching method %s handle\n",
Peter Lekensteynd0992302011-12-17 12:54:04 +0100330 acpi_method_name);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000331 nouveau_dsm_priv.dsm_detected = true;
Dave Airlief19467c2011-03-22 14:10:27 +1000332 ret = true;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000333 }
Dave Airlief19467c2011-03-22 14:10:27 +1000334
Dave Airlief19467c2011-03-22 14:10:27 +1000335
336 return ret;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000337}
338
339void nouveau_register_dsm_handler(void)
340{
341 bool r;
342
343 r = nouveau_dsm_detect();
344 if (!r)
345 return;
346
Lukas Wunner156d7d42016-01-11 20:09:20 +0100347 vga_switcheroo_register_handler(&nouveau_dsm_handler, 0);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000348}
349
Peter Lekensteynd0992302011-12-17 12:54:04 +0100350/* Must be called for Optimus models before the card can be turned off */
351void nouveau_switcheroo_optimus_dsm(void)
352{
353 u32 result = 0;
Peter Wu692a17d2016-07-15 15:12:18 +0200354 if (!nouveau_dsm_priv.optimus_detected || nouveau_dsm_priv.optimus_skip_dsm)
Peter Lekensteynd0992302011-12-17 12:54:04 +0100355 return;
356
Peter Wucba97802016-07-15 15:12:17 +0200357 if (nouveau_dsm_priv.optimus_flags_detected)
358 nouveau_optimus_dsm(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_OPTIMUS_FLAGS,
359 0x3, &result);
Dave Airlie5addcf02012-09-10 14:20:51 +1000360
361 nouveau_optimus_dsm(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_OPTIMUS_CAPS,
362 NOUVEAU_DSM_OPTIMUS_SET_POWERDOWN, &result);
363
Peter Lekensteynd0992302011-12-17 12:54:04 +0100364}
365
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000366void nouveau_unregister_dsm_handler(void)
367{
Andreas Heider2f3787a2012-05-21 00:14:50 +0100368 if (nouveau_dsm_priv.optimus_detected || nouveau_dsm_priv.dsm_detected)
369 vga_switcheroo_unregister_handler();
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000370}
Jeff Mahoneyd0ce7b8562014-01-21 14:34:52 -0800371#else
372void nouveau_register_dsm_handler(void) {}
373void nouveau_unregister_dsm_handler(void) {}
374void nouveau_switcheroo_optimus_dsm(void) {}
375#endif
Dave Airlieafeb3e12010-04-07 13:55:09 +1000376
377/* retrieve the ROM in 4k blocks */
378static int nouveau_rom_call(acpi_handle rom_handle, uint8_t *bios,
379 int offset, int len)
380{
381 acpi_status status;
382 union acpi_object rom_arg_elements[2], *obj;
383 struct acpi_object_list rom_arg;
384 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL};
385
386 rom_arg.count = 2;
387 rom_arg.pointer = &rom_arg_elements[0];
388
389 rom_arg_elements[0].type = ACPI_TYPE_INTEGER;
390 rom_arg_elements[0].integer.value = offset;
391
392 rom_arg_elements[1].type = ACPI_TYPE_INTEGER;
393 rom_arg_elements[1].integer.value = len;
394
395 status = acpi_evaluate_object(rom_handle, NULL, &rom_arg, &buffer);
396 if (ACPI_FAILURE(status)) {
397 printk(KERN_INFO "failed to evaluate ROM got %s\n", acpi_format_exception(status));
398 return -ENODEV;
399 }
400 obj = (union acpi_object *)buffer.pointer;
Ben Skeggs95432942015-11-19 13:18:34 +1000401 len = min(len, (int)obj->buffer.length);
Dave Airlieafeb3e12010-04-07 13:55:09 +1000402 memcpy(bios+offset, obj->buffer.pointer, len);
403 kfree(buffer.pointer);
404 return len;
405}
406
Ben Skeggs26c9e8e2015-08-20 14:54:23 +1000407bool nouveau_acpi_rom_supported(struct device *dev)
Dave Airlieafeb3e12010-04-07 13:55:09 +1000408{
409 acpi_status status;
410 acpi_handle dhandle, rom_handle;
411
Ben Skeggs26c9e8e2015-08-20 14:54:23 +1000412 dhandle = ACPI_HANDLE(dev);
Dave Airlieafeb3e12010-04-07 13:55:09 +1000413 if (!dhandle)
414 return false;
415
416 status = acpi_get_handle(dhandle, "_ROM", &rom_handle);
417 if (ACPI_FAILURE(status))
418 return false;
419
420 nouveau_dsm_priv.rom_handle = rom_handle;
421 return true;
422}
423
424int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len)
425{
426 return nouveau_rom_call(nouveau_dsm_priv.rom_handle, bios, offset, len);
427}
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000428
Ben Skeggsc0077062012-07-26 08:51:21 +1000429void *
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000430nouveau_acpi_edid(struct drm_device *dev, struct drm_connector *connector)
431{
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000432 struct acpi_device *acpidev;
433 acpi_handle handle;
434 int type, ret;
435 void *edid;
436
437 switch (connector->connector_type) {
438 case DRM_MODE_CONNECTOR_LVDS:
439 case DRM_MODE_CONNECTOR_eDP:
440 type = ACPI_VIDEO_DISPLAY_LCD;
441 break;
442 default:
Ben Skeggsc0077062012-07-26 08:51:21 +1000443 return NULL;
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000444 }
445
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +0100446 handle = ACPI_HANDLE(&dev->pdev->dev);
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000447 if (!handle)
Ben Skeggsc0077062012-07-26 08:51:21 +1000448 return NULL;
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000449
450 ret = acpi_bus_get_device(handle, &acpidev);
451 if (ret)
Ben Skeggsc0077062012-07-26 08:51:21 +1000452 return NULL;
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000453
454 ret = acpi_video_get_edid(acpidev, type, -1, &edid);
455 if (ret < 0)
Ben Skeggsc0077062012-07-26 08:51:21 +1000456 return NULL;
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000457
Ben Skeggsc0077062012-07-26 08:51:21 +1000458 return kmemdup(edid, EDID_LENGTH, GFP_KERNEL);
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000459}