diff options
author | Sarah Sharp <sarah.a.sharp@linux.intel.com> | 2012-04-23 13:08:51 -0400 |
---|---|---|
committer | Sarah Sharp <sarah.a.sharp@linux.intel.com> | 2012-05-18 18:42:55 -0400 |
commit | e1f12eb6ba6f1e74007eb01ed26fad7c5239d62b (patch) | |
tree | 4c6753fc5091cd31b8cc0029e41f86f4f8c3b195 /drivers/isdn | |
parent | e3567d2c15a7a8e2f992a5f7c7683453ca406d82 (diff) |
USB: Disable hub-initiated LPM for comms devices.
Hub-initiated LPM is not good for USB communications devices. Comms
devices should be able to tell when their link can go into a lower power
state, because they know when an incoming transmission is finished.
Ideally, these devices would slam their links into a lower power state,
using the device-initiated LPM, after finishing the last packet of their
data transfer.
If we enable the idle timeouts for the parent hubs to enable
hub-initiated LPM, we will get a lot of useless LPM packets on the bus
as the devices reject LPM transitions when they're in the middle of
receiving data. Worse, some devices might blindly accept the
hub-initiated LPM and power down their radios while they're in the
middle of receiving a transmission.
The Intel Windows folks are disabling hub-initiated LPM for all USB
communications devices under a xHCI USB 3.0 host. In order to keep
the Linux behavior as close as possible to Windows, we need to do the
same in Linux.
Set the disable_hub_initiated_lpm flag for for all USB communications
drivers. I know there aren't currently any USB 3.0 devices that
implement these class specifications, but we should be ready if they do.
Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Cc: Marcel Holtmann <marcel@holtmann.org>
Cc: Gustavo Padovan <gustavo@padovan.org>
Cc: Johan Hedberg <johan.hedberg@gmail.com>
Cc: Hansjoerg Lipp <hjlipp@web.de>
Cc: Tilman Schmidt <tilman@imap.cc>
Cc: Karsten Keil <isdn@linux-pingi.de>
Cc: Peter Korsgaard <jacmet@sunsite.dk>
Cc: Jan Dumon <j.dumon@option.com>
Cc: Petko Manolov <petkan@users.sourceforge.net>
Cc: Steve Glendinning <steve.glendinning@smsc.com>
Cc: "John W. Linville" <linville@tuxdriver.com>
Cc: Kalle Valo <kvalo@qca.qualcomm.com>
Cc: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Cc: Jouni Malinen <jouni@qca.qualcomm.com>
Cc: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Cc: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Cc: Christian Lamparter <chunkeey@googlemail.com>
Cc: Brett Rudley <brudley@broadcom.com>
Cc: Roland Vossen <rvossen@broadcom.com>
Cc: Arend van Spriel <arend@broadcom.com>
Cc: "Franky (Zhenhui) Lin" <frankyl@broadcom.com>
Cc: Kan Yan <kanyan@broadcom.com>
Cc: Dan Williams <dcbw@redhat.com>
Cc: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Cc: Ivo van Doorn <IvDoorn@gmail.com>
Cc: Gertjan van Wingerde <gwingerde@gmail.com>
Cc: Helmut Schaa <helmut.schaa@googlemail.com>
Cc: Herton Ronaldo Krzesinski <herton@canonical.com>
Cc: Hin-Tak Leung <htl10@users.sourceforge.net>
Cc: Larry Finger <Larry.Finger@lwfinger.net>
Cc: Chaoming Li <chaoming_li@realsil.com.cn>
Cc: Daniel Drake <dsd@gentoo.org>
Cc: Ulrich Kunitz <kune@deine-taler.de>
Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/gigaset/bas-gigaset.c | 1 | ||||
-rw-r--r-- | drivers/isdn/gigaset/usb-gigaset.c | 1 | ||||
-rw-r--r-- | drivers/isdn/hardware/mISDN/hfcsusb.c | 1 | ||||
-rw-r--r-- | drivers/isdn/hisax/hfc_usb.c | 1 | ||||
-rw-r--r-- | drivers/isdn/hisax/st5481_init.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/drivers/isdn/gigaset/bas-gigaset.c b/drivers/isdn/gigaset/bas-gigaset.c index afa080258bfa..17ea0177a529 100644 --- a/drivers/isdn/gigaset/bas-gigaset.c +++ b/drivers/isdn/gigaset/bas-gigaset.c | |||
@@ -148,6 +148,7 @@ static struct usb_driver gigaset_usb_driver = { | |||
148 | .reset_resume = gigaset_post_reset, | 148 | .reset_resume = gigaset_post_reset, |
149 | .pre_reset = gigaset_pre_reset, | 149 | .pre_reset = gigaset_pre_reset, |
150 | .post_reset = gigaset_post_reset, | 150 | .post_reset = gigaset_post_reset, |
151 | .disable_hub_initiated_lpm = 1, | ||
151 | }; | 152 | }; |
152 | 153 | ||
153 | /* get message text for usb_submit_urb return code | 154 | /* get message text for usb_submit_urb return code |
diff --git a/drivers/isdn/gigaset/usb-gigaset.c b/drivers/isdn/gigaset/usb-gigaset.c index 049da67f6392..78f81e8a5be6 100644 --- a/drivers/isdn/gigaset/usb-gigaset.c +++ b/drivers/isdn/gigaset/usb-gigaset.c | |||
@@ -124,6 +124,7 @@ static struct usb_driver gigaset_usb_driver = { | |||
124 | .reset_resume = gigaset_resume, | 124 | .reset_resume = gigaset_resume, |
125 | .pre_reset = gigaset_pre_reset, | 125 | .pre_reset = gigaset_pre_reset, |
126 | .post_reset = gigaset_resume, | 126 | .post_reset = gigaset_resume, |
127 | .disable_hub_initiated_lpm = 1, | ||
127 | }; | 128 | }; |
128 | 129 | ||
129 | struct usb_cardstate { | 130 | struct usb_cardstate { |
diff --git a/drivers/isdn/hardware/mISDN/hfcsusb.c b/drivers/isdn/hardware/mISDN/hfcsusb.c index 8cde2a0538ab..cddb769a8b12 100644 --- a/drivers/isdn/hardware/mISDN/hfcsusb.c +++ b/drivers/isdn/hardware/mISDN/hfcsusb.c | |||
@@ -2151,6 +2151,7 @@ static struct usb_driver hfcsusb_drv = { | |||
2151 | .id_table = hfcsusb_idtab, | 2151 | .id_table = hfcsusb_idtab, |
2152 | .probe = hfcsusb_probe, | 2152 | .probe = hfcsusb_probe, |
2153 | .disconnect = hfcsusb_disconnect, | 2153 | .disconnect = hfcsusb_disconnect, |
2154 | .disable_hub_initiated_lpm = 1, | ||
2154 | }; | 2155 | }; |
2155 | 2156 | ||
2156 | module_usb_driver(hfcsusb_drv); | 2157 | module_usb_driver(hfcsusb_drv); |
diff --git a/drivers/isdn/hisax/hfc_usb.c b/drivers/isdn/hisax/hfc_usb.c index 62c65bdefd8a..84f9c8103078 100644 --- a/drivers/isdn/hisax/hfc_usb.c +++ b/drivers/isdn/hisax/hfc_usb.c | |||
@@ -1568,6 +1568,7 @@ static struct usb_driver hfc_drv = { | |||
1568 | .id_table = hfcusb_idtab, | 1568 | .id_table = hfcusb_idtab, |
1569 | .probe = hfc_usb_probe, | 1569 | .probe = hfc_usb_probe, |
1570 | .disconnect = hfc_usb_disconnect, | 1570 | .disconnect = hfc_usb_disconnect, |
1571 | .disable_hub_initiated_lpm = 1, | ||
1571 | }; | 1572 | }; |
1572 | 1573 | ||
1573 | static void __exit | 1574 | static void __exit |
diff --git a/drivers/isdn/hisax/st5481_init.c b/drivers/isdn/hisax/st5481_init.c index 100296e20dc0..54ef9e4f8cbc 100644 --- a/drivers/isdn/hisax/st5481_init.c +++ b/drivers/isdn/hisax/st5481_init.c | |||
@@ -182,6 +182,7 @@ static struct usb_driver st5481_usb_driver = { | |||
182 | .probe = probe_st5481, | 182 | .probe = probe_st5481, |
183 | .disconnect = disconnect_st5481, | 183 | .disconnect = disconnect_st5481, |
184 | .id_table = st5481_ids, | 184 | .id_table = st5481_ids, |
185 | .disable_hub_initiated_lpm = 1, | ||
185 | }; | 186 | }; |
186 | 187 | ||
187 | static int __init st5481_usb_init(void) | 188 | static int __init st5481_usb_init(void) |