diff options
| author | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-22 15:58:55 -0500 |
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-22 16:10:40 -0500 |
| commit | 0af5e4c36e70cfd4ae96d3704a425c414f530f2a (patch) | |
| tree | afdc1e7313af454430166d145f7a22e3e94dc961 | |
| parent | c23bb602af24a635d0894aa7091e184385bf8a9f (diff) | |
MFD: ucb1x00-ts: fix resume failure
If the ucb1x00 touchscreen is resumed while the touchscreen is being
touched, the main thread stops responding. This occurs because two
things happen:
1. When we suspended, we were woken up, and executed the loop.
Finding that the touchscreen was not pressed, we prepare to
schedule for a maximum timeout, before being stopped in
try_to_freeze().
2. an irq occurs, we disable the irq, and mark it as disabled,
and wake the thread. This wake occurs while the thread is
still within __refrigerator()
3. The thread is unfrozen, and __refrigerator() sets the threads
state back to INTERRUPTIBLE.
We then drop into schedule_timeout() with an infinite timeout and the
IRQ disabled. This prevents any further screen touches activating
the thread.
Fix this by using kthread_freezable_should_stop() which handles the
freezing issues for us outside of the hotspot where the task state
matters. Include a flag to ignore the touchscreen until it is
released to avoid sending unintended data to the application.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
| -rw-r--r-- | drivers/mfd/ucb1x00-ts.c | 32 |
1 files changed, 5 insertions, 27 deletions
diff --git a/drivers/mfd/ucb1x00-ts.c b/drivers/mfd/ucb1x00-ts.c index 38ffbd50a0d2..63a3cbdfa3f3 100644 --- a/drivers/mfd/ucb1x00-ts.c +++ b/drivers/mfd/ucb1x00-ts.c | |||
| @@ -47,7 +47,6 @@ struct ucb1x00_ts { | |||
| 47 | u16 x_res; | 47 | u16 x_res; |
| 48 | u16 y_res; | 48 | u16 y_res; |
| 49 | 49 | ||
| 50 | unsigned int restart:1; | ||
| 51 | unsigned int adcsync:1; | 50 | unsigned int adcsync:1; |
| 52 | }; | 51 | }; |
| 53 | 52 | ||
| @@ -207,15 +206,17 @@ static int ucb1x00_thread(void *_ts) | |||
| 207 | { | 206 | { |
| 208 | struct ucb1x00_ts *ts = _ts; | 207 | struct ucb1x00_ts *ts = _ts; |
| 209 | DECLARE_WAITQUEUE(wait, current); | 208 | DECLARE_WAITQUEUE(wait, current); |
| 209 | bool frozen, ignore = false; | ||
| 210 | int valid = 0; | 210 | int valid = 0; |
| 211 | 211 | ||
| 212 | set_freezable(); | 212 | set_freezable(); |
| 213 | add_wait_queue(&ts->irq_wait, &wait); | 213 | add_wait_queue(&ts->irq_wait, &wait); |
| 214 | while (!kthread_should_stop()) { | 214 | while (!kthread_freezable_should_stop(&frozen)) { |
| 215 | unsigned int x, y, p; | 215 | unsigned int x, y, p; |
| 216 | signed long timeout; | 216 | signed long timeout; |
| 217 | 217 | ||
| 218 | ts->restart = 0; | 218 | if (frozen) |
| 219 | ignore = true; | ||
| 219 | 220 | ||
| 220 | ucb1x00_adc_enable(ts->ucb); | 221 | ucb1x00_adc_enable(ts->ucb); |
| 221 | 222 | ||
| @@ -258,7 +259,7 @@ static int ucb1x00_thread(void *_ts) | |||
| 258 | * space. We therefore leave it to user space | 259 | * space. We therefore leave it to user space |
| 259 | * to do any filtering they please. | 260 | * to do any filtering they please. |
| 260 | */ | 261 | */ |
| 261 | if (!ts->restart) { | 262 | if (!ignore) { |
| 262 | ucb1x00_ts_evt_add(ts, p, x, y); | 263 | ucb1x00_ts_evt_add(ts, p, x, y); |
| 263 | valid = 1; | 264 | valid = 1; |
| 264 | } | 265 | } |
| @@ -267,8 +268,6 @@ static int ucb1x00_thread(void *_ts) | |||
| 267 | timeout = HZ / 100; | 268 | timeout = HZ / 100; |
| 268 | } | 269 | } |
| 269 | 270 | ||
| 270 | try_to_freeze(); | ||
| 271 | |||
| 272 | schedule_timeout(timeout); | 271 | schedule_timeout(timeout); |
| 273 | } | 272 | } |
| 274 | 273 | ||
| @@ -340,26 +339,6 @@ static void ucb1x00_ts_close(struct input_dev *idev) | |||
| 340 | ucb1x00_disable(ts->ucb); | 339 | ucb1x00_disable(ts->ucb); |
| 341 | } | 340 | } |
| 342 | 341 | ||
| 343 | #ifdef CONFIG_PM | ||
| 344 | static int ucb1x00_ts_resume(struct ucb1x00_dev *dev) | ||
| 345 | { | ||
| 346 | struct ucb1x00_ts *ts = dev->priv; | ||
| 347 | |||
| 348 | if (ts->rtask != NULL) { | ||
| 349 | /* | ||
| 350 | * Restart the TS thread to ensure the | ||
| 351 | * TS interrupt mode is set up again | ||
| 352 | * after sleep. | ||
| 353 | */ | ||
| 354 | ts->restart = 1; | ||
| 355 | wake_up(&ts->irq_wait); | ||
| 356 | } | ||
| 357 | return 0; | ||
| 358 | } | ||
| 359 | #else | ||
| 360 | #define ucb1x00_ts_resume NULL | ||
| 361 | #endif | ||
| 362 | |||
| 363 | 342 | ||
| 364 | /* | 343 | /* |
| 365 | * Initialisation. | 344 | * Initialisation. |
| @@ -425,7 +404,6 @@ static void ucb1x00_ts_remove(struct ucb1x00_dev *dev) | |||
| 425 | static struct ucb1x00_driver ucb1x00_ts_driver = { | 404 | static struct ucb1x00_driver ucb1x00_ts_driver = { |
| 426 | .add = ucb1x00_ts_add, | 405 | .add = ucb1x00_ts_add, |
| 427 | .remove = ucb1x00_ts_remove, | 406 | .remove = ucb1x00_ts_remove, |
| 428 | .resume = ucb1x00_ts_resume, | ||
| 429 | }; | 407 | }; |
| 430 | 408 | ||
| 431 | static int __init ucb1x00_ts_init(void) | 409 | static int __init ucb1x00_ts_init(void) |
