blob: c0af85045dbeac92392b819b2daf3db2274f69f8 [file] [log] [blame]
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -08001/*
Houston Hoffmanebc68142016-01-18 15:38:27 -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
28#ifndef __CE_H__
29#define __CE_H__
30
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +053031#include "qdf_atomic.h"
32#include "qdf_lock.h"
Komal Seelam644263d2016-02-22 20:45:49 +053033#include "hif_main.h"
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080034
35#define CE_HTT_T2H_MSG 1
36#define CE_HTT_H2T_MSG 4
37
Govind Singh2443fb32016-01-13 17:44:48 +053038#define CE_OFFSET 0x00000400
39#define CE_USEFUL_SIZE 0x00000058
40
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080041/**
42 * enum ce_id_type
43 *
44 * @ce_id_type: Copy engine ID
45 */
46enum ce_id_type {
47 CE_ID_0,
48 CE_ID_1,
49 CE_ID_2,
50 CE_ID_3,
51 CE_ID_4,
52 CE_ID_5,
53 CE_ID_6,
54 CE_ID_7,
55 CE_ID_8,
56 CE_ID_9,
57 CE_ID_10,
58 CE_ID_11,
59 CE_ID_MAX
60};
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080061
62enum ol_ath_hif_pkt_ecodes {
63 HIF_PIPE_NO_RESOURCE = 0
64};
65
66struct HIF_CE_state;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080067
68/* Per-pipe state. */
69struct HIF_CE_pipe_info {
70 /* Handle of underlying Copy Engine */
71 struct CE_handle *ce_hdl;
72
73 /* Our pipe number; facilitiates use of pipe_info ptrs. */
74 uint8_t pipe_num;
75
76 /* Convenience back pointer to HIF_CE_state. */
77 struct HIF_CE_state *HIF_CE_state;
78
79 /* Instantaneous number of receive buffers that should be posted */
80 atomic_t recv_bufs_needed;
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +053081 qdf_size_t buf_sz;
82 qdf_spinlock_t recv_bufs_needed_lock;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080083
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +053084 qdf_spinlock_t completion_freeq_lock;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080085 /* Limit the number of outstanding send requests. */
86 int num_sends_allowed;
Houston Hoffman9c12f7f2015-09-28 16:52:14 -070087
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080088 /* adding three counts for debugging ring buffer errors */
89 uint32_t nbuf_alloc_err_count;
90 uint32_t nbuf_dma_err_count;
91 uint32_t nbuf_ce_enqueue_err_count;
92};
93
94/**
95 * struct ce_tasklet_entry
96 *
97 * @intr_tq: intr_tq
98 * @ce_id: ce_id
99 * @inited: inited
100 * @hif_ce_state: hif_ce_state
101 * @from_irq: from_irq
102 */
103struct ce_tasklet_entry {
104 struct tasklet_struct intr_tq;
105 enum ce_id_type ce_id;
106 bool inited;
107 void *hif_ce_state;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800108};
109
110struct HIF_CE_state {
Komal Seelam644263d2016-02-22 20:45:49 +0530111 struct hif_softc ol_sc;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800112 bool started;
113 struct ce_tasklet_entry tasklets[CE_COUNT_MAX];
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530114 qdf_spinlock_t keep_awake_lock;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800115 unsigned int keep_awake_count;
116 bool verified_awake;
117 bool fake_sleep;
Chouhan, Anuragfc06aa92016-03-03 19:05:05 +0530118 qdf_timer_t sleep_timer;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800119 bool sleep_timer_init;
120 unsigned long sleep_ticks;
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800121
122 /* Per-pipe state. */
123 struct HIF_CE_pipe_info pipe_info[CE_COUNT_MAX];
124 /* to be activated after BMI_DONE */
125 struct hif_msg_callbacks msg_callbacks_pending;
126 /* current msg callbacks in use */
127 struct hif_msg_callbacks msg_callbacks_current;
128
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800129 /* Target address used to signal a pending firmware event */
130 uint32_t fw_indicator_address;
131
132 /* Copy Engine used for Diagnostic Accesses */
133 struct CE_handle *ce_diag;
134};
Komal Seelam644263d2016-02-22 20:45:49 +0530135int hif_dump_ce_registers(struct hif_softc *scn);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800136#endif /* __CE_H__ */