USB: EHCI cpufreq fix
EHCI controllers that don't cache enough microframes can get MMF errors when CPU frequency changes occur between the start and completion of split interrupt transactions, due to delays in reading main memory (caused by CPU cache snoop delays). This patch adds a cpufreq notifier to the EHCI driver that will inactivate split interrupt transactions during frequency transitions. It was tested on Intel ICH7 and Serverworks/Broadcom HT1000 EHCI controllers. Signed-off-by: Stuart Hayes <stuart_hayes@dell.com> Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
这个提交包含在:

提交者
Greg Kroah-Hartman

父节点
ec22559e0b
当前提交
196705c9bb
@@ -311,6 +311,10 @@ qh_completions (struct ehci_hcd *ehci, struct ehci_qh *qh)
|
||||
struct urb *urb;
|
||||
u32 token = 0;
|
||||
|
||||
/* ignore QHs that are currently inactive */
|
||||
if (qh->hw_info1 & __constant_cpu_to_le32(QH_INACTIVATE))
|
||||
break;
|
||||
|
||||
qtd = list_entry (entry, struct ehci_qtd, qtd_list);
|
||||
urb = qtd->urb;
|
||||
|
||||
|
在新工单中引用
屏蔽一个用户