blob: f4707d6301f91fbbfdfb4da7cc80fe3226fefbfe [file] [log] [blame]
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -08001/*
Houston Hoffmancceec342015-11-11 11:37:20 -08002 * Copyright (c) 2015-2016 The Linux Foundation. All rights reserved.
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -08003 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21
22/*
23 * This file was originally distributed by Qualcomm Atheros, Inc.
24 * under proprietary terms before Copyright ownership was assigned
25 * to the Linux Foundation.
26 */
27
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080028#include "targcfg.h"
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +053029#include "qdf_lock.h"
30#include "qdf_status.h"
31#include "qdf_status.h"
32#include <qdf_atomic.h> /* qdf_atomic_read */
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080033#include <targaddrs.h>
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080034#include "hif_io32.h"
35#include <hif.h>
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080036#include "regtable.h"
37#define ATH_MODULE_NAME hif
38#include <a_debug.h>
39#include "hif_main.h"
40#include "hif_hw_version.h"
Poddar, Siddarthe41943f2016-04-27 15:33:48 +053041#if defined(HIF_PCI) || defined(HIF_SNOC) || defined(HIF_AHB)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080042#include "ce_tasklet.h"
Poddar, Siddarthe41943f2016-04-27 15:33:48 +053043#endif
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +053044#include "qdf_trace.h"
45#include "qdf_status.h"
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080046#include "hif_debug.h"
47#include "mp_dev.h"
Mohit Khanna440c5292016-05-12 11:05:06 -070048#include "ce_api.h"
Kiran Venkatappaf41ef2e2016-09-05 10:59:58 +053049#ifdef QCA_WIFI_QCA8074
50#include "hal_api.h"
51#endif
Manjunathappa Prakash2146da32016-10-13 14:47:47 -070052#include "hif_napi.h"
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080053
Komal Seelam5584a7c2016-02-24 19:22:48 +053054void hif_dump(struct hif_opaque_softc *hif_ctx, uint8_t cmd_id, bool start)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080055{
Poddar, Siddarthe41943f2016-04-27 15:33:48 +053056 hif_trigger_dump(hif_ctx, cmd_id, start);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080057}
58
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080059/**
60 * hif_get_target_id(): hif_get_target_id
61 *
62 * Return the virtual memory base address to the caller
63 *
Komal Seelam644263d2016-02-22 20:45:49 +053064 * @scn: hif_softc
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080065 *
66 * Return: A_target_id_t
67 */
Komal Seelam644263d2016-02-22 20:45:49 +053068A_target_id_t hif_get_target_id(struct hif_softc *scn)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080069{
70 return scn->mem;
71}
72
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080073/**
74 * hif_get_targetdef(): hif_get_targetdef
75 * @scn: scn
76 *
77 * Return: void *
78 */
Komal Seelam5584a7c2016-02-24 19:22:48 +053079void *hif_get_targetdef(struct hif_opaque_softc *hif_ctx)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080080{
Komal Seelam644263d2016-02-22 20:45:49 +053081 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
82
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080083 return scn->targetdef;
84}
85
86/**
87 * hif_vote_link_down(): unvote for link up
88 *
89 * Call hif_vote_link_down to release a previous request made using
90 * hif_vote_link_up. A hif_vote_link_down call should only be made
91 * after a corresponding hif_vote_link_up, otherwise you could be
92 * negating a vote from another source. When no votes are present
93 * hif will not guarantee the linkstate after hif_bus_suspend.
94 *
95 * SYNCHRONIZE WITH hif_vote_link_up by only calling in MC thread
96 * and initialization deinitialization sequencences.
97 *
98 * Return: n/a
99 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530100void hif_vote_link_down(struct hif_opaque_softc *hif_ctx)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800101{
Komal Seelam644263d2016-02-22 20:45:49 +0530102 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530103 QDF_BUG(scn);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800104
105 scn->linkstate_vote--;
106 if (scn->linkstate_vote == 0)
Houston Hoffmancceec342015-11-11 11:37:20 -0800107 hif_bus_prevent_linkdown(scn, false);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800108}
109
110/**
111 * hif_vote_link_up(): vote to prevent bus from suspending
112 *
113 * Makes hif guarantee that fw can message the host normally
114 * durring suspend.
115 *
116 * SYNCHRONIZE WITH hif_vote_link_up by only calling in MC thread
117 * and initialization deinitialization sequencences.
118 *
119 * Return: n/a
120 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530121void hif_vote_link_up(struct hif_opaque_softc *hif_ctx)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800122{
Komal Seelam644263d2016-02-22 20:45:49 +0530123 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530124 QDF_BUG(scn);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800125
126 scn->linkstate_vote++;
127 if (scn->linkstate_vote == 1)
Houston Hoffmancceec342015-11-11 11:37:20 -0800128 hif_bus_prevent_linkdown(scn, true);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800129}
130
131/**
132 * hif_can_suspend_link(): query if hif is permitted to suspend the link
133 *
134 * Hif will ensure that the link won't be suspended if the upperlayers
135 * don't want it to.
136 *
137 * SYNCHRONIZATION: MC thread is stopped before bus suspend thus
138 * we don't need extra locking to ensure votes dont change while
139 * we are in the process of suspending or resuming.
140 *
141 * Return: false if hif will guarantee link up durring suspend.
142 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530143bool hif_can_suspend_link(struct hif_opaque_softc *hif_ctx)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800144{
Komal Seelam644263d2016-02-22 20:45:49 +0530145 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530146 QDF_BUG(scn);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800147
148 return scn->linkstate_vote == 0;
149}
150
Houston Hoffman4f529982016-05-05 16:11:04 -0700151#ifndef CONFIG_WIN
152#define QCA9984_HOST_INTEREST_ADDRESS -1
153#define QCA9888_HOST_INTEREST_ADDRESS -1
154#define IPQ4019_HOST_INTEREST_ADDRESS -1
155#endif
156
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800157/**
158 * hif_hia_item_address(): hif_hia_item_address
159 * @target_type: target_type
160 * @item_offset: item_offset
161 *
162 * Return: n/a
163 */
164uint32_t hif_hia_item_address(uint32_t target_type, uint32_t item_offset)
165{
166 switch (target_type) {
167 case TARGET_TYPE_AR6002:
168 return AR6002_HOST_INTEREST_ADDRESS + item_offset;
169 case TARGET_TYPE_AR6003:
170 return AR6003_HOST_INTEREST_ADDRESS + item_offset;
171 case TARGET_TYPE_AR6004:
172 return AR6004_HOST_INTEREST_ADDRESS + item_offset;
173 case TARGET_TYPE_AR6006:
174 return AR6006_HOST_INTEREST_ADDRESS + item_offset;
175 case TARGET_TYPE_AR9888:
176 return AR9888_HOST_INTEREST_ADDRESS + item_offset;
177 case TARGET_TYPE_AR6320:
178 case TARGET_TYPE_AR6320V2:
179 return AR6320_HOST_INTEREST_ADDRESS + item_offset;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800180 case TARGET_TYPE_ADRASTEA:
181 /* ADRASTEA doesn't have a host interest address */
182 ASSERT(0);
183 return 0;
Houston Hoffmanfb698ef2016-05-05 19:50:44 -0700184 case TARGET_TYPE_AR900B:
185 return AR900B_HOST_INTEREST_ADDRESS + item_offset;
186 case TARGET_TYPE_QCA9984:
187 return QCA9984_HOST_INTEREST_ADDRESS + item_offset;
188 case TARGET_TYPE_QCA9888:
189 return QCA9888_HOST_INTEREST_ADDRESS + item_offset;
190 case TARGET_TYPE_IPQ4019:
191 return IPQ4019_HOST_INTEREST_ADDRESS + item_offset;
192
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800193 default:
194 ASSERT(0);
195 return 0;
196 }
197}
198
199/**
200 * hif_max_num_receives_reached() - check max receive is reached
Komal Seelambd7c51d2016-02-24 10:27:30 +0530201 * @scn: HIF Context
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800202 * @count: unsigned int.
203 *
204 * Output check status as bool
205 *
206 * Return: bool
207 */
Komal Seelambd7c51d2016-02-24 10:27:30 +0530208bool hif_max_num_receives_reached(struct hif_softc *scn, unsigned int count)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800209{
Houston Hoffman75ef5a52016-04-14 17:15:49 -0700210 if (QDF_IS_EPPING_ENABLED(hif_get_conparam(scn)))
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800211 return count > 120;
212 else
213 return count > MAX_NUM_OF_RECEIVES;
214}
215
216/**
217 * init_buffer_count() - initial buffer count
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530218 * @maxSize: qdf_size_t
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800219 *
220 * routine to modify the initial buffer count to be allocated on an os
221 * platform basis. Platform owner will need to modify this as needed
222 *
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530223 * Return: qdf_size_t
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800224 */
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530225qdf_size_t init_buffer_count(qdf_size_t maxSize)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800226{
227 return maxSize;
228}
229
230/**
Nirav Shahd7f91592016-04-21 14:18:43 +0530231 * hif_save_htc_htt_config_endpoint() - save htt_tx_endpoint
232 * @hif_ctx: hif context
233 * @htc_htt_tx_endpoint: htt_tx_endpoint
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800234 *
235 * Return: void
236 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530237void hif_save_htc_htt_config_endpoint(struct hif_opaque_softc *hif_ctx,
Nirav Shahd7f91592016-04-21 14:18:43 +0530238 int htc_htt_tx_endpoint)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800239{
Komal Seelam644263d2016-02-22 20:45:49 +0530240 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800241
242 if (!scn) {
243 HIF_ERROR("%s: error: scn or scn->hif_sc is NULL!",
244 __func__);
245 return;
246 }
247
Nirav Shahd7f91592016-04-21 14:18:43 +0530248 scn->htc_htt_tx_endpoint = htc_htt_tx_endpoint;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800249}
250
Houston Hoffmanec93ab02016-05-03 20:09:55 -0700251static const struct qwlan_hw qwlan_hw_list[] = {
252 {
253 .id = AR6320_REV1_VERSION,
254 .subid = 0,
255 .name = "QCA6174_REV1",
256 },
257 {
258 .id = AR6320_REV1_1_VERSION,
259 .subid = 0x1,
260 .name = "QCA6174_REV1_1",
261 },
262 {
263 .id = AR6320_REV1_3_VERSION,
264 .subid = 0x2,
265 .name = "QCA6174_REV1_3",
266 },
267 {
268 .id = AR6320_REV2_1_VERSION,
269 .subid = 0x4,
270 .name = "QCA6174_REV2_1",
271 },
272 {
273 .id = AR6320_REV2_1_VERSION,
274 .subid = 0x5,
275 .name = "QCA6174_REV2_2",
276 },
277 {
278 .id = AR6320_REV3_VERSION,
279 .subid = 0x6,
280 .name = "QCA6174_REV2.3",
281 },
282 {
283 .id = AR6320_REV3_VERSION,
284 .subid = 0x8,
285 .name = "QCA6174_REV3",
286 },
287 {
288 .id = AR6320_REV3_VERSION,
289 .subid = 0x9,
290 .name = "QCA6174_REV3_1",
291 },
292 {
293 .id = AR6320_REV3_2_VERSION,
294 .subid = 0xA,
295 .name = "AR6320_REV3_2_VERSION",
Houston Hoffmancd0884a2016-08-24 15:30:09 -0700296 },
297 {
298 .id = WCN3990_v1,
299 .subid = 0x0,
300 .name = "WCN3990_V1",
Houston Hoffmandd4da482016-10-17 12:41:45 -0700301 },
302 {
303 .id = WCN3990_v2,
304 .subid = 0x0,
305 .name = "WCN3990_V2",
Houston Hoffmanec93ab02016-05-03 20:09:55 -0700306 }
307};
308
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800309/**
310 * hif_get_hw_name(): get a human readable name for the hardware
Komal Seelam91553ce2016-01-27 18:57:10 +0530311 * @info: Target Info
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800312 *
Komal Seelam91553ce2016-01-27 18:57:10 +0530313 * Return: human readable name for the underlying wifi hardware.
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800314 */
Komal Seelam91553ce2016-01-27 18:57:10 +0530315static const char *hif_get_hw_name(struct hif_target_info *info)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800316{
317 int i;
Komal Seelam91553ce2016-01-27 18:57:10 +0530318
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800319 for (i = 0; i < ARRAY_SIZE(qwlan_hw_list); i++) {
Komal Seelam91553ce2016-01-27 18:57:10 +0530320 if (info->target_version == qwlan_hw_list[i].id &&
321 info->target_revision == qwlan_hw_list[i].subid) {
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800322 return qwlan_hw_list[i].name;
323 }
324 }
325
326 return "Unknown Device";
327}
328
329/**
330 * hif_get_hw_info(): hif_get_hw_info
331 * @scn: scn
332 * @version: version
333 * @revision: revision
334 *
335 * Return: n/a
336 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530337void hif_get_hw_info(struct hif_opaque_softc *scn, u32 *version, u32 *revision,
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800338 const char **target_name)
339{
Komal Seelam91553ce2016-01-27 18:57:10 +0530340 struct hif_target_info *info = hif_get_target_info_handle(scn);
Mohit Khanna440c5292016-05-12 11:05:06 -0700341 struct hif_softc *sc = HIF_GET_SOFTC(scn);
342
343 if (sc->bus_type == QDF_BUS_TYPE_USB)
344 hif_usb_get_hw_info(sc);
345
Komal Seelam91553ce2016-01-27 18:57:10 +0530346 *version = info->target_version;
347 *revision = info->target_revision;
348 *target_name = hif_get_hw_name(info);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800349}
350
351/**
Kiran Venkatappaf41ef2e2016-09-05 10:59:58 +0530352 * hif_get_dev_ba(): API to get device base address.
353 * @scn: scn
354 * @version: version
355 * @revision: revision
356 *
357 * Return: n/a
358 */
359void *hif_get_dev_ba(struct hif_opaque_softc *hif_handle)
360{
361 struct hif_softc *scn = (struct hif_softc *)hif_handle;
362
363 return scn->mem;
364}
365/**
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800366 * hif_open(): hif_open
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530367 * @qdf_ctx: QDF Context
Komal Seelambd7c51d2016-02-24 10:27:30 +0530368 * @mode: Driver Mode
369 * @bus_type: Bus Type
370 * @cbk: CDS Callbacks
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800371 *
Komal Seelambd7c51d2016-02-24 10:27:30 +0530372 * API to open HIF Context
373 *
374 * Return: HIF Opaque Pointer
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800375 */
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530376struct hif_opaque_softc *hif_open(qdf_device_t qdf_ctx, uint32_t mode,
377 enum qdf_bus_type bus_type,
Komal Seelam75080122016-03-02 15:18:25 +0530378 struct hif_driver_state_callbacks *cbk)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800379{
Komal Seelam644263d2016-02-22 20:45:49 +0530380 struct hif_softc *scn;
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530381 QDF_STATUS status = QDF_STATUS_SUCCESS;
Houston Hoffman162164c2016-03-14 21:12:10 -0700382 int bus_context_size = hif_bus_get_context_size(bus_type);
383
384 if (bus_context_size == 0) {
385 HIF_ERROR("%s: context size 0 not allowed", __func__);
386 return NULL;
387 }
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800388
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530389 scn = (struct hif_softc *)qdf_mem_malloc(bus_context_size);
Komal Seelambd7c51d2016-02-24 10:27:30 +0530390 if (!scn) {
391 HIF_ERROR("%s: cannot alloc memory for HIF context of size:%d",
392 __func__, bus_context_size);
393 return GET_HIF_OPAQUE_HDL(scn);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800394 }
395
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530396 qdf_mem_zero(scn, bus_context_size);
Komal Seelambd7c51d2016-02-24 10:27:30 +0530397
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530398 scn->qdf_dev = qdf_ctx;
Komal Seelambd7c51d2016-02-24 10:27:30 +0530399 scn->hif_con_param = mode;
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530400 qdf_atomic_init(&scn->active_tasklet_cnt);
Venkateswara Swamy Bandaru31108f32016-08-08 18:04:29 +0530401 qdf_atomic_init(&scn->active_grp_tasklet_cnt);
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530402 qdf_atomic_init(&scn->link_suspended);
403 qdf_atomic_init(&scn->tasklet_from_intr);
Komal Seelam75080122016-03-02 15:18:25 +0530404 qdf_mem_copy(&scn->callbacks, cbk, sizeof(struct hif_driver_state_callbacks));
Houston Hoffman3db96a42016-05-05 19:54:39 -0700405 scn->bus_type = bus_type;
Houston Hoffman3cfe6862016-01-08 10:33:55 -0800406 status = hif_bus_open(scn, bus_type);
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530407 if (status != QDF_STATUS_SUCCESS) {
Houston Hoffman3cfe6862016-01-08 10:33:55 -0800408 HIF_ERROR("%s: hif_bus_open error = %d, bus_type = %d",
409 __func__, status, bus_type);
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530410 qdf_mem_free(scn);
Komal Seelambd7c51d2016-02-24 10:27:30 +0530411 scn = NULL;
Houston Hoffman3cfe6862016-01-08 10:33:55 -0800412 }
413
Komal Seelambd7c51d2016-02-24 10:27:30 +0530414 return GET_HIF_OPAQUE_HDL(scn);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800415}
416
417/**
418 * hif_close(): hif_close
419 * @hif_ctx: hif_ctx
420 *
421 * Return: n/a
422 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530423void hif_close(struct hif_opaque_softc *hif_ctx)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800424{
Komal Seelam644263d2016-02-22 20:45:49 +0530425 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800426
427 if (scn == NULL) {
Komal Seelam5584a7c2016-02-24 19:22:48 +0530428 HIF_ERROR("%s: hif_opaque_softc is NULL", __func__);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800429 return;
430 }
431
432 if (scn->athdiag_procfs_inited) {
433 athdiag_procfs_remove();
434 scn->athdiag_procfs_inited = false;
435 }
436
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800437 hif_bus_close(scn);
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530438 qdf_mem_free(scn);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800439}
440
Kiran Venkatappaf41ef2e2016-09-05 10:59:58 +0530441static QDF_STATUS hif_hal_attach(struct hif_softc *scn)
442{
443#ifdef QCA_WIFI_QCA8074
444 if (ce_srng_based(scn)) {
445 scn->hal_soc = hal_attach(scn, scn->qdf_dev);
446 if (scn->hal_soc == NULL)
447 return QDF_STATUS_E_FAILURE;
448 }
449#endif
450
451 return QDF_STATUS_SUCCESS;
452}
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800453/**
454 * hif_enable(): hif_enable
455 * @hif_ctx: hif_ctx
456 * @dev: dev
457 * @bdev: bus dev
458 * @bid: bus ID
459 * @bus_type: bus type
460 * @type: enable type
461 *
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530462 * Return: QDF_STATUS
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800463 */
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530464QDF_STATUS hif_enable(struct hif_opaque_softc *hif_ctx, struct device *dev,
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800465 void *bdev, const hif_bus_id *bid,
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530466 enum qdf_bus_type bus_type,
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800467 enum hif_enable_type type)
468{
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530469 QDF_STATUS status;
Komal Seelam644263d2016-02-22 20:45:49 +0530470 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800471
472 if (scn == NULL) {
473 HIF_ERROR("%s: hif_ctx = NULL", __func__);
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530474 return QDF_STATUS_E_NULL_VALUE;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800475 }
476
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800477 status = hif_enable_bus(scn, dev, bdev, bid, type);
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530478 if (status != QDF_STATUS_SUCCESS) {
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800479 HIF_ERROR("%s: hif_enable_bus error = %d",
480 __func__, status);
481 return status;
482 }
483
Kiran Venkatappaf41ef2e2016-09-05 10:59:58 +0530484 status = hif_hal_attach(scn);
485 if (status != QDF_STATUS_SUCCESS) {
486 HIF_ERROR("%s: hal attach failed", __func__);
487 return status;
488 }
489
Houston Hoffman108da402016-03-14 21:11:24 -0700490 if (hif_bus_configure(scn)) {
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800491 HIF_ERROR("%s: Target probe failed.", __func__);
Vishwajith Upendra3f78aa62016-02-09 17:53:02 +0530492 hif_disable_bus(scn);
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530493 status = QDF_STATUS_E_FAILURE;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800494 return status;
495 }
Houston Hoffman108da402016-03-14 21:11:24 -0700496
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800497 /*
498 * Flag to avoid potential unallocated memory access from MSI
499 * interrupt handler which could get scheduled as soon as MSI
500 * is enabled, i.e to take care of the race due to the order
501 * in where MSI is enabled before the memory, that will be
502 * in interrupt handlers, is allocated.
503 */
504
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800505 scn->hif_init_done = true;
506
Mohit Khanna440c5292016-05-12 11:05:06 -0700507 HIF_TRACE("%s: OK", __func__);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800508
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530509 return QDF_STATUS_SUCCESS;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800510}
511
Komal Seelam5584a7c2016-02-24 19:22:48 +0530512void hif_disable(struct hif_opaque_softc *hif_ctx, enum hif_disable_type type)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800513{
Komal Seelam644263d2016-02-22 20:45:49 +0530514 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800515
516 if (!scn)
517 return;
518
519 hif_nointrs(scn);
520 if (scn->hif_init_done == false)
Poddar, Siddarthe41943f2016-04-27 15:33:48 +0530521 hif_shutdown_device(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800522 else
Komal Seelam644263d2016-02-22 20:45:49 +0530523 hif_stop(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800524
Vishwajith Upendra3f78aa62016-02-09 17:53:02 +0530525 hif_disable_bus(scn);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800526
Komal Seelambd7c51d2016-02-24 10:27:30 +0530527 hif_wlan_disable(scn);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800528
529 scn->notice_send = false;
530
531 HIF_INFO("%s: X", __func__);
532}
533
Nirav Shahb70bd732016-05-25 14:31:51 +0530534void hif_display_stats(struct hif_opaque_softc *hif_ctx)
535{
536 hif_display_bus_stats(hif_ctx);
537}
538
539void hif_clear_stats(struct hif_opaque_softc *hif_ctx)
540{
541 hif_clear_bus_stats(hif_ctx);
542}
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800543
544/**
Govind Singh2443fb32016-01-13 17:44:48 +0530545 * hif_crash_shutdown_dump_bus_register() - dump bus registers
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800546 * @hif_ctx: hif_ctx
547 *
548 * Return: n/a
549 */
550#if defined(TARGET_RAMDUMP_AFTER_KERNEL_PANIC) \
Houston Hoffmanbc693492016-03-14 21:11:41 -0700551&& defined(DEBUG)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800552
Govind Singh2443fb32016-01-13 17:44:48 +0530553static void hif_crash_shutdown_dump_bus_register(void *hif_ctx)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800554{
Komal Seelam5584a7c2016-02-24 19:22:48 +0530555 struct hif_opaque_softc *scn = hif_ctx;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800556
Govind Singh2443fb32016-01-13 17:44:48 +0530557 if (hif_check_soc_status(scn))
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800558 return;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800559
Govind Singh2443fb32016-01-13 17:44:48 +0530560 if (hif_dump_registers(scn))
561 HIF_ERROR("Failed to dump bus registers!");
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800562}
563
564/**
565 * hif_crash_shutdown(): hif_crash_shutdown
566 *
567 * This function is called by the platform driver to dump CE registers
568 *
569 * @hif_ctx: hif_ctx
570 *
571 * Return: n/a
572 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530573void hif_crash_shutdown(struct hif_opaque_softc *hif_ctx)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800574{
Komal Seelam644263d2016-02-22 20:45:49 +0530575 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800576
Houston Hoffmanbc693492016-03-14 21:11:41 -0700577 if (!hif_ctx)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800578 return;
579
Houston Hoffmanbc693492016-03-14 21:11:41 -0700580 if (scn->bus_type == QDF_BUS_TYPE_SNOC) {
581 HIF_INFO_MED("%s: RAM dump disabled for bustype %d",
582 __func__, scn->bus_type);
583 return;
584 }
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800585
Komal Seelam6ee55902016-04-11 17:11:07 +0530586 if (TARGET_STATUS_RESET == scn->target_status) {
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800587 HIF_INFO_MED("%s: Target is already asserted, ignore!",
588 __func__);
589 return;
590 }
591
Komal Seelambd7c51d2016-02-24 10:27:30 +0530592 if (hif_is_load_or_unload_in_progress(scn)) {
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800593 HIF_ERROR("%s: Load/unload is in progress, ignore!", __func__);
594 return;
595 }
596
Govind Singh2443fb32016-01-13 17:44:48 +0530597 hif_crash_shutdown_dump_bus_register(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800598
Komal Seelam644263d2016-02-22 20:45:49 +0530599 if (ol_copy_ramdump(hif_ctx))
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800600 goto out;
601
602 HIF_INFO_MED("%s: RAM dump collecting completed!", __func__);
603
604out:
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800605 return;
606}
607#else
Komal Seelam5584a7c2016-02-24 19:22:48 +0530608void hif_crash_shutdown(struct hif_opaque_softc *hif_ctx)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800609{
610 HIF_INFO_MED("%s: Collecting target RAM dump disabled",
611 __func__);
612 return;
613}
614#endif /* TARGET_RAMDUMP_AFTER_KERNEL_PANIC */
615
616#ifdef QCA_WIFI_3_0
617/**
618 * hif_check_fw_reg(): hif_check_fw_reg
619 * @scn: scn
620 * @state:
621 *
622 * Return: int
623 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530624int hif_check_fw_reg(struct hif_opaque_softc *scn)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800625{
626 return 0;
627}
628#endif
629
630#ifdef IPA_OFFLOAD
631/**
632 * hif_read_phy_mem_base(): hif_read_phy_mem_base
633 * @scn: scn
634 * @phy_mem_base: physical mem base
635 *
636 * Return: n/a
637 */
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530638void hif_read_phy_mem_base(struct hif_softc *scn, qdf_dma_addr_t *phy_mem_base)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800639{
640 *phy_mem_base = scn->mem_pa;
641}
642#endif /* IPA_OFFLOAD */
643
644/**
645 * hif_get_device_type(): hif_get_device_type
646 * @device_id: device_id
647 * @revision_id: revision_id
648 * @hif_type: returned hif_type
649 * @target_type: returned target_type
650 *
651 * Return: int
652 */
653int hif_get_device_type(uint32_t device_id,
654 uint32_t revision_id,
655 uint32_t *hif_type, uint32_t *target_type)
656{
657 int ret = 0;
658
659 switch (device_id) {
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800660 case ADRASTEA_DEVICE_ID:
661 case ADRASTEA_DEVICE_ID_P2_E12:
662
663 *hif_type = HIF_TYPE_ADRASTEA;
664 *target_type = TARGET_TYPE_ADRASTEA;
665 break;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800666
667 case AR9888_DEVICE_ID:
668 *hif_type = HIF_TYPE_AR9888;
669 *target_type = TARGET_TYPE_AR9888;
670 break;
671
672 case AR6320_DEVICE_ID:
673 switch (revision_id) {
674 case AR6320_FW_1_1:
675 case AR6320_FW_1_3:
676 *hif_type = HIF_TYPE_AR6320;
677 *target_type = TARGET_TYPE_AR6320;
678 break;
679
680 case AR6320_FW_2_0:
681 case AR6320_FW_3_0:
682 case AR6320_FW_3_2:
683 *hif_type = HIF_TYPE_AR6320V2;
684 *target_type = TARGET_TYPE_AR6320V2;
685 break;
686
687 default:
688 HIF_ERROR("%s: error - dev_id = 0x%x, rev_id = 0x%x",
689 __func__, device_id, revision_id);
690 ret = -ENODEV;
691 goto end;
692 }
693 break;
694
Houston Hoffmanfb698ef2016-05-05 19:50:44 -0700695 case AR9887_DEVICE_ID:
696 *hif_type = HIF_TYPE_AR9888;
697 *target_type = TARGET_TYPE_AR9888;
Houston Hoffmanc50572b2016-06-08 19:49:46 -0700698 HIF_INFO(" *********** AR9887 **************");
Houston Hoffmanfb698ef2016-05-05 19:50:44 -0700699 break;
700
701 case QCA9984_DEVICE_ID:
702 *hif_type = HIF_TYPE_QCA9984;
703 *target_type = TARGET_TYPE_QCA9984;
Houston Hoffmanc50572b2016-06-08 19:49:46 -0700704 HIF_INFO(" *********** QCA9984 *************");
Houston Hoffmanfb698ef2016-05-05 19:50:44 -0700705 break;
706
707 case QCA9888_DEVICE_ID:
708 *hif_type = HIF_TYPE_QCA9888;
709 *target_type = TARGET_TYPE_QCA9888;
Houston Hoffmanc50572b2016-06-08 19:49:46 -0700710 HIF_INFO(" *********** QCA9888 *************");
Houston Hoffmanfb698ef2016-05-05 19:50:44 -0700711 break;
712
713 case AR900B_DEVICE_ID:
714 *hif_type = HIF_TYPE_AR900B;
715 *target_type = TARGET_TYPE_AR900B;
Houston Hoffmanc50572b2016-06-08 19:49:46 -0700716 HIF_INFO(" *********** AR900B *************");
Houston Hoffmanfb698ef2016-05-05 19:50:44 -0700717 break;
718
Houston Hoffman3db96a42016-05-05 19:54:39 -0700719 case IPQ4019_DEVICE_ID:
720 *hif_type = HIF_TYPE_IPQ4019;
721 *target_type = TARGET_TYPE_IPQ4019;
Houston Hoffmanc50572b2016-06-08 19:49:46 -0700722 HIF_INFO(" *********** IPQ4019 *************");
Houston Hoffman3db96a42016-05-05 19:54:39 -0700723 break;
724
Venkateswara Swamy Bandaru9fd9af02016-09-20 20:27:31 +0530725 case QCA8074_DEVICE_ID:
726 *hif_type = HIF_TYPE_QCA8074;
727 *target_type = TARGET_TYPE_QCA8074;
728 HIF_INFO(" *********** QCA8074 *************\n");
729 break;
730
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800731 default:
732 HIF_ERROR("%s: Unsupported device ID!", __func__);
733 ret = -ENODEV;
734 break;
735 }
736end:
737 return ret;
738}
Komal Seelam91553ce2016-01-27 18:57:10 +0530739
740/**
Houston Hoffman26352592016-03-14 21:11:43 -0700741 * hif_needs_bmi() - return true if the soc needs bmi through the driver
742 * @hif_ctx: hif context
743 *
744 * Return: true if the soc needs driver bmi otherwise false
745 */
746bool hif_needs_bmi(struct hif_opaque_softc *hif_ctx)
747{
748 struct hif_softc *hif_sc = HIF_GET_SOFTC(hif_ctx);
Pratik Gandhi815c6d82016-10-19 12:06:32 +0530749
750 if (hif_sc->bus_type == QDF_BUS_TYPE_SNOC)
751 return false;
752
753 if (hif_sc->target_info.target_type == TARGET_TYPE_QCA8074)
754 return false;
755
756 return true;
Houston Hoffman26352592016-03-14 21:11:43 -0700757}
758
759/**
Houston Hoffman60a1eeb2016-03-14 21:11:44 -0700760 * hif_get_bus_type() - return the bus type
761 *
762 * Return: enum qdf_bus_type
763 */
764enum qdf_bus_type hif_get_bus_type(struct hif_opaque_softc *hif_hdl)
765{
766 struct hif_softc *scn = HIF_GET_SOFTC(hif_hdl);
767 return scn->bus_type;
768}
769
770/**
Komal Seelam91553ce2016-01-27 18:57:10 +0530771 * Target info and ini parameters are global to the driver
772 * Hence these structures are exposed to all the modules in
773 * the driver and they don't need to maintains multiple copies
774 * of the same info, instead get the handle from hif and
775 * modify them in hif
776 */
777
778/**
779 * hif_get_ini_handle() - API to get hif_config_param handle
Komal Seelam644263d2016-02-22 20:45:49 +0530780 * @hif_ctx: HIF Context
Komal Seelam91553ce2016-01-27 18:57:10 +0530781 *
782 * Return: pointer to hif_config_info
783 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530784struct hif_config_info *hif_get_ini_handle(struct hif_opaque_softc *hif_ctx)
Komal Seelam91553ce2016-01-27 18:57:10 +0530785{
Komal Seelam644263d2016-02-22 20:45:49 +0530786 struct hif_softc *sc = HIF_GET_SOFTC(hif_ctx);
787
788 return &sc->hif_config;
Komal Seelam91553ce2016-01-27 18:57:10 +0530789}
790
791/**
792 * hif_get_target_info_handle() - API to get hif_target_info handle
Komal Seelam644263d2016-02-22 20:45:49 +0530793 * @hif_ctx: HIF context
Komal Seelam91553ce2016-01-27 18:57:10 +0530794 *
795 * Return: Pointer to hif_target_info
796 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530797struct hif_target_info *hif_get_target_info_handle(
798 struct hif_opaque_softc *hif_ctx)
Komal Seelam91553ce2016-01-27 18:57:10 +0530799{
Komal Seelam644263d2016-02-22 20:45:49 +0530800 struct hif_softc *sc = HIF_GET_SOFTC(hif_ctx);
801
802 return &sc->target_info;
803
Komal Seelam91553ce2016-01-27 18:57:10 +0530804}
Komal Seelamc92a0cf2016-02-22 20:43:52 +0530805
806#if defined(FEATURE_LRO)
807/**
808 * hif_lro_flush_cb_register - API to register for LRO Flush Callback
809 * @scn: HIF Context
810 * @handler: Function pointer to be called by HIF
811 * @data: Private data to be used by the module registering to HIF
812 *
813 * Return: void
814 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530815void hif_lro_flush_cb_register(struct hif_opaque_softc *scn,
Manjunathappa Prakash2146da32016-10-13 14:47:47 -0700816 void (lro_flush_handler)(void *),
817 void *(lro_init_handler)(void))
Komal Seelamc92a0cf2016-02-22 20:43:52 +0530818{
Manjunathappa Prakash2146da32016-10-13 14:47:47 -0700819 if (hif_napi_enabled(scn, -1))
820 hif_napi_lro_flush_cb_register(scn, lro_flush_handler,
821 lro_init_handler);
822 else
823 ce_lro_flush_cb_register(scn, lro_flush_handler,
824 lro_init_handler);
825}
826
827/**
828 * hif_get_lro_info - Returns LRO instance for instance ID
829 * @ctx_id: LRO instance ID
830 * @hif_hdl: HIF Context
831 *
832 * Return: Pointer to LRO instance.
833 */
834void *hif_get_lro_info(int ctx_id, struct hif_opaque_softc *hif_hdl)
835{
836 void *data;
837
838 if (hif_napi_enabled(hif_hdl, -1))
839 data = hif_napi_get_lro_info(hif_hdl, ctx_id);
840 else
841 data = hif_ce_get_lro_ctx(hif_hdl, ctx_id);
842
843 return data;
844}
845
846/**
847 * hif_get_rx_ctx_id - Returns LRO instance ID based on underlying LRO instance
848 * @ctx_id: LRO context ID
849 * @hif_hdl: HIF Context
850 *
851 * Return: LRO instance ID
852 */
853int hif_get_rx_ctx_id(int ctx_id, struct hif_opaque_softc *hif_hdl)
854{
855 if (hif_napi_enabled(hif_hdl, -1))
856 return NAPI_PIPE2ID(ctx_id);
857 else
858 return ctx_id;
Komal Seelamc92a0cf2016-02-22 20:43:52 +0530859}
860
861/**
862 * hif_lro_flush_cb_deregister - API to deregister for LRO Flush Callbacks
Manjunathappa Prakash2146da32016-10-13 14:47:47 -0700863 * @hif_hdl: HIF Context
864 * @lro_deinit_cb: LRO deinit callback
Komal Seelamc92a0cf2016-02-22 20:43:52 +0530865 *
866 * Return: void
867 */
Manjunathappa Prakash2146da32016-10-13 14:47:47 -0700868void hif_lro_flush_cb_deregister(struct hif_opaque_softc *hif_hdl,
869 void (lro_deinit_cb)(void *))
Komal Seelamc92a0cf2016-02-22 20:43:52 +0530870{
Manjunathappa Prakash2146da32016-10-13 14:47:47 -0700871 if (hif_napi_enabled(hif_hdl, -1))
872 hif_napi_lro_flush_cb_deregister(hif_hdl, lro_deinit_cb);
873 else
874 ce_lro_flush_cb_deregister(hif_hdl, lro_deinit_cb);
875}
876#else /* !defined(FEATURE_LRO) */
877int hif_get_rx_ctx_id(int ctx_id, struct hif_opaque_softc *hif_hdl)
878{
879 return 0;
Komal Seelamc92a0cf2016-02-22 20:43:52 +0530880}
881#endif
Komal Seelam644263d2016-02-22 20:45:49 +0530882
883/**
884 * hif_get_target_status - API to get target status
885 * @hif_ctx: HIF Context
886 *
Komal Seelam6ee55902016-04-11 17:11:07 +0530887 * Return: enum hif_target_status
Komal Seelam644263d2016-02-22 20:45:49 +0530888 */
Komal Seelam6ee55902016-04-11 17:11:07 +0530889enum hif_target_status hif_get_target_status(struct hif_opaque_softc *hif_ctx)
Komal Seelam644263d2016-02-22 20:45:49 +0530890{
891 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
892
893 return scn->target_status;
894}
895
896/**
Komal Seelama5911d32016-02-24 19:21:59 +0530897 * hif_set_target_status() - API to set target status
Komal Seelam644263d2016-02-22 20:45:49 +0530898 * @hif_ctx: HIF Context
899 * @status: Target Status
900 *
901 * Return: void
902 */
Komal Seelam6ee55902016-04-11 17:11:07 +0530903void hif_set_target_status(struct hif_opaque_softc *hif_ctx, enum
904 hif_target_status status)
Komal Seelam644263d2016-02-22 20:45:49 +0530905{
906 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
907
908 scn->target_status = status;
909}
Komal Seelama5911d32016-02-24 19:21:59 +0530910
911/**
912 * hif_init_ini_config() - API to initialize HIF configuration parameters
913 * @hif_ctx: HIF Context
914 * @cfg: HIF Configuration
915 *
916 * Return: void
917 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530918void hif_init_ini_config(struct hif_opaque_softc *hif_ctx,
919 struct hif_config_info *cfg)
Komal Seelama5911d32016-02-24 19:21:59 +0530920{
921 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
922
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530923 qdf_mem_copy(&scn->hif_config, cfg, sizeof(struct hif_config_info));
Komal Seelama5911d32016-02-24 19:21:59 +0530924}
Komal Seelambd7c51d2016-02-24 10:27:30 +0530925
926/**
927 * hif_get_conparam() - API to get driver mode in HIF
928 * @scn: HIF Context
929 *
930 * Return: driver mode of operation
931 */
932uint32_t hif_get_conparam(struct hif_softc *scn)
933{
934 if (!scn)
935 return 0;
936
937 return scn->hif_con_param;
938}
939
940/**
941 * hif_get_callbacks_handle() - API to get callbacks Handle
942 * @scn: HIF Context
943 *
944 * Return: pointer to HIF Callbacks
945 */
Komal Seelam75080122016-03-02 15:18:25 +0530946struct hif_driver_state_callbacks *hif_get_callbacks_handle(struct hif_softc *scn)
Komal Seelambd7c51d2016-02-24 10:27:30 +0530947{
948 return &scn->callbacks;
949}
950
951/**
952 * hif_is_driver_unloading() - API to query upper layers if driver is unloading
953 * @scn: HIF Context
954 *
955 * Return: True/False
956 */
957bool hif_is_driver_unloading(struct hif_softc *scn)
958{
Komal Seelam75080122016-03-02 15:18:25 +0530959 struct hif_driver_state_callbacks *cbk = hif_get_callbacks_handle(scn);
Komal Seelambd7c51d2016-02-24 10:27:30 +0530960
961 if (cbk && cbk->is_driver_unloading)
962 return cbk->is_driver_unloading(cbk->context);
963
964 return false;
965}
966
967/**
968 * hif_is_load_or_unload_in_progress() - API to query upper layers if
969 * load/unload in progress
970 * @scn: HIF Context
971 *
972 * Return: True/False
973 */
974bool hif_is_load_or_unload_in_progress(struct hif_softc *scn)
975{
Komal Seelam75080122016-03-02 15:18:25 +0530976 struct hif_driver_state_callbacks *cbk = hif_get_callbacks_handle(scn);
Komal Seelambd7c51d2016-02-24 10:27:30 +0530977
978 if (cbk && cbk->is_load_unload_in_progress)
979 return cbk->is_load_unload_in_progress(cbk->context);
980
981 return false;
982}
983
984/**
Venkateswara Swamy Bandaru26f6f1e2016-10-03 19:35:57 +0530985 * hif_update_pipe_callback() - API to register pipe specific callbacks
986 * @osc: Opaque softc
987 * @pipeid: pipe id
988 * @callbacks: callbacks to register
989 *
990 * Return: void
991 */
992
993void hif_update_pipe_callback(struct hif_opaque_softc *osc,
994 u_int8_t pipeid,
995 struct hif_msg_callbacks *callbacks)
996{
997 struct hif_softc *scn = HIF_GET_SOFTC(osc);
998 struct HIF_CE_state *hif_state = HIF_GET_CE_STATE(scn);
999 struct HIF_CE_pipe_info *pipe_info;
1000
1001 QDF_BUG(pipeid < CE_COUNT_MAX);
1002
1003 HIF_INFO_LO("+%s pipeid %d\n", __func__, pipeid);
1004
1005 pipe_info = &hif_state->pipe_info[pipeid];
1006
1007 qdf_mem_copy(&pipe_info->pipe_callbacks,
1008 callbacks, sizeof(pipe_info->pipe_callbacks));
1009
1010 HIF_INFO_LO("-%s\n", __func__);
1011}
1012
1013/**
Komal Seelambd7c51d2016-02-24 10:27:30 +05301014 * hif_is_recovery_in_progress() - API to query upper layers if recovery in
1015 * progress
1016 * @scn: HIF Context
1017 *
1018 * Return: True/False
1019 */
1020bool hif_is_recovery_in_progress(struct hif_softc *scn)
1021{
Komal Seelam75080122016-03-02 15:18:25 +05301022 struct hif_driver_state_callbacks *cbk = hif_get_callbacks_handle(scn);
Komal Seelambd7c51d2016-02-24 10:27:30 +05301023
1024 if (cbk && cbk->is_recovery_in_progress)
1025 return cbk->is_recovery_in_progress(cbk->context);
1026
1027 return false;
1028}
Mohit Khanna440c5292016-05-12 11:05:06 -07001029#if defined(HIF_PCI) || defined(SNOC) || defined(HIF_AHB)
Houston Hoffman56e0d702016-05-05 17:48:06 -07001030/**
1031 * hif_batch_send() - API to access hif specific function
1032 * ce_batch_send.
1033 * @osc: HIF Context
1034 * @msdu : list of msdus to be sent
1035 * @transfer_id : transfer id
1036 * @len : donwloaded length
1037 *
1038 * Return: list of msds not sent
1039 */
1040qdf_nbuf_t hif_batch_send(struct hif_opaque_softc *osc, qdf_nbuf_t msdu,
1041 uint32_t transfer_id, u_int32_t len, uint32_t sendhead)
1042{
1043 void *ce_tx_hdl = hif_get_ce_handle(osc, CE_HTT_TX_CE);
Kiran Venkatappaf41ef2e2016-09-05 10:59:58 +05301044
Houston Hoffman56e0d702016-05-05 17:48:06 -07001045 return ce_batch_send((struct CE_handle *)ce_tx_hdl, msdu, transfer_id,
1046 len, sendhead);
1047}
1048
1049/**
1050 * hif_update_tx_ring() - API to access hif specific function
1051 * ce_update_tx_ring.
1052 * @osc: HIF Context
1053 * @num_htt_cmpls : number of htt compl received.
1054 *
1055 * Return: void
1056 */
1057void hif_update_tx_ring(struct hif_opaque_softc *osc, u_int32_t num_htt_cmpls)
1058{
1059 void *ce_tx_hdl = hif_get_ce_handle(osc, CE_HTT_TX_CE);
1060 ce_update_tx_ring(ce_tx_hdl, num_htt_cmpls);
1061}
1062
1063
1064/**
1065 * hif_send_single() - API to access hif specific function
1066 * ce_send_single.
1067 * @osc: HIF Context
1068 * @msdu : msdu to be sent
1069 * @transfer_id: transfer id
1070 * @len : downloaded length
1071 *
1072 * Return: msdu sent status
1073 */
1074int hif_send_single(struct hif_opaque_softc *osc, qdf_nbuf_t msdu, uint32_t
1075 transfer_id, u_int32_t len)
1076{
1077 void *ce_tx_hdl = hif_get_ce_handle(osc, CE_HTT_TX_CE);
Kiran Venkatappaf41ef2e2016-09-05 10:59:58 +05301078
Houston Hoffman56e0d702016-05-05 17:48:06 -07001079 return ce_send_single((struct CE_handle *)ce_tx_hdl, msdu, transfer_id,
1080 len);
1081}
1082
1083/**
1084 * hif_send_fast() - API to access hif specific function
1085 * ce_send_fast.
1086 * @osc: HIF Context
1087 * @msdu : array of msdus to be sent
1088 * @num_msdus : number of msdus in an array
1089 * @transfer_id: transfer id
Nirav Shahda0881a2016-05-16 10:45:16 +05301090 * @download_len: download length
Houston Hoffman56e0d702016-05-05 17:48:06 -07001091 *
1092 * Return: No. of packets that could be sent
1093 */
Nirav Shahda0881a2016-05-16 10:45:16 +05301094int hif_send_fast(struct hif_opaque_softc *osc, qdf_nbuf_t nbuf,
1095 uint32_t transfer_id, uint32_t download_len)
Houston Hoffman56e0d702016-05-05 17:48:06 -07001096{
1097 void *ce_tx_hdl = hif_get_ce_handle(osc, CE_HTT_TX_CE);
Kiran Venkatappaf41ef2e2016-09-05 10:59:58 +05301098
Nirav Shahda0881a2016-05-16 10:45:16 +05301099 return ce_send_fast((struct CE_handle *)ce_tx_hdl, nbuf,
1100 transfer_id, download_len);
Houston Hoffman56e0d702016-05-05 17:48:06 -07001101}
Mohit Khanna440c5292016-05-12 11:05:06 -07001102#endif
Houston Hoffman56e0d702016-05-05 17:48:06 -07001103
1104/**
1105 * hif_reg_write() - API to access hif specific function
1106 * hif_write32_mb.
1107 * @hif_ctx : HIF Context
1108 * @offset : offset on which value has to be written
1109 * @value : value to be written
1110 *
1111 * Return: None
1112 */
1113void hif_reg_write(struct hif_opaque_softc *hif_ctx, uint32_t offset,
1114 uint32_t value)
1115{
1116 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
1117 hif_write32_mb(scn->mem + offset, value);
1118
1119}
1120
1121/**
1122 * hif_reg_read() - API to access hif specific function
1123 * hif_read32_mb.
1124 * @hif_ctx : HIF Context
1125 * @offset : offset from which value has to be read
1126 *
1127 * Return: Read value
1128 */
1129uint32_t hif_reg_read(struct hif_opaque_softc *hif_ctx, uint32_t offset)
1130{
1131
1132 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
1133 return hif_read32_mb(scn->mem + offset);
1134}
Mohit Khanna440c5292016-05-12 11:05:06 -07001135
1136#if defined(HIF_USB)
1137/**
1138 * hif_ramdump_handler(): generic ramdump handler
1139 * @scn: struct hif_opaque_softc
1140 *
1141 * Return: None
1142 */
1143
1144void hif_ramdump_handler(struct hif_opaque_softc *scn)
1145
1146{
1147 if (hif_get_bus_type == QDF_BUS_TYPE_USB)
1148 hif_usb_ramdump_handler();
1149}
1150#endif
Venkateswara Swamy Bandaru31108f32016-08-08 18:04:29 +05301151
1152/**
1153 * hif_register_ext_group_int_handler() - API to register external group
1154 * interrupt handler.
1155 * @hif_ctx : HIF Context
1156 * @numirq: number of irq's in the group
1157 * @irq: array of irq values
1158 * @ext_intr_handler: callback interrupt handler function
1159 * @context: context to passed in callback
1160 *
1161 * Return: status
1162 */
1163uint32_t hif_register_ext_group_int_handler(struct hif_opaque_softc *hif_ctx,
1164 uint32_t numirq, uint32_t irq[], ext_intr_handler handler,
1165 void *context)
1166{
1167 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
1168 struct HIF_CE_state *hif_state = HIF_GET_CE_STATE(scn);
1169 struct hif_ext_group_entry *hif_ext_group;
1170
1171 if (scn->hif_init_done) {
1172 HIF_ERROR("%s Called after HIF initialization \n", __func__);
1173 return QDF_STATUS_E_FAILURE;
1174 }
1175
1176 if (hif_state->hif_num_extgroup >= HIF_MAX_GROUP) {
1177 HIF_ERROR("%s Max groups reached\n", __func__);
1178 return QDF_STATUS_E_FAILURE;
1179 }
1180
1181 if (numirq >= HIF_MAX_GRP_IRQ) {
1182 HIF_ERROR("%s invalid numirq\n", __func__);
1183 return QDF_STATUS_E_FAILURE;
1184 }
1185
1186 hif_ext_group = &hif_state->hif_ext_group[hif_state->hif_num_extgroup];
1187
1188 hif_ext_group->numirq = numirq;
1189 qdf_mem_copy(&hif_ext_group->irq[0], irq, numirq * sizeof(irq[0]));
1190 hif_ext_group->context = context;
1191 hif_ext_group->handler = handler;
1192 hif_ext_group->configured = true;
1193 hif_ext_group->grp_id = hif_state->hif_num_extgroup;
1194
1195 hif_state->hif_num_extgroup++;
1196 return QDF_STATUS_SUCCESS;
1197}
1198
1199/**
1200 * hif_ext_grp_tasklet() - grp tasklet
1201 * data: context
1202 *
1203 * return: void
1204 */
1205void hif_ext_grp_tasklet(unsigned long data)
1206{
1207 struct hif_ext_group_entry *hif_ext_group =
1208 (struct hif_ext_group_entry *)data;
1209 struct HIF_CE_state *hif_state = hif_ext_group->hif_state;
1210 struct hif_softc *scn = HIF_GET_SOFTC(hif_state);
1211
1212 if (hif_ext_group->grp_id < HIF_MAX_GROUP) {
1213 hif_ext_group->handler(hif_ext_group->context, HIF_MAX_BUDGET);
1214 hif_grp_irq_enable(scn, hif_ext_group->grp_id);
1215 } else {
1216 HIF_ERROR("%s: ERROR - invalid grp_id = %d",
1217 __func__, hif_ext_group->grp_id);
1218 }
1219
1220 qdf_atomic_dec(&scn->active_grp_tasklet_cnt);
1221}
1222
1223/**
1224 * hif_grp_tasklet_kill() - grp tasklet kill
1225 * scn: hif_softc
1226 *
1227 * return: void
1228 */
1229void hif_grp_tasklet_kill(struct hif_softc *scn)
1230{
1231 int i;
1232 struct HIF_CE_state *hif_state = HIF_GET_CE_STATE(scn);
1233
1234 for (i = 0; i < HIF_MAX_GROUP; i++)
1235 if (hif_state->hif_ext_group[i].inited) {
1236 tasklet_kill(&hif_state->hif_ext_group[i].intr_tq);
1237 hif_state->hif_ext_group[i].inited = false;
1238 }
1239 qdf_atomic_set(&scn->active_grp_tasklet_cnt, 0);
1240}