blob: 193573d191e520a12ccdde4a791ebdf8e64a334c [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 Airlied1fbd922010-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 Airlied1fbd922010-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
Peter Wu279cf3f2016-08-26 01:00:54 +0200228 if (!parent_pdev->bridge_d3) {
229 /*
230 * Parent PCI bridge is currently not power managed.
231 * Since userspace can change these afterwards to be on
232 * the safe side we stick with _DSM and prevent usage of
233 * _PR3 from the bridge.
234 */
235 pci_d3cold_disable(pdev);
236 return false;
237 }
238
Peter Wu692a17d2016-07-15 15:12:18 +0200239 parent_adev = ACPI_COMPANION(&parent_pdev->dev);
240 if (!parent_adev)
241 return false;
242
Peter Wub0a6af82016-10-31 23:48:22 +0100243 return parent_adev->power.flags.power_resources &&
244 acpi_has_method(parent_adev->handle, "_PR3");
Peter Wu692a17d2016-07-15 15:12:18 +0200245}
246
Peter Wudf421942016-07-15 15:12:15 +0200247static void nouveau_dsm_pci_probe(struct pci_dev *pdev, acpi_handle *dhandle_out,
Peter Wucba97802016-07-15 15:12:17 +0200248 bool *has_mux, bool *has_opt,
Peter Wu692a17d2016-07-15 15:12:18 +0200249 bool *has_opt_flags, bool *has_pr3)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000250{
Zhang Rui187b5b52013-09-03 08:32:00 +0800251 acpi_handle dhandle;
Peter Wudf421942016-07-15 15:12:15 +0200252 bool supports_mux;
Peter Wua12e78d2016-07-15 15:12:16 +0200253 int optimus_funcs;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000254
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +0100255 dhandle = ACPI_HANDLE(&pdev->dev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000256 if (!dhandle)
Peter Wudf421942016-07-15 15:12:15 +0200257 return;
Dave Airlieafeb3e12010-04-07 13:55:09 +1000258
Bjorn Helgaasf91ce352014-09-10 15:30:08 -0600259 if (!acpi_has_method(dhandle, "_DSM"))
Peter Wudf421942016-07-15 15:12:15 +0200260 return;
Bjorn Helgaasf91ce352014-09-10 15:30:08 -0600261
Peter Wudf421942016-07-15 15:12:15 +0200262 supports_mux = acpi_check_dsm(dhandle, nouveau_dsm_muid, 0x00000102,
263 1 << NOUVEAU_DSM_POWER);
Peter Wua12e78d2016-07-15 15:12:16 +0200264 optimus_funcs = nouveau_dsm_get_optimus_functions(dhandle);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000265
Peter Wudf421942016-07-15 15:12:15 +0200266 /* Does not look like a Nvidia device. */
Peter Wua12e78d2016-07-15 15:12:16 +0200267 if (!supports_mux && !optimus_funcs)
Peter Wudf421942016-07-15 15:12:15 +0200268 return;
Dave Airlief19467c2011-03-22 14:10:27 +1000269
Peter Wudf421942016-07-15 15:12:15 +0200270 *dhandle_out = dhandle;
271 *has_mux = supports_mux;
Peter Wua12e78d2016-07-15 15:12:16 +0200272 *has_opt = !!optimus_funcs;
Peter Wucba97802016-07-15 15:12:17 +0200273 *has_opt_flags = optimus_funcs & (1 << NOUVEAU_DSM_OPTIMUS_FLAGS);
Peter Wu692a17d2016-07-15 15:12:18 +0200274 *has_pr3 = false;
Peter Wudf421942016-07-15 15:12:15 +0200275
Peter Wua12e78d2016-07-15 15:12:16 +0200276 if (optimus_funcs) {
Dave Airlie5addcf02012-09-10 14:20:51 +1000277 uint32_t result;
278 nouveau_optimus_dsm(dhandle, NOUVEAU_DSM_OPTIMUS_CAPS, 0,
279 &result);
280 dev_info(&pdev->dev, "optimus capabilities: %s, status %s%s\n",
281 (result & OPTIMUS_ENABLED) ? "enabled" : "disabled",
282 (result & OPTIMUS_DYNAMIC_PWR_CAP) ? "dynamic power, " : "",
283 (result & OPTIMUS_HDA_CODEC_MASK) ? "hda bios codec supported" : "");
Peter Wu692a17d2016-07-15 15:12:18 +0200284
285 *has_pr3 = nouveau_pr3_present(pdev);
Dave Airlie5addcf02012-09-10 14:20:51 +1000286 }
Ben Skeggs6ee73862009-12-11 19:24:15 +1000287}
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000288
289static bool nouveau_dsm_detect(void)
290{
291 char acpi_method_name[255] = { 0 };
292 struct acpi_buffer buffer = {sizeof(acpi_method_name), acpi_method_name};
293 struct pci_dev *pdev = NULL;
Peter Wudf421942016-07-15 15:12:15 +0200294 acpi_handle dhandle = NULL;
295 bool has_mux = false;
296 bool has_optimus = false;
Peter Wucba97802016-07-15 15:12:17 +0200297 bool has_optimus_flags = false;
Peter Wu692a17d2016-07-15 15:12:18 +0200298 bool has_power_resources = false;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000299 int vga_count = 0;
Dave Airlie81161882010-12-06 12:57:45 +1000300 bool guid_valid;
Dave Airlief19467c2011-03-22 14:10:27 +1000301 bool ret = false;
Dave Airlie81161882010-12-06 12:57:45 +1000302
Dave Airlief19467c2011-03-22 14:10:27 +1000303 /* lookup the MXM GUID */
Dave Airlie81161882010-12-06 12:57:45 +1000304 guid_valid = mxm_wmi_supported();
Dave Airlie81161882010-12-06 12:57:45 +1000305
Dave Airlief19467c2011-03-22 14:10:27 +1000306 if (guid_valid)
307 printk("MXM: GUID detected in BIOS\n");
Dave Airlieafeb3e12010-04-07 13:55:09 +1000308
Dave Airlief19467c2011-03-22 14:10:27 +1000309 /* now do DSM detection */
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000310 while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, pdev)) != NULL) {
311 vga_count++;
312
Peter Wucba97802016-07-15 15:12:17 +0200313 nouveau_dsm_pci_probe(pdev, &dhandle, &has_mux, &has_optimus,
Peter Wu692a17d2016-07-15 15:12:18 +0200314 &has_optimus_flags, &has_power_resources);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000315 }
316
Emil Velikov4c60fac2013-10-09 08:25:16 +0100317 while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_3D << 8, pdev)) != NULL) {
318 vga_count++;
319
Peter Wucba97802016-07-15 15:12:17 +0200320 nouveau_dsm_pci_probe(pdev, &dhandle, &has_mux, &has_optimus,
Peter Wu692a17d2016-07-15 15:12:18 +0200321 &has_optimus_flags, &has_power_resources);
Emil Velikov4c60fac2013-10-09 08:25:16 +0100322 }
323
Dave Airliec839d742012-11-02 11:04:27 +1000324 /* find the optimus DSM or the old v1 DSM */
Peter Wudf421942016-07-15 15:12:15 +0200325 if (has_optimus) {
326 nouveau_dsm_priv.dhandle = dhandle;
Dave Airliec839d742012-11-02 11:04:27 +1000327 acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME,
328 &buffer);
329 printk(KERN_INFO "VGA switcheroo: detected Optimus DSM method %s handle\n",
330 acpi_method_name);
Peter Wu692a17d2016-07-15 15:12:18 +0200331 if (has_power_resources)
332 pr_info("nouveau: detected PR support, will not use DSM\n");
Dave Airliec839d742012-11-02 11:04:27 +1000333 nouveau_dsm_priv.optimus_detected = true;
Peter Wucba97802016-07-15 15:12:17 +0200334 nouveau_dsm_priv.optimus_flags_detected = has_optimus_flags;
Peter Wu692a17d2016-07-15 15:12:18 +0200335 nouveau_dsm_priv.optimus_skip_dsm = has_power_resources;
Dave Airliec839d742012-11-02 11:04:27 +1000336 ret = true;
Peter Wudf421942016-07-15 15:12:15 +0200337 } else if (vga_count == 2 && has_mux && guid_valid) {
338 nouveau_dsm_priv.dhandle = dhandle;
Peter Lekensteynd0992302011-12-17 12:54:04 +0100339 acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME,
340 &buffer);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000341 printk(KERN_INFO "VGA switcheroo: detected DSM switching method %s handle\n",
Peter Lekensteynd0992302011-12-17 12:54:04 +0100342 acpi_method_name);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000343 nouveau_dsm_priv.dsm_detected = true;
Dave Airlief19467c2011-03-22 14:10:27 +1000344 ret = true;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000345 }
Dave Airlief19467c2011-03-22 14:10:27 +1000346
Dave Airlief19467c2011-03-22 14:10:27 +1000347
348 return ret;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000349}
350
351void nouveau_register_dsm_handler(void)
352{
353 bool r;
354
355 r = nouveau_dsm_detect();
356 if (!r)
357 return;
358
Lukas Wunner156d7d42016-01-11 20:09:20 +0100359 vga_switcheroo_register_handler(&nouveau_dsm_handler, 0);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000360}
361
Peter Lekensteynd0992302011-12-17 12:54:04 +0100362/* Must be called for Optimus models before the card can be turned off */
363void nouveau_switcheroo_optimus_dsm(void)
364{
365 u32 result = 0;
Peter Wu692a17d2016-07-15 15:12:18 +0200366 if (!nouveau_dsm_priv.optimus_detected || nouveau_dsm_priv.optimus_skip_dsm)
Peter Lekensteynd0992302011-12-17 12:54:04 +0100367 return;
368
Peter Wucba97802016-07-15 15:12:17 +0200369 if (nouveau_dsm_priv.optimus_flags_detected)
370 nouveau_optimus_dsm(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_OPTIMUS_FLAGS,
371 0x3, &result);
Dave Airlie5addcf02012-09-10 14:20:51 +1000372
373 nouveau_optimus_dsm(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_OPTIMUS_CAPS,
374 NOUVEAU_DSM_OPTIMUS_SET_POWERDOWN, &result);
375
Peter Lekensteynd0992302011-12-17 12:54:04 +0100376}
377
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000378void nouveau_unregister_dsm_handler(void)
379{
Andreas Heider2f3787a2012-05-21 00:14:50 +0100380 if (nouveau_dsm_priv.optimus_detected || nouveau_dsm_priv.dsm_detected)
381 vga_switcheroo_unregister_handler();
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000382}
Jeff Mahoneyd0ce7b8562014-01-21 14:34:52 -0800383#else
384void nouveau_register_dsm_handler(void) {}
385void nouveau_unregister_dsm_handler(void) {}
386void nouveau_switcheroo_optimus_dsm(void) {}
387#endif
Dave Airlieafeb3e12010-04-07 13:55:09 +1000388
389/* retrieve the ROM in 4k blocks */
390static int nouveau_rom_call(acpi_handle rom_handle, uint8_t *bios,
391 int offset, int len)
392{
393 acpi_status status;
394 union acpi_object rom_arg_elements[2], *obj;
395 struct acpi_object_list rom_arg;
396 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL};
397
398 rom_arg.count = 2;
399 rom_arg.pointer = &rom_arg_elements[0];
400
401 rom_arg_elements[0].type = ACPI_TYPE_INTEGER;
402 rom_arg_elements[0].integer.value = offset;
403
404 rom_arg_elements[1].type = ACPI_TYPE_INTEGER;
405 rom_arg_elements[1].integer.value = len;
406
407 status = acpi_evaluate_object(rom_handle, NULL, &rom_arg, &buffer);
408 if (ACPI_FAILURE(status)) {
409 printk(KERN_INFO "failed to evaluate ROM got %s\n", acpi_format_exception(status));
410 return -ENODEV;
411 }
412 obj = (union acpi_object *)buffer.pointer;
Ben Skeggs95432942015-11-19 13:18:34 +1000413 len = min(len, (int)obj->buffer.length);
Dave Airlieafeb3e12010-04-07 13:55:09 +1000414 memcpy(bios+offset, obj->buffer.pointer, len);
415 kfree(buffer.pointer);
416 return len;
417}
418
Ben Skeggs26c9e8e2015-08-20 14:54:23 +1000419bool nouveau_acpi_rom_supported(struct device *dev)
Dave Airlieafeb3e12010-04-07 13:55:09 +1000420{
421 acpi_status status;
422 acpi_handle dhandle, rom_handle;
423
Ben Skeggs26c9e8e2015-08-20 14:54:23 +1000424 dhandle = ACPI_HANDLE(dev);
Dave Airlieafeb3e12010-04-07 13:55:09 +1000425 if (!dhandle)
426 return false;
427
428 status = acpi_get_handle(dhandle, "_ROM", &rom_handle);
429 if (ACPI_FAILURE(status))
430 return false;
431
432 nouveau_dsm_priv.rom_handle = rom_handle;
433 return true;
434}
435
436int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len)
437{
438 return nouveau_rom_call(nouveau_dsm_priv.rom_handle, bios, offset, len);
439}
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000440
Ben Skeggsc0077062012-07-26 08:51:21 +1000441void *
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000442nouveau_acpi_edid(struct drm_device *dev, struct drm_connector *connector)
443{
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000444 struct acpi_device *acpidev;
445 acpi_handle handle;
446 int type, ret;
447 void *edid;
448
449 switch (connector->connector_type) {
450 case DRM_MODE_CONNECTOR_LVDS:
451 case DRM_MODE_CONNECTOR_eDP:
452 type = ACPI_VIDEO_DISPLAY_LCD;
453 break;
454 default:
Ben Skeggsc0077062012-07-26 08:51:21 +1000455 return NULL;
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000456 }
457
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +0100458 handle = ACPI_HANDLE(&dev->pdev->dev);
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000459 if (!handle)
Ben Skeggsc0077062012-07-26 08:51:21 +1000460 return NULL;
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000461
462 ret = acpi_bus_get_device(handle, &acpidev);
463 if (ret)
Ben Skeggsc0077062012-07-26 08:51:21 +1000464 return NULL;
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000465
466 ret = acpi_video_get_edid(acpidev, type, -1, &edid);
467 if (ret < 0)
Ben Skeggsc0077062012-07-26 08:51:21 +1000468 return NULL;
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000469
Ben Skeggsc0077062012-07-26 08:51:21 +1000470 return kmemdup(edid, EDID_LENGTH, GFP_KERNEL);
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000471}