blob: e6c594d949eab971f83cab0ce8897afe07f1b7b1 [file] [log] [blame]
Abhishek Rastogi9da47472014-03-18 19:46:15 +05301/*
2 **************************************************************************
Stephen Wang3e2dbd12018-03-14 17:28:17 -07003 * Copyright (c) 2013, 2015-2018 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"
Sachin Shashidhar6dd9cfc2018-07-31 14:44:37 -070023#include "nss_freq_log.h"
Abhishek Rastogi9da47472014-03-18 19:46:15 +053024
25#define NSS_ACK_STARTED 0
26#define NSS_ACK_FINISHED 1
27
Abhishek Rastogi9da47472014-03-18 19:46:15 +053028extern struct nss_frequency_statistics nss_freq_stat;
29extern struct nss_runtime_sampling nss_runtime_samples;
30extern struct workqueue_struct *nss_wq;
31extern nss_work_t *nss_work;
Abhishek Rastogi9da47472014-03-18 19:46:15 +053032
33/*
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -070034 * nss_freq_msg_init()
Thomas Wu0e2fc4f2015-03-04 15:39:14 -080035 * Initialize the freq message
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -070036 */
37static void nss_freq_msg_init(struct nss_corefreq_msg *ncm, uint16_t if_num, uint32_t type, uint32_t len,
38 void *cb, void *app_data)
39{
40 nss_cmn_msg_init(&ncm->cm, if_num, type, len, cb, app_data);
41}
42
43/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070044 * nss_freq_handle_ack()
Abhishek Rastogi9da47472014-03-18 19:46:15 +053045 * Handle the nss ack of frequency change.
46 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070047static void nss_freq_handle_ack(struct nss_ctx_instance *nss_ctx, struct nss_freq_msg *nfa)
Abhishek Rastogi9da47472014-03-18 19:46:15 +053048{
Thomas Wu168ca262014-03-21 16:20:27 -070049 if (nfa->ack == NSS_ACK_STARTED) {
Abhishek Rastogi9da47472014-03-18 19:46:15 +053050 /*
51 * NSS finished start noficiation - HW change clocks and send end notification
52 */
Thomas Wu168ca262014-03-21 16:20:27 -070053 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 +053054
55 return;
56 }
57
Thomas Wu168ca262014-03-21 16:20:27 -070058 if (nfa->ack == NSS_ACK_FINISHED) {
Abhishek Rastogi9da47472014-03-18 19:46:15 +053059 /*
60 * NSS finished end notification - Done
61 */
Thomas Wu168ca262014-03-21 16:20:27 -070062 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 +053063 nss_runtime_samples.freq_scale_ready = 1;
64 return;
65 }
66
67 nss_info("%p: NSS had an error - Running: %dmhz\n", nss_ctx, nfa->freq_current);
68}
69
70/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070071 * nss_freq_queue_work()
Abhishek Rastogi9da47472014-03-18 19:46:15 +053072 * Queue Work to the NSS Workqueue based on Current index.
73 */
Tanmay V Jagdalef6b2bce2017-03-03 14:31:07 +053074static bool nss_freq_queue_work(void)
Abhishek Rastogi9da47472014-03-18 19:46:15 +053075{
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +053076 nss_freq_scales_t index = nss_runtime_samples.freq_scale_index;
77
Abhishek Rastogi9da47472014-03-18 19:46:15 +053078 BUG_ON(!nss_wq);
79
Thomas Wu0e2fc4f2015-03-04 15:39:14 -080080 nss_info("frequency:%d index:%d sample count:%x\n", nss_runtime_samples.freq_scale[index].frequency,
81 index, nss_runtime_samples.average);
Abhishek Rastogi9da47472014-03-18 19:46:15 +053082
Thomas Wu0e2fc4f2015-03-04 15:39:14 -080083 /*
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +053084 * schedule freq change with autoscale ON
Thomas Wu0e2fc4f2015-03-04 15:39:14 -080085 */
Tanmay V Jagdalef6b2bce2017-03-03 14:31:07 +053086 return nss_freq_sched_change(index, true);
Abhishek Rastogi9da47472014-03-18 19:46:15 +053087}
88
89/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070090 * nss_freq_handle_core_stats()
Abhishek Rastogi9da47472014-03-18 19:46:15 +053091 * Handle the core stats
92 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070093static 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 +053094{
95 uint32_t b_index;
96 uint32_t minimum;
97 uint32_t maximum;
Thomas Wu0e2fc4f2015-03-04 15:39:14 -080098 uint32_t sample = core_stats->inst_cnt_total;
99 uint32_t index = nss_runtime_samples.freq_scale_index;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530100
101 /*
102 * We do not accept any statistics if auto scaling is off,
103 * we start with a fresh sample set when scaling is
104 * eventually turned on.
105 */
106 if (!nss_cmd_buf.auto_scale && nss_runtime_samples.initialized) {
107 return;
108 }
109
110 /*
111 * Delete Current Index Value, Add New Value, Recalculate new Sum, Shift Index
112 */
113 b_index = nss_runtime_samples.buffer_index;
114
115 nss_runtime_samples.sum = nss_runtime_samples.sum - nss_runtime_samples.buffer[b_index];
116 nss_runtime_samples.buffer[b_index] = sample;
117 nss_runtime_samples.sum = nss_runtime_samples.sum + nss_runtime_samples.buffer[b_index];
118 nss_runtime_samples.buffer_index = (b_index + 1) & NSS_SAMPLE_BUFFER_MASK;
119
120 if (nss_runtime_samples.sample_count < NSS_SAMPLE_BUFFER_SIZE) {
121 nss_runtime_samples.sample_count++;
122
123 /*
124 * Samples Are All Ready, Start Auto Scale
125 */
126 if (nss_runtime_samples.sample_count == NSS_SAMPLE_BUFFER_SIZE ) {
127 nss_cmd_buf.auto_scale = 1;
128 nss_runtime_samples.freq_scale_ready = 1;
129 nss_runtime_samples.initialized = 1;
130 }
131
132 return;
133 }
134
135 nss_runtime_samples.average = nss_runtime_samples.sum / nss_runtime_samples.sample_count;
136
137 /*
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800138 * Print out statistics every 10 samples
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530139 */
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800140 if (nss_runtime_samples.message_rate_limit++ >= NSS_MESSAGE_RATE_LIMIT) {
Sakthi Vignesh Radhakrishnanaa378102014-04-07 13:52:28 -0700141 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 -0800142 nss_trace("%p: Current Frequency Index:%d\n", nss_ctx, index);
Sakthi Vignesh Radhakrishnanaa378102014-04-07 13:52:28 -0700143 nss_trace("%p: Auto Scale:%d Auto Scale Ready:%d\n", nss_ctx, nss_runtime_samples.freq_scale_ready, nss_cmd_buf.auto_scale);
144 nss_trace("%p: Current Rate:%x\n", nss_ctx, nss_runtime_samples.average);
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530145
146 nss_runtime_samples.message_rate_limit = 0;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530147 }
148
149 /*
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800150 * Don't scale if we are not ready or auto scale is disabled.
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530151 */
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800152 if ((nss_runtime_samples.freq_scale_ready != 1) || (nss_cmd_buf.auto_scale != 1)) {
153 return;
154 }
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530155
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800156 /*
157 * Scale Algorithmn
158 * Algorithmn will limit how fast it will transition each scale, by the number of samples seen.
159 * If any sample is out of scale during the idle count, the rate_limit will reset to 0.
160 * Scales are limited to the max number of cpu scales we support.
161 */
162 if (nss_runtime_samples.freq_scale_rate_limit_up++ >= NSS_FREQUENCY_SCALE_RATE_LIMIT_UP) {
163 maximum = nss_runtime_samples.freq_scale[index].maximum;
Thomas Wu1fa26092016-03-30 14:10:03 -0700164 if ((nss_runtime_samples.average > maximum) && (index < (NSS_FREQ_MAX_SCALE - 1))) {
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800165 nss_runtime_samples.freq_scale_index++;
166 nss_runtime_samples.freq_scale_ready = 0;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530167
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800168 /*
169 * If fail to increase frequency, decrease index
170 */
Thomas Wu4640e562015-06-10 10:23:04 -0700171 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 +0530172 if (!nss_freq_queue_work()) {
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530173 nss_runtime_samples.freq_scale_index--;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530174 }
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530175 }
Thomas Wu4640e562015-06-10 10:23:04 -0700176
177 /*
178 * Reset the down scale counter based on running average, so can idle properlly
179 */
Thomas Wuc151f2e2015-09-08 10:59:44 -0700180 if (nss_runtime_samples.average > maximum) {
Thomas Wu4640e562015-06-10 10:23:04 -0700181 nss_trace("down scale timeout reset running average:%x\n", nss_runtime_samples.average);
182 nss_runtime_samples.freq_scale_rate_limit_down = 0;
183 }
184
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800185 nss_runtime_samples.freq_scale_rate_limit_up = 0;
186 return;
187 }
188
189 if (nss_runtime_samples.freq_scale_rate_limit_down++ >= NSS_FREQUENCY_SCALE_RATE_LIMIT_DOWN) {
190 minimum = nss_runtime_samples.freq_scale[index].minimum;
191 if ((nss_runtime_samples.average < minimum) && (index > 0)) {
192 nss_runtime_samples.freq_scale_index--;
193 nss_runtime_samples.freq_scale_ready = 0;
194
195 /*
196 * If fail to decrease frequency, increase index
197 */
Thomas Wuc151f2e2015-09-08 10:59:44 -0700198 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 +0530199 if (!nss_freq_queue_work()) {
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800200 nss_runtime_samples.freq_scale_index++;
201 }
202 }
203 nss_runtime_samples.freq_scale_rate_limit_down = 0;
204 return;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530205 }
206}
207
208/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700209 * nss_freq_interface_handler()
Thomas Wuc07d8702014-03-19 15:46:19 -0700210 * Handle NSS -> HLOS messages for Frequency Changes and Statistics
211 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700212static 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 -0700213
214 struct nss_corefreq_msg *ncfm = (struct nss_corefreq_msg *)ncm;
215
Sachin Shashidhar6dd9cfc2018-07-31 14:44:37 -0700216 /*
217 * Trace Messages
218 */
219 nss_freq_log_rx_msg(ncfm);
220
Thomas Wu168ca262014-03-21 16:20:27 -0700221 switch (ncfm->cm.type) {
Thomas Wuc07d8702014-03-19 15:46:19 -0700222 case COREFREQ_METADATA_TYPE_TX_FREQ_ACK:
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700223 nss_freq_handle_ack(nss_ctx, &ncfm->msg.nfc);
Thomas Wuc07d8702014-03-19 15:46:19 -0700224 break;
225 case COREFREQ_METADATA_TYPE_TX_CORE_STATS:
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700226 nss_freq_handle_core_stats(nss_ctx, &ncfm->msg.ncs);
Thomas Wuc07d8702014-03-19 15:46:19 -0700227 break;
228
229 default:
230 if (ncm->response != NSS_CMN_RESPONSE_ACK) {
231 /*
232 * Check response
233 */
Thomas Wu68250352014-04-02 18:59:40 -0700234 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 -0700235 }
236 }
237}
238
239/*
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +0530240 * nss_freq_change()
241 * NSS frequency change API.
242 */
243nss_tx_status_t nss_freq_change(struct nss_ctx_instance *nss_ctx, uint32_t eng, uint32_t stats_enable, uint32_t start_or_end)
244{
Stephen Wang3e2dbd12018-03-14 17:28:17 -0700245 struct nss_corefreq_msg ncm;
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +0530246 struct nss_freq_msg *nfc;
247
248 nss_info("%p: frequency changing to: %d\n", nss_ctx, eng);
249
Stephen Wang3e2dbd12018-03-14 17:28:17 -0700250 nss_freq_msg_init(&ncm, NSS_COREFREQ_INTERFACE, NSS_TX_METADATA_TYPE_NSS_FREQ_CHANGE,
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +0530251 sizeof(struct nss_freq_msg), NULL, NULL);
Stephen Wang3e2dbd12018-03-14 17:28:17 -0700252 nfc = &ncm.msg.nfc;
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +0530253 nfc->frequency = eng;
254 nfc->start_or_end = start_or_end;
255 nfc->stats_enable = stats_enable;
256
Stephen Wang3e2dbd12018-03-14 17:28:17 -0700257 return nss_core_send_cmd(nss_ctx, &ncm, sizeof(ncm), NSS_NBUF_PAYLOAD_SIZE);
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +0530258}
259
260/*
261 * nss_freq_sched_change()
262 * schedule a frequency work
263 */
Tanmay V Jagdalef6b2bce2017-03-03 14:31:07 +0530264bool nss_freq_sched_change(nss_freq_scales_t index, bool auto_scale)
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +0530265{
266 if (index >= NSS_FREQ_MAX_SCALE) {
267 nss_info("NSS freq scale beyond limit\n");
Tanmay V Jagdalef6b2bce2017-03-03 14:31:07 +0530268 return false;
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +0530269 }
270
271 nss_work = (nss_work_t *)kmalloc(sizeof(nss_work_t), GFP_ATOMIC);
272 if (!nss_work) {
273 nss_info("NSS Freq WQ kmalloc fail");
Tanmay V Jagdalef6b2bce2017-03-03 14:31:07 +0530274 return false;
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +0530275 }
276
Thomas Wud6af3772017-09-01 13:42:28 -0700277 INIT_WORK((struct work_struct *)nss_work, nss_hal_wq_function);
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +0530278
279 nss_work->frequency = nss_runtime_samples.freq_scale[index].frequency;
280
281 nss_work->stats_enable = auto_scale;
282 nss_cmd_buf.current_freq = nss_work->frequency;
283 queue_work(nss_wq, (struct work_struct *)nss_work);
Tanmay V Jagdalef6b2bce2017-03-03 14:31:07 +0530284
285 return true;
Samarjeet Banerjeeb126e0f2016-08-05 20:58:27 +0530286}
287
288/*
Thomas Wu91f4bdf2017-06-09 12:03:02 -0700289 * nss_freq_get_context()
290 * get NSS context instance for frequency
291 */
292struct nss_ctx_instance *nss_freq_get_context(void)
293{
294 return (struct nss_ctx_instance *)&nss_top_main.nss[nss_top_main.frequency_handler_id];
295}
296EXPORT_SYMBOL(nss_freq_get_context);
297
298/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700299 * nss_freq_register_handler()
Thomas Wuc07d8702014-03-19 15:46:19 -0700300 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700301void nss_freq_register_handler(void)
Thomas Wuc07d8702014-03-19 15:46:19 -0700302{
Thomas Wu91f4bdf2017-06-09 12:03:02 -0700303 struct nss_ctx_instance *nss_ctx = nss_freq_get_context();
304
305 nss_core_register_handler(nss_ctx, NSS_COREFREQ_INTERFACE, nss_freq_interface_handler, NULL);
Thomas Wuc07d8702014-03-19 15:46:19 -0700306}