]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - include/linux/vga_switcheroo.h
vga_switcheroo: Use enum vga_switcheroo_state instead of int
[thirdparty/kernel/stable.git] / include / linux / vga_switcheroo.h
CommitLineData
6a9ee8af 1/*
a645654b
LW
2 * vga_switcheroo.h - Support for laptop with dual GPU using one set of outputs
3 *
6a9ee8af
DA
4 * Copyright (c) 2010 Red Hat Inc.
5 * Author : Dave Airlie <airlied@redhat.com>
6 *
a645654b
LW
7 * Copyright (c) 2015 Lukas Wunner <lukas@wunner.de>
8 *
9 * 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.
6a9ee8af 28 *
6a9ee8af
DA
29 */
30
d3decf3a
31#ifndef _LINUX_VGA_SWITCHEROO_H_
32#define _LINUX_VGA_SWITCHEROO_H_
33
6a9ee8af
DA
34#include <linux/fb.h>
35
f8fee8f5
RD
36struct pci_dev;
37
a645654b
LW
38/**
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 */
6a9ee8af
DA
52enum vga_switcheroo_state {
53 VGA_SWITCHEROO_OFF,
54 VGA_SWITCHEROO_ON,
c8e9cf7b
TI
55 /* below are referred only from vga_switcheroo_get_client_state() */
56 VGA_SWITCHEROO_INIT,
57 VGA_SWITCHEROO_NOT_FOUND,
6a9ee8af
DA
58};
59
a645654b
LW
60/**
61 * enum vga_switcheroo_client_id - client identifier
62 * @VGA_SWITCHEROO_IGD: integrated graphics device
63 * @VGA_SWITCHEROO_DIS: discrete graphics device
64 * @VGA_SWITCHEROO_MAX_CLIENTS: currently no more than two GPUs are supported
65 *
66 * Client identifier. Audio clients use the same identifier & 0x100.
67 */
6a9ee8af
DA
68enum vga_switcheroo_client_id {
69 VGA_SWITCHEROO_IGD,
70 VGA_SWITCHEROO_DIS,
71 VGA_SWITCHEROO_MAX_CLIENTS,
72};
73
a645654b
LW
74/**
75 * struct vga_switcheroo_handler - handler callbacks
76 * @init: initialize handler.
77 * Optional. This gets called when vga_switcheroo is enabled, i.e. when
78 * two vga clients have registered. It allows the handler to perform
79 * some delayed initialization that depends on the existence of the
80 * vga clients. Currently only the radeon and amdgpu drivers use this.
81 * The return value is ignored
82 * @switchto: switch outputs to given client.
83 * Mandatory. For muxless machines this should be a no-op. Returning 0
84 * denotes success, anything else failure (in which case the switch is
85 * aborted)
86 * @power_state: cut or reinstate power of given client.
87 * Optional. The return value is ignored
88 * @get_client_id: determine if given pci device is integrated or discrete GPU.
89 * Mandatory
90 *
91 * Handler callbacks. The multiplexer itself. The @switchto and @get_client_id
92 * methods are mandatory, all others may be set to NULL.
93 */
6a9ee8af 94struct vga_switcheroo_handler {
a645654b 95 int (*init)(void);
6a9ee8af
DA
96 int (*switchto)(enum vga_switcheroo_client_id id);
97 int (*power_state)(enum vga_switcheroo_client_id id,
98 enum vga_switcheroo_state state);
6a9ee8af
DA
99 int (*get_client_id)(struct pci_dev *pdev);
100};
101
a645654b
LW
102/**
103 * struct vga_switcheroo_client_ops - client callbacks
104 * @set_gpu_state: do the equivalent of suspend/resume for the card.
105 * Mandatory. This should not cut power to the discrete GPU,
106 * which is the job of the handler
107 * @reprobe: poll outputs.
108 * Optional. This gets called after waking the GPU and switching
109 * the outputs to it
110 * @can_switch: check if the device is in a position to switch now.
111 * Mandatory. The client should return false if a user space process
112 * has one of its device files open
113 *
114 * Client callbacks. A client can be either a GPU or an audio device on a GPU.
115 * The @set_gpu_state and @can_switch methods are mandatory, @reprobe may be
116 * set to NULL. For audio clients, the @reprobe member is bogus.
117 */
26ec685f
TI
118struct vga_switcheroo_client_ops {
119 void (*set_gpu_state)(struct pci_dev *dev, enum vga_switcheroo_state);
120 void (*reprobe)(struct pci_dev *dev);
121 bool (*can_switch)(struct pci_dev *dev);
122};
6a9ee8af
DA
123
124#if defined(CONFIG_VGA_SWITCHEROO)
125void vga_switcheroo_unregister_client(struct pci_dev *dev);
126int vga_switcheroo_register_client(struct pci_dev *dev,
0d69704a
DA
127 const struct vga_switcheroo_client_ops *ops,
128 bool driver_power_control);
3e9e63db
TI
129int vga_switcheroo_register_audio_client(struct pci_dev *pdev,
130 const struct vga_switcheroo_client_ops *ops,
21b45676 131 int id);
6a9ee8af
DA
132
133void vga_switcheroo_client_fb_set(struct pci_dev *dev,
134 struct fb_info *info);
135
136int vga_switcheroo_register_handler(struct vga_switcheroo_handler *handler);
137void vga_switcheroo_unregister_handler(void);
138
139int vga_switcheroo_process_delayed_switch(void);
140
203d027d 141enum vga_switcheroo_state vga_switcheroo_get_client_state(struct pci_dev *dev);
c8e9cf7b 142
0d69704a
DA
143void vga_switcheroo_set_dynamic_switch(struct pci_dev *pdev, enum vga_switcheroo_state dynamic);
144
145int vga_switcheroo_init_domain_pm_ops(struct device *dev, struct dev_pm_domain *domain);
766a53d0 146void vga_switcheroo_fini_domain_pm_ops(struct device *dev);
0d69704a 147int vga_switcheroo_init_domain_pm_optimus_hdmi_audio(struct device *dev, struct dev_pm_domain *domain);
6a9ee8af
DA
148#else
149
150static inline void vga_switcheroo_unregister_client(struct pci_dev *dev) {}
151static inline int vga_switcheroo_register_client(struct pci_dev *dev,
0d69704a 152 const struct vga_switcheroo_client_ops *ops, bool driver_power_control) { return 0; }
6a9ee8af
DA
153static inline void vga_switcheroo_client_fb_set(struct pci_dev *dev, struct fb_info *info) {}
154static inline int vga_switcheroo_register_handler(struct vga_switcheroo_handler *handler) { return 0; }
3e9e63db
TI
155static inline int vga_switcheroo_register_audio_client(struct pci_dev *pdev,
156 const struct vga_switcheroo_client_ops *ops,
21b45676 157 int id) { return 0; }
6a9ee8af
DA
158static inline void vga_switcheroo_unregister_handler(void) {}
159static inline int vga_switcheroo_process_delayed_switch(void) { return 0; }
203d027d 160static inline enum vga_switcheroo_state vga_switcheroo_get_client_state(struct pci_dev *dev) { return VGA_SWITCHEROO_ON; }
c8e9cf7b 161
0d69704a
DA
162static inline void vga_switcheroo_set_dynamic_switch(struct pci_dev *pdev, enum vga_switcheroo_state dynamic) {}
163
164static inline int vga_switcheroo_init_domain_pm_ops(struct device *dev, struct dev_pm_domain *domain) { return -EINVAL; }
766a53d0 165static inline void vga_switcheroo_fini_domain_pm_ops(struct device *dev) {}
0d69704a 166static inline int vga_switcheroo_init_domain_pm_optimus_hdmi_audio(struct device *dev, struct dev_pm_domain *domain) { return -EINVAL; }
6a9ee8af
DA
167
168#endif
d3decf3a 169#endif /* _LINUX_VGA_SWITCHEROO_H_ */