aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2017-05-11 03:13:29 -0400
committerBen Skeggs <bskeggs@redhat.com>2017-05-11 18:32:58 -0400
commit330bdf62fe6a6c5b99a647f7bf7157107c9348b3 (patch)
tree1fe7a3da274d6a66fd77d4326704b9232fa3a07c
parent9fc64667ee48c9a25e7dca1a6bcb6906fec5bcc5 (diff)
drm/nouveau/tmr: avoid processing completed alarms when adding a new one
The idea here was to avoid having to "manually" program the HW if there's a new earliest alarm. This was lazy and bad, as it leads to loads of fun races between inter-related callers (ie. therm). Turns out, it's not so difficult after all. Go figure ;) Signed-off-by: Ben Skeggs <bskeggs@redhat.com> Cc: stable@vger.kernel.org
-rw-r--r--drivers/gpu/drm/nouveau/nvkm/subdev/timer/base.c16
1 files changed, 13 insertions, 3 deletions
diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/timer/base.c b/drivers/gpu/drm/nouveau/nvkm/subdev/timer/base.c
index d898787d514c..f2a86eae0a0d 100644
--- a/drivers/gpu/drm/nouveau/nvkm/subdev/timer/base.c
+++ b/drivers/gpu/drm/nouveau/nvkm/subdev/timer/base.c
@@ -86,12 +86,22 @@ nvkm_timer_alarm(struct nvkm_timer *tmr, u32 nsec, struct nvkm_alarm *alarm)
86 if (list->timestamp > alarm->timestamp) 86 if (list->timestamp > alarm->timestamp)
87 break; 87 break;
88 } 88 }
89
89 list_add_tail(&alarm->head, &list->head); 90 list_add_tail(&alarm->head, &list->head);
91
92 /* Update HW if this is now the earliest alarm. */
93 list = list_first_entry(&tmr->alarms, typeof(*list), head);
94 if (list == alarm) {
95 tmr->func->alarm_init(tmr, alarm->timestamp);
96 /* This shouldn't happen if callers aren't stupid.
97 *
98 * Worst case scenario is that it'll take roughly
99 * 4 seconds for the next alarm to trigger.
100 */
101 WARN_ON(alarm->timestamp <= nvkm_timer_read(tmr));
102 }
90 } 103 }
91 spin_unlock_irqrestore(&tmr->lock, flags); 104 spin_unlock_irqrestore(&tmr->lock, flags);
92
93 /* process pending alarms */
94 nvkm_timer_alarm_trigger(tmr);
95} 105}
96 106
97void 107void