blob: aab0420642261d96d16317a4fc97328a4d1d2830 [file] [log] [blame]
Alan Sternd58b4bc2012-07-11 11:21:54 -04001/*
2 * Copyright (C) 2012 by Alan Stern
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * for more details.
13 */
14
15/* This file is part of ehci-hcd.c */
16
17/*-------------------------------------------------------------------------*/
18
Alan Stern3ca9aeb2012-07-11 11:22:05 -040019/* Set a bit in the USBCMD register */
20static void ehci_set_command_bit(struct ehci_hcd *ehci, u32 bit)
21{
22 ehci->command |= bit;
23 ehci_writel(ehci, ehci->command, &ehci->regs->command);
24
25 /* unblock posted write */
26 ehci_readl(ehci, &ehci->regs->command);
27}
28
29/* Clear a bit in the USBCMD register */
30static void ehci_clear_command_bit(struct ehci_hcd *ehci, u32 bit)
31{
32 ehci->command &= ~bit;
33 ehci_writel(ehci, ehci->command, &ehci->regs->command);
34
35 /* unblock posted write */
36 ehci_readl(ehci, &ehci->regs->command);
37}
38
39/*-------------------------------------------------------------------------*/
40
Alan Sternd58b4bc2012-07-11 11:21:54 -040041/*
42 * EHCI timer support... Now using hrtimers.
43 *
44 * Lots of different events are triggered from ehci->hrtimer. Whenever
45 * the timer routine runs, it checks each possible event; events that are
46 * currently enabled and whose expiration time has passed get handled.
47 * The set of enabled events is stored as a collection of bitflags in
48 * ehci->enabled_hrtimer_events, and they are numbered in order of
49 * increasing delay values (ranging between 1 ms and 100 ms).
50 *
51 * Rather than implementing a sorted list or tree of all pending events,
52 * we keep track only of the lowest-numbered pending event, in
53 * ehci->next_hrtimer_event. Whenever ehci->hrtimer gets restarted, its
54 * expiration time is set to the timeout value for this event.
55 *
56 * As a result, events might not get handled right away; the actual delay
57 * could be anywhere up to twice the requested delay. This doesn't
58 * matter, because none of the events are especially time-critical. The
59 * ones that matter most all have a delay of 1 ms, so they will be
60 * handled after 2 ms at most, which is okay. In addition to this, we
61 * allow for an expiration range of 1 ms.
62 */
63
64/*
65 * Delay lengths for the hrtimer event types.
66 * Keep this list sorted by delay length, in the same order as
67 * the event types indexed by enum ehci_hrtimer_event in ehci.h.
68 */
69static unsigned event_delays_ns[] = {
Alan Stern31446612012-07-11 11:22:21 -040070 1 * NSEC_PER_MSEC, /* EHCI_HRTIMER_POLL_ASS */
Alan Stern3ca9aeb2012-07-11 11:22:05 -040071 1 * NSEC_PER_MSEC, /* EHCI_HRTIMER_POLL_PSS */
Alan Sternbf6387b2012-07-11 11:22:31 -040072 1 * NSEC_PER_MSEC, /* EHCI_HRTIMER_POLL_DEAD */
Alan Sterndf202252012-07-11 11:22:26 -040073 1125 * NSEC_PER_USEC, /* EHCI_HRTIMER_UNLINK_INTR */
Alan Stern55934eb2012-07-11 11:22:35 -040074 2 * NSEC_PER_MSEC, /* EHCI_HRTIMER_FREE_ITDS */
Alan Stern9d938742012-07-11 11:22:44 -040075 10 * NSEC_PER_MSEC, /* EHCI_HRTIMER_IAA_WATCHDOG */
Alan Stern3ca9aeb2012-07-11 11:22:05 -040076 10 * NSEC_PER_MSEC, /* EHCI_HRTIMER_DISABLE_PERIODIC */
Alan Stern31446612012-07-11 11:22:21 -040077 15 * NSEC_PER_MSEC, /* EHCI_HRTIMER_DISABLE_ASYNC */
Alan Sternd58b4bc2012-07-11 11:21:54 -040078};
79
80/* Enable a pending hrtimer event */
81static void ehci_enable_event(struct ehci_hcd *ehci, unsigned event,
82 bool resched)
83{
84 ktime_t *timeout = &ehci->hr_timeouts[event];
85
86 if (resched)
87 *timeout = ktime_add(ktime_get(),
88 ktime_set(0, event_delays_ns[event]));
89 ehci->enabled_hrtimer_events |= (1 << event);
90
91 /* Track only the lowest-numbered pending event */
92 if (event < ehci->next_hrtimer_event) {
93 ehci->next_hrtimer_event = event;
94 hrtimer_start_range_ns(&ehci->hrtimer, *timeout,
95 NSEC_PER_MSEC, HRTIMER_MODE_ABS);
96 }
97}
98
99
Alan Stern31446612012-07-11 11:22:21 -0400100/* Poll the STS_ASS status bit; see when it agrees with CMD_ASE */
101static void ehci_poll_ASS(struct ehci_hcd *ehci)
102{
103 unsigned actual, want;
104
105 /* Don't enable anything if the controller isn't running (e.g., died) */
106 if (ehci->rh_state != EHCI_RH_RUNNING)
107 return;
108
109 want = (ehci->command & CMD_ASE) ? STS_ASS : 0;
110 actual = ehci_readl(ehci, &ehci->regs->status) & STS_ASS;
111
112 if (want != actual) {
113
114 /* Poll again later, but give up after about 20 ms */
115 if (ehci->ASS_poll_count++ < 20) {
116 ehci_enable_event(ehci, EHCI_HRTIMER_POLL_ASS, true);
117 return;
118 }
119 ehci_warn(ehci, "Waited too long for the async schedule status, giving up\n");
120 }
121 ehci->ASS_poll_count = 0;
122
123 /* The status is up-to-date; restart or stop the schedule as needed */
124 if (want == 0) { /* Stopped */
125 if (ehci->async_count > 0)
126 ehci_set_command_bit(ehci, CMD_ASE);
127
128 } else { /* Running */
129 if (ehci->async_count == 0) {
130
131 /* Turn off the schedule after a while */
132 ehci_enable_event(ehci, EHCI_HRTIMER_DISABLE_ASYNC,
133 true);
134 }
135 }
136}
137
138/* Turn off the async schedule after a brief delay */
139static void ehci_disable_ASE(struct ehci_hcd *ehci)
140{
141 ehci_clear_command_bit(ehci, CMD_ASE);
142}
143
144
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400145/* Poll the STS_PSS status bit; see when it agrees with CMD_PSE */
146static void ehci_poll_PSS(struct ehci_hcd *ehci)
147{
148 unsigned actual, want;
149
150 /* Don't do anything if the controller isn't running (e.g., died) */
151 if (ehci->rh_state != EHCI_RH_RUNNING)
152 return;
153
154 want = (ehci->command & CMD_PSE) ? STS_PSS : 0;
155 actual = ehci_readl(ehci, &ehci->regs->status) & STS_PSS;
156
157 if (want != actual) {
158
159 /* Poll again later, but give up after about 20 ms */
160 if (ehci->PSS_poll_count++ < 20) {
161 ehci_enable_event(ehci, EHCI_HRTIMER_POLL_PSS, true);
162 return;
163 }
164 ehci_warn(ehci, "Waited too long for the periodic schedule status, giving up\n");
165 }
166 ehci->PSS_poll_count = 0;
167
168 /* The status is up-to-date; restart or stop the schedule as needed */
169 if (want == 0) { /* Stopped */
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400170 if (ehci->periodic_count > 0) {
171
172 /* make sure ehci_work scans these */
173 ehci->next_uframe = ehci_read_frame_index(ehci)
174 & ((ehci->periodic_size << 3) - 1);
175 ehci_set_command_bit(ehci, CMD_PSE);
176 }
177
178 } else { /* Running */
179 if (ehci->periodic_count == 0) {
180
181 /* Turn off the schedule after a while */
182 ehci_enable_event(ehci, EHCI_HRTIMER_DISABLE_PERIODIC,
183 true);
184 }
185 }
186}
187
188/* Turn off the periodic schedule after a brief delay */
189static void ehci_disable_PSE(struct ehci_hcd *ehci)
190{
191 ehci_clear_command_bit(ehci, CMD_PSE);
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400192}
193
194
Alan Sternbf6387b2012-07-11 11:22:31 -0400195/* Poll the STS_HALT status bit; see when a dead controller stops */
196static void ehci_handle_controller_death(struct ehci_hcd *ehci)
197{
198 if (!(ehci_readl(ehci, &ehci->regs->status) & STS_HALT)) {
199
200 /* Give up after a few milliseconds */
201 if (ehci->died_poll_count++ < 5) {
202 /* Try again later */
203 ehci_enable_event(ehci, EHCI_HRTIMER_POLL_DEAD, true);
204 return;
205 }
206 ehci_warn(ehci, "Waited too long for the controller to stop, giving up\n");
207 }
208
209 /* Clean up the mess */
210 ehci->rh_state = EHCI_RH_HALTED;
211 ehci_writel(ehci, 0, &ehci->regs->configured_flag);
212 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
213 ehci_work(ehci);
214
215 /* Not in process context, so don't try to reset the controller */
216}
217
218
Alan Sterndf202252012-07-11 11:22:26 -0400219/* Handle unlinked interrupt QHs once they are gone from the hardware */
220static void ehci_handle_intr_unlinks(struct ehci_hcd *ehci)
221{
222 bool stopped = (ehci->rh_state < EHCI_RH_RUNNING);
223
224 /*
225 * Process all the QHs on the intr_unlink list that were added
226 * before the current unlink cycle began. The list is in
227 * temporal order, so stop when we reach the first entry in the
228 * current cycle. But if the root hub isn't running then
229 * process all the QHs on the list.
230 */
231 ehci->intr_unlinking = true;
232 while (ehci->intr_unlink) {
233 struct ehci_qh *qh = ehci->intr_unlink;
234
235 if (!stopped && qh->unlink_cycle == ehci->intr_unlink_cycle)
236 break;
237 ehci->intr_unlink = qh->unlink_next;
238 qh->unlink_next = NULL;
239 end_unlink_intr(ehci, qh);
240 }
241
242 /* Handle remaining entries later */
243 if (ehci->intr_unlink) {
244 ehci_enable_event(ehci, EHCI_HRTIMER_UNLINK_INTR, true);
245 ++ehci->intr_unlink_cycle;
246 }
247 ehci->intr_unlinking = false;
248}
249
250
Alan Stern55934eb2012-07-11 11:22:35 -0400251/* Start another free-iTDs/siTDs cycle */
252static void start_free_itds(struct ehci_hcd *ehci)
253{
254 if (!(ehci->enabled_hrtimer_events & BIT(EHCI_HRTIMER_FREE_ITDS))) {
255 ehci->last_itd_to_free = list_entry(
256 ehci->cached_itd_list.prev,
257 struct ehci_itd, itd_list);
258 ehci->last_sitd_to_free = list_entry(
259 ehci->cached_sitd_list.prev,
260 struct ehci_sitd, sitd_list);
261 ehci_enable_event(ehci, EHCI_HRTIMER_FREE_ITDS, true);
262 }
263}
264
265/* Wait for controller to stop using old iTDs and siTDs */
266static void end_free_itds(struct ehci_hcd *ehci)
267{
268 struct ehci_itd *itd, *n;
269 struct ehci_sitd *sitd, *sn;
270
271 if (ehci->rh_state < EHCI_RH_RUNNING) {
272 ehci->last_itd_to_free = NULL;
273 ehci->last_sitd_to_free = NULL;
274 }
275
276 list_for_each_entry_safe(itd, n, &ehci->cached_itd_list, itd_list) {
277 list_del(&itd->itd_list);
278 dma_pool_free(ehci->itd_pool, itd, itd->itd_dma);
279 if (itd == ehci->last_itd_to_free)
280 break;
281 }
282 list_for_each_entry_safe(sitd, sn, &ehci->cached_sitd_list, sitd_list) {
283 list_del(&sitd->sitd_list);
284 dma_pool_free(ehci->sitd_pool, sitd, sitd->sitd_dma);
285 if (sitd == ehci->last_sitd_to_free)
286 break;
287 }
288
289 if (!list_empty(&ehci->cached_itd_list) ||
290 !list_empty(&ehci->cached_sitd_list))
291 start_free_itds(ehci);
292}
293
294
Alan Stern9d938742012-07-11 11:22:44 -0400295/* Handle lost (or very late) IAA interrupts */
296static void ehci_iaa_watchdog(struct ehci_hcd *ehci)
297{
298 if (ehci->rh_state != EHCI_RH_RUNNING)
299 return;
300
301 /*
302 * Lost IAA irqs wedge things badly; seen first with a vt8235.
303 * So we need this watchdog, but must protect it against both
304 * (a) SMP races against real IAA firing and retriggering, and
305 * (b) clean HC shutdown, when IAA watchdog was pending.
306 */
307 if (ehci->async_unlink) {
308 u32 cmd, status;
309
310 /* If we get here, IAA is *REALLY* late. It's barely
311 * conceivable that the system is so busy that CMD_IAAD
312 * is still legitimately set, so let's be sure it's
313 * clear before we read STS_IAA. (The HC should clear
314 * CMD_IAAD when it sets STS_IAA.)
315 */
316 cmd = ehci_readl(ehci, &ehci->regs->command);
317
318 /*
319 * If IAA is set here it either legitimately triggered
320 * after the watchdog timer expired (_way_ late, so we'll
321 * still count it as lost) ... or a silicon erratum:
322 * - VIA seems to set IAA without triggering the IRQ;
323 * - IAAD potentially cleared without setting IAA.
324 */
325 status = ehci_readl(ehci, &ehci->regs->status);
326 if ((status & STS_IAA) || !(cmd & CMD_IAAD)) {
327 COUNT(ehci->stats.lost_iaa);
328 ehci_writel(ehci, STS_IAA, &ehci->regs->status);
329 }
330
331 ehci_vdbg(ehci, "IAA watchdog: status %x cmd %x\n",
332 status, cmd);
333 end_unlink_async(ehci);
334 }
335}
336
337
Alan Sternd58b4bc2012-07-11 11:21:54 -0400338/*
339 * Handler functions for the hrtimer event types.
340 * Keep this array in the same order as the event types indexed by
341 * enum ehci_hrtimer_event in ehci.h.
342 */
343static void (*event_handlers[])(struct ehci_hcd *) = {
Alan Stern31446612012-07-11 11:22:21 -0400344 ehci_poll_ASS, /* EHCI_HRTIMER_POLL_ASS */
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400345 ehci_poll_PSS, /* EHCI_HRTIMER_POLL_PSS */
Alan Sternbf6387b2012-07-11 11:22:31 -0400346 ehci_handle_controller_death, /* EHCI_HRTIMER_POLL_DEAD */
Alan Sterndf202252012-07-11 11:22:26 -0400347 ehci_handle_intr_unlinks, /* EHCI_HRTIMER_UNLINK_INTR */
Alan Stern55934eb2012-07-11 11:22:35 -0400348 end_free_itds, /* EHCI_HRTIMER_FREE_ITDS */
Alan Stern9d938742012-07-11 11:22:44 -0400349 ehci_iaa_watchdog, /* EHCI_HRTIMER_IAA_WATCHDOG */
Alan Stern3ca9aeb2012-07-11 11:22:05 -0400350 ehci_disable_PSE, /* EHCI_HRTIMER_DISABLE_PERIODIC */
Alan Stern31446612012-07-11 11:22:21 -0400351 ehci_disable_ASE, /* EHCI_HRTIMER_DISABLE_ASYNC */
Alan Sternd58b4bc2012-07-11 11:21:54 -0400352};
353
354static enum hrtimer_restart ehci_hrtimer_func(struct hrtimer *t)
355{
356 struct ehci_hcd *ehci = container_of(t, struct ehci_hcd, hrtimer);
357 ktime_t now;
358 unsigned long events;
359 unsigned long flags;
360 unsigned e;
361
362 spin_lock_irqsave(&ehci->lock, flags);
363
364 events = ehci->enabled_hrtimer_events;
365 ehci->enabled_hrtimer_events = 0;
366 ehci->next_hrtimer_event = EHCI_HRTIMER_NO_EVENT;
367
368 /*
369 * Check each pending event. If its time has expired, handle
370 * the event; otherwise re-enable it.
371 */
372 now = ktime_get();
373 for_each_set_bit(e, &events, EHCI_HRTIMER_NUM_EVENTS) {
374 if (now.tv64 >= ehci->hr_timeouts[e].tv64)
375 event_handlers[e](ehci);
376 else
377 ehci_enable_event(ehci, e, false);
378 }
379
380 spin_unlock_irqrestore(&ehci->lock, flags);
381 return HRTIMER_NORESTART;
382}