diff options
author | Dave Airlie <airlied@redhat.com> | 2013-04-04 20:18:13 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2013-04-04 20:18:13 -0400 |
commit | 399403c7cebb4dcd42491e511e1ec91442ecaf80 (patch) | |
tree | 1be2e59a1bca8df450d481cd61c8cc6891a34ae0 /kernel | |
parent | b6a9b7f6b1f21735a7456d534dc0e68e61359d2c (diff) | |
parent | e3dff585508636c8d2915cc1595e04f16ccd66ba (diff) |
Merge tag 'drm-intel-next-2013-03-23' of git://people.freedesktop.org/~danvet/drm-intel into drm-next
Daniel writes:
Highlights:
- Imre's for_each_sg_pages rework (now also with the stolen mem backed
case fixed with a hack) plus the drm prime sg list coalescing patch from
Rahul Sharma. I have some follow-up cleanups pending, already acked by
Andrew Morton.
- Some prep-work for the crazy no-pch/display-less platform by Ben.
- Some vlv patches, by far not all (Jesse et al).
- Clean up the HDMI/SDVO #define confusion (Paulo)
- gen2-4 vblank fixes from Ville.
- Unclaimed register warning fixes for hsw (Paulo). More still to come ...
- Complete pageflips which have been stuck in a gpu hang, should prevent
stuck gl compositors (Ville).
- pm patches for vt-switchless resume (Jesse). Note that the i915 enabling
is not (yet) included, that took a bit longer to settle. PM patches are
acked by Rafael Wysocki.
- Minor fixlets all over from various people.
* tag 'drm-intel-next-2013-03-23' of git://people.freedesktop.org/~danvet/drm-intel: (79 commits)
drm/i915: Implement WaSwitchSolVfFArbitrationPriority
drm/i915: Set the VIC in AVI infoframe for SDVO
drm/i915: Kill a strange comment about DPMS functions
drm/i915: Correct sandybrige overclocking
drm/i915: Introduce GEN7_FEATURES for device info
drm/i915: Move num_pipes to intel info
drm/i915: fixup pd vs pt confusion in gen6 ppgtt code
style nit: Align function parameter continuation properly.
drm/i915: VLV doesn't have HDMI on port C
drm/i915: DSPFW and BLC regs are in the display offset range
drm/i915: set conservative clock gating values on VLV v2
drm/i915: fix WaDisablePSDDualDispatchEnable on VLV v2
drm/i915: add more VLV IDs
drm/i915: use VLV DIP routines on VLV v2
drm/i915: add media well to VLV force wake routines v2
drm/i915: don't use plane pipe select on VLV
drm: modify pages_to_sg prime helper to create optimized SG table
drm/i915: use for_each_sg_page for setting up the gtt ptes
drm/i915: create compact dma scatter lists for gem objects
drm/i915: handle walking compact dma scatter lists
...
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/power/console.c | 116 |
1 files changed, 116 insertions, 0 deletions
diff --git a/kernel/power/console.c b/kernel/power/console.c index b1dc456474b5..463aa6736751 100644 --- a/kernel/power/console.c +++ b/kernel/power/console.c | |||
@@ -4,6 +4,7 @@ | |||
4 | * Originally from swsusp. | 4 | * Originally from swsusp. |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #include <linux/console.h> | ||
7 | #include <linux/vt_kern.h> | 8 | #include <linux/vt_kern.h> |
8 | #include <linux/kbd_kern.h> | 9 | #include <linux/kbd_kern.h> |
9 | #include <linux/vt.h> | 10 | #include <linux/vt.h> |
@@ -14,8 +15,120 @@ | |||
14 | 15 | ||
15 | static int orig_fgconsole, orig_kmsg; | 16 | static int orig_fgconsole, orig_kmsg; |
16 | 17 | ||
18 | static DEFINE_MUTEX(vt_switch_mutex); | ||
19 | |||
20 | struct pm_vt_switch { | ||
21 | struct list_head head; | ||
22 | struct device *dev; | ||
23 | bool required; | ||
24 | }; | ||
25 | |||
26 | static LIST_HEAD(pm_vt_switch_list); | ||
27 | |||
28 | |||
29 | /** | ||
30 | * pm_vt_switch_required - indicate VT switch at suspend requirements | ||
31 | * @dev: device | ||
32 | * @required: if true, caller needs VT switch at suspend/resume time | ||
33 | * | ||
34 | * The different console drivers may or may not require VT switches across | ||
35 | * suspend/resume, depending on how they handle restoring video state and | ||
36 | * what may be running. | ||
37 | * | ||
38 | * Drivers can indicate support for switchless suspend/resume, which can | ||
39 | * save time and flicker, by using this routine and passing 'false' as | ||
40 | * the argument. If any loaded driver needs VT switching, or the | ||
41 | * no_console_suspend argument has been passed on the command line, VT | ||
42 | * switches will occur. | ||
43 | */ | ||
44 | void pm_vt_switch_required(struct device *dev, bool required) | ||
45 | { | ||
46 | struct pm_vt_switch *entry, *tmp; | ||
47 | |||
48 | mutex_lock(&vt_switch_mutex); | ||
49 | list_for_each_entry(tmp, &pm_vt_switch_list, head) { | ||
50 | if (tmp->dev == dev) { | ||
51 | /* already registered, update requirement */ | ||
52 | tmp->required = required; | ||
53 | goto out; | ||
54 | } | ||
55 | } | ||
56 | |||
57 | entry = kmalloc(sizeof(*entry), GFP_KERNEL); | ||
58 | if (!entry) | ||
59 | goto out; | ||
60 | |||
61 | entry->required = required; | ||
62 | entry->dev = dev; | ||
63 | |||
64 | list_add(&entry->head, &pm_vt_switch_list); | ||
65 | out: | ||
66 | mutex_unlock(&vt_switch_mutex); | ||
67 | } | ||
68 | EXPORT_SYMBOL(pm_vt_switch_required); | ||
69 | |||
70 | /** | ||
71 | * pm_vt_switch_unregister - stop tracking a device's VT switching needs | ||
72 | * @dev: device | ||
73 | * | ||
74 | * Remove @dev from the vt switch list. | ||
75 | */ | ||
76 | void pm_vt_switch_unregister(struct device *dev) | ||
77 | { | ||
78 | struct pm_vt_switch *tmp; | ||
79 | |||
80 | mutex_lock(&vt_switch_mutex); | ||
81 | list_for_each_entry(tmp, &pm_vt_switch_list, head) { | ||
82 | if (tmp->dev == dev) { | ||
83 | list_del(&tmp->head); | ||
84 | break; | ||
85 | } | ||
86 | } | ||
87 | mutex_unlock(&vt_switch_mutex); | ||
88 | } | ||
89 | EXPORT_SYMBOL(pm_vt_switch_unregister); | ||
90 | |||
91 | /* | ||
92 | * There are three cases when a VT switch on suspend/resume are required: | ||
93 | * 1) no driver has indicated a requirement one way or another, so preserve | ||
94 | * the old behavior | ||
95 | * 2) console suspend is disabled, we want to see debug messages across | ||
96 | * suspend/resume | ||
97 | * 3) any registered driver indicates it needs a VT switch | ||
98 | * | ||
99 | * If none of these conditions is present, meaning we have at least one driver | ||
100 | * that doesn't need the switch, and none that do, we can avoid it to make | ||
101 | * resume look a little prettier (and suspend too, but that's usually hidden, | ||
102 | * e.g. when closing the lid on a laptop). | ||
103 | */ | ||
104 | static bool pm_vt_switch(void) | ||
105 | { | ||
106 | struct pm_vt_switch *entry; | ||
107 | bool ret = true; | ||
108 | |||
109 | mutex_lock(&vt_switch_mutex); | ||
110 | if (list_empty(&pm_vt_switch_list)) | ||
111 | goto out; | ||
112 | |||
113 | if (!console_suspend_enabled) | ||
114 | goto out; | ||
115 | |||
116 | list_for_each_entry(entry, &pm_vt_switch_list, head) { | ||
117 | if (entry->required) | ||
118 | goto out; | ||
119 | } | ||
120 | |||
121 | ret = false; | ||
122 | out: | ||
123 | mutex_unlock(&vt_switch_mutex); | ||
124 | return ret; | ||
125 | } | ||
126 | |||
17 | int pm_prepare_console(void) | 127 | int pm_prepare_console(void) |
18 | { | 128 | { |
129 | if (!pm_vt_switch()) | ||
130 | return 0; | ||
131 | |||
19 | orig_fgconsole = vt_move_to_console(SUSPEND_CONSOLE, 1); | 132 | orig_fgconsole = vt_move_to_console(SUSPEND_CONSOLE, 1); |
20 | if (orig_fgconsole < 0) | 133 | if (orig_fgconsole < 0) |
21 | return 1; | 134 | return 1; |
@@ -26,6 +139,9 @@ int pm_prepare_console(void) | |||
26 | 139 | ||
27 | void pm_restore_console(void) | 140 | void pm_restore_console(void) |
28 | { | 141 | { |
142 | if (!pm_vt_switch()) | ||
143 | return; | ||
144 | |||
29 | if (orig_fgconsole >= 0) { | 145 | if (orig_fgconsole >= 0) { |
30 | vt_move_to_console(orig_fgconsole, 0); | 146 | vt_move_to_console(orig_fgconsole, 0); |
31 | vt_kmsg_redirect(orig_kmsg); | 147 | vt_kmsg_redirect(orig_kmsg); |