blob: c7771466595f18e5deb993ff47b379871e3892cb [file] [log] [blame]
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001/*
2 * Copyright (c) 2010 Red Hat Inc.
3 * Author : Dave Airlie <airlied@redhat.com>
4 *
5 *
6 * Licensed under GPLv2
7 *
8 * vga_switcheroo.c - Support for laptop with dual GPU using one set of outputs
Thierry Reding71309272015-08-12 16:32:09 +02009 *
10 * Switcher interface - methods require for ATPX and DCM
11 * - switchto - this throws the output MUX switch
12 * - discrete_set_power - sets the power state for the discrete card
13 *
14 * GPU driver interface
15 * - set_gpu_state - this should do the equiv of s/r for the card
16 * - this should *not* set the discrete power state
17 * - switch_check - check if the device is in a position to switch now
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100018 */
19
Thierry Reding9b0be1e2015-08-12 16:32:10 +020020#define pr_fmt(fmt) "vga_switcheroo: " fmt
21
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100022#include <linux/module.h>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100023#include <linux/seq_file.h>
24#include <linux/uaccess.h>
25#include <linux/fs.h>
26#include <linux/debugfs.h>
27#include <linux/fb.h>
28
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100029#include <linux/pci.h>
Dave Airlie054430e2013-01-25 11:38:56 +100030#include <linux/console.h>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100031#include <linux/vga_switcheroo.h>
Dave Airlie0d697042012-09-10 12:28:36 +100032#include <linux/pm_runtime.h>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100033
Matthew Garrett2fbe8c72012-04-16 16:26:03 -040034#include <linux/vgaarb.h>
35
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100036struct vga_switcheroo_client {
37 struct pci_dev *pdev;
38 struct fb_info *fb_info;
39 int pwr_state;
Takashi Iwai26ec6852012-05-11 07:51:17 +020040 const struct vga_switcheroo_client_ops *ops;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100041 int id;
42 bool active;
Dave Airlie0d697042012-09-10 12:28:36 +100043 bool driver_power_control;
Takashi Iwai79721e02012-04-26 12:55:59 +020044 struct list_head list;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100045};
46
47static DEFINE_MUTEX(vgasr_mutex);
48
49struct vgasr_priv {
50
51 bool active;
52 bool delayed_switch_active;
53 enum vga_switcheroo_client_id delayed_client_id;
54
55 struct dentry *debugfs_root;
56 struct dentry *switch_file;
57
58 int registered_clients;
Takashi Iwai79721e02012-04-26 12:55:59 +020059 struct list_head clients;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100060
61 struct vga_switcheroo_handler *handler;
62};
63
Takashi Iwai3e9e63d2012-04-26 14:29:48 +020064#define ID_BIT_AUDIO 0x100
65#define client_is_audio(c) ((c)->id & ID_BIT_AUDIO)
66#define client_is_vga(c) ((c)->id == -1 || !client_is_audio(c))
67#define client_id(c) ((c)->id & ~ID_BIT_AUDIO)
68
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100069static int vga_switcheroo_debugfs_init(struct vgasr_priv *priv);
70static void vga_switcheroo_debugfs_fini(struct vgasr_priv *priv);
71
72/* only one switcheroo per system */
Takashi Iwai79721e02012-04-26 12:55:59 +020073static struct vgasr_priv vgasr_priv = {
74 .clients = LIST_HEAD_INIT(vgasr_priv.clients),
75};
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100076
Seth Forshee36704c02012-08-17 11:17:03 -050077static bool vga_switcheroo_ready(void)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100078{
Seth Forshee36704c02012-08-17 11:17:03 -050079 /* we're ready if we get two clients + handler */
80 return !vgasr_priv.active &&
81 vgasr_priv.registered_clients == 2 && vgasr_priv.handler;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100082}
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100083
84static void vga_switcheroo_enable(void)
85{
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100086 int ret;
Takashi Iwai79721e02012-04-26 12:55:59 +020087 struct vga_switcheroo_client *client;
88
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100089 /* call the handler to init */
Seth Forsheee99eac52012-08-17 11:17:02 -050090 if (vgasr_priv.handler->init)
91 vgasr_priv.handler->init();
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100092
Takashi Iwai79721e02012-04-26 12:55:59 +020093 list_for_each_entry(client, &vgasr_priv.clients, list) {
Takashi Iwai3e9e63d2012-04-26 14:29:48 +020094 if (client->id != -1)
95 continue;
Takashi Iwai79721e02012-04-26 12:55:59 +020096 ret = vgasr_priv.handler->get_client_id(client->pdev);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100097 if (ret < 0)
98 return;
99
Takashi Iwai79721e02012-04-26 12:55:59 +0200100 client->id = ret;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000101 }
102 vga_switcheroo_debugfs_init(&vgasr_priv);
103 vgasr_priv.active = true;
104}
105
Seth Forshee36704c02012-08-17 11:17:03 -0500106int vga_switcheroo_register_handler(struct vga_switcheroo_handler *handler)
107{
108 mutex_lock(&vgasr_mutex);
109 if (vgasr_priv.handler) {
110 mutex_unlock(&vgasr_mutex);
111 return -EINVAL;
112 }
113
114 vgasr_priv.handler = handler;
115 if (vga_switcheroo_ready()) {
Thierry Reding9b0be1e2015-08-12 16:32:10 +0200116 pr_info("enabled\n");
Seth Forshee36704c02012-08-17 11:17:03 -0500117 vga_switcheroo_enable();
118 }
119 mutex_unlock(&vgasr_mutex);
120 return 0;
121}
122EXPORT_SYMBOL(vga_switcheroo_register_handler);
123
124void vga_switcheroo_unregister_handler(void)
125{
126 mutex_lock(&vgasr_mutex);
127 vgasr_priv.handler = NULL;
128 if (vgasr_priv.active) {
Thierry Reding9b0be1e2015-08-12 16:32:10 +0200129 pr_info("disabled\n");
Seth Forshee36704c02012-08-17 11:17:03 -0500130 vga_switcheroo_debugfs_fini(&vgasr_priv);
131 vgasr_priv.active = false;
132 }
133 mutex_unlock(&vgasr_mutex);
134}
135EXPORT_SYMBOL(vga_switcheroo_unregister_handler);
136
Takashi Iwai3e9e63d2012-04-26 14:29:48 +0200137static int register_client(struct pci_dev *pdev,
138 const struct vga_switcheroo_client_ops *ops,
Dave Airlie0d697042012-09-10 12:28:36 +1000139 int id, bool active, bool driver_power_control)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000140{
Takashi Iwai79721e02012-04-26 12:55:59 +0200141 struct vga_switcheroo_client *client;
142
143 client = kzalloc(sizeof(*client), GFP_KERNEL);
144 if (!client)
145 return -ENOMEM;
146
147 client->pwr_state = VGA_SWITCHEROO_ON;
148 client->pdev = pdev;
Takashi Iwai26ec6852012-05-11 07:51:17 +0200149 client->ops = ops;
Takashi Iwai3e9e63d2012-04-26 14:29:48 +0200150 client->id = id;
151 client->active = active;
Dave Airlie0d697042012-09-10 12:28:36 +1000152 client->driver_power_control = driver_power_control;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000153
154 mutex_lock(&vgasr_mutex);
Takashi Iwai79721e02012-04-26 12:55:59 +0200155 list_add_tail(&client->list, &vgasr_priv.clients);
Takashi Iwai3e9e63d2012-04-26 14:29:48 +0200156 if (client_is_vga(client))
157 vgasr_priv.registered_clients++;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000158
Seth Forshee36704c02012-08-17 11:17:03 -0500159 if (vga_switcheroo_ready()) {
Thierry Reding9b0be1e2015-08-12 16:32:10 +0200160 pr_info("enabled\n");
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000161 vga_switcheroo_enable();
162 }
163 mutex_unlock(&vgasr_mutex);
164 return 0;
165}
Takashi Iwai3e9e63d2012-04-26 14:29:48 +0200166
167int vga_switcheroo_register_client(struct pci_dev *pdev,
Dave Airlie0d697042012-09-10 12:28:36 +1000168 const struct vga_switcheroo_client_ops *ops,
169 bool driver_power_control)
Takashi Iwai3e9e63d2012-04-26 14:29:48 +0200170{
171 return register_client(pdev, ops, -1,
Thierry Reding7491bfb2015-08-12 16:32:11 +0200172 pdev == vga_default_device(),
173 driver_power_control);
Takashi Iwai3e9e63d2012-04-26 14:29:48 +0200174}
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000175EXPORT_SYMBOL(vga_switcheroo_register_client);
176
Takashi Iwai3e9e63d2012-04-26 14:29:48 +0200177int vga_switcheroo_register_audio_client(struct pci_dev *pdev,
178 const struct vga_switcheroo_client_ops *ops,
179 int id, bool active)
180{
Dave Airlie0d697042012-09-10 12:28:36 +1000181 return register_client(pdev, ops, id | ID_BIT_AUDIO, active, false);
Takashi Iwai3e9e63d2012-04-26 14:29:48 +0200182}
183EXPORT_SYMBOL(vga_switcheroo_register_audio_client);
184
Takashi Iwai79721e02012-04-26 12:55:59 +0200185static struct vga_switcheroo_client *
186find_client_from_pci(struct list_head *head, struct pci_dev *pdev)
187{
188 struct vga_switcheroo_client *client;
Thierry Reding7491bfb2015-08-12 16:32:11 +0200189
Takashi Iwai79721e02012-04-26 12:55:59 +0200190 list_for_each_entry(client, head, list)
191 if (client->pdev == pdev)
192 return client;
193 return NULL;
194}
195
196static struct vga_switcheroo_client *
197find_client_from_id(struct list_head *head, int client_id)
198{
199 struct vga_switcheroo_client *client;
Thierry Reding7491bfb2015-08-12 16:32:11 +0200200
Takashi Iwai79721e02012-04-26 12:55:59 +0200201 list_for_each_entry(client, head, list)
202 if (client->id == client_id)
203 return client;
204 return NULL;
205}
206
207static struct vga_switcheroo_client *
208find_active_client(struct list_head *head)
209{
210 struct vga_switcheroo_client *client;
Thierry Reding7491bfb2015-08-12 16:32:11 +0200211
Takashi Iwai79721e02012-04-26 12:55:59 +0200212 list_for_each_entry(client, head, list)
Takashi Iwai3e9e63d2012-04-26 14:29:48 +0200213 if (client->active && client_is_vga(client))
Takashi Iwai79721e02012-04-26 12:55:59 +0200214 return client;
215 return NULL;
216}
217
Takashi Iwaic8e9cf72012-06-07 12:15:15 +0200218int vga_switcheroo_get_client_state(struct pci_dev *pdev)
219{
220 struct vga_switcheroo_client *client;
221
222 client = find_client_from_pci(&vgasr_priv.clients, pdev);
223 if (!client)
224 return VGA_SWITCHEROO_NOT_FOUND;
225 if (!vgasr_priv.active)
226 return VGA_SWITCHEROO_INIT;
227 return client->pwr_state;
228}
229EXPORT_SYMBOL(vga_switcheroo_get_client_state);
230
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000231void vga_switcheroo_unregister_client(struct pci_dev *pdev)
232{
Takashi Iwai79721e02012-04-26 12:55:59 +0200233 struct vga_switcheroo_client *client;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000234
235 mutex_lock(&vgasr_mutex);
Takashi Iwai79721e02012-04-26 12:55:59 +0200236 client = find_client_from_pci(&vgasr_priv.clients, pdev);
237 if (client) {
Takashi Iwai3e9e63d2012-04-26 14:29:48 +0200238 if (client_is_vga(client))
239 vgasr_priv.registered_clients--;
Takashi Iwai79721e02012-04-26 12:55:59 +0200240 list_del(&client->list);
241 kfree(client);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000242 }
Takashi Iwai3e9e63d2012-04-26 14:29:48 +0200243 if (vgasr_priv.active && vgasr_priv.registered_clients < 2) {
Thierry Reding9b0be1e2015-08-12 16:32:10 +0200244 pr_info("disabled\n");
Takashi Iwai3e9e63d2012-04-26 14:29:48 +0200245 vga_switcheroo_debugfs_fini(&vgasr_priv);
246 vgasr_priv.active = false;
247 }
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000248 mutex_unlock(&vgasr_mutex);
249}
250EXPORT_SYMBOL(vga_switcheroo_unregister_client);
251
252void vga_switcheroo_client_fb_set(struct pci_dev *pdev,
253 struct fb_info *info)
254{
Takashi Iwai79721e02012-04-26 12:55:59 +0200255 struct vga_switcheroo_client *client;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000256
257 mutex_lock(&vgasr_mutex);
Takashi Iwai79721e02012-04-26 12:55:59 +0200258 client = find_client_from_pci(&vgasr_priv.clients, pdev);
259 if (client)
260 client->fb_info = info;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000261 mutex_unlock(&vgasr_mutex);
262}
263EXPORT_SYMBOL(vga_switcheroo_client_fb_set);
264
265static int vga_switcheroo_show(struct seq_file *m, void *v)
266{
Takashi Iwai79721e02012-04-26 12:55:59 +0200267 struct vga_switcheroo_client *client;
268 int i = 0;
Thierry Reding7491bfb2015-08-12 16:32:11 +0200269
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000270 mutex_lock(&vgasr_mutex);
Takashi Iwai79721e02012-04-26 12:55:59 +0200271 list_for_each_entry(client, &vgasr_priv.clients, list) {
Dave Airlie0d697042012-09-10 12:28:36 +1000272 seq_printf(m, "%d:%s%s:%c:%s%s:%s\n", i,
Thierry Reding7491bfb2015-08-12 16:32:11 +0200273 client_id(client) == VGA_SWITCHEROO_DIS ? "DIS" :
274 "IGD",
Takashi Iwai3e9e63d2012-04-26 14:29:48 +0200275 client_is_vga(client) ? "" : "-Audio",
Takashi Iwai79721e02012-04-26 12:55:59 +0200276 client->active ? '+' : ' ',
Dave Airlie0d697042012-09-10 12:28:36 +1000277 client->driver_power_control ? "Dyn" : "",
Takashi Iwai79721e02012-04-26 12:55:59 +0200278 client->pwr_state ? "Pwr" : "Off",
279 pci_name(client->pdev));
280 i++;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000281 }
282 mutex_unlock(&vgasr_mutex);
283 return 0;
284}
285
286static int vga_switcheroo_debugfs_open(struct inode *inode, struct file *file)
287{
288 return single_open(file, vga_switcheroo_show, NULL);
289}
290
291static int vga_switchon(struct vga_switcheroo_client *client)
292{
Dave Airlie0d697042012-09-10 12:28:36 +1000293 if (client->driver_power_control)
294 return 0;
Dave Airlie5cfb3c32010-12-06 12:31:50 +1000295 if (vgasr_priv.handler->power_state)
296 vgasr_priv.handler->power_state(client->id, VGA_SWITCHEROO_ON);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000297 /* call the driver callback to turn on device */
Takashi Iwai26ec6852012-05-11 07:51:17 +0200298 client->ops->set_gpu_state(client->pdev, VGA_SWITCHEROO_ON);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000299 client->pwr_state = VGA_SWITCHEROO_ON;
300 return 0;
301}
302
303static int vga_switchoff(struct vga_switcheroo_client *client)
304{
Dave Airlie0d697042012-09-10 12:28:36 +1000305 if (client->driver_power_control)
306 return 0;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000307 /* call the driver callback to turn off device */
Takashi Iwai26ec6852012-05-11 07:51:17 +0200308 client->ops->set_gpu_state(client->pdev, VGA_SWITCHEROO_OFF);
Dave Airlie5cfb3c32010-12-06 12:31:50 +1000309 if (vgasr_priv.handler->power_state)
310 vgasr_priv.handler->power_state(client->id, VGA_SWITCHEROO_OFF);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000311 client->pwr_state = VGA_SWITCHEROO_OFF;
312 return 0;
313}
314
Takashi Iwai3e9e63d2012-04-26 14:29:48 +0200315static void set_audio_state(int id, int state)
316{
317 struct vga_switcheroo_client *client;
318
319 client = find_client_from_id(&vgasr_priv.clients, id | ID_BIT_AUDIO);
320 if (client && client->pwr_state != state) {
321 client->ops->set_gpu_state(client->pdev, state);
322 client->pwr_state = state;
323 }
324}
325
Dave Airlie66b37c62010-12-07 14:24:25 +1000326/* stage one happens before delay */
327static int vga_switchto_stage1(struct vga_switcheroo_client *new_client)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000328{
Takashi Iwai79721e02012-04-26 12:55:59 +0200329 struct vga_switcheroo_client *active;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000330
Takashi Iwai79721e02012-04-26 12:55:59 +0200331 active = find_active_client(&vgasr_priv.clients);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000332 if (!active)
333 return 0;
334
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000335 if (new_client->pwr_state == VGA_SWITCHEROO_OFF)
336 vga_switchon(new_client);
337
Matthew Garrett2fbe8c72012-04-16 16:26:03 -0400338 vga_set_default_device(new_client->pdev);
Dave Airlie66b37c62010-12-07 14:24:25 +1000339 return 0;
340}
341
342/* post delay */
343static int vga_switchto_stage2(struct vga_switcheroo_client *new_client)
344{
345 int ret;
Takashi Iwai79721e02012-04-26 12:55:59 +0200346 struct vga_switcheroo_client *active;
Dave Airlie66b37c62010-12-07 14:24:25 +1000347
Takashi Iwai79721e02012-04-26 12:55:59 +0200348 active = find_active_client(&vgasr_priv.clients);
Dave Airlie66b37c62010-12-07 14:24:25 +1000349 if (!active)
350 return 0;
351
352 active->active = false;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000353
Takashi Iwaic91c3fa2012-06-09 08:46:42 +0200354 set_audio_state(active->id, VGA_SWITCHEROO_OFF);
355
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000356 if (new_client->fb_info) {
357 struct fb_event event;
Thierry Reding7491bfb2015-08-12 16:32:11 +0200358
Dave Airlie054430e2013-01-25 11:38:56 +1000359 console_lock();
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000360 event.info = new_client->fb_info;
361 fb_notifier_call_chain(FB_EVENT_REMAP_ALL_CONSOLE, &event);
Dave Airlie054430e2013-01-25 11:38:56 +1000362 console_unlock();
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000363 }
364
365 ret = vgasr_priv.handler->switchto(new_client->id);
366 if (ret)
367 return ret;
368
Takashi Iwai26ec6852012-05-11 07:51:17 +0200369 if (new_client->ops->reprobe)
370 new_client->ops->reprobe(new_client->pdev);
Dave Airlie8d608aa2010-12-07 08:57:57 +1000371
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000372 if (active->pwr_state == VGA_SWITCHEROO_ON)
373 vga_switchoff(active);
374
Takashi Iwaic91c3fa2012-06-09 08:46:42 +0200375 set_audio_state(new_client->id, VGA_SWITCHEROO_ON);
376
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000377 new_client->active = true;
378 return 0;
379}
380
Takashi Iwai79721e02012-04-26 12:55:59 +0200381static bool check_can_switch(void)
382{
383 struct vga_switcheroo_client *client;
384
385 list_for_each_entry(client, &vgasr_priv.clients, list) {
Takashi Iwai26ec6852012-05-11 07:51:17 +0200386 if (!client->ops->can_switch(client->pdev)) {
Thierry Reding9b0be1e2015-08-12 16:32:10 +0200387 pr_err("client %x refused switch\n", client->id);
Takashi Iwai79721e02012-04-26 12:55:59 +0200388 return false;
389 }
390 }
391 return true;
392}
393
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000394static ssize_t
395vga_switcheroo_debugfs_write(struct file *filp, const char __user *ubuf,
396 size_t cnt, loff_t *ppos)
397{
398 char usercmd[64];
Takashi Iwai79721e02012-04-26 12:55:59 +0200399 int ret;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000400 bool delay = false, can_switch;
Dave Airlie851ab952010-12-06 12:35:52 +1000401 bool just_mux = false;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000402 int client_id = -1;
403 struct vga_switcheroo_client *client = NULL;
404
405 if (cnt > 63)
406 cnt = 63;
407
408 if (copy_from_user(usercmd, ubuf, cnt))
409 return -EFAULT;
410
411 mutex_lock(&vgasr_mutex);
412
Jiri Slaby8c88e502010-04-27 14:11:03 -0700413 if (!vgasr_priv.active) {
414 cnt = -EINVAL;
415 goto out;
416 }
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000417
418 /* pwr off the device not in use */
419 if (strncmp(usercmd, "OFF", 3) == 0) {
Takashi Iwai79721e02012-04-26 12:55:59 +0200420 list_for_each_entry(client, &vgasr_priv.clients, list) {
Takashi Iwaic91c3fa2012-06-09 08:46:42 +0200421 if (client->active || client_is_audio(client))
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000422 continue;
Dave Airlie0d697042012-09-10 12:28:36 +1000423 if (client->driver_power_control)
424 continue;
Takashi Iwaic91c3fa2012-06-09 08:46:42 +0200425 set_audio_state(client->id, VGA_SWITCHEROO_OFF);
Takashi Iwai79721e02012-04-26 12:55:59 +0200426 if (client->pwr_state == VGA_SWITCHEROO_ON)
427 vga_switchoff(client);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000428 }
429 goto out;
430 }
431 /* pwr on the device not in use */
432 if (strncmp(usercmd, "ON", 2) == 0) {
Takashi Iwai79721e02012-04-26 12:55:59 +0200433 list_for_each_entry(client, &vgasr_priv.clients, list) {
Takashi Iwaic91c3fa2012-06-09 08:46:42 +0200434 if (client->active || client_is_audio(client))
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000435 continue;
Dave Airlie0d697042012-09-10 12:28:36 +1000436 if (client->driver_power_control)
437 continue;
Takashi Iwai79721e02012-04-26 12:55:59 +0200438 if (client->pwr_state == VGA_SWITCHEROO_OFF)
439 vga_switchon(client);
Takashi Iwaic91c3fa2012-06-09 08:46:42 +0200440 set_audio_state(client->id, VGA_SWITCHEROO_ON);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000441 }
442 goto out;
443 }
444
445 /* request a delayed switch - test can we switch now */
446 if (strncmp(usercmd, "DIGD", 4) == 0) {
447 client_id = VGA_SWITCHEROO_IGD;
448 delay = true;
449 }
450
451 if (strncmp(usercmd, "DDIS", 4) == 0) {
452 client_id = VGA_SWITCHEROO_DIS;
453 delay = true;
454 }
455
456 if (strncmp(usercmd, "IGD", 3) == 0)
457 client_id = VGA_SWITCHEROO_IGD;
458
459 if (strncmp(usercmd, "DIS", 3) == 0)
460 client_id = VGA_SWITCHEROO_DIS;
461
Dan Carpenterfea6f332011-01-07 08:12:27 +0300462 if (strncmp(usercmd, "MIGD", 4) == 0) {
Dave Airlie851ab952010-12-06 12:35:52 +1000463 just_mux = true;
464 client_id = VGA_SWITCHEROO_IGD;
465 }
Dan Carpenterfea6f332011-01-07 08:12:27 +0300466 if (strncmp(usercmd, "MDIS", 4) == 0) {
Dave Airlie851ab952010-12-06 12:35:52 +1000467 just_mux = true;
468 client_id = VGA_SWITCHEROO_DIS;
469 }
470
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000471 if (client_id == -1)
472 goto out;
Takashi Iwai79721e02012-04-26 12:55:59 +0200473 client = find_client_from_id(&vgasr_priv.clients, client_id);
474 if (!client)
475 goto out;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000476
477 vgasr_priv.delayed_switch_active = false;
Dave Airlie851ab952010-12-06 12:35:52 +1000478
479 if (just_mux) {
480 ret = vgasr_priv.handler->switchto(client_id);
481 goto out;
482 }
483
Takashi Iwai79721e02012-04-26 12:55:59 +0200484 if (client->active)
Florian Micklera67b8882011-05-15 16:32:50 +0200485 goto out;
486
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000487 /* okay we want a switch - test if devices are willing to switch */
Takashi Iwai79721e02012-04-26 12:55:59 +0200488 can_switch = check_can_switch();
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000489
490 if (can_switch == false && delay == false)
491 goto out;
492
Takashi Iwai79721e02012-04-26 12:55:59 +0200493 if (can_switch) {
Dave Airlie66b37c62010-12-07 14:24:25 +1000494 ret = vga_switchto_stage1(client);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000495 if (ret)
Thierry Reding9b0be1e2015-08-12 16:32:10 +0200496 pr_err("switching failed stage 1 %d\n", ret);
Dave Airlie66b37c62010-12-07 14:24:25 +1000497
498 ret = vga_switchto_stage2(client);
499 if (ret)
Thierry Reding9b0be1e2015-08-12 16:32:10 +0200500 pr_err("switching failed stage 2 %d\n", ret);
Dave Airlie66b37c62010-12-07 14:24:25 +1000501
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000502 } else {
Thierry Reding9b0be1e2015-08-12 16:32:10 +0200503 pr_info("setting delayed switch to client %d\n", client->id);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000504 vgasr_priv.delayed_switch_active = true;
505 vgasr_priv.delayed_client_id = client_id;
506
Dave Airlie66b37c62010-12-07 14:24:25 +1000507 ret = vga_switchto_stage1(client);
508 if (ret)
Thierry Reding9b0be1e2015-08-12 16:32:10 +0200509 pr_err("delayed switching stage 1 failed %d\n", ret);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000510 }
511
512out:
513 mutex_unlock(&vgasr_mutex);
514 return cnt;
515}
516
517static const struct file_operations vga_switcheroo_debugfs_fops = {
518 .owner = THIS_MODULE,
519 .open = vga_switcheroo_debugfs_open,
520 .write = vga_switcheroo_debugfs_write,
521 .read = seq_read,
522 .llseek = seq_lseek,
523 .release = single_release,
524};
525
526static void vga_switcheroo_debugfs_fini(struct vgasr_priv *priv)
527{
528 if (priv->switch_file) {
529 debugfs_remove(priv->switch_file);
530 priv->switch_file = NULL;
531 }
532 if (priv->debugfs_root) {
533 debugfs_remove(priv->debugfs_root);
534 priv->debugfs_root = NULL;
535 }
536}
537
538static int vga_switcheroo_debugfs_init(struct vgasr_priv *priv)
539{
Thierry Reding9b0be1e2015-08-12 16:32:10 +0200540 static const char mp[] = "/sys/kernel/debug";
541
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000542 /* already initialised */
543 if (priv->debugfs_root)
544 return 0;
545 priv->debugfs_root = debugfs_create_dir("vgaswitcheroo", NULL);
546
547 if (!priv->debugfs_root) {
Thierry Reding9b0be1e2015-08-12 16:32:10 +0200548 pr_err("Cannot create %s/vgaswitcheroo\n", mp);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000549 goto fail;
550 }
551
552 priv->switch_file = debugfs_create_file("switch", 0644,
Thierry Reding7491bfb2015-08-12 16:32:11 +0200553 priv->debugfs_root, NULL,
554 &vga_switcheroo_debugfs_fops);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000555 if (!priv->switch_file) {
Thierry Reding9b0be1e2015-08-12 16:32:10 +0200556 pr_err("cannot create %s/vgaswitcheroo/switch\n", mp);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000557 goto fail;
558 }
559 return 0;
560fail:
561 vga_switcheroo_debugfs_fini(priv);
562 return -1;
563}
564
565int vga_switcheroo_process_delayed_switch(void)
566{
Takashi Iwai79721e02012-04-26 12:55:59 +0200567 struct vga_switcheroo_client *client;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000568 int ret;
569 int err = -EINVAL;
570
571 mutex_lock(&vgasr_mutex);
572 if (!vgasr_priv.delayed_switch_active)
573 goto err;
574
Thierry Reding9b0be1e2015-08-12 16:32:10 +0200575 pr_info("processing delayed switch to %d\n",
576 vgasr_priv.delayed_client_id);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000577
Takashi Iwai79721e02012-04-26 12:55:59 +0200578 client = find_client_from_id(&vgasr_priv.clients,
579 vgasr_priv.delayed_client_id);
580 if (!client || !check_can_switch())
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000581 goto err;
582
Dave Airlie66b37c62010-12-07 14:24:25 +1000583 ret = vga_switchto_stage2(client);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000584 if (ret)
Thierry Reding9b0be1e2015-08-12 16:32:10 +0200585 pr_err("delayed switching failed stage 2 %d\n", ret);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000586
587 vgasr_priv.delayed_switch_active = false;
588 err = 0;
589err:
590 mutex_unlock(&vgasr_mutex);
591 return err;
592}
593EXPORT_SYMBOL(vga_switcheroo_process_delayed_switch);
Dave Airlie0d697042012-09-10 12:28:36 +1000594
Thierry Reding7491bfb2015-08-12 16:32:11 +0200595static void vga_switcheroo_power_switch(struct pci_dev *pdev,
596 enum vga_switcheroo_state state)
Dave Airlie0d697042012-09-10 12:28:36 +1000597{
598 struct vga_switcheroo_client *client;
599
600 if (!vgasr_priv.handler->power_state)
601 return;
602
603 client = find_client_from_pci(&vgasr_priv.clients, pdev);
604 if (!client)
605 return;
606
607 if (!client->driver_power_control)
608 return;
609
610 vgasr_priv.handler->power_state(client->id, state);
611}
612
613/* force a PCI device to a certain state - mainly to turn off audio clients */
614
Thierry Reding7491bfb2015-08-12 16:32:11 +0200615void vga_switcheroo_set_dynamic_switch(struct pci_dev *pdev,
616 enum vga_switcheroo_state dynamic)
Dave Airlie0d697042012-09-10 12:28:36 +1000617{
618 struct vga_switcheroo_client *client;
619
620 client = find_client_from_pci(&vgasr_priv.clients, pdev);
621 if (!client)
622 return;
623
624 if (!client->driver_power_control)
625 return;
626
627 client->pwr_state = dynamic;
628 set_audio_state(client->id, dynamic);
629}
630EXPORT_SYMBOL(vga_switcheroo_set_dynamic_switch);
631
632/* switcheroo power domain */
633static int vga_switcheroo_runtime_suspend(struct device *dev)
634{
635 struct pci_dev *pdev = to_pci_dev(dev);
636 int ret;
637
638 ret = dev->bus->pm->runtime_suspend(dev);
639 if (ret)
640 return ret;
Alex Deucherf2bc561612014-05-19 14:04:43 -0400641 if (vgasr_priv.handler->switchto)
642 vgasr_priv.handler->switchto(VGA_SWITCHEROO_IGD);
Dave Airlie0d697042012-09-10 12:28:36 +1000643 vga_switcheroo_power_switch(pdev, VGA_SWITCHEROO_OFF);
644 return 0;
645}
646
647static int vga_switcheroo_runtime_resume(struct device *dev)
648{
649 struct pci_dev *pdev = to_pci_dev(dev);
650 int ret;
651
652 vga_switcheroo_power_switch(pdev, VGA_SWITCHEROO_ON);
653 ret = dev->bus->pm->runtime_resume(dev);
654 if (ret)
655 return ret;
656
657 return 0;
658}
659
660/* this version is for the case where the power switch is separate
661 to the device being powered down. */
Thierry Reding7491bfb2015-08-12 16:32:11 +0200662int vga_switcheroo_init_domain_pm_ops(struct device *dev,
663 struct dev_pm_domain *domain)
Dave Airlie0d697042012-09-10 12:28:36 +1000664{
665 /* copy over all the bus versions */
666 if (dev->bus && dev->bus->pm) {
667 domain->ops = *dev->bus->pm;
668 domain->ops.runtime_suspend = vga_switcheroo_runtime_suspend;
669 domain->ops.runtime_resume = vga_switcheroo_runtime_resume;
670
671 dev->pm_domain = domain;
672 return 0;
673 }
674 dev->pm_domain = NULL;
675 return -EINVAL;
676}
677EXPORT_SYMBOL(vga_switcheroo_init_domain_pm_ops);
678
Alex Deucher766a53d2014-09-12 17:51:29 -0400679void vga_switcheroo_fini_domain_pm_ops(struct device *dev)
680{
681 dev->pm_domain = NULL;
682}
683EXPORT_SYMBOL(vga_switcheroo_fini_domain_pm_ops);
684
Dave Airlie0d697042012-09-10 12:28:36 +1000685static int vga_switcheroo_runtime_resume_hdmi_audio(struct device *dev)
686{
687 struct pci_dev *pdev = to_pci_dev(dev);
688 int ret;
689 struct vga_switcheroo_client *client, *found = NULL;
690
691 /* we need to check if we have to switch back on the video
692 device so the audio device can come back */
693 list_for_each_entry(client, &vgasr_priv.clients, list) {
Thierry Reding7491bfb2015-08-12 16:32:11 +0200694 if (PCI_SLOT(client->pdev->devfn) == PCI_SLOT(pdev->devfn) &&
695 client_is_vga(client)) {
Dave Airlie0d697042012-09-10 12:28:36 +1000696 found = client;
697 ret = pm_runtime_get_sync(&client->pdev->dev);
698 if (ret) {
699 if (ret != 1)
700 return ret;
701 }
702 break;
703 }
704 }
705 ret = dev->bus->pm->runtime_resume(dev);
706
707 /* put the reference for the gpu */
708 if (found) {
709 pm_runtime_mark_last_busy(&found->pdev->dev);
710 pm_runtime_put_autosuspend(&found->pdev->dev);
711 }
712 return ret;
713}
714
Thierry Reding7491bfb2015-08-12 16:32:11 +0200715int
716vga_switcheroo_init_domain_pm_optimus_hdmi_audio(struct device *dev,
717 struct dev_pm_domain *domain)
Dave Airlie0d697042012-09-10 12:28:36 +1000718{
719 /* copy over all the bus versions */
720 if (dev->bus && dev->bus->pm) {
721 domain->ops = *dev->bus->pm;
Thierry Reding7491bfb2015-08-12 16:32:11 +0200722 domain->ops.runtime_resume =
723 vga_switcheroo_runtime_resume_hdmi_audio;
Dave Airlie0d697042012-09-10 12:28:36 +1000724
725 dev->pm_domain = domain;
726 return 0;
727 }
728 dev->pm_domain = NULL;
729 return -EINVAL;
730}
731EXPORT_SYMBOL(vga_switcheroo_init_domain_pm_optimus_hdmi_audio);