2 * Copyright (c) 2010 Red Hat Inc.
3 * Author : Dave Airlie <airlied@redhat.com>
7 * ATPX support for both Intel/ATI
9 #include <linux/vga_switcheroo.h>
10 #include <linux/slab.h>
11 #include <acpi/acpi.h>
12 #include <acpi/acpi_bus.h>
13 #include <linux/pci.h>
15 #define ATPX_VERSION 0
16 #define ATPX_GPU_PWR 2
17 #define ATPX_MUX_SELECT 3
18 #define ATPX_I2C_MUX_SELECT 4
19 #define ATPX_SWITCH_START 5
20 #define ATPX_SWITCH_END 6
22 #define ATPX_INTEGRATED 0
23 #define ATPX_DISCRETE 1
25 #define ATPX_MUX_IGD 0
26 #define ATPX_MUX_DISCRETE 1
28 static struct radeon_atpx_priv
{
30 /* handle for device - and atpx */
32 acpi_handle atpx_handle
;
33 acpi_handle atrm_handle
;
36 /* retrieve the ROM in 4k blocks */
37 static int radeon_atrm_call(acpi_handle atrm_handle
, uint8_t *bios
,
41 union acpi_object atrm_arg_elements
[2], *obj
;
42 struct acpi_object_list atrm_arg
;
43 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
46 atrm_arg
.pointer
= &atrm_arg_elements
[0];
48 atrm_arg_elements
[0].type
= ACPI_TYPE_INTEGER
;
49 atrm_arg_elements
[0].integer
.value
= offset
;
51 atrm_arg_elements
[1].type
= ACPI_TYPE_INTEGER
;
52 atrm_arg_elements
[1].integer
.value
= len
;
54 status
= acpi_evaluate_object(atrm_handle
, NULL
, &atrm_arg
, &buffer
);
55 if (ACPI_FAILURE(status
)) {
56 printk("failed to evaluate ATRM got %s\n", acpi_format_exception(status
));
60 obj
= (union acpi_object
*)buffer
.pointer
;
61 memcpy(bios
+offset
, obj
->buffer
.pointer
, obj
->buffer
.length
);
62 len
= obj
->buffer
.length
;
63 kfree(buffer
.pointer
);
67 bool radeon_atrm_supported(struct pci_dev
*pdev
)
69 /* get the discrete ROM only via ATRM */
70 if (!radeon_atpx_priv
.atpx_detected
)
73 if (radeon_atpx_priv
.dhandle
== DEVICE_ACPI_HANDLE(&pdev
->dev
))
79 int radeon_atrm_get_bios_chunk(uint8_t *bios
, int offset
, int len
)
81 return radeon_atrm_call(radeon_atpx_priv
.atrm_handle
, bios
, offset
, len
);
84 static int radeon_atpx_get_version(acpi_handle handle
)
87 union acpi_object atpx_arg_elements
[2], *obj
;
88 struct acpi_object_list atpx_arg
;
89 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
92 atpx_arg
.pointer
= &atpx_arg_elements
[0];
94 atpx_arg_elements
[0].type
= ACPI_TYPE_INTEGER
;
95 atpx_arg_elements
[0].integer
.value
= ATPX_VERSION
;
97 atpx_arg_elements
[1].type
= ACPI_TYPE_INTEGER
;
98 atpx_arg_elements
[1].integer
.value
= ATPX_VERSION
;
100 status
= acpi_evaluate_object(handle
, NULL
, &atpx_arg
, &buffer
);
101 if (ACPI_FAILURE(status
)) {
102 printk("%s: failed to call ATPX: %s\n", __func__
, acpi_format_exception(status
));
105 obj
= (union acpi_object
*)buffer
.pointer
;
106 if (obj
&& (obj
->type
== ACPI_TYPE_BUFFER
))
107 printk(KERN_INFO
"radeon atpx: version is %d\n", *((u8
*)(obj
->buffer
.pointer
) + 2));
108 kfree(buffer
.pointer
);
112 static int radeon_atpx_execute(acpi_handle handle
, int cmd_id
, u16 value
)
115 union acpi_object atpx_arg_elements
[2];
116 struct acpi_object_list atpx_arg
;
117 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
118 uint8_t buf
[4] = {0};
124 atpx_arg
.pointer
= &atpx_arg_elements
[0];
126 atpx_arg_elements
[0].type
= ACPI_TYPE_INTEGER
;
127 atpx_arg_elements
[0].integer
.value
= cmd_id
;
129 buf
[2] = value
& 0xff;
130 buf
[3] = (value
>> 8) & 0xff;
132 atpx_arg_elements
[1].type
= ACPI_TYPE_BUFFER
;
133 atpx_arg_elements
[1].buffer
.length
= 4;
134 atpx_arg_elements
[1].buffer
.pointer
= buf
;
136 status
= acpi_evaluate_object(handle
, NULL
, &atpx_arg
, &buffer
);
137 if (ACPI_FAILURE(status
)) {
138 printk("%s: failed to call ATPX: %s\n", __func__
, acpi_format_exception(status
));
141 kfree(buffer
.pointer
);
146 static int radeon_atpx_set_discrete_state(acpi_handle handle
, int state
)
148 return radeon_atpx_execute(handle
, ATPX_GPU_PWR
, state
);
151 static int radeon_atpx_switch_mux(acpi_handle handle
, int mux_id
)
153 return radeon_atpx_execute(handle
, ATPX_MUX_SELECT
, mux_id
);
156 static int radeon_atpx_switch_i2c_mux(acpi_handle handle
, int mux_id
)
158 return radeon_atpx_execute(handle
, ATPX_I2C_MUX_SELECT
, mux_id
);
161 static int radeon_atpx_switch_start(acpi_handle handle
, int gpu_id
)
163 return radeon_atpx_execute(handle
, ATPX_SWITCH_START
, gpu_id
);
166 static int radeon_atpx_switch_end(acpi_handle handle
, int gpu_id
)
168 return radeon_atpx_execute(handle
, ATPX_SWITCH_END
, gpu_id
);
171 static int radeon_atpx_switchto(enum vga_switcheroo_client_id id
)
175 if (id
== VGA_SWITCHEROO_IGD
)
176 gpu_id
= ATPX_INTEGRATED
;
178 gpu_id
= ATPX_DISCRETE
;
180 radeon_atpx_switch_start(radeon_atpx_priv
.atpx_handle
, gpu_id
);
181 radeon_atpx_switch_mux(radeon_atpx_priv
.atpx_handle
, gpu_id
);
182 radeon_atpx_switch_i2c_mux(radeon_atpx_priv
.atpx_handle
, gpu_id
);
183 radeon_atpx_switch_end(radeon_atpx_priv
.atpx_handle
, gpu_id
);
188 static int radeon_atpx_power_state(enum vga_switcheroo_client_id id
,
189 enum vga_switcheroo_state state
)
191 /* on w500 ACPI can't change intel gpu state */
192 if (id
== VGA_SWITCHEROO_IGD
)
195 radeon_atpx_set_discrete_state(radeon_atpx_priv
.atpx_handle
, state
);
199 static bool radeon_atpx_pci_probe_handle(struct pci_dev
*pdev
)
201 acpi_handle dhandle
, atpx_handle
, atrm_handle
;
204 dhandle
= DEVICE_ACPI_HANDLE(&pdev
->dev
);
208 status
= acpi_get_handle(dhandle
, "ATPX", &atpx_handle
);
209 if (ACPI_FAILURE(status
))
212 status
= acpi_get_handle(dhandle
, "ATRM", &atrm_handle
);
213 if (ACPI_FAILURE(status
))
216 radeon_atpx_priv
.dhandle
= dhandle
;
217 radeon_atpx_priv
.atpx_handle
= atpx_handle
;
218 radeon_atpx_priv
.atrm_handle
= atrm_handle
;
222 static int radeon_atpx_init(void)
224 /* set up the ATPX handle */
226 radeon_atpx_get_version(radeon_atpx_priv
.atpx_handle
);
230 static int radeon_atpx_get_client_id(struct pci_dev
*pdev
)
232 if (radeon_atpx_priv
.dhandle
== DEVICE_ACPI_HANDLE(&pdev
->dev
))
233 return VGA_SWITCHEROO_IGD
;
235 return VGA_SWITCHEROO_DIS
;
238 static struct vga_switcheroo_handler radeon_atpx_handler
= {
239 .switchto
= radeon_atpx_switchto
,
240 .power_state
= radeon_atpx_power_state
,
241 .init
= radeon_atpx_init
,
242 .get_client_id
= radeon_atpx_get_client_id
,
245 static bool radeon_atpx_detect(void)
247 char acpi_method_name
[255] = { 0 };
248 struct acpi_buffer buffer
= {sizeof(acpi_method_name
), acpi_method_name
};
249 struct pci_dev
*pdev
= NULL
;
250 bool has_atpx
= false;
253 while ((pdev
= pci_get_class(PCI_CLASS_DISPLAY_VGA
<< 8, pdev
)) != NULL
) {
256 has_atpx
|= (radeon_atpx_pci_probe_handle(pdev
) == true);
259 if (has_atpx
&& vga_count
== 2) {
260 acpi_get_name(radeon_atpx_priv
.atpx_handle
, ACPI_FULL_PATHNAME
, &buffer
);
261 printk(KERN_INFO
"VGA switcheroo: detected switching method %s handle\n",
263 radeon_atpx_priv
.atpx_detected
= true;
269 void radeon_register_atpx_handler(void)
273 /* detect if we have any ATPX + 2 VGA in the system */
274 r
= radeon_atpx_detect();
278 vga_switcheroo_register_handler(&radeon_atpx_handler
);
281 void radeon_unregister_atpx_handler(void)
283 vga_switcheroo_unregister_handler();