4 * _DSM related code stolen from nouveau_acpi.c.
7 #include <linux/acpi.h>
8 #include <linux/vga_switcheroo.h>
12 #define INTEL_DSM_REVISION_ID 1 /* For Calpella anyway... */
13 #define INTEL_DSM_FN_PLATFORM_MUX_INFO 1 /* No args */
15 static struct intel_dsm_priv
{
19 static const u8 intel_dsm_guid
[] = {
20 0xd3, 0x73, 0xd8, 0x7e,
24 0x0f, 0x13, 0x17, 0xb0, 0x1c, 0x2c
27 static char *intel_dsm_port_name(u8 id
)
45 return "DisplayPort_A";
47 return "DisplayPort_B";
49 return "DisplayPort_C";
51 return "DisplayPort_D";
63 static char *intel_dsm_mux_type(u8 type
)
69 return "No MUX, iGPU only";
71 return "No MUX, dGPU only";
73 return "MUXed between iGPU and dGPU";
79 static void intel_dsm_platform_mux_info(void)
82 union acpi_object
*pkg
, *connector_count
;
84 pkg
= acpi_evaluate_dsm_typed(intel_dsm_priv
.dhandle
, intel_dsm_guid
,
85 INTEL_DSM_REVISION_ID
, INTEL_DSM_FN_PLATFORM_MUX_INFO
,
86 NULL
, ACPI_TYPE_PACKAGE
);
88 DRM_DEBUG_DRIVER("failed to evaluate _DSM\n");
92 connector_count
= &pkg
->package
.elements
[0];
93 DRM_DEBUG_DRIVER("MUX info connectors: %lld\n",
94 (unsigned long long)connector_count
->integer
.value
);
95 for (i
= 1; i
< pkg
->package
.count
; i
++) {
96 union acpi_object
*obj
= &pkg
->package
.elements
[i
];
97 union acpi_object
*connector_id
= &obj
->package
.elements
[0];
98 union acpi_object
*info
= &obj
->package
.elements
[1];
99 DRM_DEBUG_DRIVER("Connector id: 0x%016llx\n",
100 (unsigned long long)connector_id
->integer
.value
);
101 DRM_DEBUG_DRIVER(" port id: %s\n",
102 intel_dsm_port_name(info
->buffer
.pointer
[0]));
103 DRM_DEBUG_DRIVER(" display mux info: %s\n",
104 intel_dsm_mux_type(info
->buffer
.pointer
[1]));
105 DRM_DEBUG_DRIVER(" aux/dc mux info: %s\n",
106 intel_dsm_mux_type(info
->buffer
.pointer
[2]));
107 DRM_DEBUG_DRIVER(" hpd mux info: %s\n",
108 intel_dsm_mux_type(info
->buffer
.pointer
[3]));
114 static bool intel_dsm_pci_probe(struct pci_dev
*pdev
)
118 dhandle
= ACPI_HANDLE(&pdev
->dev
);
122 if (!acpi_check_dsm(dhandle
, intel_dsm_guid
, INTEL_DSM_REVISION_ID
,
123 1 << INTEL_DSM_FN_PLATFORM_MUX_INFO
)) {
124 DRM_DEBUG_KMS("no _DSM method for intel device\n");
128 intel_dsm_priv
.dhandle
= dhandle
;
129 intel_dsm_platform_mux_info();
134 static bool intel_dsm_detect(void)
136 char acpi_method_name
[255] = { 0 };
137 struct acpi_buffer buffer
= {sizeof(acpi_method_name
), acpi_method_name
};
138 struct pci_dev
*pdev
= NULL
;
139 bool has_dsm
= false;
142 while ((pdev
= pci_get_class(PCI_CLASS_DISPLAY_VGA
<< 8, pdev
)) != NULL
) {
144 has_dsm
|= intel_dsm_pci_probe(pdev
);
147 if (vga_count
== 2 && has_dsm
) {
148 acpi_get_name(intel_dsm_priv
.dhandle
, ACPI_FULL_PATHNAME
, &buffer
);
149 DRM_DEBUG_DRIVER("VGA switcheroo: detected DSM switching method %s handle\n",
157 void intel_register_dsm_handler(void)
159 if (!intel_dsm_detect())
163 void intel_unregister_dsm_handler(void)