blob: 064a324b5228d08e6a2975f17b0e4b5369a32cfd [file] [log] [blame]
Sujithfb9987d2010-03-17 14:25:25 +05301/*
2 * Copyright (c) 2010 Atheros Communications Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#ifndef HTC_HST_H
18#define HTC_HST_H
19
20struct ath9k_htc_priv;
21struct htc_target;
22struct ath9k_htc_tx_ctl;
23
24enum ath9k_hif_transports {
25 ATH9K_HIF_USB,
26};
27
28struct ath9k_htc_hif {
29 struct list_head list;
30 const enum ath9k_hif_transports transport;
31 const char *name;
32
33 u8 control_dl_pipe;
34 u8 control_ul_pipe;
35
36 void (*start) (void *hif_handle, u8 pipe);
37 void (*stop) (void *hif_handle, u8 pipe);
Sujith Manoharan40dc9e42011-04-13 11:24:31 +053038 int (*send) (void *hif_handle, u8 pipe, struct sk_buff *buf);
Sujithfb9987d2010-03-17 14:25:25 +053039};
40
41enum htc_endpoint_id {
42 ENDPOINT_UNUSED = -1,
43 ENDPOINT0 = 0,
44 ENDPOINT1 = 1,
45 ENDPOINT2 = 2,
46 ENDPOINT3 = 3,
47 ENDPOINT4 = 4,
48 ENDPOINT5 = 5,
49 ENDPOINT6 = 6,
50 ENDPOINT7 = 7,
51 ENDPOINT8 = 8,
52 ENDPOINT_MAX = 22
53};
54
55/* Htc frame hdr flags */
56#define HTC_FLAGS_RECV_TRAILER (1 << 1)
57
58struct htc_frame_hdr {
59 u8 endpoint_id;
60 u8 flags;
Sujith7f1f5a02010-04-16 11:54:03 +053061 __be16 payload_len;
Sujithfb9987d2010-03-17 14:25:25 +053062 u8 control[4];
63} __packed;
64
65struct htc_ready_msg {
Sujith7f1f5a02010-04-16 11:54:03 +053066 __be16 message_id;
67 __be16 credits;
68 __be16 credit_size;
Sujithfb9987d2010-03-17 14:25:25 +053069 u8 max_endpoints;
70 u8 pad;
71} __packed;
72
73struct htc_config_pipe_msg {
Sujith7f1f5a02010-04-16 11:54:03 +053074 __be16 message_id;
Sujithfb9987d2010-03-17 14:25:25 +053075 u8 pipe_id;
76 u8 credits;
77} __packed;
78
Sujithfb9987d2010-03-17 14:25:25 +053079struct htc_ep_callbacks {
80 void *priv;
81 void (*tx) (void *, struct sk_buff *, enum htc_endpoint_id, bool txok);
82 void (*rx) (void *, struct sk_buff *, enum htc_endpoint_id);
83};
84
85#define HTC_TX_QUEUE_SIZE 256
86
87struct htc_txq {
88 struct sk_buff *buf[HTC_TX_QUEUE_SIZE];
89 u32 txqdepth;
90 u16 txbuf_cnt;
91 u16 txq_head;
92 u16 txq_tail;
93};
94
95struct htc_endpoint {
96 u16 service_id;
97
98 struct htc_ep_callbacks ep_callbacks;
99 struct htc_txq htc_txq;
100 u32 max_txqdepth;
101 int max_msglen;
102
103 u8 ul_pipeid;
104 u8 dl_pipeid;
105};
106
107#define HTC_MAX_CONTROL_MESSAGE_LENGTH 255
108#define HTC_CONTROL_BUFFER_SIZE \
109 (HTC_MAX_CONTROL_MESSAGE_LENGTH + sizeof(struct htc_frame_hdr))
110
Sujithfb9987d2010-03-17 14:25:25 +0530111#define HTC_OP_START_WAIT BIT(0)
112#define HTC_OP_CONFIG_PIPE_CREDITS BIT(1)
113
114struct htc_target {
115 void *hif_dev;
116 struct ath9k_htc_priv *drv_priv;
117 struct device *dev;
118 struct ath9k_htc_hif *hif;
Sujith.Manoharan@atheros.com8116daf2010-05-11 17:03:36 +0530119 struct htc_endpoint endpoint[ENDPOINT_MAX];
Sujithfb9987d2010-03-17 14:25:25 +0530120 struct completion target_wait;
121 struct completion cmd_wait;
122 struct list_head list;
123 enum htc_endpoint_id conn_rsp_epid;
124 u16 credits;
125 u16 credit_size;
126 u8 htc_flags;
Sujith.Manoharan@atheros.comd8c49ff2010-05-11 16:24:43 +0530127 atomic_t tgt_ready;
Sujithfb9987d2010-03-17 14:25:25 +0530128};
129
130enum htc_msg_id {
131 HTC_MSG_READY_ID = 1,
132 HTC_MSG_CONNECT_SERVICE_ID,
133 HTC_MSG_CONNECT_SERVICE_RESPONSE_ID,
134 HTC_MSG_SETUP_COMPLETE_ID,
135 HTC_MSG_CONFIG_PIPE_ID,
136 HTC_MSG_CONFIG_PIPE_RESPONSE_ID,
137};
138
139struct htc_service_connreq {
140 u16 service_id;
141 u16 con_flags;
142 u32 max_send_qdepth;
143 struct htc_ep_callbacks ep_callbacks;
144};
145
146/* Current service IDs */
147
148enum htc_service_group_ids{
149 RSVD_SERVICE_GROUP = 0,
150 WMI_SERVICE_GROUP = 1,
151
152 HTC_SERVICE_GROUP_LAST = 255
153};
154
155#define MAKE_SERVICE_ID(group, index) \
156 (int)(((int)group << 8) | (int)(index))
157
158/* NOTE: service ID of 0x0000 is reserved and should never be used */
159#define HTC_CTRL_RSVD_SVC MAKE_SERVICE_ID(RSVD_SERVICE_GROUP, 1)
160#define HTC_LOOPBACK_RSVD_SVC MAKE_SERVICE_ID(RSVD_SERVICE_GROUP, 2)
161
162#define WMI_CONTROL_SVC MAKE_SERVICE_ID(WMI_SERVICE_GROUP, 0)
163#define WMI_BEACON_SVC MAKE_SERVICE_ID(WMI_SERVICE_GROUP, 1)
164#define WMI_CAB_SVC MAKE_SERVICE_ID(WMI_SERVICE_GROUP, 2)
165#define WMI_UAPSD_SVC MAKE_SERVICE_ID(WMI_SERVICE_GROUP, 3)
166#define WMI_MGMT_SVC MAKE_SERVICE_ID(WMI_SERVICE_GROUP, 4)
167#define WMI_DATA_VO_SVC MAKE_SERVICE_ID(WMI_SERVICE_GROUP, 5)
168#define WMI_DATA_VI_SVC MAKE_SERVICE_ID(WMI_SERVICE_GROUP, 6)
169#define WMI_DATA_BE_SVC MAKE_SERVICE_ID(WMI_SERVICE_GROUP, 7)
170#define WMI_DATA_BK_SVC MAKE_SERVICE_ID(WMI_SERVICE_GROUP, 8)
171
172struct htc_conn_svc_msg {
Sujith7f1f5a02010-04-16 11:54:03 +0530173 __be16 msg_id;
174 __be16 service_id;
175 __be16 con_flags;
Sujithfb9987d2010-03-17 14:25:25 +0530176 u8 dl_pipeid;
177 u8 ul_pipeid;
178 u8 svc_meta_len;
179 u8 pad;
180} __packed;
181
182/* connect response status codes */
183#define HTC_SERVICE_SUCCESS 0
184#define HTC_SERVICE_NOT_FOUND 1
185#define HTC_SERVICE_FAILED 2
186#define HTC_SERVICE_NO_RESOURCES 3
187#define HTC_SERVICE_NO_MORE_EP 4
188
189struct htc_conn_svc_rspmsg {
Sujith7f1f5a02010-04-16 11:54:03 +0530190 __be16 msg_id;
191 __be16 service_id;
Sujithfb9987d2010-03-17 14:25:25 +0530192 u8 status;
193 u8 endpoint_id;
Sujith7f1f5a02010-04-16 11:54:03 +0530194 __be16 max_msg_len;
Sujithfb9987d2010-03-17 14:25:25 +0530195 u8 svc_meta_len;
196 u8 pad;
197} __packed;
198
199struct htc_comp_msg {
Sujith7f1f5a02010-04-16 11:54:03 +0530200 __be16 msg_id;
Sujithfb9987d2010-03-17 14:25:25 +0530201} __packed;
202
203int htc_init(struct htc_target *target);
204int htc_connect_service(struct htc_target *target,
205 struct htc_service_connreq *service_connreq,
206 enum htc_endpoint_id *conn_rsp_eid);
Sujith Manoharand67ee532011-04-13 11:25:35 +0530207int htc_send(struct htc_target *target, struct sk_buff *skb);
208int htc_send_epid(struct htc_target *target, struct sk_buff *skb,
209 enum htc_endpoint_id epid);
Sujithfb9987d2010-03-17 14:25:25 +0530210void htc_stop(struct htc_target *target);
211void htc_start(struct htc_target *target);
212
213void ath9k_htc_rx_msg(struct htc_target *htc_handle,
214 struct sk_buff *skb, u32 len, u8 pipe_id);
215void ath9k_htc_txcompletion_cb(struct htc_target *htc_handle,
216 struct sk_buff *skb, bool txok);
217
Sujith.Manoharan@atheros.com47fce022010-05-11 16:24:41 +0530218struct htc_target *ath9k_htc_hw_alloc(void *hif_handle,
219 struct ath9k_htc_hif *hif,
220 struct device *dev);
Sujithfb9987d2010-03-17 14:25:25 +0530221void ath9k_htc_hw_free(struct htc_target *htc);
Sujith.Manoharan@atheros.com47fce022010-05-11 16:24:41 +0530222int ath9k_htc_hw_init(struct htc_target *target,
Rajkumar Manoharanfa6e15e2010-11-19 16:53:22 +0530223 struct device *dev, u16 devid, char *product,
224 u32 drv_info);
Sujithfb9987d2010-03-17 14:25:25 +0530225void ath9k_htc_hw_deinit(struct htc_target *target, bool hot_unplug);
226
227#endif /* HTC_HST_H */