blob: de93637b101ce480482e77d077a030420de187a6 [file] [log] [blame]
Abhishek Rastogi9da47472014-03-18 19:46:15 +05301/*
2 **************************************************************************
Thomas Wu0e2fc4f2015-03-04 15:39:14 -08003 * Copyright (c) 2013, 2015 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
27extern struct nss_cmd_buffer nss_cmd_buf;
28extern 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;
32extern void *nss_freq_change_context;
33
34/*
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -070035 * nss_freq_msg_init()
Thomas Wu0e2fc4f2015-03-04 15:39:14 -080036 * Initialize the freq message
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -070037 */
38static void nss_freq_msg_init(struct nss_corefreq_msg *ncm, uint16_t if_num, uint32_t type, uint32_t len,
39 void *cb, void *app_data)
40{
41 nss_cmn_msg_init(&ncm->cm, if_num, type, len, cb, app_data);
42}
43
44/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070045 * nss_freq_handle_ack()
Abhishek Rastogi9da47472014-03-18 19:46:15 +053046 * Handle the nss ack of frequency change.
47 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070048static void nss_freq_handle_ack(struct nss_ctx_instance *nss_ctx, struct nss_freq_msg *nfa)
Abhishek Rastogi9da47472014-03-18 19:46:15 +053049{
Thomas Wu168ca262014-03-21 16:20:27 -070050 if (nfa->ack == NSS_ACK_STARTED) {
Abhishek Rastogi9da47472014-03-18 19:46:15 +053051 /*
52 * NSS finished start noficiation - HW change clocks and send end notification
53 */
Thomas Wu168ca262014-03-21 16:20:27 -070054 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 +053055
56 return;
57 }
58
Thomas Wu168ca262014-03-21 16:20:27 -070059 if (nfa->ack == NSS_ACK_FINISHED) {
Abhishek Rastogi9da47472014-03-18 19:46:15 +053060 /*
61 * NSS finished end notification - Done
62 */
Thomas Wu168ca262014-03-21 16:20:27 -070063 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 +053064 nss_runtime_samples.freq_scale_ready = 1;
65 return;
66 }
67
68 nss_info("%p: NSS had an error - Running: %dmhz\n", nss_ctx, nfa->freq_current);
69}
70
71/*
72 * nss_freq_change()
73 * NSS frequency change API.
74 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070075nss_tx_status_t nss_freq_change(struct nss_ctx_instance *nss_ctx, uint32_t eng, uint32_t stats_enable, uint32_t start_or_end)
Abhishek Rastogi9da47472014-03-18 19:46:15 +053076{
Abhishek Rastogi9da47472014-03-18 19:46:15 +053077 struct sk_buff *nbuf;
78 int32_t status;
Thomas Wu168ca262014-03-21 16:20:27 -070079 struct nss_corefreq_msg *ncm;
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070080 struct nss_freq_msg *nfc;
Abhishek Rastogi9da47472014-03-18 19:46:15 +053081
Thomas Wu0e2fc4f2015-03-04 15:39:14 -080082 nss_info("%p: frequency changing to: %d\n", nss_ctx, eng);
Abhishek Rastogi9da47472014-03-18 19:46:15 +053083
84 NSS_VERIFY_CTX_MAGIC(nss_ctx);
85 if (unlikely(nss_ctx->state != NSS_CORE_STATE_INITIALIZED)) {
86 return NSS_TX_FAILURE_NOT_READY;
87 }
88
Pamidipati, Vijayb6e38842014-09-16 10:26:05 +053089 nbuf = dev_alloc_skb(NSS_NBUF_PAYLOAD_SIZE);
Abhishek Rastogi9da47472014-03-18 19:46:15 +053090 if (unlikely(!nbuf)) {
91 spin_lock_bh(&nss_ctx->nss_top->stats_lock);
92 nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_NBUF_ALLOC_FAILS]++;
93 spin_unlock_bh(&nss_ctx->nss_top->stats_lock);
94 return NSS_TX_FAILURE;
95 }
96
Thomas Wu168ca262014-03-21 16:20:27 -070097 ncm = (struct nss_corefreq_msg *)skb_put(nbuf, sizeof(struct nss_corefreq_msg));
Abhishek Rastogi9da47472014-03-18 19:46:15 +053098
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -070099 nss_freq_msg_init(ncm, NSS_COREFREQ_INTERFACE, NSS_TX_METADATA_TYPE_NSS_FREQ_CHANGE,
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700100 nbuf->len, NULL, NULL);
Thomas Wu168ca262014-03-21 16:20:27 -0700101 nfc = &ncm->msg.nfc;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530102 nfc->frequency = eng;
103 nfc->start_or_end = start_or_end;
104 nfc->stats_enable = stats_enable;
105
106 status = nss_core_send_buffer(nss_ctx, 0, nbuf, NSS_IF_CMD_QUEUE, H2N_BUFFER_CTRL, 0);
107 if (status != NSS_CORE_STATUS_SUCCESS) {
Pamidipati, Vijayb6e38842014-09-16 10:26:05 +0530108 dev_kfree_skb_any(nbuf);
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530109 nss_info("%p: unable to enqueue 'nss frequency change' - marked as stopped\n", nss_ctx);
110 return NSS_TX_FAILURE;
111 }
112
113 nss_hal_send_interrupt(nss_ctx->nmap, nss_ctx->h2n_desc_rings[NSS_IF_CMD_QUEUE].desc_ring.int_bit, NSS_REGS_H2N_INTR_STATUS_DATA_COMMAND_QUEUE);
114
115 return NSS_TX_SUCCESS;
116}
117
118/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700119 * nss_freq_queue_work()
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530120 * Queue Work to the NSS Workqueue based on Current index.
121 */
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800122static int nss_freq_queue_work(void)
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530123{
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800124 uint32_t index = nss_runtime_samples.freq_scale_index;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530125 BUG_ON(!nss_wq);
126
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800127 nss_info("frequency:%d index:%d sample count:%x\n", nss_runtime_samples.freq_scale[index].frequency,
128 index, nss_runtime_samples.average);
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530129
Thomas Wu7409bce2014-05-21 10:56:07 -0700130 nss_work = (nss_work_t *)kmalloc(sizeof(nss_work_t), GFP_ATOMIC);
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530131 if (!nss_work) {
132 nss_info("NSS FREQ WQ kmalloc fail");
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800133 return 1;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530134 }
135
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800136 /*
137 * Update proc node
138 */
139 nss_cmd_buf.current_freq = nss_runtime_samples.freq_scale[index].frequency;
140
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530141 INIT_WORK((struct work_struct *)nss_work, nss_wq_function);
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800142 nss_work->frequency = nss_runtime_samples.freq_scale[index].frequency;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530143 nss_work->stats_enable = 1;
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800144
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530145 queue_work(nss_wq, (struct work_struct *)nss_work);
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800146 return 0;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530147}
148
149/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700150 * nss_freq_handle_core_stats()
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530151 * Handle the core stats
152 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700153static 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 +0530154{
155 uint32_t b_index;
156 uint32_t minimum;
157 uint32_t maximum;
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800158 uint32_t sample = core_stats->inst_cnt_total;
159 uint32_t index = nss_runtime_samples.freq_scale_index;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530160
161 /*
162 * We do not accept any statistics if auto scaling is off,
163 * we start with a fresh sample set when scaling is
164 * eventually turned on.
165 */
166 if (!nss_cmd_buf.auto_scale && nss_runtime_samples.initialized) {
167 return;
168 }
169
170 /*
171 * Delete Current Index Value, Add New Value, Recalculate new Sum, Shift Index
172 */
173 b_index = nss_runtime_samples.buffer_index;
174
175 nss_runtime_samples.sum = nss_runtime_samples.sum - nss_runtime_samples.buffer[b_index];
176 nss_runtime_samples.buffer[b_index] = sample;
177 nss_runtime_samples.sum = nss_runtime_samples.sum + nss_runtime_samples.buffer[b_index];
178 nss_runtime_samples.buffer_index = (b_index + 1) & NSS_SAMPLE_BUFFER_MASK;
179
180 if (nss_runtime_samples.sample_count < NSS_SAMPLE_BUFFER_SIZE) {
181 nss_runtime_samples.sample_count++;
182
183 /*
184 * Samples Are All Ready, Start Auto Scale
185 */
186 if (nss_runtime_samples.sample_count == NSS_SAMPLE_BUFFER_SIZE ) {
187 nss_cmd_buf.auto_scale = 1;
188 nss_runtime_samples.freq_scale_ready = 1;
189 nss_runtime_samples.initialized = 1;
190 }
191
192 return;
193 }
194
195 nss_runtime_samples.average = nss_runtime_samples.sum / nss_runtime_samples.sample_count;
196
197 /*
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800198 * Print out statistics every 10 samples
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530199 */
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800200 if (nss_runtime_samples.message_rate_limit++ >= NSS_MESSAGE_RATE_LIMIT) {
Sakthi Vignesh Radhakrishnanaa378102014-04-07 13:52:28 -0700201 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 -0800202 nss_trace("%p: Current Frequency Index:%d\n", nss_ctx, index);
Sakthi Vignesh Radhakrishnanaa378102014-04-07 13:52:28 -0700203 nss_trace("%p: Auto Scale:%d Auto Scale Ready:%d\n", nss_ctx, nss_runtime_samples.freq_scale_ready, nss_cmd_buf.auto_scale);
204 nss_trace("%p: Current Rate:%x\n", nss_ctx, nss_runtime_samples.average);
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530205
206 nss_runtime_samples.message_rate_limit = 0;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530207 }
208
209 /*
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800210 * Don't scale if we are not ready or auto scale is disabled.
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530211 */
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800212 if ((nss_runtime_samples.freq_scale_ready != 1) || (nss_cmd_buf.auto_scale != 1)) {
213 return;
214 }
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530215
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800216 /*
217 * Scale Algorithmn
218 * Algorithmn will limit how fast it will transition each scale, by the number of samples seen.
219 * If any sample is out of scale during the idle count, the rate_limit will reset to 0.
220 * Scales are limited to the max number of cpu scales we support.
221 */
222 if (nss_runtime_samples.freq_scale_rate_limit_up++ >= NSS_FREQUENCY_SCALE_RATE_LIMIT_UP) {
223 maximum = nss_runtime_samples.freq_scale[index].maximum;
224 if ((sample > maximum) && (index < (NSS_MAX_CPU_SCALES - 1))) {
225 nss_runtime_samples.freq_scale_index++;
226 nss_runtime_samples.freq_scale_ready = 0;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530227
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800228 /*
229 * If fail to increase frequency, decrease index
230 */
231 if (nss_freq_queue_work()) {
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530232 nss_runtime_samples.freq_scale_index--;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530233 }
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530234 }
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800235 nss_runtime_samples.freq_scale_rate_limit_up = 0;
236 return;
237 }
238
239 if (nss_runtime_samples.freq_scale_rate_limit_down++ >= NSS_FREQUENCY_SCALE_RATE_LIMIT_DOWN) {
240 minimum = nss_runtime_samples.freq_scale[index].minimum;
241 if ((nss_runtime_samples.average < minimum) && (index > 0)) {
242 nss_runtime_samples.freq_scale_index--;
243 nss_runtime_samples.freq_scale_ready = 0;
244
245 /*
246 * If fail to decrease frequency, increase index
247 */
248 if (nss_freq_queue_work()) {
249 nss_runtime_samples.freq_scale_index++;
250 }
251 }
252 nss_runtime_samples.freq_scale_rate_limit_down = 0;
253 return;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530254 }
255}
256
257/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700258 * nss_freq_interface_handler()
Thomas Wuc07d8702014-03-19 15:46:19 -0700259 * Handle NSS -> HLOS messages for Frequency Changes and Statistics
260 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700261static 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 -0700262
263 struct nss_corefreq_msg *ncfm = (struct nss_corefreq_msg *)ncm;
264
Thomas Wu168ca262014-03-21 16:20:27 -0700265 switch (ncfm->cm.type) {
Thomas Wuc07d8702014-03-19 15:46:19 -0700266 case COREFREQ_METADATA_TYPE_TX_FREQ_ACK:
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700267 nss_freq_handle_ack(nss_ctx, &ncfm->msg.nfc);
Thomas Wuc07d8702014-03-19 15:46:19 -0700268 break;
269 case COREFREQ_METADATA_TYPE_TX_CORE_STATS:
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700270 nss_freq_handle_core_stats(nss_ctx, &ncfm->msg.ncs);
Thomas Wuc07d8702014-03-19 15:46:19 -0700271 break;
272
273 default:
274 if (ncm->response != NSS_CMN_RESPONSE_ACK) {
275 /*
276 * Check response
277 */
Thomas Wu68250352014-04-02 18:59:40 -0700278 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 -0700279 }
280 }
281}
282
283/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700284 * nss_freq_register_handler()
Thomas Wuc07d8702014-03-19 15:46:19 -0700285 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700286void nss_freq_register_handler(void)
Thomas Wuc07d8702014-03-19 15:46:19 -0700287{
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700288 nss_core_register_handler(NSS_COREFREQ_INTERFACE, nss_freq_interface_handler, NULL);
Thomas Wuc07d8702014-03-19 15:46:19 -0700289}
290
291/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700292 * nss_freq_get_mgr()
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530293 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700294void *nss_freq_get_mgr(void)
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530295{
296 return (void *)&nss_top_main.nss[nss_top_main.frequency_handler_id];
Thomas Wuc07d8702014-03-19 15:46:19 -0700297}