vga_switcheroo: Introduce struct vga_switcheroo_client_ops
[deliverable/linux.git] / include / linux / vga_switcheroo.h
1 /*
2 * Copyright (c) 2010 Red Hat Inc.
3 * Author : Dave Airlie <airlied@redhat.com>
4 *
5 * Licensed under GPLv2
6 *
7 * vga_switcheroo.h - Support for laptop with dual GPU using one set of outputs
8 */
9
10 #include <linux/fb.h>
11
12 enum vga_switcheroo_state {
13 VGA_SWITCHEROO_OFF,
14 VGA_SWITCHEROO_ON,
15 };
16
17 enum vga_switcheroo_client_id {
18 VGA_SWITCHEROO_IGD,
19 VGA_SWITCHEROO_DIS,
20 VGA_SWITCHEROO_MAX_CLIENTS,
21 };
22
23 struct vga_switcheroo_handler {
24 int (*switchto)(enum vga_switcheroo_client_id id);
25 int (*power_state)(enum vga_switcheroo_client_id id,
26 enum vga_switcheroo_state state);
27 int (*init)(void);
28 int (*get_client_id)(struct pci_dev *pdev);
29 };
30
31 struct vga_switcheroo_client_ops {
32 void (*set_gpu_state)(struct pci_dev *dev, enum vga_switcheroo_state);
33 void (*reprobe)(struct pci_dev *dev);
34 bool (*can_switch)(struct pci_dev *dev);
35 };
36
37 #if defined(CONFIG_VGA_SWITCHEROO)
38 void vga_switcheroo_unregister_client(struct pci_dev *dev);
39 int vga_switcheroo_register_client(struct pci_dev *dev,
40 const struct vga_switcheroo_client_ops *ops);
41
42 void vga_switcheroo_client_fb_set(struct pci_dev *dev,
43 struct fb_info *info);
44
45 int vga_switcheroo_register_handler(struct vga_switcheroo_handler *handler);
46 void vga_switcheroo_unregister_handler(void);
47
48 int vga_switcheroo_process_delayed_switch(void);
49
50 #else
51
52 static inline void vga_switcheroo_unregister_client(struct pci_dev *dev) {}
53 static inline int vga_switcheroo_register_client(struct pci_dev *dev,
54 const struct vga_switcheroo_client_ops *ops) { return 0; }
55 static inline void vga_switcheroo_client_fb_set(struct pci_dev *dev, struct fb_info *info) {}
56 static inline int vga_switcheroo_register_handler(struct vga_switcheroo_handler *handler) { return 0; }
57 static inline void vga_switcheroo_unregister_handler(void) {}
58 static inline int vga_switcheroo_process_delayed_switch(void) { return 0; }
59
60 #endif
This page took 0.04796 seconds and 5 git commands to generate.