1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2010 Red Hat Inc.
6 * ATPX support for both Intel/ATI
8 #include <linux/vga_switcheroo.h>
9 #include <linux/slab.h>
10 #include <linux/acpi.h>
11 #include <linux/pci.h>
12 #include <linux/delay.h>
17 #define AMDGPU_PX_QUIRK_FORCE_ATPX (1 << 0)
19 struct amdgpu_px_quirk {
27 struct amdgpu_atpx_functions {
34 bool disp_connectors_mapping;
35 bool disp_detection_ports;
40 struct amdgpu_atpx_functions functions;
42 bool dgpu_req_power_for_displays;
45 static struct amdgpu_atpx_priv {
47 bool bridge_pm_usable;
49 /* handle for device - and atpx */
51 acpi_handle other_handle;
52 struct amdgpu_atpx atpx;
55 struct atpx_verify_interface {
56 u16 size; /* structure size in bytes (includes size field) */
57 u16 version; /* version */
58 u32 function_bits; /* supported functions bit vector */
61 struct atpx_px_params {
62 u16 size; /* structure size in bytes (includes size field) */
63 u32 valid_flags; /* which flags are valid */
64 u32 flags; /* flags */
67 struct atpx_power_control {
77 bool amdgpu_has_atpx(void)
79 return amdgpu_atpx_priv.atpx_detected;
82 bool amdgpu_has_atpx_dgpu_power_cntl(void)
84 return amdgpu_atpx_priv.atpx.functions.power_cntl;
87 bool amdgpu_is_atpx_hybrid(void)
89 return amdgpu_atpx_priv.atpx.is_hybrid;
93 * amdgpu_atpx_call - call an ATPX method
95 * @handle: acpi handle
96 * @function: the ATPX function to execute
97 * @params: ATPX function params
99 * Executes the requested ATPX function (all asics).
100 * Returns a pointer to the acpi output buffer.
102 static union acpi_object *amdgpu_atpx_call(acpi_handle handle, int function,
103 struct acpi_buffer *params)
106 union acpi_object atpx_arg_elements[2];
107 struct acpi_object_list atpx_arg;
108 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
111 atpx_arg.pointer = &atpx_arg_elements[0];
113 atpx_arg_elements[0].type = ACPI_TYPE_INTEGER;
114 atpx_arg_elements[0].integer.value = function;
117 atpx_arg_elements[1].type = ACPI_TYPE_BUFFER;
118 atpx_arg_elements[1].buffer.length = params->length;
119 atpx_arg_elements[1].buffer.pointer = params->pointer;
121 /* We need a second fake parameter */
122 atpx_arg_elements[1].type = ACPI_TYPE_INTEGER;
123 atpx_arg_elements[1].integer.value = 0;
126 status = acpi_evaluate_object(handle, NULL, &atpx_arg, &buffer);
128 /* Fail only if calling the method fails and ATPX is supported */
129 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
130 pr_err("failed to evaluate ATPX got %s\n",
131 acpi_format_exception(status));
132 kfree(buffer.pointer);
136 return buffer.pointer;
140 * amdgpu_atpx_parse_functions - parse supported functions
142 * @f: supported functions struct
143 * @mask: supported functions mask from ATPX
145 * Use the supported functions mask from ATPX function
146 * ATPX_FUNCTION_VERIFY_INTERFACE to determine what functions
147 * are supported (all asics).
149 static void amdgpu_atpx_parse_functions(struct amdgpu_atpx_functions *f, u32 mask)
151 f->px_params = mask & ATPX_GET_PX_PARAMETERS_SUPPORTED;
152 f->power_cntl = mask & ATPX_POWER_CONTROL_SUPPORTED;
153 f->disp_mux_cntl = mask & ATPX_DISPLAY_MUX_CONTROL_SUPPORTED;
154 f->i2c_mux_cntl = mask & ATPX_I2C_MUX_CONTROL_SUPPORTED;
155 f->switch_start = mask & ATPX_GRAPHICS_DEVICE_SWITCH_START_NOTIFICATION_SUPPORTED;
156 f->switch_end = mask & ATPX_GRAPHICS_DEVICE_SWITCH_END_NOTIFICATION_SUPPORTED;
157 f->disp_connectors_mapping = mask & ATPX_GET_DISPLAY_CONNECTORS_MAPPING_SUPPORTED;
158 f->disp_detection_ports = mask & ATPX_GET_DISPLAY_DETECTION_PORTS_SUPPORTED;
162 * amdgpu_atpx_validate - validate ATPX functions
164 * @atpx: amdgpu atpx struct
166 * Validate that required functions are enabled (all asics).
167 * returns 0 on success, error on failure.
169 static int amdgpu_atpx_validate(struct amdgpu_atpx *atpx)
173 if (atpx->functions.px_params) {
174 union acpi_object *info;
175 struct atpx_px_params output;
178 info = amdgpu_atpx_call(atpx->handle, ATPX_FUNCTION_GET_PX_PARAMETERS, NULL);
182 memset(&output, 0, sizeof(output));
184 size = *(u16 *) info->buffer.pointer;
186 pr_err("ATPX buffer is too small: %zu\n", size);
190 size = min(sizeof(output), size);
192 memcpy(&output, info->buffer.pointer, size);
194 valid_bits = output.flags & output.valid_flags;
199 /* if separate mux flag is set, mux controls are required */
200 if (valid_bits & ATPX_SEPARATE_MUX_FOR_I2C) {
201 atpx->functions.i2c_mux_cntl = true;
202 atpx->functions.disp_mux_cntl = true;
204 /* if any outputs are muxed, mux controls are required */
205 if (valid_bits & (ATPX_CRT1_RGB_SIGNAL_MUXED |
206 ATPX_TV_SIGNAL_MUXED |
207 ATPX_DFP_SIGNAL_MUXED))
208 atpx->functions.disp_mux_cntl = true;
211 /* some bioses set these bits rather than flagging power_cntl as supported */
212 if (valid_bits & (ATPX_DYNAMIC_PX_SUPPORTED |
213 ATPX_DYNAMIC_DGPU_POWER_OFF_SUPPORTED))
214 atpx->functions.power_cntl = true;
216 atpx->is_hybrid = false;
217 if (valid_bits & ATPX_MS_HYBRID_GFX_SUPPORTED) {
218 if (amdgpu_atpx_priv.quirks & AMDGPU_PX_QUIRK_FORCE_ATPX) {
219 pr_warn("ATPX Hybrid Graphics, forcing to ATPX\n");
220 atpx->functions.power_cntl = true;
221 atpx->is_hybrid = false;
223 pr_notice("ATPX Hybrid Graphics\n");
225 * Disable legacy PM methods only when pcie port PM is usable,
226 * otherwise the device might fail to power off or power on.
228 atpx->functions.power_cntl = !amdgpu_atpx_priv.bridge_pm_usable;
229 atpx->is_hybrid = true;
233 atpx->dgpu_req_power_for_displays = false;
234 if (valid_bits & ATPX_DGPU_REQ_POWER_FOR_DISPLAYS)
235 atpx->dgpu_req_power_for_displays = true;
241 * amdgpu_atpx_verify_interface - verify ATPX
243 * @atpx: amdgpu atpx struct
245 * Execute the ATPX_FUNCTION_VERIFY_INTERFACE ATPX function
246 * to initialize ATPX and determine what features are supported
248 * returns 0 on success, error on failure.
250 static int amdgpu_atpx_verify_interface(struct amdgpu_atpx *atpx)
252 union acpi_object *info;
253 struct atpx_verify_interface output;
257 info = amdgpu_atpx_call(atpx->handle, ATPX_FUNCTION_VERIFY_INTERFACE, NULL);
261 memset(&output, 0, sizeof(output));
263 size = *(u16 *) info->buffer.pointer;
265 pr_err("ATPX buffer is too small: %zu\n", size);
269 size = min(sizeof(output), size);
271 memcpy(&output, info->buffer.pointer, size);
273 /* TODO: check version? */
274 pr_notice("ATPX version %u, functions 0x%08x\n",
275 output.version, output.function_bits);
277 amdgpu_atpx_parse_functions(&atpx->functions, output.function_bits);
285 * amdgpu_atpx_set_discrete_state - power up/down discrete GPU
287 * @atpx: atpx info struct
288 * @state: discrete GPU state (0 = power down, 1 = power up)
290 * Execute the ATPX_FUNCTION_POWER_CONTROL ATPX function to
291 * power down/up the discrete GPU (all asics).
292 * Returns 0 on success, error on failure.
294 static int amdgpu_atpx_set_discrete_state(struct amdgpu_atpx *atpx, u8 state)
296 struct acpi_buffer params;
297 union acpi_object *info;
298 struct atpx_power_control input;
300 if (atpx->functions.power_cntl) {
302 input.dgpu_state = state;
303 params.length = input.size;
304 params.pointer = &input;
305 info = amdgpu_atpx_call(atpx->handle,
306 ATPX_FUNCTION_POWER_CONTROL,
312 /* 200ms delay is required after off */
320 * amdgpu_atpx_switch_disp_mux - switch display mux
322 * @atpx: atpx info struct
323 * @mux_id: mux state (0 = integrated GPU, 1 = discrete GPU)
325 * Execute the ATPX_FUNCTION_DISPLAY_MUX_CONTROL ATPX function to
326 * switch the display mux between the discrete GPU and integrated GPU
328 * Returns 0 on success, error on failure.
330 static int amdgpu_atpx_switch_disp_mux(struct amdgpu_atpx *atpx, u16 mux_id)
332 struct acpi_buffer params;
333 union acpi_object *info;
334 struct atpx_mux input;
336 if (atpx->functions.disp_mux_cntl) {
339 params.length = input.size;
340 params.pointer = &input;
341 info = amdgpu_atpx_call(atpx->handle,
342 ATPX_FUNCTION_DISPLAY_MUX_CONTROL,
352 * amdgpu_atpx_switch_i2c_mux - switch i2c/hpd mux
354 * @atpx: atpx info struct
355 * @mux_id: mux state (0 = integrated GPU, 1 = discrete GPU)
357 * Execute the ATPX_FUNCTION_I2C_MUX_CONTROL ATPX function to
358 * switch the i2c/hpd mux between the discrete GPU and integrated GPU
360 * Returns 0 on success, error on failure.
362 static int amdgpu_atpx_switch_i2c_mux(struct amdgpu_atpx *atpx, u16 mux_id)
364 struct acpi_buffer params;
365 union acpi_object *info;
366 struct atpx_mux input;
368 if (atpx->functions.i2c_mux_cntl) {
371 params.length = input.size;
372 params.pointer = &input;
373 info = amdgpu_atpx_call(atpx->handle,
374 ATPX_FUNCTION_I2C_MUX_CONTROL,
384 * amdgpu_atpx_switch_start - notify the sbios of a GPU switch
386 * @atpx: atpx info struct
387 * @mux_id: mux state (0 = integrated GPU, 1 = discrete GPU)
389 * Execute the ATPX_FUNCTION_GRAPHICS_DEVICE_SWITCH_START_NOTIFICATION ATPX
390 * function to notify the sbios that a switch between the discrete GPU and
391 * integrated GPU has begun (all asics).
392 * Returns 0 on success, error on failure.
394 static int amdgpu_atpx_switch_start(struct amdgpu_atpx *atpx, u16 mux_id)
396 struct acpi_buffer params;
397 union acpi_object *info;
398 struct atpx_mux input;
400 if (atpx->functions.switch_start) {
403 params.length = input.size;
404 params.pointer = &input;
405 info = amdgpu_atpx_call(atpx->handle,
406 ATPX_FUNCTION_GRAPHICS_DEVICE_SWITCH_START_NOTIFICATION,
416 * amdgpu_atpx_switch_end - notify the sbios of a GPU switch
418 * @atpx: atpx info struct
419 * @mux_id: mux state (0 = integrated GPU, 1 = discrete GPU)
421 * Execute the ATPX_FUNCTION_GRAPHICS_DEVICE_SWITCH_END_NOTIFICATION ATPX
422 * function to notify the sbios that a switch between the discrete GPU and
423 * integrated GPU has ended (all asics).
424 * Returns 0 on success, error on failure.
426 static int amdgpu_atpx_switch_end(struct amdgpu_atpx *atpx, u16 mux_id)
428 struct acpi_buffer params;
429 union acpi_object *info;
430 struct atpx_mux input;
432 if (atpx->functions.switch_end) {
435 params.length = input.size;
436 params.pointer = &input;
437 info = amdgpu_atpx_call(atpx->handle,
438 ATPX_FUNCTION_GRAPHICS_DEVICE_SWITCH_END_NOTIFICATION,
448 * amdgpu_atpx_switchto - switch to the requested GPU
450 * @id: GPU to switch to
452 * Execute the necessary ATPX functions to switch between the discrete GPU and
453 * integrated GPU (all asics).
454 * Returns 0 on success, error on failure.
456 static int amdgpu_atpx_switchto(enum vga_switcheroo_client_id id)
460 if (id == VGA_SWITCHEROO_IGD)
461 gpu_id = ATPX_INTEGRATED_GPU;
463 gpu_id = ATPX_DISCRETE_GPU;
465 amdgpu_atpx_switch_start(&amdgpu_atpx_priv.atpx, gpu_id);
466 amdgpu_atpx_switch_disp_mux(&amdgpu_atpx_priv.atpx, gpu_id);
467 amdgpu_atpx_switch_i2c_mux(&amdgpu_atpx_priv.atpx, gpu_id);
468 amdgpu_atpx_switch_end(&amdgpu_atpx_priv.atpx, gpu_id);
474 * amdgpu_atpx_power_state - power down/up the requested GPU
476 * @id: GPU to power down/up
477 * @state: requested power state (0 = off, 1 = on)
479 * Execute the necessary ATPX function to power down/up the discrete GPU
481 * Returns 0 on success, error on failure.
483 static int amdgpu_atpx_power_state(enum vga_switcheroo_client_id id,
484 enum vga_switcheroo_state state)
486 /* on w500 ACPI can't change intel gpu state */
487 if (id == VGA_SWITCHEROO_IGD)
490 amdgpu_atpx_set_discrete_state(&amdgpu_atpx_priv.atpx, state);
495 * amdgpu_atpx_pci_probe_handle - look up the ATPX handle
499 * Look up the ATPX handles (all asics).
500 * Returns true if the handles are found, false if not.
502 static bool amdgpu_atpx_pci_probe_handle(struct pci_dev *pdev)
504 acpi_handle dhandle, atpx_handle;
507 dhandle = ACPI_HANDLE(&pdev->dev);
511 status = acpi_get_handle(dhandle, "ATPX", &atpx_handle);
512 if (ACPI_FAILURE(status)) {
513 amdgpu_atpx_priv.other_handle = dhandle;
516 amdgpu_atpx_priv.dhandle = dhandle;
517 amdgpu_atpx_priv.atpx.handle = atpx_handle;
522 * amdgpu_atpx_init - verify the ATPX interface
524 * Verify the ATPX interface (all asics).
525 * Returns 0 on success, error on failure.
527 static int amdgpu_atpx_init(void)
531 /* set up the ATPX handle */
532 r = amdgpu_atpx_verify_interface(&amdgpu_atpx_priv.atpx);
536 /* validate the atpx setup */
537 r = amdgpu_atpx_validate(&amdgpu_atpx_priv.atpx);
545 * amdgpu_atpx_get_client_id - get the client id
549 * look up whether we are the integrated or discrete GPU (all asics).
550 * Returns the client id.
552 static enum vga_switcheroo_client_id amdgpu_atpx_get_client_id(struct pci_dev *pdev)
554 if (amdgpu_atpx_priv.dhandle == ACPI_HANDLE(&pdev->dev))
555 return VGA_SWITCHEROO_IGD;
557 return VGA_SWITCHEROO_DIS;
560 static const struct vga_switcheroo_handler amdgpu_atpx_handler = {
561 .switchto = amdgpu_atpx_switchto,
562 .power_state = amdgpu_atpx_power_state,
563 .get_client_id = amdgpu_atpx_get_client_id,
566 static const struct amdgpu_px_quirk amdgpu_px_quirk_list[] = {
567 /* HG _PR3 doesn't seem to work on this A+A weston board */
568 { 0x1002, 0x6900, 0x1002, 0x0124, AMDGPU_PX_QUIRK_FORCE_ATPX },
569 { 0x1002, 0x6900, 0x1028, 0x0812, AMDGPU_PX_QUIRK_FORCE_ATPX },
570 { 0x1002, 0x6900, 0x1028, 0x0813, AMDGPU_PX_QUIRK_FORCE_ATPX },
571 { 0x1002, 0x699f, 0x1028, 0x0814, AMDGPU_PX_QUIRK_FORCE_ATPX },
572 { 0x1002, 0x6900, 0x1025, 0x125A, AMDGPU_PX_QUIRK_FORCE_ATPX },
573 { 0x1002, 0x6900, 0x17AA, 0x3806, AMDGPU_PX_QUIRK_FORCE_ATPX },
577 static void amdgpu_atpx_get_quirks(struct pci_dev *pdev)
579 const struct amdgpu_px_quirk *p = amdgpu_px_quirk_list;
581 /* Apply PX quirks */
582 while (p && p->chip_device != 0) {
583 if (pdev->vendor == p->chip_vendor &&
584 pdev->device == p->chip_device &&
585 pdev->subsystem_vendor == p->subsys_vendor &&
586 pdev->subsystem_device == p->subsys_device) {
587 amdgpu_atpx_priv.quirks |= p->px_quirk_flags;
595 * amdgpu_atpx_detect - detect whether we have PX
597 * Check if we have a PX system (all asics).
598 * Returns true if we have a PX system, false if not.
600 static bool amdgpu_atpx_detect(void)
602 char acpi_method_name[255] = { 0 };
603 struct acpi_buffer buffer = {sizeof(acpi_method_name), acpi_method_name};
604 struct pci_dev *pdev = NULL;
605 bool has_atpx = false;
607 bool d3_supported = false;
608 struct pci_dev *parent_pdev;
610 while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, pdev)) != NULL) {
613 has_atpx |= amdgpu_atpx_pci_probe_handle(pdev);
615 parent_pdev = pci_upstream_bridge(pdev);
616 d3_supported |= parent_pdev && parent_pdev->bridge_d3;
617 amdgpu_atpx_get_quirks(pdev);
620 while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_OTHER << 8, pdev)) != NULL) {
623 has_atpx |= amdgpu_atpx_pci_probe_handle(pdev);
625 parent_pdev = pci_upstream_bridge(pdev);
626 d3_supported |= parent_pdev && parent_pdev->bridge_d3;
627 amdgpu_atpx_get_quirks(pdev);
630 if (has_atpx && vga_count == 2) {
631 acpi_get_name(amdgpu_atpx_priv.atpx.handle, ACPI_FULL_PATHNAME, &buffer);
632 pr_info("vga_switcheroo: detected switching method %s handle\n",
634 amdgpu_atpx_priv.atpx_detected = true;
635 amdgpu_atpx_priv.bridge_pm_usable = d3_supported;
643 * amdgpu_register_atpx_handler - register with vga_switcheroo
645 * Register the PX callbacks with vga_switcheroo (all asics).
647 void amdgpu_register_atpx_handler(void)
650 enum vga_switcheroo_handler_flags_t handler_flags = 0;
652 /* detect if we have any ATPX + 2 VGA in the system */
653 r = amdgpu_atpx_detect();
657 vga_switcheroo_register_handler(&amdgpu_atpx_handler, handler_flags);
661 * amdgpu_unregister_atpx_handler - unregister with vga_switcheroo
663 * Unregister the PX callbacks with vga_switcheroo (all asics).
665 void amdgpu_unregister_atpx_handler(void)
667 vga_switcheroo_unregister_handler();