Loading...
1/*
2 * Copyright (c) 2010 Red Hat Inc.
3 * Author : Dave Airlie <airlied@redhat.com>
4 *
5 * Licensed under GPLv2
6 *
7 * ATPX support for both Intel/ATI
8 */
9#include <linux/vga_switcheroo.h>
10#include <linux/slab.h>
11#include <linux/acpi.h>
12#include <linux/pci.h>
13#include <linux/delay.h>
14
15#include "amd_acpi.h"
16
17struct amdgpu_atpx_functions {
18 bool px_params;
19 bool power_cntl;
20 bool disp_mux_cntl;
21 bool i2c_mux_cntl;
22 bool switch_start;
23 bool switch_end;
24 bool disp_connectors_mapping;
25 bool disp_detetion_ports;
26};
27
28struct amdgpu_atpx {
29 acpi_handle handle;
30 struct amdgpu_atpx_functions functions;
31 bool is_hybrid;
32 bool dgpu_req_power_for_displays;
33};
34
35static struct amdgpu_atpx_priv {
36 bool atpx_detected;
37 bool bridge_pm_usable;
38 /* handle for device - and atpx */
39 acpi_handle dhandle;
40 acpi_handle other_handle;
41 struct amdgpu_atpx atpx;
42} amdgpu_atpx_priv;
43
44struct atpx_verify_interface {
45 u16 size; /* structure size in bytes (includes size field) */
46 u16 version; /* version */
47 u32 function_bits; /* supported functions bit vector */
48} __packed;
49
50struct atpx_px_params {
51 u16 size; /* structure size in bytes (includes size field) */
52 u32 valid_flags; /* which flags are valid */
53 u32 flags; /* flags */
54} __packed;
55
56struct atpx_power_control {
57 u16 size;
58 u8 dgpu_state;
59} __packed;
60
61struct atpx_mux {
62 u16 size;
63 u16 mux;
64} __packed;
65
66bool amdgpu_has_atpx(void) {
67 return amdgpu_atpx_priv.atpx_detected;
68}
69
70bool amdgpu_has_atpx_dgpu_power_cntl(void) {
71 return amdgpu_atpx_priv.atpx.functions.power_cntl;
72}
73
74bool amdgpu_is_atpx_hybrid(void) {
75 return amdgpu_atpx_priv.atpx.is_hybrid;
76}
77
78bool amdgpu_atpx_dgpu_req_power_for_displays(void) {
79 return amdgpu_atpx_priv.atpx.dgpu_req_power_for_displays;
80}
81
82/**
83 * amdgpu_atpx_call - call an ATPX method
84 *
85 * @handle: acpi handle
86 * @function: the ATPX function to execute
87 * @params: ATPX function params
88 *
89 * Executes the requested ATPX function (all asics).
90 * Returns a pointer to the acpi output buffer.
91 */
92static union acpi_object *amdgpu_atpx_call(acpi_handle handle, int function,
93 struct acpi_buffer *params)
94{
95 acpi_status status;
96 union acpi_object atpx_arg_elements[2];
97 struct acpi_object_list atpx_arg;
98 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
99
100 atpx_arg.count = 2;
101 atpx_arg.pointer = &atpx_arg_elements[0];
102
103 atpx_arg_elements[0].type = ACPI_TYPE_INTEGER;
104 atpx_arg_elements[0].integer.value = function;
105
106 if (params) {
107 atpx_arg_elements[1].type = ACPI_TYPE_BUFFER;
108 atpx_arg_elements[1].buffer.length = params->length;
109 atpx_arg_elements[1].buffer.pointer = params->pointer;
110 } else {
111 /* We need a second fake parameter */
112 atpx_arg_elements[1].type = ACPI_TYPE_INTEGER;
113 atpx_arg_elements[1].integer.value = 0;
114 }
115
116 status = acpi_evaluate_object(handle, NULL, &atpx_arg, &buffer);
117
118 /* Fail only if calling the method fails and ATPX is supported */
119 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
120 printk("failed to evaluate ATPX got %s\n",
121 acpi_format_exception(status));
122 kfree(buffer.pointer);
123 return NULL;
124 }
125
126 return buffer.pointer;
127}
128
129/**
130 * amdgpu_atpx_parse_functions - parse supported functions
131 *
132 * @f: supported functions struct
133 * @mask: supported functions mask from ATPX
134 *
135 * Use the supported functions mask from ATPX function
136 * ATPX_FUNCTION_VERIFY_INTERFACE to determine what functions
137 * are supported (all asics).
138 */
139static void amdgpu_atpx_parse_functions(struct amdgpu_atpx_functions *f, u32 mask)
140{
141 f->px_params = mask & ATPX_GET_PX_PARAMETERS_SUPPORTED;
142 f->power_cntl = mask & ATPX_POWER_CONTROL_SUPPORTED;
143 f->disp_mux_cntl = mask & ATPX_DISPLAY_MUX_CONTROL_SUPPORTED;
144 f->i2c_mux_cntl = mask & ATPX_I2C_MUX_CONTROL_SUPPORTED;
145 f->switch_start = mask & ATPX_GRAPHICS_DEVICE_SWITCH_START_NOTIFICATION_SUPPORTED;
146 f->switch_end = mask & ATPX_GRAPHICS_DEVICE_SWITCH_END_NOTIFICATION_SUPPORTED;
147 f->disp_connectors_mapping = mask & ATPX_GET_DISPLAY_CONNECTORS_MAPPING_SUPPORTED;
148 f->disp_detetion_ports = mask & ATPX_GET_DISPLAY_DETECTION_PORTS_SUPPORTED;
149}
150
151/**
152 * amdgpu_atpx_validate_functions - validate ATPX functions
153 *
154 * @atpx: amdgpu atpx struct
155 *
156 * Validate that required functions are enabled (all asics).
157 * returns 0 on success, error on failure.
158 */
159static int amdgpu_atpx_validate(struct amdgpu_atpx *atpx)
160{
161 u32 valid_bits = 0;
162
163 if (atpx->functions.px_params) {
164 union acpi_object *info;
165 struct atpx_px_params output;
166 size_t size;
167
168 info = amdgpu_atpx_call(atpx->handle, ATPX_FUNCTION_GET_PX_PARAMETERS, NULL);
169 if (!info)
170 return -EIO;
171
172 memset(&output, 0, sizeof(output));
173
174 size = *(u16 *) info->buffer.pointer;
175 if (size < 10) {
176 printk("ATPX buffer is too small: %zu\n", size);
177 kfree(info);
178 return -EINVAL;
179 }
180 size = min(sizeof(output), size);
181
182 memcpy(&output, info->buffer.pointer, size);
183
184 valid_bits = output.flags & output.valid_flags;
185
186 kfree(info);
187 }
188
189 /* if separate mux flag is set, mux controls are required */
190 if (valid_bits & ATPX_SEPARATE_MUX_FOR_I2C) {
191 atpx->functions.i2c_mux_cntl = true;
192 atpx->functions.disp_mux_cntl = true;
193 }
194 /* if any outputs are muxed, mux controls are required */
195 if (valid_bits & (ATPX_CRT1_RGB_SIGNAL_MUXED |
196 ATPX_TV_SIGNAL_MUXED |
197 ATPX_DFP_SIGNAL_MUXED))
198 atpx->functions.disp_mux_cntl = true;
199
200
201 /* some bioses set these bits rather than flagging power_cntl as supported */
202 if (valid_bits & (ATPX_DYNAMIC_PX_SUPPORTED |
203 ATPX_DYNAMIC_DGPU_POWER_OFF_SUPPORTED))
204 atpx->functions.power_cntl = true;
205
206 atpx->is_hybrid = false;
207 if (valid_bits & ATPX_MS_HYBRID_GFX_SUPPORTED) {
208 printk("ATPX Hybrid Graphics\n");
209 /*
210 * Disable legacy PM methods only when pcie port PM is usable,
211 * otherwise the device might fail to power off or power on.
212 */
213 atpx->functions.power_cntl = !amdgpu_atpx_priv.bridge_pm_usable;
214 atpx->is_hybrid = true;
215 }
216
217 atpx->dgpu_req_power_for_displays = false;
218 if (valid_bits & ATPX_DGPU_REQ_POWER_FOR_DISPLAYS)
219 atpx->dgpu_req_power_for_displays = true;
220
221 return 0;
222}
223
224/**
225 * amdgpu_atpx_verify_interface - verify ATPX
226 *
227 * @atpx: amdgpu atpx struct
228 *
229 * Execute the ATPX_FUNCTION_VERIFY_INTERFACE ATPX function
230 * to initialize ATPX and determine what features are supported
231 * (all asics).
232 * returns 0 on success, error on failure.
233 */
234static int amdgpu_atpx_verify_interface(struct amdgpu_atpx *atpx)
235{
236 union acpi_object *info;
237 struct atpx_verify_interface output;
238 size_t size;
239 int err = 0;
240
241 info = amdgpu_atpx_call(atpx->handle, ATPX_FUNCTION_VERIFY_INTERFACE, NULL);
242 if (!info)
243 return -EIO;
244
245 memset(&output, 0, sizeof(output));
246
247 size = *(u16 *) info->buffer.pointer;
248 if (size < 8) {
249 printk("ATPX buffer is too small: %zu\n", size);
250 err = -EINVAL;
251 goto out;
252 }
253 size = min(sizeof(output), size);
254
255 memcpy(&output, info->buffer.pointer, size);
256
257 /* TODO: check version? */
258 printk("ATPX version %u, functions 0x%08x\n",
259 output.version, output.function_bits);
260
261 amdgpu_atpx_parse_functions(&atpx->functions, output.function_bits);
262
263out:
264 kfree(info);
265 return err;
266}
267
268/**
269 * amdgpu_atpx_set_discrete_state - power up/down discrete GPU
270 *
271 * @atpx: atpx info struct
272 * @state: discrete GPU state (0 = power down, 1 = power up)
273 *
274 * Execute the ATPX_FUNCTION_POWER_CONTROL ATPX function to
275 * power down/up the discrete GPU (all asics).
276 * Returns 0 on success, error on failure.
277 */
278static int amdgpu_atpx_set_discrete_state(struct amdgpu_atpx *atpx, u8 state)
279{
280 struct acpi_buffer params;
281 union acpi_object *info;
282 struct atpx_power_control input;
283
284 if (atpx->functions.power_cntl) {
285 input.size = 3;
286 input.dgpu_state = state;
287 params.length = input.size;
288 params.pointer = &input;
289 info = amdgpu_atpx_call(atpx->handle,
290 ATPX_FUNCTION_POWER_CONTROL,
291 ¶ms);
292 if (!info)
293 return -EIO;
294 kfree(info);
295
296 /* 200ms delay is required after off */
297 if (state == 0)
298 msleep(200);
299 }
300 return 0;
301}
302
303/**
304 * amdgpu_atpx_switch_disp_mux - switch display mux
305 *
306 * @atpx: atpx info struct
307 * @mux_id: mux state (0 = integrated GPU, 1 = discrete GPU)
308 *
309 * Execute the ATPX_FUNCTION_DISPLAY_MUX_CONTROL ATPX function to
310 * switch the display mux between the discrete GPU and integrated GPU
311 * (all asics).
312 * Returns 0 on success, error on failure.
313 */
314static int amdgpu_atpx_switch_disp_mux(struct amdgpu_atpx *atpx, u16 mux_id)
315{
316 struct acpi_buffer params;
317 union acpi_object *info;
318 struct atpx_mux input;
319
320 if (atpx->functions.disp_mux_cntl) {
321 input.size = 4;
322 input.mux = mux_id;
323 params.length = input.size;
324 params.pointer = &input;
325 info = amdgpu_atpx_call(atpx->handle,
326 ATPX_FUNCTION_DISPLAY_MUX_CONTROL,
327 ¶ms);
328 if (!info)
329 return -EIO;
330 kfree(info);
331 }
332 return 0;
333}
334
335/**
336 * amdgpu_atpx_switch_i2c_mux - switch i2c/hpd mux
337 *
338 * @atpx: atpx info struct
339 * @mux_id: mux state (0 = integrated GPU, 1 = discrete GPU)
340 *
341 * Execute the ATPX_FUNCTION_I2C_MUX_CONTROL ATPX function to
342 * switch the i2c/hpd mux between the discrete GPU and integrated GPU
343 * (all asics).
344 * Returns 0 on success, error on failure.
345 */
346static int amdgpu_atpx_switch_i2c_mux(struct amdgpu_atpx *atpx, u16 mux_id)
347{
348 struct acpi_buffer params;
349 union acpi_object *info;
350 struct atpx_mux input;
351
352 if (atpx->functions.i2c_mux_cntl) {
353 input.size = 4;
354 input.mux = mux_id;
355 params.length = input.size;
356 params.pointer = &input;
357 info = amdgpu_atpx_call(atpx->handle,
358 ATPX_FUNCTION_I2C_MUX_CONTROL,
359 ¶ms);
360 if (!info)
361 return -EIO;
362 kfree(info);
363 }
364 return 0;
365}
366
367/**
368 * amdgpu_atpx_switch_start - notify the sbios of a GPU switch
369 *
370 * @atpx: atpx info struct
371 * @mux_id: mux state (0 = integrated GPU, 1 = discrete GPU)
372 *
373 * Execute the ATPX_FUNCTION_GRAPHICS_DEVICE_SWITCH_START_NOTIFICATION ATPX
374 * function to notify the sbios that a switch between the discrete GPU and
375 * integrated GPU has begun (all asics).
376 * Returns 0 on success, error on failure.
377 */
378static int amdgpu_atpx_switch_start(struct amdgpu_atpx *atpx, u16 mux_id)
379{
380 struct acpi_buffer params;
381 union acpi_object *info;
382 struct atpx_mux input;
383
384 if (atpx->functions.switch_start) {
385 input.size = 4;
386 input.mux = mux_id;
387 params.length = input.size;
388 params.pointer = &input;
389 info = amdgpu_atpx_call(atpx->handle,
390 ATPX_FUNCTION_GRAPHICS_DEVICE_SWITCH_START_NOTIFICATION,
391 ¶ms);
392 if (!info)
393 return -EIO;
394 kfree(info);
395 }
396 return 0;
397}
398
399/**
400 * amdgpu_atpx_switch_end - notify the sbios of a GPU switch
401 *
402 * @atpx: atpx info struct
403 * @mux_id: mux state (0 = integrated GPU, 1 = discrete GPU)
404 *
405 * Execute the ATPX_FUNCTION_GRAPHICS_DEVICE_SWITCH_END_NOTIFICATION ATPX
406 * function to notify the sbios that a switch between the discrete GPU and
407 * integrated GPU has ended (all asics).
408 * Returns 0 on success, error on failure.
409 */
410static int amdgpu_atpx_switch_end(struct amdgpu_atpx *atpx, u16 mux_id)
411{
412 struct acpi_buffer params;
413 union acpi_object *info;
414 struct atpx_mux input;
415
416 if (atpx->functions.switch_end) {
417 input.size = 4;
418 input.mux = mux_id;
419 params.length = input.size;
420 params.pointer = &input;
421 info = amdgpu_atpx_call(atpx->handle,
422 ATPX_FUNCTION_GRAPHICS_DEVICE_SWITCH_END_NOTIFICATION,
423 ¶ms);
424 if (!info)
425 return -EIO;
426 kfree(info);
427 }
428 return 0;
429}
430
431/**
432 * amdgpu_atpx_switchto - switch to the requested GPU
433 *
434 * @id: GPU to switch to
435 *
436 * Execute the necessary ATPX functions to switch between the discrete GPU and
437 * integrated GPU (all asics).
438 * Returns 0 on success, error on failure.
439 */
440static int amdgpu_atpx_switchto(enum vga_switcheroo_client_id id)
441{
442 u16 gpu_id;
443
444 if (id == VGA_SWITCHEROO_IGD)
445 gpu_id = ATPX_INTEGRATED_GPU;
446 else
447 gpu_id = ATPX_DISCRETE_GPU;
448
449 amdgpu_atpx_switch_start(&amdgpu_atpx_priv.atpx, gpu_id);
450 amdgpu_atpx_switch_disp_mux(&amdgpu_atpx_priv.atpx, gpu_id);
451 amdgpu_atpx_switch_i2c_mux(&amdgpu_atpx_priv.atpx, gpu_id);
452 amdgpu_atpx_switch_end(&amdgpu_atpx_priv.atpx, gpu_id);
453
454 return 0;
455}
456
457/**
458 * amdgpu_atpx_power_state - power down/up the requested GPU
459 *
460 * @id: GPU to power down/up
461 * @state: requested power state (0 = off, 1 = on)
462 *
463 * Execute the necessary ATPX function to power down/up the discrete GPU
464 * (all asics).
465 * Returns 0 on success, error on failure.
466 */
467static int amdgpu_atpx_power_state(enum vga_switcheroo_client_id id,
468 enum vga_switcheroo_state state)
469{
470 /* on w500 ACPI can't change intel gpu state */
471 if (id == VGA_SWITCHEROO_IGD)
472 return 0;
473
474 amdgpu_atpx_set_discrete_state(&amdgpu_atpx_priv.atpx, state);
475 return 0;
476}
477
478/**
479 * amdgpu_atpx_pci_probe_handle - look up the ATPX handle
480 *
481 * @pdev: pci device
482 *
483 * Look up the ATPX handles (all asics).
484 * Returns true if the handles are found, false if not.
485 */
486static bool amdgpu_atpx_pci_probe_handle(struct pci_dev *pdev)
487{
488 acpi_handle dhandle, atpx_handle;
489 acpi_status status;
490
491 dhandle = ACPI_HANDLE(&pdev->dev);
492 if (!dhandle)
493 return false;
494
495 status = acpi_get_handle(dhandle, "ATPX", &atpx_handle);
496 if (ACPI_FAILURE(status)) {
497 amdgpu_atpx_priv.other_handle = dhandle;
498 return false;
499 }
500 amdgpu_atpx_priv.dhandle = dhandle;
501 amdgpu_atpx_priv.atpx.handle = atpx_handle;
502 return true;
503}
504
505/**
506 * amdgpu_atpx_init - verify the ATPX interface
507 *
508 * Verify the ATPX interface (all asics).
509 * Returns 0 on success, error on failure.
510 */
511static int amdgpu_atpx_init(void)
512{
513 int r;
514
515 /* set up the ATPX handle */
516 r = amdgpu_atpx_verify_interface(&amdgpu_atpx_priv.atpx);
517 if (r)
518 return r;
519
520 /* validate the atpx setup */
521 r = amdgpu_atpx_validate(&amdgpu_atpx_priv.atpx);
522 if (r)
523 return r;
524
525 return 0;
526}
527
528/**
529 * amdgpu_atpx_get_client_id - get the client id
530 *
531 * @pdev: pci device
532 *
533 * look up whether we are the integrated or discrete GPU (all asics).
534 * Returns the client id.
535 */
536static int amdgpu_atpx_get_client_id(struct pci_dev *pdev)
537{
538 if (amdgpu_atpx_priv.dhandle == ACPI_HANDLE(&pdev->dev))
539 return VGA_SWITCHEROO_IGD;
540 else
541 return VGA_SWITCHEROO_DIS;
542}
543
544static const struct vga_switcheroo_handler amdgpu_atpx_handler = {
545 .switchto = amdgpu_atpx_switchto,
546 .power_state = amdgpu_atpx_power_state,
547 .get_client_id = amdgpu_atpx_get_client_id,
548};
549
550/**
551 * amdgpu_atpx_detect - detect whether we have PX
552 *
553 * Check if we have a PX system (all asics).
554 * Returns true if we have a PX system, false if not.
555 */
556static bool amdgpu_atpx_detect(void)
557{
558 char acpi_method_name[255] = { 0 };
559 struct acpi_buffer buffer = {sizeof(acpi_method_name), acpi_method_name};
560 struct pci_dev *pdev = NULL;
561 bool has_atpx = false;
562 int vga_count = 0;
563 bool d3_supported = false;
564 struct pci_dev *parent_pdev;
565
566 while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, pdev)) != NULL) {
567 vga_count++;
568
569 has_atpx |= (amdgpu_atpx_pci_probe_handle(pdev) == true);
570
571 parent_pdev = pci_upstream_bridge(pdev);
572 d3_supported |= parent_pdev && parent_pdev->bridge_d3;
573 }
574
575 while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_OTHER << 8, pdev)) != NULL) {
576 vga_count++;
577
578 has_atpx |= (amdgpu_atpx_pci_probe_handle(pdev) == true);
579
580 parent_pdev = pci_upstream_bridge(pdev);
581 d3_supported |= parent_pdev && parent_pdev->bridge_d3;
582 }
583
584 if (has_atpx && vga_count == 2) {
585 acpi_get_name(amdgpu_atpx_priv.atpx.handle, ACPI_FULL_PATHNAME, &buffer);
586 printk(KERN_INFO "vga_switcheroo: detected switching method %s handle\n",
587 acpi_method_name);
588 amdgpu_atpx_priv.atpx_detected = true;
589 amdgpu_atpx_priv.bridge_pm_usable = d3_supported;
590 amdgpu_atpx_init();
591 return true;
592 }
593 return false;
594}
595
596/**
597 * amdgpu_register_atpx_handler - register with vga_switcheroo
598 *
599 * Register the PX callbacks with vga_switcheroo (all asics).
600 */
601void amdgpu_register_atpx_handler(void)
602{
603 bool r;
604 enum vga_switcheroo_handler_flags_t handler_flags = 0;
605
606 /* detect if we have any ATPX + 2 VGA in the system */
607 r = amdgpu_atpx_detect();
608 if (!r)
609 return;
610
611 vga_switcheroo_register_handler(&amdgpu_atpx_handler, handler_flags);
612}
613
614/**
615 * amdgpu_unregister_atpx_handler - unregister with vga_switcheroo
616 *
617 * Unregister the PX callbacks with vga_switcheroo (all asics).
618 */
619void amdgpu_unregister_atpx_handler(void)
620{
621 vga_switcheroo_unregister_handler();
622}
1/*
2 * Copyright (c) 2010 Red Hat Inc.
3 * Author : Dave Airlie <airlied@redhat.com>
4 *
5 * Licensed under GPLv2
6 *
7 * ATPX support for both Intel/ATI
8 */
9#include <linux/vga_switcheroo.h>
10#include <linux/slab.h>
11#include <linux/acpi.h>
12#include <linux/pci.h>
13
14#include "amd_acpi.h"
15
16struct amdgpu_atpx_functions {
17 bool px_params;
18 bool power_cntl;
19 bool disp_mux_cntl;
20 bool i2c_mux_cntl;
21 bool switch_start;
22 bool switch_end;
23 bool disp_connectors_mapping;
24 bool disp_detetion_ports;
25};
26
27struct amdgpu_atpx {
28 acpi_handle handle;
29 struct amdgpu_atpx_functions functions;
30};
31
32static struct amdgpu_atpx_priv {
33 bool atpx_detected;
34 /* handle for device - and atpx */
35 acpi_handle dhandle;
36 acpi_handle other_handle;
37 struct amdgpu_atpx atpx;
38} amdgpu_atpx_priv;
39
40struct atpx_verify_interface {
41 u16 size; /* structure size in bytes (includes size field) */
42 u16 version; /* version */
43 u32 function_bits; /* supported functions bit vector */
44} __packed;
45
46struct atpx_px_params {
47 u16 size; /* structure size in bytes (includes size field) */
48 u32 valid_flags; /* which flags are valid */
49 u32 flags; /* flags */
50} __packed;
51
52struct atpx_power_control {
53 u16 size;
54 u8 dgpu_state;
55} __packed;
56
57struct atpx_mux {
58 u16 size;
59 u16 mux;
60} __packed;
61
62bool amdgpu_has_atpx(void) {
63 return amdgpu_atpx_priv.atpx_detected;
64}
65
66/**
67 * amdgpu_atpx_call - call an ATPX method
68 *
69 * @handle: acpi handle
70 * @function: the ATPX function to execute
71 * @params: ATPX function params
72 *
73 * Executes the requested ATPX function (all asics).
74 * Returns a pointer to the acpi output buffer.
75 */
76static union acpi_object *amdgpu_atpx_call(acpi_handle handle, int function,
77 struct acpi_buffer *params)
78{
79 acpi_status status;
80 union acpi_object atpx_arg_elements[2];
81 struct acpi_object_list atpx_arg;
82 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
83
84 atpx_arg.count = 2;
85 atpx_arg.pointer = &atpx_arg_elements[0];
86
87 atpx_arg_elements[0].type = ACPI_TYPE_INTEGER;
88 atpx_arg_elements[0].integer.value = function;
89
90 if (params) {
91 atpx_arg_elements[1].type = ACPI_TYPE_BUFFER;
92 atpx_arg_elements[1].buffer.length = params->length;
93 atpx_arg_elements[1].buffer.pointer = params->pointer;
94 } else {
95 /* We need a second fake parameter */
96 atpx_arg_elements[1].type = ACPI_TYPE_INTEGER;
97 atpx_arg_elements[1].integer.value = 0;
98 }
99
100 status = acpi_evaluate_object(handle, NULL, &atpx_arg, &buffer);
101
102 /* Fail only if calling the method fails and ATPX is supported */
103 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
104 printk("failed to evaluate ATPX got %s\n",
105 acpi_format_exception(status));
106 kfree(buffer.pointer);
107 return NULL;
108 }
109
110 return buffer.pointer;
111}
112
113/**
114 * amdgpu_atpx_parse_functions - parse supported functions
115 *
116 * @f: supported functions struct
117 * @mask: supported functions mask from ATPX
118 *
119 * Use the supported functions mask from ATPX function
120 * ATPX_FUNCTION_VERIFY_INTERFACE to determine what functions
121 * are supported (all asics).
122 */
123static void amdgpu_atpx_parse_functions(struct amdgpu_atpx_functions *f, u32 mask)
124{
125 f->px_params = mask & ATPX_GET_PX_PARAMETERS_SUPPORTED;
126 f->power_cntl = mask & ATPX_POWER_CONTROL_SUPPORTED;
127 f->disp_mux_cntl = mask & ATPX_DISPLAY_MUX_CONTROL_SUPPORTED;
128 f->i2c_mux_cntl = mask & ATPX_I2C_MUX_CONTROL_SUPPORTED;
129 f->switch_start = mask & ATPX_GRAPHICS_DEVICE_SWITCH_START_NOTIFICATION_SUPPORTED;
130 f->switch_end = mask & ATPX_GRAPHICS_DEVICE_SWITCH_END_NOTIFICATION_SUPPORTED;
131 f->disp_connectors_mapping = mask & ATPX_GET_DISPLAY_CONNECTORS_MAPPING_SUPPORTED;
132 f->disp_detetion_ports = mask & ATPX_GET_DISPLAY_DETECTION_PORTS_SUPPORTED;
133}
134
135/**
136 * amdgpu_atpx_validate_functions - validate ATPX functions
137 *
138 * @atpx: amdgpu atpx struct
139 *
140 * Validate that required functions are enabled (all asics).
141 * returns 0 on success, error on failure.
142 */
143static int amdgpu_atpx_validate(struct amdgpu_atpx *atpx)
144{
145 /* make sure required functions are enabled */
146 /* dGPU power control is required */
147 if (atpx->functions.power_cntl == false) {
148 printk("ATPX dGPU power cntl not present, forcing\n");
149 atpx->functions.power_cntl = true;
150 }
151
152 if (atpx->functions.px_params) {
153 union acpi_object *info;
154 struct atpx_px_params output;
155 size_t size;
156 u32 valid_bits;
157
158 info = amdgpu_atpx_call(atpx->handle, ATPX_FUNCTION_GET_PX_PARAMETERS, NULL);
159 if (!info)
160 return -EIO;
161
162 memset(&output, 0, sizeof(output));
163
164 size = *(u16 *) info->buffer.pointer;
165 if (size < 10) {
166 printk("ATPX buffer is too small: %zu\n", size);
167 kfree(info);
168 return -EINVAL;
169 }
170 size = min(sizeof(output), size);
171
172 memcpy(&output, info->buffer.pointer, size);
173
174 valid_bits = output.flags & output.valid_flags;
175 /* if separate mux flag is set, mux controls are required */
176 if (valid_bits & ATPX_SEPARATE_MUX_FOR_I2C) {
177 atpx->functions.i2c_mux_cntl = true;
178 atpx->functions.disp_mux_cntl = true;
179 }
180 /* if any outputs are muxed, mux controls are required */
181 if (valid_bits & (ATPX_CRT1_RGB_SIGNAL_MUXED |
182 ATPX_TV_SIGNAL_MUXED |
183 ATPX_DFP_SIGNAL_MUXED))
184 atpx->functions.disp_mux_cntl = true;
185
186 kfree(info);
187 }
188 return 0;
189}
190
191/**
192 * amdgpu_atpx_verify_interface - verify ATPX
193 *
194 * @atpx: amdgpu atpx struct
195 *
196 * Execute the ATPX_FUNCTION_VERIFY_INTERFACE ATPX function
197 * to initialize ATPX and determine what features are supported
198 * (all asics).
199 * returns 0 on success, error on failure.
200 */
201static int amdgpu_atpx_verify_interface(struct amdgpu_atpx *atpx)
202{
203 union acpi_object *info;
204 struct atpx_verify_interface output;
205 size_t size;
206 int err = 0;
207
208 info = amdgpu_atpx_call(atpx->handle, ATPX_FUNCTION_VERIFY_INTERFACE, NULL);
209 if (!info)
210 return -EIO;
211
212 memset(&output, 0, sizeof(output));
213
214 size = *(u16 *) info->buffer.pointer;
215 if (size < 8) {
216 printk("ATPX buffer is too small: %zu\n", size);
217 err = -EINVAL;
218 goto out;
219 }
220 size = min(sizeof(output), size);
221
222 memcpy(&output, info->buffer.pointer, size);
223
224 /* TODO: check version? */
225 printk("ATPX version %u, functions 0x%08x\n",
226 output.version, output.function_bits);
227
228 amdgpu_atpx_parse_functions(&atpx->functions, output.function_bits);
229
230out:
231 kfree(info);
232 return err;
233}
234
235/**
236 * amdgpu_atpx_set_discrete_state - power up/down discrete GPU
237 *
238 * @atpx: atpx info struct
239 * @state: discrete GPU state (0 = power down, 1 = power up)
240 *
241 * Execute the ATPX_FUNCTION_POWER_CONTROL ATPX function to
242 * power down/up the discrete GPU (all asics).
243 * Returns 0 on success, error on failure.
244 */
245static int amdgpu_atpx_set_discrete_state(struct amdgpu_atpx *atpx, u8 state)
246{
247 struct acpi_buffer params;
248 union acpi_object *info;
249 struct atpx_power_control input;
250
251 if (atpx->functions.power_cntl) {
252 input.size = 3;
253 input.dgpu_state = state;
254 params.length = input.size;
255 params.pointer = &input;
256 info = amdgpu_atpx_call(atpx->handle,
257 ATPX_FUNCTION_POWER_CONTROL,
258 ¶ms);
259 if (!info)
260 return -EIO;
261 kfree(info);
262 }
263 return 0;
264}
265
266/**
267 * amdgpu_atpx_switch_disp_mux - switch display mux
268 *
269 * @atpx: atpx info struct
270 * @mux_id: mux state (0 = integrated GPU, 1 = discrete GPU)
271 *
272 * Execute the ATPX_FUNCTION_DISPLAY_MUX_CONTROL ATPX function to
273 * switch the display mux between the discrete GPU and integrated GPU
274 * (all asics).
275 * Returns 0 on success, error on failure.
276 */
277static int amdgpu_atpx_switch_disp_mux(struct amdgpu_atpx *atpx, u16 mux_id)
278{
279 struct acpi_buffer params;
280 union acpi_object *info;
281 struct atpx_mux input;
282
283 if (atpx->functions.disp_mux_cntl) {
284 input.size = 4;
285 input.mux = mux_id;
286 params.length = input.size;
287 params.pointer = &input;
288 info = amdgpu_atpx_call(atpx->handle,
289 ATPX_FUNCTION_DISPLAY_MUX_CONTROL,
290 ¶ms);
291 if (!info)
292 return -EIO;
293 kfree(info);
294 }
295 return 0;
296}
297
298/**
299 * amdgpu_atpx_switch_i2c_mux - switch i2c/hpd mux
300 *
301 * @atpx: atpx info struct
302 * @mux_id: mux state (0 = integrated GPU, 1 = discrete GPU)
303 *
304 * Execute the ATPX_FUNCTION_I2C_MUX_CONTROL ATPX function to
305 * switch the i2c/hpd mux between the discrete GPU and integrated GPU
306 * (all asics).
307 * Returns 0 on success, error on failure.
308 */
309static int amdgpu_atpx_switch_i2c_mux(struct amdgpu_atpx *atpx, u16 mux_id)
310{
311 struct acpi_buffer params;
312 union acpi_object *info;
313 struct atpx_mux input;
314
315 if (atpx->functions.i2c_mux_cntl) {
316 input.size = 4;
317 input.mux = mux_id;
318 params.length = input.size;
319 params.pointer = &input;
320 info = amdgpu_atpx_call(atpx->handle,
321 ATPX_FUNCTION_I2C_MUX_CONTROL,
322 ¶ms);
323 if (!info)
324 return -EIO;
325 kfree(info);
326 }
327 return 0;
328}
329
330/**
331 * amdgpu_atpx_switch_start - notify the sbios of a GPU switch
332 *
333 * @atpx: atpx info struct
334 * @mux_id: mux state (0 = integrated GPU, 1 = discrete GPU)
335 *
336 * Execute the ATPX_FUNCTION_GRAPHICS_DEVICE_SWITCH_START_NOTIFICATION ATPX
337 * function to notify the sbios that a switch between the discrete GPU and
338 * integrated GPU has begun (all asics).
339 * Returns 0 on success, error on failure.
340 */
341static int amdgpu_atpx_switch_start(struct amdgpu_atpx *atpx, u16 mux_id)
342{
343 struct acpi_buffer params;
344 union acpi_object *info;
345 struct atpx_mux input;
346
347 if (atpx->functions.switch_start) {
348 input.size = 4;
349 input.mux = mux_id;
350 params.length = input.size;
351 params.pointer = &input;
352 info = amdgpu_atpx_call(atpx->handle,
353 ATPX_FUNCTION_GRAPHICS_DEVICE_SWITCH_START_NOTIFICATION,
354 ¶ms);
355 if (!info)
356 return -EIO;
357 kfree(info);
358 }
359 return 0;
360}
361
362/**
363 * amdgpu_atpx_switch_end - notify the sbios of a GPU switch
364 *
365 * @atpx: atpx info struct
366 * @mux_id: mux state (0 = integrated GPU, 1 = discrete GPU)
367 *
368 * Execute the ATPX_FUNCTION_GRAPHICS_DEVICE_SWITCH_END_NOTIFICATION ATPX
369 * function to notify the sbios that a switch between the discrete GPU and
370 * integrated GPU has ended (all asics).
371 * Returns 0 on success, error on failure.
372 */
373static int amdgpu_atpx_switch_end(struct amdgpu_atpx *atpx, u16 mux_id)
374{
375 struct acpi_buffer params;
376 union acpi_object *info;
377 struct atpx_mux input;
378
379 if (atpx->functions.switch_end) {
380 input.size = 4;
381 input.mux = mux_id;
382 params.length = input.size;
383 params.pointer = &input;
384 info = amdgpu_atpx_call(atpx->handle,
385 ATPX_FUNCTION_GRAPHICS_DEVICE_SWITCH_END_NOTIFICATION,
386 ¶ms);
387 if (!info)
388 return -EIO;
389 kfree(info);
390 }
391 return 0;
392}
393
394/**
395 * amdgpu_atpx_switchto - switch to the requested GPU
396 *
397 * @id: GPU to switch to
398 *
399 * Execute the necessary ATPX functions to switch between the discrete GPU and
400 * integrated GPU (all asics).
401 * Returns 0 on success, error on failure.
402 */
403static int amdgpu_atpx_switchto(enum vga_switcheroo_client_id id)
404{
405 u16 gpu_id;
406
407 if (id == VGA_SWITCHEROO_IGD)
408 gpu_id = ATPX_INTEGRATED_GPU;
409 else
410 gpu_id = ATPX_DISCRETE_GPU;
411
412 amdgpu_atpx_switch_start(&amdgpu_atpx_priv.atpx, gpu_id);
413 amdgpu_atpx_switch_disp_mux(&amdgpu_atpx_priv.atpx, gpu_id);
414 amdgpu_atpx_switch_i2c_mux(&amdgpu_atpx_priv.atpx, gpu_id);
415 amdgpu_atpx_switch_end(&amdgpu_atpx_priv.atpx, gpu_id);
416
417 return 0;
418}
419
420/**
421 * amdgpu_atpx_power_state - power down/up the requested GPU
422 *
423 * @id: GPU to power down/up
424 * @state: requested power state (0 = off, 1 = on)
425 *
426 * Execute the necessary ATPX function to power down/up the discrete GPU
427 * (all asics).
428 * Returns 0 on success, error on failure.
429 */
430static int amdgpu_atpx_power_state(enum vga_switcheroo_client_id id,
431 enum vga_switcheroo_state state)
432{
433 /* on w500 ACPI can't change intel gpu state */
434 if (id == VGA_SWITCHEROO_IGD)
435 return 0;
436
437 amdgpu_atpx_set_discrete_state(&amdgpu_atpx_priv.atpx, state);
438 return 0;
439}
440
441/**
442 * amdgpu_atpx_pci_probe_handle - look up the ATPX handle
443 *
444 * @pdev: pci device
445 *
446 * Look up the ATPX handles (all asics).
447 * Returns true if the handles are found, false if not.
448 */
449static bool amdgpu_atpx_pci_probe_handle(struct pci_dev *pdev)
450{
451 acpi_handle dhandle, atpx_handle;
452 acpi_status status;
453
454 dhandle = ACPI_HANDLE(&pdev->dev);
455 if (!dhandle)
456 return false;
457
458 status = acpi_get_handle(dhandle, "ATPX", &atpx_handle);
459 if (ACPI_FAILURE(status)) {
460 amdgpu_atpx_priv.other_handle = dhandle;
461 return false;
462 }
463 amdgpu_atpx_priv.dhandle = dhandle;
464 amdgpu_atpx_priv.atpx.handle = atpx_handle;
465 return true;
466}
467
468/**
469 * amdgpu_atpx_init - verify the ATPX interface
470 *
471 * Verify the ATPX interface (all asics).
472 * Returns 0 on success, error on failure.
473 */
474static int amdgpu_atpx_init(void)
475{
476 int r;
477
478 /* set up the ATPX handle */
479 r = amdgpu_atpx_verify_interface(&amdgpu_atpx_priv.atpx);
480 if (r)
481 return r;
482
483 /* validate the atpx setup */
484 r = amdgpu_atpx_validate(&amdgpu_atpx_priv.atpx);
485 if (r)
486 return r;
487
488 return 0;
489}
490
491/**
492 * amdgpu_atpx_get_client_id - get the client id
493 *
494 * @pdev: pci device
495 *
496 * look up whether we are the integrated or discrete GPU (all asics).
497 * Returns the client id.
498 */
499static int amdgpu_atpx_get_client_id(struct pci_dev *pdev)
500{
501 if (amdgpu_atpx_priv.dhandle == ACPI_HANDLE(&pdev->dev))
502 return VGA_SWITCHEROO_IGD;
503 else
504 return VGA_SWITCHEROO_DIS;
505}
506
507static const struct vga_switcheroo_handler amdgpu_atpx_handler = {
508 .switchto = amdgpu_atpx_switchto,
509 .power_state = amdgpu_atpx_power_state,
510 .init = amdgpu_atpx_init,
511 .get_client_id = amdgpu_atpx_get_client_id,
512};
513
514/**
515 * amdgpu_atpx_detect - detect whether we have PX
516 *
517 * Check if we have a PX system (all asics).
518 * Returns true if we have a PX system, false if not.
519 */
520static bool amdgpu_atpx_detect(void)
521{
522 char acpi_method_name[255] = { 0 };
523 struct acpi_buffer buffer = {sizeof(acpi_method_name), acpi_method_name};
524 struct pci_dev *pdev = NULL;
525 bool has_atpx = false;
526 int vga_count = 0;
527
528 while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, pdev)) != NULL) {
529 vga_count++;
530
531 has_atpx |= (amdgpu_atpx_pci_probe_handle(pdev) == true);
532 }
533
534 while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_OTHER << 8, pdev)) != NULL) {
535 vga_count++;
536
537 has_atpx |= (amdgpu_atpx_pci_probe_handle(pdev) == true);
538 }
539
540 if (has_atpx && vga_count == 2) {
541 acpi_get_name(amdgpu_atpx_priv.atpx.handle, ACPI_FULL_PATHNAME, &buffer);
542 printk(KERN_INFO "vga_switcheroo: detected switching method %s handle\n",
543 acpi_method_name);
544 amdgpu_atpx_priv.atpx_detected = true;
545 return true;
546 }
547 return false;
548}
549
550/**
551 * amdgpu_register_atpx_handler - register with vga_switcheroo
552 *
553 * Register the PX callbacks with vga_switcheroo (all asics).
554 */
555void amdgpu_register_atpx_handler(void)
556{
557 bool r;
558 enum vga_switcheroo_handler_flags_t handler_flags = 0;
559
560 /* detect if we have any ATPX + 2 VGA in the system */
561 r = amdgpu_atpx_detect();
562 if (!r)
563 return;
564
565 vga_switcheroo_register_handler(&amdgpu_atpx_handler, handler_flags);
566}
567
568/**
569 * amdgpu_unregister_atpx_handler - unregister with vga_switcheroo
570 *
571 * Unregister the PX callbacks with vga_switcheroo (all asics).
572 */
573void amdgpu_unregister_atpx_handler(void)
574{
575 vga_switcheroo_unregister_handler();
576}