2011-07-01 16:11:53 +00:00
|
|
|
--- a/drivers/net/wireless/ath/ath9k/ath9k.h
|
|
|
|
+++ b/drivers/net/wireless/ath/ath9k/ath9k.h
|
2012-09-08 11:10:54 +00:00
|
|
|
@@ -659,6 +659,7 @@ struct ath_softc {
|
2011-07-01 16:11:53 +00:00
|
|
|
struct ieee80211_hw *hw;
|
|
|
|
struct device *dev;
|
|
|
|
|
|
|
|
+ u32 chan_bw;
|
|
|
|
struct survey_info *cur_survey;
|
2012-04-16 21:08:41 +00:00
|
|
|
struct survey_info survey[ATH9K_NUM_CHANNELS];
|
|
|
|
|
2012-09-08 11:10:54 +00:00
|
|
|
@@ -734,6 +735,7 @@ struct ath_softc {
|
2012-07-16 23:50:54 +00:00
|
|
|
#endif
|
2011-11-19 16:56:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
+int ath9k_config(struct ieee80211_hw *hw, u32 changed);
|
|
|
|
void ath9k_tasklet(unsigned long data);
|
|
|
|
int ath_cabq_update(struct ath_softc *);
|
|
|
|
|
2011-07-01 16:11:53 +00:00
|
|
|
--- a/drivers/net/wireless/ath/ath9k/debug.c
|
|
|
|
+++ b/drivers/net/wireless/ath/ath9k/debug.c
|
2012-07-10 00:21:25 +00:00
|
|
|
@@ -1579,6 +1579,50 @@ static const struct file_operations fops
|
2011-11-19 16:56:44 +00:00
|
|
|
.owner = THIS_MODULE
|
|
|
|
};
|
|
|
|
|
|
|
|
+
|
|
|
|
+static ssize_t read_file_chan_bw(struct file *file, char __user *user_buf,
|
|
|
|
+ size_t count, loff_t *ppos)
|
|
|
|
+{
|
|
|
|
+ struct ath_softc *sc = file->private_data;
|
|
|
|
+ char buf[32];
|
|
|
|
+ unsigned int len;
|
|
|
|
+
|
|
|
|
+ len = sprintf(buf, "0x%08x\n", sc->chan_bw);
|
|
|
|
+ return simple_read_from_buffer(user_buf, count, ppos, buf, len);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static ssize_t write_file_chan_bw(struct file *file, const char __user *user_buf,
|
|
|
|
+ size_t count, loff_t *ppos)
|
|
|
|
+{
|
|
|
|
+ struct ath_softc *sc = file->private_data;
|
|
|
|
+ unsigned long chan_bw;
|
|
|
|
+ char buf[32];
|
|
|
|
+ ssize_t len;
|
|
|
|
+
|
|
|
|
+ len = min(count, sizeof(buf) - 1);
|
|
|
|
+ if (copy_from_user(buf, user_buf, len))
|
|
|
|
+ return -EFAULT;
|
|
|
|
+
|
|
|
|
+ buf[len] = '\0';
|
|
|
|
+ if (strict_strtoul(buf, 0, &chan_bw))
|
|
|
|
+ return -EINVAL;
|
|
|
|
+
|
|
|
|
+ sc->chan_bw = chan_bw;
|
2011-11-23 13:55:14 +00:00
|
|
|
+ if (!(sc->sc_flags & SC_OP_INVALID))
|
2011-11-19 16:56:44 +00:00
|
|
|
+ ath9k_config(sc->hw, IEEE80211_CONF_CHANGE_CHANNEL);
|
|
|
|
+
|
|
|
|
+ return count;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static const struct file_operations fops_chanbw = {
|
|
|
|
+ .read = read_file_chan_bw,
|
|
|
|
+ .write = write_file_chan_bw,
|
2012-04-16 21:08:41 +00:00
|
|
|
+ .open = simple_open,
|
2011-11-19 16:56:44 +00:00
|
|
|
+ .owner = THIS_MODULE,
|
|
|
|
+ .llseek = default_llseek,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+
|
|
|
|
int ath9k_init_debug(struct ath_hw *ah)
|
|
|
|
{
|
|
|
|
struct ath_common *common = ath9k_hw_common(ah);
|
2012-07-16 23:50:54 +00:00
|
|
|
@@ -1653,5 +1697,8 @@ int ath9k_init_debug(struct ath_hw *ah)
|
2011-07-01 16:11:53 +00:00
|
|
|
debugfs_create_file("eeprom", S_IRUSR, sc->debug.debugfs_phy, sc,
|
|
|
|
&fops_eeprom);
|
|
|
|
|
2011-11-19 16:56:44 +00:00
|
|
|
+ debugfs_create_file("chanbw", S_IRUSR | S_IWUSR, sc->debug.debugfs_phy,
|
|
|
|
+ sc, &fops_chanbw);
|
2011-07-01 16:11:53 +00:00
|
|
|
+
|
2012-02-27 22:56:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2011-07-01 16:11:53 +00:00
|
|
|
--- a/drivers/net/wireless/ath/ath9k/main.c
|
|
|
|
+++ b/drivers/net/wireless/ath/ath9k/main.c
|
2012-09-08 11:10:54 +00:00
|
|
|
@@ -1127,7 +1127,7 @@ static void ath9k_disable_ps(struct ath_
|
2012-05-30 01:01:06 +00:00
|
|
|
ath_dbg(common, PS, "PowerSave disabled\n");
|
2011-11-19 16:56:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
-static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
|
|
|
|
+int ath9k_config(struct ieee80211_hw *hw, u32 changed)
|
|
|
|
{
|
|
|
|
struct ath_softc *sc = hw->priv;
|
|
|
|
struct ath_hw *ah = sc->sc_ah;
|
2012-09-08 11:10:54 +00:00
|
|
|
@@ -1181,9 +1181,11 @@ static int ath9k_config(struct ieee80211
|
2011-07-01 16:11:53 +00:00
|
|
|
|
2012-04-12 21:28:18 +00:00
|
|
|
if ((changed & IEEE80211_CONF_CHANGE_CHANNEL) || reset_channel) {
|
2011-08-28 18:38:24 +00:00
|
|
|
struct ieee80211_channel *curchan = hw->conf.channel;
|
2012-01-07 20:54:33 +00:00
|
|
|
+ struct ath9k_channel *hchan;
|
2011-08-28 18:38:24 +00:00
|
|
|
int pos = curchan->hw_value;
|
|
|
|
int old_pos = -1;
|
|
|
|
unsigned long flags;
|
2012-01-07 20:54:33 +00:00
|
|
|
+ u32 oldflags;
|
2011-07-01 16:11:53 +00:00
|
|
|
|
2011-08-28 18:38:24 +00:00
|
|
|
if (ah->curchan)
|
2012-01-07 20:54:33 +00:00
|
|
|
old_pos = ah->curchan - &ah->channels[0];
|
2012-09-08 11:10:54 +00:00
|
|
|
@@ -1226,7 +1228,23 @@ static int ath9k_config(struct ieee80211
|
2011-08-28 18:38:24 +00:00
|
|
|
memset(&sc->survey[pos], 0, sizeof(struct survey_info));
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (ath_set_channel(sc, hw, &sc->sc_ah->channels[pos]) < 0) {
|
|
|
|
+ hchan = &sc->sc_ah->channels[pos];
|
|
|
|
+ oldflags = hchan->channelFlags;
|
|
|
|
+ switch (sc->chan_bw) {
|
|
|
|
+ case 5:
|
|
|
|
+ hchan->channelFlags &= ~CHANNEL_HALF;
|
|
|
|
+ hchan->channelFlags |= CHANNEL_QUARTER;
|
|
|
|
+ break;
|
|
|
|
+ case 10:
|
|
|
|
+ hchan->channelFlags &= ~CHANNEL_QUARTER;
|
|
|
|
+ hchan->channelFlags |= CHANNEL_HALF;
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ hchan->channelFlags &= ~(CHANNEL_HALF | CHANNEL_QUARTER);
|
|
|
|
+ break;
|
|
|
|
+ }
|
2011-07-01 16:11:53 +00:00
|
|
|
+
|
2011-08-28 18:38:24 +00:00
|
|
|
+ if (ath_set_channel(sc, hw, hchan) < 0) {
|
|
|
|
ath_err(common, "Unable to set channel\n");
|
|
|
|
mutex_unlock(&sc->mutex);
|
2012-06-18 01:26:36 +00:00
|
|
|
ath9k_ps_restore(sc);
|