blob: a0ff5b6370543809d8b715ec098986732d8f7809 [file] [log] [blame]
Sujithfb9987d2010-03-17 14:25:25 +05301/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2010-2011 Atheros Communications Inc.
Sujithfb9987d2010-03-17 14:25:25 +05303 *
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
Joe Perches516304b2012-03-18 17:30:52 -070017#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18
Sujithfb9987d2010-03-17 14:25:25 +053019#include "htc.h"
20
21static int htc_issue_send(struct htc_target *target, struct sk_buff* skb,
Sujith Manoharan40dc9e42011-04-13 11:24:31 +053022 u16 len, u8 flags, u8 epid)
23
Sujithfb9987d2010-03-17 14:25:25 +053024{
25 struct htc_frame_hdr *hdr;
26 struct htc_endpoint *endpoint = &target->endpoint[epid];
27 int status;
28
29 hdr = (struct htc_frame_hdr *)
30 skb_push(skb, sizeof(struct htc_frame_hdr));
31 hdr->endpoint_id = epid;
32 hdr->flags = flags;
33 hdr->payload_len = cpu_to_be16(len);
34
Sujith Manoharan40dc9e42011-04-13 11:24:31 +053035 status = target->hif->send(target->hif_dev, endpoint->ul_pipeid, skb);
36
Sujithfb9987d2010-03-17 14:25:25 +053037 return status;
38}
39
40static struct htc_endpoint *get_next_avail_ep(struct htc_endpoint *endpoint)
41{
42 enum htc_endpoint_id avail_epid;
43
Sujith.Manoharan@atheros.com8116daf2010-05-11 17:03:36 +053044 for (avail_epid = (ENDPOINT_MAX - 1); avail_epid > ENDPOINT0; avail_epid--)
Sujithfb9987d2010-03-17 14:25:25 +053045 if (endpoint[avail_epid].service_id == 0)
46 return &endpoint[avail_epid];
47 return NULL;
48}
49
50static u8 service_to_ulpipe(u16 service_id)
51{
52 switch (service_id) {
53 case WMI_CONTROL_SVC:
54 return 4;
55 case WMI_BEACON_SVC:
56 case WMI_CAB_SVC:
57 case WMI_UAPSD_SVC:
58 case WMI_MGMT_SVC:
59 case WMI_DATA_VO_SVC:
60 case WMI_DATA_VI_SVC:
61 case WMI_DATA_BE_SVC:
62 case WMI_DATA_BK_SVC:
63 return 1;
64 default:
65 return 0;
66 }
67}
68
69static u8 service_to_dlpipe(u16 service_id)
70{
71 switch (service_id) {
72 case WMI_CONTROL_SVC:
73 return 3;
74 case WMI_BEACON_SVC:
75 case WMI_CAB_SVC:
76 case WMI_UAPSD_SVC:
77 case WMI_MGMT_SVC:
78 case WMI_DATA_VO_SVC:
79 case WMI_DATA_VI_SVC:
80 case WMI_DATA_BE_SVC:
81 case WMI_DATA_BK_SVC:
82 return 2;
83 default:
84 return 0;
85 }
86}
87
88static void htc_process_target_rdy(struct htc_target *target,
89 void *buf)
90{
91 struct htc_endpoint *endpoint;
92 struct htc_ready_msg *htc_ready_msg = (struct htc_ready_msg *) buf;
93
Sujithfb9987d2010-03-17 14:25:25 +053094 target->credit_size = be16_to_cpu(htc_ready_msg->credit_size);
95
96 endpoint = &target->endpoint[ENDPOINT0];
97 endpoint->service_id = HTC_CTRL_RSVD_SVC;
98 endpoint->max_msglen = HTC_MAX_CONTROL_MESSAGE_LENGTH;
Sujith.Manoharan@atheros.comd8c49ff2010-05-11 16:24:43 +053099 atomic_inc(&target->tgt_ready);
Sujithfb9987d2010-03-17 14:25:25 +0530100 complete(&target->target_wait);
101}
102
103static void htc_process_conn_rsp(struct htc_target *target,
104 struct htc_frame_hdr *htc_hdr)
105{
106 struct htc_conn_svc_rspmsg *svc_rspmsg;
107 struct htc_endpoint *endpoint, *tmp_endpoint = NULL;
108 u16 service_id;
109 u16 max_msglen;
110 enum htc_endpoint_id epid, tepid;
111
112 svc_rspmsg = (struct htc_conn_svc_rspmsg *)
113 ((void *) htc_hdr + sizeof(struct htc_frame_hdr));
114
115 if (svc_rspmsg->status == HTC_SERVICE_SUCCESS) {
116 epid = svc_rspmsg->endpoint_id;
117 service_id = be16_to_cpu(svc_rspmsg->service_id);
118 max_msglen = be16_to_cpu(svc_rspmsg->max_msg_len);
119 endpoint = &target->endpoint[epid];
120
Sujith.Manoharan@atheros.com8116daf2010-05-11 17:03:36 +0530121 for (tepid = (ENDPOINT_MAX - 1); tepid > ENDPOINT0; tepid--) {
Sujithfb9987d2010-03-17 14:25:25 +0530122 tmp_endpoint = &target->endpoint[tepid];
123 if (tmp_endpoint->service_id == service_id) {
124 tmp_endpoint->service_id = 0;
125 break;
126 }
127 }
128
Sujith.Manoharan@atheros.com8116daf2010-05-11 17:03:36 +0530129 if (tepid == ENDPOINT0)
Sujithfb9987d2010-03-17 14:25:25 +0530130 return;
131
132 endpoint->service_id = service_id;
133 endpoint->max_txqdepth = tmp_endpoint->max_txqdepth;
134 endpoint->ep_callbacks = tmp_endpoint->ep_callbacks;
135 endpoint->ul_pipeid = tmp_endpoint->ul_pipeid;
136 endpoint->dl_pipeid = tmp_endpoint->dl_pipeid;
137 endpoint->max_msglen = max_msglen;
138 target->conn_rsp_epid = epid;
139 complete(&target->cmd_wait);
140 } else {
141 target->conn_rsp_epid = ENDPOINT_UNUSED;
142 }
143}
144
145static int htc_config_pipe_credits(struct htc_target *target)
146{
147 struct sk_buff *skb;
148 struct htc_config_pipe_msg *cp_msg;
149 int ret, time_left;
150
Ming Lei0fa35a52010-04-13 00:29:15 +0800151 skb = alloc_skb(50 + sizeof(struct htc_frame_hdr), GFP_ATOMIC);
Sujithfb9987d2010-03-17 14:25:25 +0530152 if (!skb) {
153 dev_err(target->dev, "failed to allocate send buffer\n");
154 return -ENOMEM;
155 }
156 skb_reserve(skb, sizeof(struct htc_frame_hdr));
157
158 cp_msg = (struct htc_config_pipe_msg *)
159 skb_put(skb, sizeof(struct htc_config_pipe_msg));
160
161 cp_msg->message_id = cpu_to_be16(HTC_MSG_CONFIG_PIPE_ID);
162 cp_msg->pipe_id = USB_WLAN_TX_PIPE;
Sujith6267dc72010-06-02 15:53:54 +0530163 cp_msg->credits = target->credits;
Sujithfb9987d2010-03-17 14:25:25 +0530164
165 target->htc_flags |= HTC_OP_CONFIG_PIPE_CREDITS;
166
Sujith Manoharan40dc9e42011-04-13 11:24:31 +0530167 ret = htc_issue_send(target, skb, skb->len, 0, ENDPOINT0);
Sujithfb9987d2010-03-17 14:25:25 +0530168 if (ret)
169 goto err;
170
171 time_left = wait_for_completion_timeout(&target->cmd_wait, HZ);
172 if (!time_left) {
173 dev_err(target->dev, "HTC credit config timeout\n");
174 return -ETIMEDOUT;
175 }
176
177 return 0;
178err:
Ming Lei0fa35a52010-04-13 00:29:15 +0800179 kfree_skb(skb);
Sujithfb9987d2010-03-17 14:25:25 +0530180 return -EINVAL;
181}
182
183static int htc_setup_complete(struct htc_target *target)
184{
185 struct sk_buff *skb;
186 struct htc_comp_msg *comp_msg;
187 int ret = 0, time_left;
188
Ming Lei0fa35a52010-04-13 00:29:15 +0800189 skb = alloc_skb(50 + sizeof(struct htc_frame_hdr), GFP_ATOMIC);
Sujithfb9987d2010-03-17 14:25:25 +0530190 if (!skb) {
191 dev_err(target->dev, "failed to allocate send buffer\n");
192 return -ENOMEM;
193 }
194 skb_reserve(skb, sizeof(struct htc_frame_hdr));
195
196 comp_msg = (struct htc_comp_msg *)
197 skb_put(skb, sizeof(struct htc_comp_msg));
198 comp_msg->msg_id = cpu_to_be16(HTC_MSG_SETUP_COMPLETE_ID);
199
200 target->htc_flags |= HTC_OP_START_WAIT;
201
Sujith Manoharan40dc9e42011-04-13 11:24:31 +0530202 ret = htc_issue_send(target, skb, skb->len, 0, ENDPOINT0);
Sujithfb9987d2010-03-17 14:25:25 +0530203 if (ret)
204 goto err;
205
206 time_left = wait_for_completion_timeout(&target->cmd_wait, HZ);
207 if (!time_left) {
208 dev_err(target->dev, "HTC start timeout\n");
209 return -ETIMEDOUT;
210 }
211
212 return 0;
213
214err:
Ming Lei0fa35a52010-04-13 00:29:15 +0800215 kfree_skb(skb);
Sujithfb9987d2010-03-17 14:25:25 +0530216 return -EINVAL;
217}
218
219/* HTC APIs */
220
221int htc_init(struct htc_target *target)
222{
223 int ret;
224
225 ret = htc_config_pipe_credits(target);
226 if (ret)
227 return ret;
228
229 return htc_setup_complete(target);
230}
231
232int htc_connect_service(struct htc_target *target,
233 struct htc_service_connreq *service_connreq,
234 enum htc_endpoint_id *conn_rsp_epid)
235{
236 struct sk_buff *skb;
237 struct htc_endpoint *endpoint;
238 struct htc_conn_svc_msg *conn_msg;
239 int ret, time_left;
240
241 /* Find an available endpoint */
242 endpoint = get_next_avail_ep(target->endpoint);
243 if (!endpoint) {
244 dev_err(target->dev, "Endpoint is not available for"
245 "service %d\n", service_connreq->service_id);
246 return -EINVAL;
247 }
248
249 endpoint->service_id = service_connreq->service_id;
250 endpoint->max_txqdepth = service_connreq->max_send_qdepth;
251 endpoint->ul_pipeid = service_to_ulpipe(service_connreq->service_id);
252 endpoint->dl_pipeid = service_to_dlpipe(service_connreq->service_id);
253 endpoint->ep_callbacks = service_connreq->ep_callbacks;
254
Ming Lei0fa35a52010-04-13 00:29:15 +0800255 skb = alloc_skb(sizeof(struct htc_conn_svc_msg) +
256 sizeof(struct htc_frame_hdr), GFP_ATOMIC);
Sujithfb9987d2010-03-17 14:25:25 +0530257 if (!skb) {
258 dev_err(target->dev, "Failed to allocate buf to send"
259 "service connect req\n");
260 return -ENOMEM;
261 }
262
263 skb_reserve(skb, sizeof(struct htc_frame_hdr));
264
265 conn_msg = (struct htc_conn_svc_msg *)
266 skb_put(skb, sizeof(struct htc_conn_svc_msg));
267 conn_msg->service_id = cpu_to_be16(service_connreq->service_id);
268 conn_msg->msg_id = cpu_to_be16(HTC_MSG_CONNECT_SERVICE_ID);
269 conn_msg->con_flags = cpu_to_be16(service_connreq->con_flags);
270 conn_msg->dl_pipeid = endpoint->dl_pipeid;
271 conn_msg->ul_pipeid = endpoint->ul_pipeid;
272
Sujith Manoharan40dc9e42011-04-13 11:24:31 +0530273 ret = htc_issue_send(target, skb, skb->len, 0, ENDPOINT0);
Sujithfb9987d2010-03-17 14:25:25 +0530274 if (ret)
275 goto err;
276
277 time_left = wait_for_completion_timeout(&target->cmd_wait, HZ);
278 if (!time_left) {
279 dev_err(target->dev, "Service connection timeout for: %d\n",
280 service_connreq->service_id);
281 return -ETIMEDOUT;
282 }
283
284 *conn_rsp_epid = target->conn_rsp_epid;
285 return 0;
286err:
Ming Lei0fa35a52010-04-13 00:29:15 +0800287 kfree_skb(skb);
Sujithfb9987d2010-03-17 14:25:25 +0530288 return ret;
289}
290
Sujith Manoharand67ee532011-04-13 11:25:35 +0530291int htc_send(struct htc_target *target, struct sk_buff *skb)
Sujithfb9987d2010-03-17 14:25:25 +0530292{
Sujith Manoharand67ee532011-04-13 11:25:35 +0530293 struct ath9k_htc_tx_ctl *tx_ctl;
294
295 tx_ctl = HTC_SKB_CB(skb);
296 return htc_issue_send(target, skb, skb->len, 0, tx_ctl->epid);
297}
298
299int htc_send_epid(struct htc_target *target, struct sk_buff *skb,
300 enum htc_endpoint_id epid)
Sujithfb9987d2010-03-17 14:25:25 +0530301{
Sujith Manoharan40dc9e42011-04-13 11:24:31 +0530302 return htc_issue_send(target, skb, skb->len, 0, epid);
Sujithfb9987d2010-03-17 14:25:25 +0530303}
304
305void htc_stop(struct htc_target *target)
306{
Sujith Manoharane1fe7c32011-04-13 11:26:06 +0530307 target->hif->stop(target->hif_dev);
Sujithfb9987d2010-03-17 14:25:25 +0530308}
309
310void htc_start(struct htc_target *target)
311{
Sujith Manoharane1fe7c32011-04-13 11:26:06 +0530312 target->hif->start(target->hif_dev);
Sujithfb9987d2010-03-17 14:25:25 +0530313}
Sujithfb9987d2010-03-17 14:25:25 +0530314
Sujith Manoharan84c9e1642011-04-13 11:26:11 +0530315void htc_sta_drain(struct htc_target *target, u8 idx)
316{
317 target->hif->sta_drain(target->hif_dev, idx);
Sujithfb9987d2010-03-17 14:25:25 +0530318}
319
320void ath9k_htc_txcompletion_cb(struct htc_target *htc_handle,
321 struct sk_buff *skb, bool txok)
322{
323 struct htc_endpoint *endpoint;
Ming Lei0fa35a52010-04-13 00:29:15 +0800324 struct htc_frame_hdr *htc_hdr = NULL;
Sujithfb9987d2010-03-17 14:25:25 +0530325
326 if (htc_handle->htc_flags & HTC_OP_CONFIG_PIPE_CREDITS) {
327 complete(&htc_handle->cmd_wait);
328 htc_handle->htc_flags &= ~HTC_OP_CONFIG_PIPE_CREDITS;
Sujithf984d942010-04-06 15:28:19 +0530329 goto ret;
Sujithfb9987d2010-03-17 14:25:25 +0530330 }
331
332 if (htc_handle->htc_flags & HTC_OP_START_WAIT) {
333 complete(&htc_handle->cmd_wait);
334 htc_handle->htc_flags &= ~HTC_OP_START_WAIT;
Sujithf984d942010-04-06 15:28:19 +0530335 goto ret;
Sujithfb9987d2010-03-17 14:25:25 +0530336 }
337
338 if (skb) {
339 htc_hdr = (struct htc_frame_hdr *) skb->data;
340 endpoint = &htc_handle->endpoint[htc_hdr->endpoint_id];
341 skb_pull(skb, sizeof(struct htc_frame_hdr));
342
343 if (endpoint->ep_callbacks.tx) {
Sujithf6689072010-04-23 10:28:15 +0530344 endpoint->ep_callbacks.tx(endpoint->ep_callbacks.priv,
345 skb, htc_hdr->endpoint_id,
346 txok);
Sujith Manoharan0981c3b2013-01-09 16:07:48 +0530347 } else {
348 kfree_skb(skb);
Sujithfb9987d2010-03-17 14:25:25 +0530349 }
350 }
Sujithf984d942010-04-06 15:28:19 +0530351
352 return;
353ret:
354 /* HTC-generated packets are freed here. */
Ming Lei0fa35a52010-04-13 00:29:15 +0800355 if (htc_hdr && htc_hdr->endpoint_id != ENDPOINT0)
356 dev_kfree_skb_any(skb);
357 else
358 kfree_skb(skb);
Sujithfb9987d2010-03-17 14:25:25 +0530359}
360
Oleksij Rempel482b30b2014-02-04 10:27:50 +0100361static void ath9k_htc_fw_panic_report(struct htc_target *htc_handle,
362 struct sk_buff *skb)
363{
364 uint32_t *pattern = (uint32_t *)skb->data;
365
366 switch (*pattern) {
367 case 0x33221199:
368 {
369 struct htc_panic_bad_vaddr *htc_panic;
370 htc_panic = (struct htc_panic_bad_vaddr *) skb->data;
371 dev_err(htc_handle->dev, "ath: firmware panic! "
372 "exccause: 0x%08x; pc: 0x%08x; badvaddr: 0x%08x.\n",
373 htc_panic->exccause, htc_panic->pc,
374 htc_panic->badvaddr);
375 break;
376 }
377 case 0x33221299:
378 {
379 struct htc_panic_bad_epid *htc_panic;
380 htc_panic = (struct htc_panic_bad_epid *) skb->data;
381 dev_err(htc_handle->dev, "ath: firmware panic! "
382 "bad epid: 0x%08x\n", htc_panic->epid);
383 break;
384 }
385 default:
386 dev_err(htc_handle->dev, "ath: uknown panic pattern!\n");
387 break;
388 }
389}
390
Sujithfb9987d2010-03-17 14:25:25 +0530391/*
392 * HTC Messages are handled directly here and the obtained SKB
393 * is freed.
394 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300395 * Service messages (Data, WMI) passed to the corresponding
Sujithfb9987d2010-03-17 14:25:25 +0530396 * endpoint RX handlers, which have to free the SKB.
397 */
398void ath9k_htc_rx_msg(struct htc_target *htc_handle,
399 struct sk_buff *skb, u32 len, u8 pipe_id)
400{
401 struct htc_frame_hdr *htc_hdr;
402 enum htc_endpoint_id epid;
403 struct htc_endpoint *endpoint;
Sujith7f1f5a02010-04-16 11:54:03 +0530404 __be16 *msg_id;
Sujithfb9987d2010-03-17 14:25:25 +0530405
406 if (!htc_handle || !skb)
407 return;
408
409 htc_hdr = (struct htc_frame_hdr *) skb->data;
410 epid = htc_hdr->endpoint_id;
411
Oleksij Rempel482b30b2014-02-04 10:27:50 +0100412 if (epid == 0x99) {
413 ath9k_htc_fw_panic_report(htc_handle, skb);
414 kfree_skb(skb);
415 return;
416 }
417
Sujithfb9987d2010-03-17 14:25:25 +0530418 if (epid >= ENDPOINT_MAX) {
Ming Leie6c6d332010-04-13 00:29:05 +0800419 if (pipe_id != USB_REG_IN_PIPE)
420 dev_kfree_skb_any(skb);
421 else
422 kfree_skb(skb);
Sujithfb9987d2010-03-17 14:25:25 +0530423 return;
424 }
425
426 if (epid == ENDPOINT0) {
427
428 /* Handle trailer */
429 if (htc_hdr->flags & HTC_FLAGS_RECV_TRAILER) {
Sujith7f1f5a02010-04-16 11:54:03 +0530430 if (be32_to_cpu(*(__be32 *) skb->data) == 0x00C60000)
Sujithfb9987d2010-03-17 14:25:25 +0530431 /* Move past the Watchdog pattern */
Sujithd5a4c5e2010-03-29 16:07:14 +0530432 htc_hdr = (struct htc_frame_hdr *)(skb->data + 4);
Sujithfb9987d2010-03-17 14:25:25 +0530433 }
434
435 /* Get the message ID */
Sujith7f1f5a02010-04-16 11:54:03 +0530436 msg_id = (__be16 *) ((void *) htc_hdr +
437 sizeof(struct htc_frame_hdr));
Sujithfb9987d2010-03-17 14:25:25 +0530438
439 /* Now process HTC messages */
440 switch (be16_to_cpu(*msg_id)) {
441 case HTC_MSG_READY_ID:
442 htc_process_target_rdy(htc_handle, htc_hdr);
443 break;
444 case HTC_MSG_CONNECT_SERVICE_RESPONSE_ID:
445 htc_process_conn_rsp(htc_handle, htc_hdr);
446 break;
447 default:
448 break;
449 }
450
Ming Leie6c6d332010-04-13 00:29:05 +0800451 kfree_skb(skb);
Sujithfb9987d2010-03-17 14:25:25 +0530452
453 } else {
454 if (htc_hdr->flags & HTC_FLAGS_RECV_TRAILER)
455 skb_trim(skb, len - htc_hdr->control[0]);
456
457 skb_pull(skb, sizeof(struct htc_frame_hdr));
458
459 endpoint = &htc_handle->endpoint[epid];
460 if (endpoint->ep_callbacks.rx)
461 endpoint->ep_callbacks.rx(endpoint->ep_callbacks.priv,
462 skb, epid);
463 }
464}
465
Sujith.Manoharan@atheros.com47fce022010-05-11 16:24:41 +0530466struct htc_target *ath9k_htc_hw_alloc(void *hif_handle,
467 struct ath9k_htc_hif *hif,
468 struct device *dev)
Sujithfb9987d2010-03-17 14:25:25 +0530469{
Sujith.Manoharan@atheros.com47fce022010-05-11 16:24:41 +0530470 struct htc_endpoint *endpoint;
Sujithfb9987d2010-03-17 14:25:25 +0530471 struct htc_target *target;
472
473 target = kzalloc(sizeof(struct htc_target), GFP_KERNEL);
Joe Perchese404dec2012-01-29 12:56:23 +0000474 if (!target)
Sujith.Manoharan@atheros.com47fce022010-05-11 16:24:41 +0530475 return NULL;
Sujithfb9987d2010-03-17 14:25:25 +0530476
477 init_completion(&target->target_wait);
478 init_completion(&target->cmd_wait);
479
480 target->hif = hif;
481 target->hif_dev = hif_handle;
482 target->dev = dev;
483
484 /* Assign control endpoint pipe IDs */
485 endpoint = &target->endpoint[ENDPOINT0];
486 endpoint->ul_pipeid = hif->control_ul_pipe;
487 endpoint->dl_pipeid = hif->control_dl_pipe;
488
Sujith.Manoharan@atheros.comd8c49ff2010-05-11 16:24:43 +0530489 atomic_set(&target->tgt_ready, 0);
490
Sujith.Manoharan@atheros.com47fce022010-05-11 16:24:41 +0530491 return target;
492}
493
494void ath9k_htc_hw_free(struct htc_target *htc)
495{
496 kfree(htc);
497}
498
499int ath9k_htc_hw_init(struct htc_target *target,
Rajkumar Manoharanfa6e15e2010-11-19 16:53:22 +0530500 struct device *dev, u16 devid,
501 char *product, u32 drv_info)
Sujith.Manoharan@atheros.com47fce022010-05-11 16:24:41 +0530502{
Rajkumar Manoharanfa6e15e2010-11-19 16:53:22 +0530503 if (ath9k_htc_probe_device(target, dev, devid, product, drv_info)) {
Joe Perches516304b2012-03-18 17:30:52 -0700504 pr_err("Failed to initialize the device\n");
Sujithfb9987d2010-03-17 14:25:25 +0530505 return -ENODEV;
506 }
507
508 return 0;
509}
510
511void ath9k_htc_hw_deinit(struct htc_target *target, bool hot_unplug)
512{
513 if (target)
514 ath9k_htc_disconnect_device(target, hot_unplug);
515}