fix a kmap leak in virtio_console
[linux/fpc-iii.git] / drivers / net / wireless / iwlwifi / mvm / quota.c
blobce5db6c4ef7e60e3ad557cd0e2d773738419d587
1 /******************************************************************************
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
6 * GPL LICENSE SUMMARY
8 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
22 * USA
24 * The full GNU General Public License is included in this distribution
25 * in the file called COPYING.
27 * Contact Information:
28 * Intel Linux Wireless <ilw@linux.intel.com>
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 * BSD LICENSE
33 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
34 * All rights reserved.
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
40 * * Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * * Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in
44 * the documentation and/or other materials provided with the
45 * distribution.
46 * * Neither the name Intel Corporation nor the names of its
47 * contributors may be used to endorse or promote products derived
48 * from this software without specific prior written permission.
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
62 *****************************************************************************/
64 #include <net/mac80211.h>
65 #include "fw-api.h"
66 #include "mvm.h"
68 struct iwl_mvm_quota_iterator_data {
69 int n_interfaces[MAX_BINDINGS];
70 int colors[MAX_BINDINGS];
71 struct ieee80211_vif *new_vif;
74 static void iwl_mvm_quota_iterator(void *_data, u8 *mac,
75 struct ieee80211_vif *vif)
77 struct iwl_mvm_quota_iterator_data *data = _data;
78 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
79 u16 id;
82 * We'll account for the new interface (if any) below,
83 * skip it here in case we're not called from within
84 * the add_interface callback (otherwise it won't show
85 * up in iteration)
87 if (vif == data->new_vif)
88 return;
90 if (!mvmvif->phy_ctxt)
91 return;
93 /* currently, PHY ID == binding ID */
94 id = mvmvif->phy_ctxt->id;
96 /* need at least one binding per PHY */
97 BUILD_BUG_ON(NUM_PHY_CTX > MAX_BINDINGS);
99 if (WARN_ON_ONCE(id >= MAX_BINDINGS))
100 return;
102 if (data->colors[id] < 0)
103 data->colors[id] = mvmvif->phy_ctxt->color;
104 else
105 WARN_ON_ONCE(data->colors[id] != mvmvif->phy_ctxt->color);
107 switch (vif->type) {
108 case NL80211_IFTYPE_STATION:
109 if (vif->bss_conf.assoc)
110 data->n_interfaces[id]++;
111 break;
112 case NL80211_IFTYPE_AP:
113 case NL80211_IFTYPE_ADHOC:
114 if (mvmvif->ap_ibss_active)
115 data->n_interfaces[id]++;
116 break;
117 case NL80211_IFTYPE_MONITOR:
118 if (mvmvif->monitor_active)
119 data->n_interfaces[id]++;
120 break;
121 case NL80211_IFTYPE_P2P_DEVICE:
122 break;
123 default:
124 WARN_ON_ONCE(1);
125 break;
129 static void iwl_mvm_adjust_quota_for_noa(struct iwl_mvm *mvm,
130 struct iwl_time_quota_cmd *cmd)
132 #ifdef CONFIG_NL80211_TESTMODE
133 struct iwl_mvm_vif *mvmvif;
134 int i, phy_id = -1, beacon_int = 0;
136 if (!mvm->noa_duration || !mvm->noa_vif)
137 return;
139 mvmvif = iwl_mvm_vif_from_mac80211(mvm->noa_vif);
140 if (!mvmvif->ap_ibss_active)
141 return;
143 phy_id = mvmvif->phy_ctxt->id;
144 beacon_int = mvm->noa_vif->bss_conf.beacon_int;
146 for (i = 0; i < MAX_BINDINGS; i++) {
147 u32 id_n_c = le32_to_cpu(cmd->quotas[i].id_and_color);
148 u32 id = (id_n_c & FW_CTXT_ID_MSK) >> FW_CTXT_ID_POS;
149 u32 quota = le32_to_cpu(cmd->quotas[i].quota);
151 if (id != phy_id)
152 continue;
154 quota *= (beacon_int - mvm->noa_duration);
155 quota /= beacon_int;
157 cmd->quotas[i].quota = cpu_to_le32(quota);
159 #endif
162 int iwl_mvm_update_quotas(struct iwl_mvm *mvm, struct ieee80211_vif *newvif)
164 struct iwl_time_quota_cmd cmd = {};
165 int i, idx, ret, num_active_macs, quota, quota_rem;
166 struct iwl_mvm_quota_iterator_data data = {
167 .n_interfaces = {},
168 .colors = { -1, -1, -1, -1 },
169 .new_vif = newvif,
172 lockdep_assert_held(&mvm->mutex);
174 /* update all upon completion */
175 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status))
176 return 0;
178 /* iterator data above must match */
179 BUILD_BUG_ON(MAX_BINDINGS != 4);
181 ieee80211_iterate_active_interfaces_atomic(
182 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
183 iwl_mvm_quota_iterator, &data);
184 if (newvif) {
185 data.new_vif = NULL;
186 iwl_mvm_quota_iterator(&data, newvif->addr, newvif);
190 * The FW's scheduling session consists of
191 * IWL_MVM_MAX_QUOTA fragments. Divide these fragments
192 * equally between all the bindings that require quota
194 num_active_macs = 0;
195 for (i = 0; i < MAX_BINDINGS; i++) {
196 cmd.quotas[i].id_and_color = cpu_to_le32(FW_CTXT_INVALID);
197 num_active_macs += data.n_interfaces[i];
200 quota = 0;
201 quota_rem = 0;
202 if (num_active_macs) {
203 quota = IWL_MVM_MAX_QUOTA / num_active_macs;
204 quota_rem = IWL_MVM_MAX_QUOTA % num_active_macs;
207 for (idx = 0, i = 0; i < MAX_BINDINGS; i++) {
208 if (data.colors[i] < 0)
209 continue;
211 cmd.quotas[idx].id_and_color =
212 cpu_to_le32(FW_CMD_ID_AND_COLOR(i, data.colors[i]));
214 if (data.n_interfaces[i] <= 0) {
215 cmd.quotas[idx].quota = cpu_to_le32(0);
216 cmd.quotas[idx].max_duration = cpu_to_le32(0);
217 } else {
218 cmd.quotas[idx].quota =
219 cpu_to_le32(quota * data.n_interfaces[i]);
220 cmd.quotas[idx].max_duration = cpu_to_le32(0);
222 idx++;
225 /* Give the remainder of the session to the first binding */
226 le32_add_cpu(&cmd.quotas[0].quota, quota_rem);
228 iwl_mvm_adjust_quota_for_noa(mvm, &cmd);
230 ret = iwl_mvm_send_cmd_pdu(mvm, TIME_QUOTA_CMD, CMD_SYNC,
231 sizeof(cmd), &cmd);
232 if (ret)
233 IWL_ERR(mvm, "Failed to send quota: %d\n", ret);
234 return ret;