diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2008-12-20 04:52:42 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 15:58:34 -0500 |
commit | 7d7f19ccb777946df0a8fb7c83189ba2ae08b02e (patch) | |
tree | 38fcea85510a4945283cf23bc029261b3941fc74 /drivers/net/wireless/rt2x00/rt2500pci.c | |
parent | 3ebbbb56a162b8f9b9a77bc7810b9d4e0868e039 (diff) |
rt2x00: Implement Powersaving
Listen to IEEE80211_CONF_PS to determine if the device
should drop into powersaving mode. This feature depends
on the dynamic power save functionality in mac80211.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2500pci.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2500pci.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2500pci.c b/drivers/net/wireless/rt2x00/rt2500pci.c index d3bc218ec85c..bf5e81162f25 100644 --- a/drivers/net/wireless/rt2x00/rt2500pci.c +++ b/drivers/net/wireless/rt2x00/rt2500pci.c | |||
@@ -573,6 +573,32 @@ static void rt2500pci_config_duration(struct rt2x00_dev *rt2x00dev, | |||
573 | rt2x00pci_register_write(rt2x00dev, CSR12, reg); | 573 | rt2x00pci_register_write(rt2x00dev, CSR12, reg); |
574 | } | 574 | } |
575 | 575 | ||
576 | static void rt2500pci_config_ps(struct rt2x00_dev *rt2x00dev, | ||
577 | struct rt2x00lib_conf *libconf) | ||
578 | { | ||
579 | enum dev_state state = | ||
580 | (libconf->conf->flags & IEEE80211_CONF_PS) ? | ||
581 | STATE_SLEEP : STATE_AWAKE; | ||
582 | u32 reg; | ||
583 | |||
584 | if (state == STATE_SLEEP) { | ||
585 | rt2x00pci_register_read(rt2x00dev, CSR20, ®); | ||
586 | rt2x00_set_field32(®, CSR20_DELAY_AFTER_TBCN, | ||
587 | (libconf->conf->beacon_int - 20) * 16); | ||
588 | rt2x00_set_field32(®, CSR20_TBCN_BEFORE_WAKEUP, | ||
589 | libconf->conf->listen_interval - 1); | ||
590 | |||
591 | /* We must first disable autowake before it can be enabled */ | ||
592 | rt2x00_set_field32(®, CSR20_AUTOWAKE, 0); | ||
593 | rt2x00pci_register_write(rt2x00dev, CSR20, reg); | ||
594 | |||
595 | rt2x00_set_field32(®, CSR20_AUTOWAKE, 1); | ||
596 | rt2x00pci_register_write(rt2x00dev, CSR20, reg); | ||
597 | } | ||
598 | |||
599 | rt2x00dev->ops->lib->set_device_state(rt2x00dev, state); | ||
600 | } | ||
601 | |||
576 | static void rt2500pci_config(struct rt2x00_dev *rt2x00dev, | 602 | static void rt2500pci_config(struct rt2x00_dev *rt2x00dev, |
577 | struct rt2x00lib_conf *libconf, | 603 | struct rt2x00lib_conf *libconf, |
578 | const unsigned int flags) | 604 | const unsigned int flags) |
@@ -588,6 +614,8 @@ static void rt2500pci_config(struct rt2x00_dev *rt2x00dev, | |||
588 | rt2500pci_config_retry_limit(rt2x00dev, libconf); | 614 | rt2500pci_config_retry_limit(rt2x00dev, libconf); |
589 | if (flags & IEEE80211_CONF_CHANGE_BEACON_INTERVAL) | 615 | if (flags & IEEE80211_CONF_CHANGE_BEACON_INTERVAL) |
590 | rt2500pci_config_duration(rt2x00dev, libconf); | 616 | rt2500pci_config_duration(rt2x00dev, libconf); |
617 | if (flags & IEEE80211_CONF_CHANGE_PS) | ||
618 | rt2500pci_config_ps(rt2x00dev, libconf); | ||
591 | } | 619 | } |
592 | 620 | ||
593 | /* | 621 | /* |