blob: 1909ff74a99d00483b59824df57d9b946df873cf [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)) {
Sundarajan Srinivasan62fee7e2015-01-22 11:13:10 -080091 NSS_PKT_STATS_INCREMENT(nss_ctx, &nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_NBUF_ALLOC_FAILS]);
Abhishek Rastogi9da47472014-03-18 19:46:15 +053092 return NSS_TX_FAILURE;
93 }
94
Thomas Wu168ca262014-03-21 16:20:27 -070095 ncm = (struct nss_corefreq_msg *)skb_put(nbuf, sizeof(struct nss_corefreq_msg));
Abhishek Rastogi9da47472014-03-18 19:46:15 +053096
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -070097 nss_freq_msg_init(ncm, NSS_COREFREQ_INTERFACE, NSS_TX_METADATA_TYPE_NSS_FREQ_CHANGE,
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -070098 nbuf->len, NULL, NULL);
Thomas Wu168ca262014-03-21 16:20:27 -070099 nfc = &ncm->msg.nfc;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530100 nfc->frequency = eng;
101 nfc->start_or_end = start_or_end;
102 nfc->stats_enable = stats_enable;
103
104 status = nss_core_send_buffer(nss_ctx, 0, nbuf, NSS_IF_CMD_QUEUE, H2N_BUFFER_CTRL, 0);
105 if (status != NSS_CORE_STATUS_SUCCESS) {
Pamidipati, Vijayb6e38842014-09-16 10:26:05 +0530106 dev_kfree_skb_any(nbuf);
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530107 nss_info("%p: unable to enqueue 'nss frequency change' - marked as stopped\n", nss_ctx);
108 return NSS_TX_FAILURE;
109 }
110
111 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);
112
113 return NSS_TX_SUCCESS;
114}
115
116/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700117 * nss_freq_queue_work()
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530118 * Queue Work to the NSS Workqueue based on Current index.
119 */
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800120static int nss_freq_queue_work(void)
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530121{
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800122 uint32_t index = nss_runtime_samples.freq_scale_index;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530123 BUG_ON(!nss_wq);
124
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800125 nss_info("frequency:%d index:%d sample count:%x\n", nss_runtime_samples.freq_scale[index].frequency,
126 index, nss_runtime_samples.average);
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530127
Thomas Wu7409bce2014-05-21 10:56:07 -0700128 nss_work = (nss_work_t *)kmalloc(sizeof(nss_work_t), GFP_ATOMIC);
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530129 if (!nss_work) {
130 nss_info("NSS FREQ WQ kmalloc fail");
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800131 return 1;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530132 }
133
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800134 /*
135 * Update proc node
136 */
137 nss_cmd_buf.current_freq = nss_runtime_samples.freq_scale[index].frequency;
138
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530139 INIT_WORK((struct work_struct *)nss_work, nss_wq_function);
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800140 nss_work->frequency = nss_runtime_samples.freq_scale[index].frequency;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530141 nss_work->stats_enable = 1;
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800142
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530143 queue_work(nss_wq, (struct work_struct *)nss_work);
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800144 return 0;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530145}
146
147/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700148 * nss_freq_handle_core_stats()
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530149 * Handle the core stats
150 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700151static 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 +0530152{
153 uint32_t b_index;
154 uint32_t minimum;
155 uint32_t maximum;
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800156 uint32_t sample = core_stats->inst_cnt_total;
157 uint32_t index = nss_runtime_samples.freq_scale_index;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530158
159 /*
160 * We do not accept any statistics if auto scaling is off,
161 * we start with a fresh sample set when scaling is
162 * eventually turned on.
163 */
164 if (!nss_cmd_buf.auto_scale && nss_runtime_samples.initialized) {
165 return;
166 }
167
168 /*
169 * Delete Current Index Value, Add New Value, Recalculate new Sum, Shift Index
170 */
171 b_index = nss_runtime_samples.buffer_index;
172
173 nss_runtime_samples.sum = nss_runtime_samples.sum - nss_runtime_samples.buffer[b_index];
174 nss_runtime_samples.buffer[b_index] = sample;
175 nss_runtime_samples.sum = nss_runtime_samples.sum + nss_runtime_samples.buffer[b_index];
176 nss_runtime_samples.buffer_index = (b_index + 1) & NSS_SAMPLE_BUFFER_MASK;
177
178 if (nss_runtime_samples.sample_count < NSS_SAMPLE_BUFFER_SIZE) {
179 nss_runtime_samples.sample_count++;
180
181 /*
182 * Samples Are All Ready, Start Auto Scale
183 */
184 if (nss_runtime_samples.sample_count == NSS_SAMPLE_BUFFER_SIZE ) {
185 nss_cmd_buf.auto_scale = 1;
186 nss_runtime_samples.freq_scale_ready = 1;
187 nss_runtime_samples.initialized = 1;
188 }
189
190 return;
191 }
192
193 nss_runtime_samples.average = nss_runtime_samples.sum / nss_runtime_samples.sample_count;
194
195 /*
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800196 * Print out statistics every 10 samples
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530197 */
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800198 if (nss_runtime_samples.message_rate_limit++ >= NSS_MESSAGE_RATE_LIMIT) {
Sakthi Vignesh Radhakrishnanaa378102014-04-07 13:52:28 -0700199 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 -0800200 nss_trace("%p: Current Frequency Index:%d\n", nss_ctx, index);
Sakthi Vignesh Radhakrishnanaa378102014-04-07 13:52:28 -0700201 nss_trace("%p: Auto Scale:%d Auto Scale Ready:%d\n", nss_ctx, nss_runtime_samples.freq_scale_ready, nss_cmd_buf.auto_scale);
202 nss_trace("%p: Current Rate:%x\n", nss_ctx, nss_runtime_samples.average);
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530203
204 nss_runtime_samples.message_rate_limit = 0;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530205 }
206
207 /*
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800208 * Don't scale if we are not ready or auto scale is disabled.
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530209 */
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800210 if ((nss_runtime_samples.freq_scale_ready != 1) || (nss_cmd_buf.auto_scale != 1)) {
211 return;
212 }
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530213
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800214 /*
215 * Scale Algorithmn
216 * Algorithmn will limit how fast it will transition each scale, by the number of samples seen.
217 * If any sample is out of scale during the idle count, the rate_limit will reset to 0.
218 * Scales are limited to the max number of cpu scales we support.
219 */
220 if (nss_runtime_samples.freq_scale_rate_limit_up++ >= NSS_FREQUENCY_SCALE_RATE_LIMIT_UP) {
221 maximum = nss_runtime_samples.freq_scale[index].maximum;
Thomas Wu7132bd32015-05-07 15:03:06 -0700222 if ((sample > maximum) && (index < (NSS_FREQ_MAX_SCALE - 1))) {
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800223 nss_runtime_samples.freq_scale_index++;
224 nss_runtime_samples.freq_scale_ready = 0;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530225
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800226 /*
227 * If fail to increase frequency, decrease index
228 */
229 if (nss_freq_queue_work()) {
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530230 nss_runtime_samples.freq_scale_index--;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530231 }
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530232 }
Thomas Wu0e2fc4f2015-03-04 15:39:14 -0800233 nss_runtime_samples.freq_scale_rate_limit_up = 0;
234 return;
235 }
236
237 if (nss_runtime_samples.freq_scale_rate_limit_down++ >= NSS_FREQUENCY_SCALE_RATE_LIMIT_DOWN) {
238 minimum = nss_runtime_samples.freq_scale[index].minimum;
239 if ((nss_runtime_samples.average < minimum) && (index > 0)) {
240 nss_runtime_samples.freq_scale_index--;
241 nss_runtime_samples.freq_scale_ready = 0;
242
243 /*
244 * If fail to decrease frequency, increase index
245 */
246 if (nss_freq_queue_work()) {
247 nss_runtime_samples.freq_scale_index++;
248 }
249 }
250 nss_runtime_samples.freq_scale_rate_limit_down = 0;
251 return;
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530252 }
253}
254
255/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700256 * nss_freq_interface_handler()
Thomas Wuc07d8702014-03-19 15:46:19 -0700257 * Handle NSS -> HLOS messages for Frequency Changes and Statistics
258 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700259static 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 -0700260
261 struct nss_corefreq_msg *ncfm = (struct nss_corefreq_msg *)ncm;
262
Thomas Wu168ca262014-03-21 16:20:27 -0700263 switch (ncfm->cm.type) {
Thomas Wuc07d8702014-03-19 15:46:19 -0700264 case COREFREQ_METADATA_TYPE_TX_FREQ_ACK:
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700265 nss_freq_handle_ack(nss_ctx, &ncfm->msg.nfc);
Thomas Wuc07d8702014-03-19 15:46:19 -0700266 break;
267 case COREFREQ_METADATA_TYPE_TX_CORE_STATS:
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700268 nss_freq_handle_core_stats(nss_ctx, &ncfm->msg.ncs);
Thomas Wuc07d8702014-03-19 15:46:19 -0700269 break;
270
271 default:
272 if (ncm->response != NSS_CMN_RESPONSE_ACK) {
273 /*
274 * Check response
275 */
Thomas Wu68250352014-04-02 18:59:40 -0700276 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 -0700277 }
278 }
279}
280
281/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700282 * nss_freq_register_handler()
Thomas Wuc07d8702014-03-19 15:46:19 -0700283 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700284void nss_freq_register_handler(void)
Thomas Wuc07d8702014-03-19 15:46:19 -0700285{
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700286 nss_core_register_handler(NSS_COREFREQ_INTERFACE, nss_freq_interface_handler, NULL);
Thomas Wuc07d8702014-03-19 15:46:19 -0700287}
288
289/*
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700290 * nss_freq_get_mgr()
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530291 */
Sundarajan Srinivasandedd8e42014-10-06 11:59:34 -0700292void *nss_freq_get_mgr(void)
Abhishek Rastogi9da47472014-03-18 19:46:15 +0530293{
294 return (void *)&nss_top_main.nss[nss_top_main.frequency_handler_id];
Thomas Wuc07d8702014-03-19 15:46:19 -0700295}