blob: 86adbb66abab7e4667239203267bb53c37c10717 [file] [log] [blame]
Abhishek Rastogi9da47472014-03-18 19:46:15 +05301/*
2 **************************************************************************
Tanmay V Jagdalef6b2bce2017-03-03 14:31:07 +05303 * Copyright (c) 2013, 2015-2017 The Linux Foundation. All rights reserved.
Abhishek Rastogi9da47472014-03-18 19:46:15 +05304 * Permission to use, copy, modify, and/or distribute this software for
5 * any purpose with or without fee is hereby granted, provided that the
6 * above copyright notice and this permission notice appear in all copies.
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
13 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14 **************************************************************************
15 */
16
17/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070018 * nss_freq.c
Abhishek Rastogi9da47472014-03-18 19:46:15 +053019 * NSS frequency change APIs
20 */
21
22#include "nss_tx_rx_common.h"
23
24#define NSS_ACK_STARTED 0
25#define NSS_ACK_FINISHED 1
26
Abhishek Rastogi9da47472014-03-18 19:46:15 +053027extern struct nss_frequency_statistics nss_freq_stat;
28extern struct nss_runtime_sampling nss_runtime_samples;
29extern struct workqueue_struct *nss_wq;
30extern nss_work_t *nss_work;
Abhishek Rastogi9da47472014-03-18 19:46:15 +053031
32/*
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -070033 * nss_freq_msg_init()
Thomas Wu0e2fc4f2015-03-04 15:39:14 -080034 * Initialize the freq message
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -070035 */
36static void nss_freq_msg_init(struct nss_corefreq_msg *ncm, uint16_t if_num, uint32_t type, uint32_t len,
37 void *cb, void *app_data)
38{
39 nss_cmn_msg_init(&ncm->cm, if_num, type, len, cb, app_data);
40}
41
42/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070043 * nss_freq_handle_ack()
Abhishek Rastogi9da47472014-03-18 19:46:15 +053044 * Handle the nss ack of frequency change.
45 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070046static void nss_freq_handle_ack(struct nss_ctx_instance *nss_ctx, struct nss_freq_msg *nfa)
Abhishek Rastogi9da47472014-03-18 19:46:15 +053047{
Thomas Wu168ca262014-03-21 16:20:27 -070048 if (nfa->ack == NSS_ACK_STARTED) {
Abhishek Rastogi9da47472014-03-18 19:46:15 +053049 /*
50 * NSS finished start noficiation - HW change clocks and send end notification
51 */
Thomas Wu168ca262014-03-21 16:20:27 -070052 nss_info("%p: NSS ACK Received: %d - Change HW CLK/Send Finish to NSS\n", nss_ctx, nfa->ack);
Abhishek Rastogi9da47472014-03-18 19:46:15 +053053
54 return;
55 }
56
Thomas Wu168ca262014-03-21 16:20:27 -070057 if (nfa->ack == NSS_ACK_FINISHED) {
Abhishek Rastogi9da47472014-03-18 19:46:15 +053058 /*
59 * NSS finished end notification - Done
60 */
Thomas Wu168ca262014-03-21 16:20:27 -070061 nss_info("%p: NSS ACK Received: %d - End Notification ACK - Running: %dmhz\n", nss_ctx, nfa->ack, nfa->freq_current);
Abhishek Rastogi9da47472014-03-18 19:46:15 +053062 nss_runtime_samples.freq_scale_ready = 1;
63 return;
64 }
65
66 nss_info("%p: NSS had an error - Running: %dmhz\n", nss_ctx, nfa->freq_current);
67}
68
69/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070070 * nss_freq_queue_work()
Abhishek Rastogi9da47472014-03-18 19:46:15 +053071 * Queue Work to the NSS Workqueue based on Current index.
72 */
Tanmay V Jagdalef6b2bce2017-03-03 14:31:07 +053073static bool nss_freq_queue_work(void)
Abhishek Rastogi9da47472014-03-18 19:46:15 +053074{
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +053075 nss_freq_scales_t index = nss_runtime_samples.freq_scale_index;
76
Abhishek Rastogi9da47472014-03-18 19:46:15 +053077 BUG_ON(!nss_wq);
78
Thomas Wu0e2fc4f2015-03-04 15:39:14 -080079 nss_info("frequency:%d index:%d sample count:%x\n", nss_runtime_samples.freq_scale[index].frequency,
80 index, nss_runtime_samples.average);
Abhishek Rastogi9da47472014-03-18 19:46:15 +053081
Thomas Wu0e2fc4f2015-03-04 15:39:14 -080082 /*
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +053083 * schedule freq change with autoscale ON
Thomas Wu0e2fc4f2015-03-04 15:39:14 -080084 */
Tanmay V Jagdalef6b2bce2017-03-03 14:31:07 +053085 return nss_freq_sched_change(index, true);
Abhishek Rastogi9da47472014-03-18 19:46:15 +053086}
87
88/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070089 * nss_freq_handle_core_stats()
Abhishek Rastogi9da47472014-03-18 19:46:15 +053090 * Handle the core stats
91 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070092static void nss_freq_handle_core_stats(struct nss_ctx_instance *nss_ctx, struct nss_core_stats *core_stats)
Abhishek Rastogi9da47472014-03-18 19:46:15 +053093{
94 uint32_t b_index;
95 uint32_t minimum;
96 uint32_t maximum;
Thomas Wu0e2fc4f2015-03-04 15:39:14 -080097 uint32_t sample = core_stats->inst_cnt_total;
98 uint32_t index = nss_runtime_samples.freq_scale_index;
Abhishek Rastogi9da47472014-03-18 19:46:15 +053099
100 /*
101 * We do not accept any statistics if auto scaling is off,
102 * we start with a fresh sample set when scaling is
103 * eventually turned on.
104 */
105 if (!nss_cmd_buf.auto_scale && nss_runtime_samples.initialized) {
106 return;
107 }
108
109 /*
110 * Delete Current Index Value, Add New Value, Recalculate new Sum, Shift Index
111 */
112 b_index = nss_runtime_samples.buffer_index;
113
114 nss_runtime_samples.sum = nss_runtime_samples.sum - nss_runtime_samples.buffer[b_index];
115 nss_runtime_samples.buffer[b_index] = sample;
116 nss_runtime_samples.sum = nss_runtime_samples.sum + nss_runtime_samples.buffer[b_index];
117 nss_runtime_samples.buffer_index = (b_index + 1) & NSS_SAMPLE_BUFFER_MASK;
118
119 if (nss_runtime_samples.sample_count < NSS_SAMPLE_BUFFER_SIZE) {
120 nss_runtime_samples.sample_count++;
121
122 /*
123 * Samples Are All Ready, Start Auto Scale
124 */
125 if (nss_runtime_samples.sample_count == NSS_SAMPLE_BUFFER_SIZE ) {
126 nss_cmd_buf.auto_scale = 1;
127 nss_runtime_samples.freq_scale_ready = 1;
128 nss_runtime_samples.initialized = 1;
129 }
130
131 return;
132 }
133
134 nss_runtime_samples.average = nss_runtime_samples.sum / nss_runtime_samples.sample_count;
135
136 /*
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800137 * Print out statistics every 10 samples
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530138 */
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800139 if (nss_runtime_samples.message_rate_limit++ >= NSS_MESSAGE_RATE_LIMIT) {
Sakthi Vignesh Radhakrishnanaa378102014-04-07 13:52:28 -0700140 nss_trace("%p: Running AVG:%x Sample:%x Divider:%d\n", nss_ctx, nss_runtime_samples.average, core_stats->inst_cnt_total, nss_runtime_samples.sample_count);
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800141 nss_trace("%p: Current Frequency Index:%d\n", nss_ctx, index);
Sakthi Vignesh Radhakrishnanaa378102014-04-07 13:52:28 -0700142 nss_trace("%p: Auto Scale:%d Auto Scale Ready:%d\n", nss_ctx, nss_runtime_samples.freq_scale_ready, nss_cmd_buf.auto_scale);
143 nss_trace("%p: Current Rate:%x\n", nss_ctx, nss_runtime_samples.average);
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530144
145 nss_runtime_samples.message_rate_limit = 0;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530146 }
147
148 /*
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800149 * Don't scale if we are not ready or auto scale is disabled.
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530150 */
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800151 if ((nss_runtime_samples.freq_scale_ready != 1) || (nss_cmd_buf.auto_scale != 1)) {
152 return;
153 }
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530154
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800155 /*
156 * Scale Algorithmn
157 * Algorithmn will limit how fast it will transition each scale, by the number of samples seen.
158 * If any sample is out of scale during the idle count, the rate_limit will reset to 0.
159 * Scales are limited to the max number of cpu scales we support.
160 */
161 if (nss_runtime_samples.freq_scale_rate_limit_up++ >= NSS_FREQUENCY_SCALE_RATE_LIMIT_UP) {
162 maximum = nss_runtime_samples.freq_scale[index].maximum;
Thomas Wu1fa26092016-03-30 14:10:03 -0700163 if ((nss_runtime_samples.average > maximum) && (index < (NSS_FREQ_MAX_SCALE - 1))) {
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800164 nss_runtime_samples.freq_scale_index++;
165 nss_runtime_samples.freq_scale_ready = 0;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530166
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800167 /*
168 * If fail to increase frequency, decrease index
169 */
Thomas Wu4640e562015-06-10 10:23:04 -0700170 nss_trace("frequency increase to %d inst:%x > maximum:%x\n", nss_runtime_samples.freq_scale[nss_runtime_samples.freq_scale_index].frequency, sample, maximum);
Tanmay V Jagdalef6b2bce2017-03-03 14:31:07 +0530171 if (!nss_freq_queue_work()) {
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530172 nss_runtime_samples.freq_scale_index--;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530173 }
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530174 }
Thomas Wu4640e562015-06-10 10:23:04 -0700175
176 /*
177 * Reset the down scale counter based on running average, so can idle properlly
178 */
Thomas Wuc151f2e2015-09-08 10:59:44 -0700179 if (nss_runtime_samples.average > maximum) {
Thomas Wu4640e562015-06-10 10:23:04 -0700180 nss_trace("down scale timeout reset running average:%x\n", nss_runtime_samples.average);
181 nss_runtime_samples.freq_scale_rate_limit_down = 0;
182 }
183
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800184 nss_runtime_samples.freq_scale_rate_limit_up = 0;
185 return;
186 }
187
188 if (nss_runtime_samples.freq_scale_rate_limit_down++ >= NSS_FREQUENCY_SCALE_RATE_LIMIT_DOWN) {
189 minimum = nss_runtime_samples.freq_scale[index].minimum;
190 if ((nss_runtime_samples.average < minimum) && (index > 0)) {
191 nss_runtime_samples.freq_scale_index--;
192 nss_runtime_samples.freq_scale_ready = 0;
193
194 /*
195 * If fail to decrease frequency, increase index
196 */
Thomas Wuc151f2e2015-09-08 10:59:44 -0700197 nss_trace("frequency decrease to %d inst:%x < minumum:%x\n", nss_runtime_samples.freq_scale[nss_runtime_samples.freq_scale_index].frequency, nss_runtime_samples.average, minimum);
Tanmay V Jagdalef6b2bce2017-03-03 14:31:07 +0530198 if (!nss_freq_queue_work()) {
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800199 nss_runtime_samples.freq_scale_index++;
200 }
201 }
202 nss_runtime_samples.freq_scale_rate_limit_down = 0;
203 return;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530204 }
205}
206
207/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700208 * nss_freq_interface_handler()
Thomas Wuc07d8702014-03-19 15:46:19 -0700209 * Handle NSS -> HLOS messages for Frequency Changes and Statistics
210 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700211static void nss_freq_interface_handler(struct nss_ctx_instance *nss_ctx, struct nss_cmn_msg *ncm, __attribute__((unused))void *app_data) {
Thomas Wuc07d8702014-03-19 15:46:19 -0700212
213 struct nss_corefreq_msg *ncfm = (struct nss_corefreq_msg *)ncm;
214
Thomas Wu168ca262014-03-21 16:20:27 -0700215 switch (ncfm->cm.type) {
Thomas Wuc07d8702014-03-19 15:46:19 -0700216 case COREFREQ_METADATA_TYPE_TX_FREQ_ACK:
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700217 nss_freq_handle_ack(nss_ctx, &ncfm->msg.nfc);
Thomas Wuc07d8702014-03-19 15:46:19 -0700218 break;
219 case COREFREQ_METADATA_TYPE_TX_CORE_STATS:
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700220 nss_freq_handle_core_stats(nss_ctx, &ncfm->msg.ncs);
Thomas Wuc07d8702014-03-19 15:46:19 -0700221 break;
222
223 default:
224 if (ncm->response != NSS_CMN_RESPONSE_ACK) {
225 /*
226 * Check response
227 */
Thomas Wu68250352014-04-02 18:59:40 -0700228 nss_info("%p: Received response %d for type %d, interface %d", nss_ctx, ncm->response, ncm->type, ncm->interface);
Thomas Wuc07d8702014-03-19 15:46:19 -0700229 }
230 }
231}
232
233/*
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +0530234 * nss_freq_change()
235 * NSS frequency change API.
236 */
237nss_tx_status_t nss_freq_change(struct nss_ctx_instance *nss_ctx, uint32_t eng, uint32_t stats_enable, uint32_t start_or_end)
238{
239 struct sk_buff *nbuf;
240 int32_t status;
241 struct nss_corefreq_msg *ncm;
242 struct nss_freq_msg *nfc;
243
244 nss_info("%p: frequency changing to: %d\n", nss_ctx, eng);
245
246 NSS_VERIFY_CTX_MAGIC(nss_ctx);
247 if (unlikely(nss_ctx->state != NSS_CORE_STATE_INITIALIZED)) {
248 return NSS_TX_FAILURE_NOT_READY;
249 }
250
251 nbuf = dev_alloc_skb(NSS_NBUF_PAYLOAD_SIZE);
252 if (unlikely(!nbuf)) {
253 NSS_PKT_STATS_INCREMENT(nss_ctx, &nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_NBUF_ALLOC_FAILS]);
254 return NSS_TX_FAILURE;
255 }
256
257 ncm = (struct nss_corefreq_msg *)skb_put(nbuf, sizeof(struct nss_corefreq_msg));
258
259 nss_freq_msg_init(ncm, NSS_COREFREQ_INTERFACE, NSS_TX_METADATA_TYPE_NSS_FREQ_CHANGE,
260 sizeof(struct nss_freq_msg), NULL, NULL);
261 nfc = &ncm->msg.nfc;
262 nfc->frequency = eng;
263 nfc->start_or_end = start_or_end;
264 nfc->stats_enable = stats_enable;
265
266 status = nss_core_send_buffer(nss_ctx, 0, nbuf, NSS_IF_CMD_QUEUE, H2N_BUFFER_CTRL, 0);
267 if (status != NSS_CORE_STATUS_SUCCESS) {
268 dev_kfree_skb_any(nbuf);
269 nss_info("%p: unable to enqueue 'nss frequency change' - marked as stopped\n", nss_ctx);
270 return NSS_TX_FAILURE;
271 }
272
273 nss_hal_send_interrupt(nss_ctx, NSS_H2N_INTR_DATA_COMMAND_QUEUE);
274
275 return NSS_TX_SUCCESS;
276}
277
278/*
279 * nss_freq_sched_change()
280 * schedule a frequency work
281 */
Tanmay V Jagdalef6b2bce2017-03-03 14:31:07 +0530282bool nss_freq_sched_change(nss_freq_scales_t index, bool auto_scale)
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +0530283{
284 if (index >= NSS_FREQ_MAX_SCALE) {
285 nss_info("NSS freq scale beyond limit\n");
Tanmay V Jagdalef6b2bce2017-03-03 14:31:07 +0530286 return false;
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +0530287 }
288
289 nss_work = (nss_work_t *)kmalloc(sizeof(nss_work_t), GFP_ATOMIC);
290 if (!nss_work) {
291 nss_info("NSS Freq WQ kmalloc fail");
Tanmay V Jagdalef6b2bce2017-03-03 14:31:07 +0530292 return false;
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +0530293 }
294
295 INIT_WORK((struct work_struct *)nss_work, nss_wq_function);
296
297 nss_work->frequency = nss_runtime_samples.freq_scale[index].frequency;
298
299 nss_work->stats_enable = auto_scale;
300 nss_cmd_buf.current_freq = nss_work->frequency;
301 queue_work(nss_wq, (struct work_struct *)nss_work);
Tanmay V Jagdalef6b2bce2017-03-03 14:31:07 +0530302
303 return true;
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +0530304}
305
306/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700307 * nss_freq_register_handler()
Thomas Wuc07d8702014-03-19 15:46:19 -0700308 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700309void nss_freq_register_handler(void)
Thomas Wuc07d8702014-03-19 15:46:19 -0700310{
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700311 nss_core_register_handler(NSS_COREFREQ_INTERFACE, nss_freq_interface_handler, NULL);
Thomas Wuc07d8702014-03-19 15:46:19 -0700312}