blob: 88909a865b7260c7cf9f6023f58e16638725edb3 [file] [log] [blame]
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10001/*
Lukas Wunnera6456542015-08-23 15:18:55 +02002 * vga_switcheroo.h - Support for laptop with dual GPU using one set of outputs
3 *
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10004 * Copyright (c) 2010 Red Hat Inc.
5 * Author : Dave Airlie <airlied@redhat.com>
6 *
Lukas Wunnera6456542015-08-23 15:18:55 +02007 * Copyright (c) 2015 Lukas Wunner <lukas@wunner.de>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10008 *
Lukas Wunnera6456542015-08-23 15:18:55 +02009 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice (including the next
17 * paragraph) shall be included in all copies or substantial portions of the
18 * Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26 * DEALINGS
27 * IN THE SOFTWARE.
28 *
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100029 */
30
Ozan Çağlayand3decf32012-06-14 15:02:35 +030031#ifndef _LINUX_VGA_SWITCHEROO_H_
32#define _LINUX_VGA_SWITCHEROO_H_
33
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100034#include <linux/fb.h>
35
Randy Dunlapf8fee8f2012-06-15 12:46:17 -070036struct pci_dev;
37
Lukas Wunnera6456542015-08-23 15:18:55 +020038/**
39 * enum vga_switcheroo_state - client power state
40 * @VGA_SWITCHEROO_OFF: off
41 * @VGA_SWITCHEROO_ON: on
42 * @VGA_SWITCHEROO_INIT: client has registered with vga_switcheroo but
43 * vga_switcheroo is not enabled, i.e. no second client or no handler
44 * has registered. Only used in vga_switcheroo_get_client_state() which
45 * in turn is only called from hda_intel.c
46 * @VGA_SWITCHEROO_NOT_FOUND: client has not registered with vga_switcheroo.
47 * Only used in vga_switcheroo_get_client_state() which in turn is only
48 * called from hda_intel.c
49 *
50 * Client power state.
51 */
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100052enum vga_switcheroo_state {
53 VGA_SWITCHEROO_OFF,
54 VGA_SWITCHEROO_ON,
Takashi Iwaic8e9cf72012-06-07 12:15:15 +020055 /* below are referred only from vga_switcheroo_get_client_state() */
56 VGA_SWITCHEROO_INIT,
57 VGA_SWITCHEROO_NOT_FOUND,
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100058};
59
Lukas Wunnera6456542015-08-23 15:18:55 +020060/**
61 * enum vga_switcheroo_client_id - client identifier
Lukas Wunner21c5ba82015-08-28 13:30:32 +020062 * @VGA_SWITCHEROO_UNKNOWN_ID: initial identifier assigned to vga clients.
63 * Determining the id requires the handler, so GPUs are given their
64 * true id in a delayed fashion in vga_switcheroo_enable()
Lukas Wunnera6456542015-08-23 15:18:55 +020065 * @VGA_SWITCHEROO_IGD: integrated graphics device
66 * @VGA_SWITCHEROO_DIS: discrete graphics device
67 * @VGA_SWITCHEROO_MAX_CLIENTS: currently no more than two GPUs are supported
68 *
69 * Client identifier. Audio clients use the same identifier & 0x100.
70 */
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100071enum vga_switcheroo_client_id {
Lukas Wunner21c5ba82015-08-28 13:30:32 +020072 VGA_SWITCHEROO_UNKNOWN_ID = -1,
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100073 VGA_SWITCHEROO_IGD,
74 VGA_SWITCHEROO_DIS,
75 VGA_SWITCHEROO_MAX_CLIENTS,
76};
77
Lukas Wunnera6456542015-08-23 15:18:55 +020078/**
79 * struct vga_switcheroo_handler - handler callbacks
80 * @init: initialize handler.
81 * Optional. This gets called when vga_switcheroo is enabled, i.e. when
82 * two vga clients have registered. It allows the handler to perform
83 * some delayed initialization that depends on the existence of the
84 * vga clients. Currently only the radeon and amdgpu drivers use this.
85 * The return value is ignored
86 * @switchto: switch outputs to given client.
87 * Mandatory. For muxless machines this should be a no-op. Returning 0
88 * denotes success, anything else failure (in which case the switch is
89 * aborted)
90 * @power_state: cut or reinstate power of given client.
91 * Optional. The return value is ignored
92 * @get_client_id: determine if given pci device is integrated or discrete GPU.
93 * Mandatory
94 *
95 * Handler callbacks. The multiplexer itself. The @switchto and @get_client_id
96 * methods are mandatory, all others may be set to NULL.
97 */
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100098struct vga_switcheroo_handler {
Lukas Wunnera6456542015-08-23 15:18:55 +020099 int (*init)(void);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000100 int (*switchto)(enum vga_switcheroo_client_id id);
101 int (*power_state)(enum vga_switcheroo_client_id id,
102 enum vga_switcheroo_state state);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000103 int (*get_client_id)(struct pci_dev *pdev);
104};
105
Lukas Wunnera6456542015-08-23 15:18:55 +0200106/**
107 * struct vga_switcheroo_client_ops - client callbacks
108 * @set_gpu_state: do the equivalent of suspend/resume for the card.
109 * Mandatory. This should not cut power to the discrete GPU,
110 * which is the job of the handler
111 * @reprobe: poll outputs.
112 * Optional. This gets called after waking the GPU and switching
113 * the outputs to it
114 * @can_switch: check if the device is in a position to switch now.
115 * Mandatory. The client should return false if a user space process
116 * has one of its device files open
117 *
118 * Client callbacks. A client can be either a GPU or an audio device on a GPU.
119 * The @set_gpu_state and @can_switch methods are mandatory, @reprobe may be
120 * set to NULL. For audio clients, the @reprobe member is bogus.
121 */
Takashi Iwai26ec6852012-05-11 07:51:17 +0200122struct vga_switcheroo_client_ops {
123 void (*set_gpu_state)(struct pci_dev *dev, enum vga_switcheroo_state);
124 void (*reprobe)(struct pci_dev *dev);
125 bool (*can_switch)(struct pci_dev *dev);
126};
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000127
128#if defined(CONFIG_VGA_SWITCHEROO)
129void vga_switcheroo_unregister_client(struct pci_dev *dev);
130int vga_switcheroo_register_client(struct pci_dev *dev,
Dave Airlie0d697042012-09-10 12:28:36 +1000131 const struct vga_switcheroo_client_ops *ops,
132 bool driver_power_control);
Takashi Iwai3e9e63d2012-04-26 14:29:48 +0200133int vga_switcheroo_register_audio_client(struct pci_dev *pdev,
134 const struct vga_switcheroo_client_ops *ops,
Lukas Wunner21b45672015-08-27 16:43:43 +0200135 int id);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000136
137void vga_switcheroo_client_fb_set(struct pci_dev *dev,
138 struct fb_info *info);
139
140int vga_switcheroo_register_handler(struct vga_switcheroo_handler *handler);
141void vga_switcheroo_unregister_handler(void);
142
143int vga_switcheroo_process_delayed_switch(void);
144
Lukas Wunner203d0272015-08-28 11:56:26 +0200145enum vga_switcheroo_state vga_switcheroo_get_client_state(struct pci_dev *dev);
Takashi Iwaic8e9cf72012-06-07 12:15:15 +0200146
Dave Airlie0d697042012-09-10 12:28:36 +1000147void vga_switcheroo_set_dynamic_switch(struct pci_dev *pdev, enum vga_switcheroo_state dynamic);
148
149int vga_switcheroo_init_domain_pm_ops(struct device *dev, struct dev_pm_domain *domain);
Alex Deucher766a53d2014-09-12 17:51:29 -0400150void vga_switcheroo_fini_domain_pm_ops(struct device *dev);
Dave Airlie0d697042012-09-10 12:28:36 +1000151int vga_switcheroo_init_domain_pm_optimus_hdmi_audio(struct device *dev, struct dev_pm_domain *domain);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000152#else
153
154static inline void vga_switcheroo_unregister_client(struct pci_dev *dev) {}
155static inline int vga_switcheroo_register_client(struct pci_dev *dev,
Dave Airlie0d697042012-09-10 12:28:36 +1000156 const struct vga_switcheroo_client_ops *ops, bool driver_power_control) { return 0; }
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000157static inline void vga_switcheroo_client_fb_set(struct pci_dev *dev, struct fb_info *info) {}
158static inline int vga_switcheroo_register_handler(struct vga_switcheroo_handler *handler) { return 0; }
Takashi Iwai3e9e63d2012-04-26 14:29:48 +0200159static inline int vga_switcheroo_register_audio_client(struct pci_dev *pdev,
160 const struct vga_switcheroo_client_ops *ops,
Lukas Wunner21b45672015-08-27 16:43:43 +0200161 int id) { return 0; }
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000162static inline void vga_switcheroo_unregister_handler(void) {}
163static inline int vga_switcheroo_process_delayed_switch(void) { return 0; }
Lukas Wunner203d0272015-08-28 11:56:26 +0200164static inline enum vga_switcheroo_state vga_switcheroo_get_client_state(struct pci_dev *dev) { return VGA_SWITCHEROO_ON; }
Takashi Iwaic8e9cf72012-06-07 12:15:15 +0200165
Dave Airlie0d697042012-09-10 12:28:36 +1000166static inline void vga_switcheroo_set_dynamic_switch(struct pci_dev *pdev, enum vga_switcheroo_state dynamic) {}
167
168static inline int vga_switcheroo_init_domain_pm_ops(struct device *dev, struct dev_pm_domain *domain) { return -EINVAL; }
Alex Deucher766a53d2014-09-12 17:51:29 -0400169static inline void vga_switcheroo_fini_domain_pm_ops(struct device *dev) {}
Dave Airlie0d697042012-09-10 12:28:36 +1000170static inline int vga_switcheroo_init_domain_pm_optimus_hdmi_audio(struct device *dev, struct dev_pm_domain *domain) { return -EINVAL; }
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000171
172#endif
Ozan Çağlayand3decf32012-06-14 15:02:35 +0300173#endif /* _LINUX_VGA_SWITCHEROO_H_ */