blob: dcc9ea76ac726d7f86c2770eeb9387a017ec4218 [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_api.h"
43#include "ce_tasklet.h"
Poddar, Siddarthe41943f2016-04-27 15:33:48 +053044#include "platform_icnss.h"
45#endif
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +053046#include "qdf_trace.h"
47#include "qdf_status.h"
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080048#ifdef CONFIG_CNSS
49#include <net/cnss.h>
50#endif
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080051#include "hif_debug.h"
52#include "mp_dev.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",
296 }
297};
298
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800299/**
300 * hif_get_hw_name(): get a human readable name for the hardware
Komal Seelam91553ce2016-01-27 18:57:10 +0530301 * @info: Target Info
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800302 *
Komal Seelam91553ce2016-01-27 18:57:10 +0530303 * Return: human readable name for the underlying wifi hardware.
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800304 */
Komal Seelam91553ce2016-01-27 18:57:10 +0530305static const char *hif_get_hw_name(struct hif_target_info *info)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800306{
307 int i;
Komal Seelam91553ce2016-01-27 18:57:10 +0530308
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800309 for (i = 0; i < ARRAY_SIZE(qwlan_hw_list); i++) {
Komal Seelam91553ce2016-01-27 18:57:10 +0530310 if (info->target_version == qwlan_hw_list[i].id &&
311 info->target_revision == qwlan_hw_list[i].subid) {
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800312 return qwlan_hw_list[i].name;
313 }
314 }
315
316 return "Unknown Device";
317}
318
319/**
320 * hif_get_hw_info(): hif_get_hw_info
321 * @scn: scn
322 * @version: version
323 * @revision: revision
324 *
325 * Return: n/a
326 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530327void hif_get_hw_info(struct hif_opaque_softc *scn, u32 *version, u32 *revision,
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800328 const char **target_name)
329{
Komal Seelam91553ce2016-01-27 18:57:10 +0530330 struct hif_target_info *info = hif_get_target_info_handle(scn);
331 *version = info->target_version;
332 *revision = info->target_revision;
333 *target_name = hif_get_hw_name(info);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800334}
335
336/**
337 * hif_open(): hif_open
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530338 * @qdf_ctx: QDF Context
Komal Seelambd7c51d2016-02-24 10:27:30 +0530339 * @mode: Driver Mode
340 * @bus_type: Bus Type
341 * @cbk: CDS Callbacks
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800342 *
Komal Seelambd7c51d2016-02-24 10:27:30 +0530343 * API to open HIF Context
344 *
345 * Return: HIF Opaque Pointer
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800346 */
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530347struct hif_opaque_softc *hif_open(qdf_device_t qdf_ctx, uint32_t mode,
348 enum qdf_bus_type bus_type,
Komal Seelam75080122016-03-02 15:18:25 +0530349 struct hif_driver_state_callbacks *cbk)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800350{
Komal Seelam644263d2016-02-22 20:45:49 +0530351 struct hif_softc *scn;
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530352 QDF_STATUS status = QDF_STATUS_SUCCESS;
Houston Hoffman162164c2016-03-14 21:12:10 -0700353 int bus_context_size = hif_bus_get_context_size(bus_type);
354
355 if (bus_context_size == 0) {
356 HIF_ERROR("%s: context size 0 not allowed", __func__);
357 return NULL;
358 }
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800359
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530360 scn = (struct hif_softc *)qdf_mem_malloc(bus_context_size);
Komal Seelambd7c51d2016-02-24 10:27:30 +0530361 if (!scn) {
362 HIF_ERROR("%s: cannot alloc memory for HIF context of size:%d",
363 __func__, bus_context_size);
364 return GET_HIF_OPAQUE_HDL(scn);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800365 }
366
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530367 qdf_mem_zero(scn, bus_context_size);
Komal Seelambd7c51d2016-02-24 10:27:30 +0530368
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530369 scn->qdf_dev = qdf_ctx;
Komal Seelambd7c51d2016-02-24 10:27:30 +0530370 scn->hif_con_param = mode;
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530371 qdf_atomic_init(&scn->active_tasklet_cnt);
372 qdf_atomic_init(&scn->link_suspended);
373 qdf_atomic_init(&scn->tasklet_from_intr);
Komal Seelam75080122016-03-02 15:18:25 +0530374 qdf_mem_copy(&scn->callbacks, cbk, sizeof(struct hif_driver_state_callbacks));
Houston Hoffman3db96a42016-05-05 19:54:39 -0700375 scn->bus_type = bus_type;
Houston Hoffman3cfe6862016-01-08 10:33:55 -0800376 status = hif_bus_open(scn, bus_type);
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530377 if (status != QDF_STATUS_SUCCESS) {
Houston Hoffman3cfe6862016-01-08 10:33:55 -0800378 HIF_ERROR("%s: hif_bus_open error = %d, bus_type = %d",
379 __func__, status, bus_type);
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530380 qdf_mem_free(scn);
Komal Seelambd7c51d2016-02-24 10:27:30 +0530381 scn = NULL;
Houston Hoffman3cfe6862016-01-08 10:33:55 -0800382 }
383
Komal Seelambd7c51d2016-02-24 10:27:30 +0530384 return GET_HIF_OPAQUE_HDL(scn);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800385}
386
387/**
388 * hif_close(): hif_close
389 * @hif_ctx: hif_ctx
390 *
391 * Return: n/a
392 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530393void hif_close(struct hif_opaque_softc *hif_ctx)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800394{
Komal Seelam644263d2016-02-22 20:45:49 +0530395 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800396
397 if (scn == NULL) {
Komal Seelam5584a7c2016-02-24 19:22:48 +0530398 HIF_ERROR("%s: hif_opaque_softc is NULL", __func__);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800399 return;
400 }
401
402 if (scn->athdiag_procfs_inited) {
403 athdiag_procfs_remove();
404 scn->athdiag_procfs_inited = false;
405 }
406
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800407 hif_bus_close(scn);
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530408 qdf_mem_free(scn);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800409}
410
411/**
412 * hif_enable(): hif_enable
413 * @hif_ctx: hif_ctx
414 * @dev: dev
415 * @bdev: bus dev
416 * @bid: bus ID
417 * @bus_type: bus type
418 * @type: enable type
419 *
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530420 * Return: QDF_STATUS
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800421 */
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530422QDF_STATUS hif_enable(struct hif_opaque_softc *hif_ctx, struct device *dev,
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800423 void *bdev, const hif_bus_id *bid,
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530424 enum qdf_bus_type bus_type,
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800425 enum hif_enable_type type)
426{
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530427 QDF_STATUS status;
Komal Seelam644263d2016-02-22 20:45:49 +0530428 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800429
430 if (scn == NULL) {
431 HIF_ERROR("%s: hif_ctx = NULL", __func__);
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530432 return QDF_STATUS_E_NULL_VALUE;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800433 }
434
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800435 status = hif_enable_bus(scn, dev, bdev, bid, type);
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530436 if (status != QDF_STATUS_SUCCESS) {
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800437 HIF_ERROR("%s: hif_enable_bus error = %d",
438 __func__, status);
439 return status;
440 }
441
442 if (ADRASTEA_BU)
Komal Seelamf8600682016-02-02 18:17:13 +0530443 hif_vote_link_up(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800444
Houston Hoffman108da402016-03-14 21:11:24 -0700445 if (hif_bus_configure(scn)) {
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800446 HIF_ERROR("%s: Target probe failed.", __func__);
Vishwajith Upendra3f78aa62016-02-09 17:53:02 +0530447 hif_disable_bus(scn);
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530448 status = QDF_STATUS_E_FAILURE;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800449 return status;
450 }
Houston Hoffman108da402016-03-14 21:11:24 -0700451
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800452 /*
453 * Flag to avoid potential unallocated memory access from MSI
454 * interrupt handler which could get scheduled as soon as MSI
455 * is enabled, i.e to take care of the race due to the order
456 * in where MSI is enabled before the memory, that will be
457 * in interrupt handlers, is allocated.
458 */
459
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800460 scn->hif_init_done = true;
461
462 HIF_TRACE("%s: X OK", __func__);
463
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530464 return QDF_STATUS_SUCCESS;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800465}
466
Komal Seelam5584a7c2016-02-24 19:22:48 +0530467void hif_disable(struct hif_opaque_softc *hif_ctx, enum hif_disable_type type)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800468{
Komal Seelam644263d2016-02-22 20:45:49 +0530469 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800470
471 if (!scn)
472 return;
473
474 hif_nointrs(scn);
475 if (scn->hif_init_done == false)
Poddar, Siddarthe41943f2016-04-27 15:33:48 +0530476 hif_shutdown_device(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800477 else
Komal Seelam644263d2016-02-22 20:45:49 +0530478 hif_stop(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800479
480 if (ADRASTEA_BU)
Komal Seelamf8600682016-02-02 18:17:13 +0530481 hif_vote_link_down(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800482
Vishwajith Upendra3f78aa62016-02-09 17:53:02 +0530483 hif_disable_bus(scn);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800484
Komal Seelambd7c51d2016-02-24 10:27:30 +0530485 hif_wlan_disable(scn);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800486
487 scn->notice_send = false;
488
489 HIF_INFO("%s: X", __func__);
490}
491
492
493/**
Govind Singh2443fb32016-01-13 17:44:48 +0530494 * hif_crash_shutdown_dump_bus_register() - dump bus registers
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800495 * @hif_ctx: hif_ctx
496 *
497 * Return: n/a
498 */
499#if defined(TARGET_RAMDUMP_AFTER_KERNEL_PANIC) \
Houston Hoffmanbc693492016-03-14 21:11:41 -0700500&& defined(DEBUG)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800501
Govind Singh2443fb32016-01-13 17:44:48 +0530502static void hif_crash_shutdown_dump_bus_register(void *hif_ctx)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800503{
Komal Seelam5584a7c2016-02-24 19:22:48 +0530504 struct hif_opaque_softc *scn = hif_ctx;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800505
Govind Singh2443fb32016-01-13 17:44:48 +0530506 if (hif_check_soc_status(scn))
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800507 return;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800508
Govind Singh2443fb32016-01-13 17:44:48 +0530509 if (hif_dump_registers(scn))
510 HIF_ERROR("Failed to dump bus registers!");
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800511}
512
513/**
514 * hif_crash_shutdown(): hif_crash_shutdown
515 *
516 * This function is called by the platform driver to dump CE registers
517 *
518 * @hif_ctx: hif_ctx
519 *
520 * Return: n/a
521 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530522void hif_crash_shutdown(struct hif_opaque_softc *hif_ctx)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800523{
Komal Seelam644263d2016-02-22 20:45:49 +0530524 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800525
Houston Hoffmanbc693492016-03-14 21:11:41 -0700526 if (!hif_ctx)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800527 return;
528
Houston Hoffmanbc693492016-03-14 21:11:41 -0700529 if (scn->bus_type == QDF_BUS_TYPE_SNOC) {
530 HIF_INFO_MED("%s: RAM dump disabled for bustype %d",
531 __func__, scn->bus_type);
532 return;
533 }
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800534
Komal Seelam6ee55902016-04-11 17:11:07 +0530535 if (TARGET_STATUS_RESET == scn->target_status) {
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800536 HIF_INFO_MED("%s: Target is already asserted, ignore!",
537 __func__);
538 return;
539 }
540
Komal Seelambd7c51d2016-02-24 10:27:30 +0530541 if (hif_is_load_or_unload_in_progress(scn)) {
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800542 HIF_ERROR("%s: Load/unload is in progress, ignore!", __func__);
543 return;
544 }
545
Govind Singh2443fb32016-01-13 17:44:48 +0530546 hif_crash_shutdown_dump_bus_register(hif_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800547
Komal Seelam644263d2016-02-22 20:45:49 +0530548 if (ol_copy_ramdump(hif_ctx))
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800549 goto out;
550
551 HIF_INFO_MED("%s: RAM dump collecting completed!", __func__);
552
553out:
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800554 return;
555}
556#else
Komal Seelam5584a7c2016-02-24 19:22:48 +0530557void hif_crash_shutdown(struct hif_opaque_softc *hif_ctx)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800558{
559 HIF_INFO_MED("%s: Collecting target RAM dump disabled",
560 __func__);
561 return;
562}
563#endif /* TARGET_RAMDUMP_AFTER_KERNEL_PANIC */
564
565#ifdef QCA_WIFI_3_0
566/**
567 * hif_check_fw_reg(): hif_check_fw_reg
568 * @scn: scn
569 * @state:
570 *
571 * Return: int
572 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530573int hif_check_fw_reg(struct hif_opaque_softc *scn)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800574{
575 return 0;
576}
577#endif
578
579#ifdef IPA_OFFLOAD
580/**
581 * hif_read_phy_mem_base(): hif_read_phy_mem_base
582 * @scn: scn
583 * @phy_mem_base: physical mem base
584 *
585 * Return: n/a
586 */
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530587void hif_read_phy_mem_base(struct hif_softc *scn, qdf_dma_addr_t *phy_mem_base)
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800588{
589 *phy_mem_base = scn->mem_pa;
590}
591#endif /* IPA_OFFLOAD */
592
593/**
594 * hif_get_device_type(): hif_get_device_type
595 * @device_id: device_id
596 * @revision_id: revision_id
597 * @hif_type: returned hif_type
598 * @target_type: returned target_type
599 *
600 * Return: int
601 */
602int hif_get_device_type(uint32_t device_id,
603 uint32_t revision_id,
604 uint32_t *hif_type, uint32_t *target_type)
605{
606 int ret = 0;
607
608 switch (device_id) {
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800609 case ADRASTEA_DEVICE_ID:
610 case ADRASTEA_DEVICE_ID_P2_E12:
611
612 *hif_type = HIF_TYPE_ADRASTEA;
613 *target_type = TARGET_TYPE_ADRASTEA;
614 break;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800615
616 case AR9888_DEVICE_ID:
617 *hif_type = HIF_TYPE_AR9888;
618 *target_type = TARGET_TYPE_AR9888;
619 break;
620
621 case AR6320_DEVICE_ID:
622 switch (revision_id) {
623 case AR6320_FW_1_1:
624 case AR6320_FW_1_3:
625 *hif_type = HIF_TYPE_AR6320;
626 *target_type = TARGET_TYPE_AR6320;
627 break;
628
629 case AR6320_FW_2_0:
630 case AR6320_FW_3_0:
631 case AR6320_FW_3_2:
632 *hif_type = HIF_TYPE_AR6320V2;
633 *target_type = TARGET_TYPE_AR6320V2;
634 break;
635
636 default:
637 HIF_ERROR("%s: error - dev_id = 0x%x, rev_id = 0x%x",
638 __func__, device_id, revision_id);
639 ret = -ENODEV;
640 goto end;
641 }
642 break;
643
Houston Hoffmanfb698ef2016-05-05 19:50:44 -0700644 case AR9887_DEVICE_ID:
645 *hif_type = HIF_TYPE_AR9888;
646 *target_type = TARGET_TYPE_AR9888;
Houston Hoffmanc50572b2016-06-08 19:49:46 -0700647 HIF_INFO(" *********** AR9887 **************");
Houston Hoffmanfb698ef2016-05-05 19:50:44 -0700648 break;
649
650 case QCA9984_DEVICE_ID:
651 *hif_type = HIF_TYPE_QCA9984;
652 *target_type = TARGET_TYPE_QCA9984;
Houston Hoffmanc50572b2016-06-08 19:49:46 -0700653 HIF_INFO(" *********** QCA9984 *************");
Houston Hoffmanfb698ef2016-05-05 19:50:44 -0700654 break;
655
656 case QCA9888_DEVICE_ID:
657 *hif_type = HIF_TYPE_QCA9888;
658 *target_type = TARGET_TYPE_QCA9888;
Houston Hoffmanc50572b2016-06-08 19:49:46 -0700659 HIF_INFO(" *********** QCA9888 *************");
Houston Hoffmanfb698ef2016-05-05 19:50:44 -0700660 break;
661
662 case AR900B_DEVICE_ID:
663 *hif_type = HIF_TYPE_AR900B;
664 *target_type = TARGET_TYPE_AR900B;
Houston Hoffmanc50572b2016-06-08 19:49:46 -0700665 HIF_INFO(" *********** AR900B *************");
Houston Hoffmanfb698ef2016-05-05 19:50:44 -0700666 break;
667
Houston Hoffman3db96a42016-05-05 19:54:39 -0700668 case IPQ4019_DEVICE_ID:
669 *hif_type = HIF_TYPE_IPQ4019;
670 *target_type = TARGET_TYPE_IPQ4019;
Houston Hoffmanc50572b2016-06-08 19:49:46 -0700671 HIF_INFO(" *********** IPQ4019 *************");
Houston Hoffman3db96a42016-05-05 19:54:39 -0700672 break;
673
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800674 default:
675 HIF_ERROR("%s: Unsupported device ID!", __func__);
676 ret = -ENODEV;
677 break;
678 }
679end:
680 return ret;
681}
Komal Seelam91553ce2016-01-27 18:57:10 +0530682
683/**
Houston Hoffman26352592016-03-14 21:11:43 -0700684 * hif_needs_bmi() - return true if the soc needs bmi through the driver
685 * @hif_ctx: hif context
686 *
687 * Return: true if the soc needs driver bmi otherwise false
688 */
689bool hif_needs_bmi(struct hif_opaque_softc *hif_ctx)
690{
691 struct hif_softc *hif_sc = HIF_GET_SOFTC(hif_ctx);
692 return hif_sc->bus_type != QDF_BUS_TYPE_SNOC;
693}
694
695/**
Houston Hoffman60a1eeb2016-03-14 21:11:44 -0700696 * hif_get_bus_type() - return the bus type
697 *
698 * Return: enum qdf_bus_type
699 */
700enum qdf_bus_type hif_get_bus_type(struct hif_opaque_softc *hif_hdl)
701{
702 struct hif_softc *scn = HIF_GET_SOFTC(hif_hdl);
703 return scn->bus_type;
704}
705
706/**
Komal Seelam91553ce2016-01-27 18:57:10 +0530707 * Target info and ini parameters are global to the driver
708 * Hence these structures are exposed to all the modules in
709 * the driver and they don't need to maintains multiple copies
710 * of the same info, instead get the handle from hif and
711 * modify them in hif
712 */
713
714/**
715 * hif_get_ini_handle() - API to get hif_config_param handle
Komal Seelam644263d2016-02-22 20:45:49 +0530716 * @hif_ctx: HIF Context
Komal Seelam91553ce2016-01-27 18:57:10 +0530717 *
718 * Return: pointer to hif_config_info
719 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530720struct hif_config_info *hif_get_ini_handle(struct hif_opaque_softc *hif_ctx)
Komal Seelam91553ce2016-01-27 18:57:10 +0530721{
Komal Seelam644263d2016-02-22 20:45:49 +0530722 struct hif_softc *sc = HIF_GET_SOFTC(hif_ctx);
723
724 return &sc->hif_config;
Komal Seelam91553ce2016-01-27 18:57:10 +0530725}
726
727/**
728 * hif_get_target_info_handle() - API to get hif_target_info handle
Komal Seelam644263d2016-02-22 20:45:49 +0530729 * @hif_ctx: HIF context
Komal Seelam91553ce2016-01-27 18:57:10 +0530730 *
731 * Return: Pointer to hif_target_info
732 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530733struct hif_target_info *hif_get_target_info_handle(
734 struct hif_opaque_softc *hif_ctx)
Komal Seelam91553ce2016-01-27 18:57:10 +0530735{
Komal Seelam644263d2016-02-22 20:45:49 +0530736 struct hif_softc *sc = HIF_GET_SOFTC(hif_ctx);
737
738 return &sc->target_info;
739
Komal Seelam91553ce2016-01-27 18:57:10 +0530740}
Komal Seelamc92a0cf2016-02-22 20:43:52 +0530741
742#if defined(FEATURE_LRO)
743/**
744 * hif_lro_flush_cb_register - API to register for LRO Flush Callback
745 * @scn: HIF Context
746 * @handler: Function pointer to be called by HIF
747 * @data: Private data to be used by the module registering to HIF
748 *
749 * Return: void
750 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530751void hif_lro_flush_cb_register(struct hif_opaque_softc *scn,
752 void (handler)(void *), void *data)
Komal Seelamc92a0cf2016-02-22 20:43:52 +0530753{
754 ce_lro_flush_cb_register(scn, handler, data);
755}
756
757/**
758 * hif_lro_flush_cb_deregister - API to deregister for LRO Flush Callbacks
759 * @scn: HIF Context
760 *
761 * Return: void
762 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530763void hif_lro_flush_cb_deregister(struct hif_opaque_softc *scn)
Komal Seelamc92a0cf2016-02-22 20:43:52 +0530764{
765 ce_lro_flush_cb_deregister(scn);
766}
767#endif
Komal Seelam644263d2016-02-22 20:45:49 +0530768
769/**
770 * hif_get_target_status - API to get target status
771 * @hif_ctx: HIF Context
772 *
Komal Seelam6ee55902016-04-11 17:11:07 +0530773 * Return: enum hif_target_status
Komal Seelam644263d2016-02-22 20:45:49 +0530774 */
Komal Seelam6ee55902016-04-11 17:11:07 +0530775enum hif_target_status hif_get_target_status(struct hif_opaque_softc *hif_ctx)
Komal Seelam644263d2016-02-22 20:45:49 +0530776{
777 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
778
779 return scn->target_status;
780}
781
782/**
Komal Seelama5911d32016-02-24 19:21:59 +0530783 * hif_set_target_status() - API to set target status
Komal Seelam644263d2016-02-22 20:45:49 +0530784 * @hif_ctx: HIF Context
785 * @status: Target Status
786 *
787 * Return: void
788 */
Komal Seelam6ee55902016-04-11 17:11:07 +0530789void hif_set_target_status(struct hif_opaque_softc *hif_ctx, enum
790 hif_target_status status)
Komal Seelam644263d2016-02-22 20:45:49 +0530791{
792 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
793
794 scn->target_status = status;
795}
Komal Seelama5911d32016-02-24 19:21:59 +0530796
797/**
798 * hif_init_ini_config() - API to initialize HIF configuration parameters
799 * @hif_ctx: HIF Context
800 * @cfg: HIF Configuration
801 *
802 * Return: void
803 */
Komal Seelam5584a7c2016-02-24 19:22:48 +0530804void hif_init_ini_config(struct hif_opaque_softc *hif_ctx,
805 struct hif_config_info *cfg)
Komal Seelama5911d32016-02-24 19:21:59 +0530806{
807 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
808
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530809 qdf_mem_copy(&scn->hif_config, cfg, sizeof(struct hif_config_info));
Komal Seelama5911d32016-02-24 19:21:59 +0530810}
Komal Seelambd7c51d2016-02-24 10:27:30 +0530811
812/**
813 * hif_get_conparam() - API to get driver mode in HIF
814 * @scn: HIF Context
815 *
816 * Return: driver mode of operation
817 */
818uint32_t hif_get_conparam(struct hif_softc *scn)
819{
820 if (!scn)
821 return 0;
822
823 return scn->hif_con_param;
824}
825
826/**
827 * hif_get_callbacks_handle() - API to get callbacks Handle
828 * @scn: HIF Context
829 *
830 * Return: pointer to HIF Callbacks
831 */
Komal Seelam75080122016-03-02 15:18:25 +0530832struct hif_driver_state_callbacks *hif_get_callbacks_handle(struct hif_softc *scn)
Komal Seelambd7c51d2016-02-24 10:27:30 +0530833{
834 return &scn->callbacks;
835}
836
837/**
838 * hif_is_driver_unloading() - API to query upper layers if driver is unloading
839 * @scn: HIF Context
840 *
841 * Return: True/False
842 */
843bool hif_is_driver_unloading(struct hif_softc *scn)
844{
Komal Seelam75080122016-03-02 15:18:25 +0530845 struct hif_driver_state_callbacks *cbk = hif_get_callbacks_handle(scn);
Komal Seelambd7c51d2016-02-24 10:27:30 +0530846
847 if (cbk && cbk->is_driver_unloading)
848 return cbk->is_driver_unloading(cbk->context);
849
850 return false;
851}
852
853/**
854 * hif_is_load_or_unload_in_progress() - API to query upper layers if
855 * load/unload in progress
856 * @scn: HIF Context
857 *
858 * Return: True/False
859 */
860bool hif_is_load_or_unload_in_progress(struct hif_softc *scn)
861{
Komal Seelam75080122016-03-02 15:18:25 +0530862 struct hif_driver_state_callbacks *cbk = hif_get_callbacks_handle(scn);
Komal Seelambd7c51d2016-02-24 10:27:30 +0530863
864 if (cbk && cbk->is_load_unload_in_progress)
865 return cbk->is_load_unload_in_progress(cbk->context);
866
867 return false;
868}
869
870/**
871 * hif_is_recovery_in_progress() - API to query upper layers if recovery in
872 * progress
873 * @scn: HIF Context
874 *
875 * Return: True/False
876 */
877bool hif_is_recovery_in_progress(struct hif_softc *scn)
878{
Komal Seelam75080122016-03-02 15:18:25 +0530879 struct hif_driver_state_callbacks *cbk = hif_get_callbacks_handle(scn);
Komal Seelambd7c51d2016-02-24 10:27:30 +0530880
881 if (cbk && cbk->is_recovery_in_progress)
882 return cbk->is_recovery_in_progress(cbk->context);
883
884 return false;
885}
Houston Hoffman56e0d702016-05-05 17:48:06 -0700886
887/**
888 * hif_batch_send() - API to access hif specific function
889 * ce_batch_send.
890 * @osc: HIF Context
891 * @msdu : list of msdus to be sent
892 * @transfer_id : transfer id
893 * @len : donwloaded length
894 *
895 * Return: list of msds not sent
896 */
897qdf_nbuf_t hif_batch_send(struct hif_opaque_softc *osc, qdf_nbuf_t msdu,
898 uint32_t transfer_id, u_int32_t len, uint32_t sendhead)
899{
900 void *ce_tx_hdl = hif_get_ce_handle(osc, CE_HTT_TX_CE);
901 return ce_batch_send((struct CE_handle *)ce_tx_hdl, msdu, transfer_id,
902 len, sendhead);
903}
904
905/**
906 * hif_update_tx_ring() - API to access hif specific function
907 * ce_update_tx_ring.
908 * @osc: HIF Context
909 * @num_htt_cmpls : number of htt compl received.
910 *
911 * Return: void
912 */
913void hif_update_tx_ring(struct hif_opaque_softc *osc, u_int32_t num_htt_cmpls)
914{
915 void *ce_tx_hdl = hif_get_ce_handle(osc, CE_HTT_TX_CE);
916 ce_update_tx_ring(ce_tx_hdl, num_htt_cmpls);
917}
918
919
920/**
921 * hif_send_single() - API to access hif specific function
922 * ce_send_single.
923 * @osc: HIF Context
924 * @msdu : msdu to be sent
925 * @transfer_id: transfer id
926 * @len : downloaded length
927 *
928 * Return: msdu sent status
929 */
930int hif_send_single(struct hif_opaque_softc *osc, qdf_nbuf_t msdu, uint32_t
931 transfer_id, u_int32_t len)
932{
933 void *ce_tx_hdl = hif_get_ce_handle(osc, CE_HTT_TX_CE);
934 return ce_send_single((struct CE_handle *)ce_tx_hdl, msdu, transfer_id,
935 len);
936}
937
938/**
939 * hif_send_fast() - API to access hif specific function
940 * ce_send_fast.
941 * @osc: HIF Context
942 * @msdu : array of msdus to be sent
943 * @num_msdus : number of msdus in an array
944 * @transfer_id: transfer id
Nirav Shahda0881a2016-05-16 10:45:16 +0530945 * @download_len: download length
Houston Hoffman56e0d702016-05-05 17:48:06 -0700946 *
947 * Return: No. of packets that could be sent
948 */
Nirav Shahda0881a2016-05-16 10:45:16 +0530949int hif_send_fast(struct hif_opaque_softc *osc, qdf_nbuf_t nbuf,
950 uint32_t transfer_id, uint32_t download_len)
Houston Hoffman56e0d702016-05-05 17:48:06 -0700951{
952 void *ce_tx_hdl = hif_get_ce_handle(osc, CE_HTT_TX_CE);
Nirav Shahda0881a2016-05-16 10:45:16 +0530953 return ce_send_fast((struct CE_handle *)ce_tx_hdl, nbuf,
954 transfer_id, download_len);
Houston Hoffman56e0d702016-05-05 17:48:06 -0700955}
956
957/**
958 * hif_reg_write() - API to access hif specific function
959 * hif_write32_mb.
960 * @hif_ctx : HIF Context
961 * @offset : offset on which value has to be written
962 * @value : value to be written
963 *
964 * Return: None
965 */
966void hif_reg_write(struct hif_opaque_softc *hif_ctx, uint32_t offset,
967 uint32_t value)
968{
969 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
970 hif_write32_mb(scn->mem + offset, value);
971
972}
973
974/**
975 * hif_reg_read() - API to access hif specific function
976 * hif_read32_mb.
977 * @hif_ctx : HIF Context
978 * @offset : offset from which value has to be read
979 *
980 * Return: Read value
981 */
982uint32_t hif_reg_read(struct hif_opaque_softc *hif_ctx, uint32_t offset)
983{
984
985 struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
986 return hif_read32_mb(scn->mem + offset);
987}