blob: b280ef7a0aeaf22cf92227bfe2f501c339a3cfa8 [file] [log] [blame]
Dan Williams14e865b2007-12-10 15:11:23 -05001/* Copyright (C) 2007, Red Hat, Inc. */
2
3#ifndef _LBS_CMD_H_
4#define _LBS_CMD_H_
5
Dan Williamscc4b9d32010-07-27 12:56:05 -07006#include <net/cfg80211.h>
7
Holger Schurig9e66e702009-10-16 17:32:16 +02008#include "host.h"
Dan Williams14e865b2007-12-10 15:11:23 -05009#include "dev.h"
10
Holger Schurigbca61f82009-10-16 17:33:23 +020011
12/* Command & response transfer between host and card */
13
14struct cmd_ctrl_node {
15 struct list_head list;
16 int result;
17 /* command response */
18 int (*callback)(struct lbs_private *,
19 unsigned long,
20 struct cmd_header *);
21 unsigned long callback_arg;
22 /* command data */
23 struct cmd_header *cmdbuf;
24 /* wait queue */
25 u16 cmdwaitqwoken;
26 wait_queue_head_t cmdwait_q;
27};
28
29
David Woodhousef15ebb62007-12-19 13:03:19 +000030/* lbs_cmd() infers the size of the buffer to copy data back into, from
Holger Schurigbca61f82009-10-16 17:33:23 +020031 the size of the target of the pointer. Since the command to be sent
David Woodhousef15ebb62007-12-19 13:03:19 +000032 may often be smaller, that size is set in cmd->size by the caller.*/
33#define lbs_cmd(priv, cmdnr, cmd, cb, cb_arg) ({ \
34 uint16_t __sz = le16_to_cpu((cmd)->hdr.size); \
35 (cmd)->hdr.size = cpu_to_le16(sizeof(*(cmd))); \
36 __lbs_cmd(priv, cmdnr, &(cmd)->hdr, __sz, cb, cb_arg); \
37})
Dan Williams14e865b2007-12-10 15:11:23 -050038
David Woodhouse689442d2007-12-12 16:00:42 -050039#define lbs_cmd_with_response(priv, cmdnr, cmd) \
40 lbs_cmd(priv, cmdnr, cmd, lbs_cmd_copyback, (unsigned long) (cmd))
David Woodhouse7e226272007-12-14 22:53:41 -050041
Holger Schurig8db4a2b2008-03-19 10:11:00 +010042void lbs_cmd_async(struct lbs_private *priv, uint16_t command,
43 struct cmd_header *in_cmd, int in_cmd_size);
44
Dan Williams7ad994d2007-12-11 12:33:30 -050045int __lbs_cmd(struct lbs_private *priv, uint16_t command,
David Woodhouse7e226272007-12-14 22:53:41 -050046 struct cmd_header *in_cmd, int in_cmd_size,
Dan Williams7ad994d2007-12-11 12:33:30 -050047 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
Dan Williams14e865b2007-12-10 15:11:23 -050048 unsigned long callback_arg);
49
Holger Schurig6d898b12009-10-14 16:49:53 +020050struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv,
51 uint16_t command, struct cmd_header *in_cmd, int in_cmd_size,
52 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
53 unsigned long callback_arg);
54
Dan Williamsa8bdcd72007-12-11 12:40:35 -050055int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
56 struct cmd_header *resp);
57
Holger Schurigbca61f82009-10-16 17:33:23 +020058int lbs_allocate_cmd_buffer(struct lbs_private *priv);
59int lbs_free_cmd_buffer(struct lbs_private *priv);
60
61int lbs_execute_next_command(struct lbs_private *priv);
Daniel Drakedf90d842011-07-09 15:41:25 +010062void __lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
63 int result);
Holger Schurigbca61f82009-10-16 17:33:23 +020064void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
65 int result);
66int lbs_process_command_response(struct lbs_private *priv, u8 *data, u32 len);
67
68
69/* From cmdresp.c */
70
71void lbs_mac_event_disconnected(struct lbs_private *priv);
72
73
74
75/* Events */
76
77int lbs_process_event(struct lbs_private *priv, u32 event);
78
79
80/* Actual commands */
81
Dan Williams6e66f032007-12-11 12:42:16 -050082int lbs_update_hw_spec(struct lbs_private *priv);
83
Dan Williams2dd4b262007-12-11 16:54:15 -050084int lbs_set_channel(struct lbs_private *priv, u8 channel);
85
Holger Schurigbca61f82009-10-16 17:33:23 +020086int lbs_update_channel(struct lbs_private *priv);
David Woodhouse23a397a2007-12-11 18:56:42 -050087
Anna Neal582c1b52008-10-20 16:46:56 -070088int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria,
89 struct wol_config *p_wol_config);
David Woodhouse6ce4fd22007-12-12 15:19:29 -050090
David Woodhouse3fbe1042007-12-17 23:48:31 -050091int lbs_cmd_802_11_sleep_params(struct lbs_private *priv, uint16_t cmd_action,
92 struct sleep_params *sp);
Holger Schurigbca61f82009-10-16 17:33:23 +020093
Holger Schurigbca61f82009-10-16 17:33:23 +020094void lbs_ps_confirm_sleep(struct lbs_private *priv);
95
96int lbs_set_radio(struct lbs_private *priv, u8 preamble, u8 radio_on);
97
98void lbs_set_mac_control(struct lbs_private *priv);
David Woodhouse6e5cc4f2007-12-17 23:04:37 -050099
Dan Williams87c8c722008-08-19 15:15:35 -0400100int lbs_get_tx_power(struct lbs_private *priv, s16 *curlevel, s16 *minlevel,
101 s16 *maxlevel);
Dan Williamsd5db2df2008-08-21 17:51:07 -0400102
Dan Williams39fcf7a2008-09-10 12:49:00 -0400103int lbs_set_snmp_mib(struct lbs_private *priv, u32 oid, u16 val);
104
105int lbs_get_snmp_mib(struct lbs_private *priv, u32 oid, u16 *out_val);
106
Holger Schurigbca61f82009-10-16 17:33:23 +0200107
Holger Schurigbca61f82009-10-16 17:33:23 +0200108/* Commands only used in wext.c, assoc. and scan.c */
109
110int lbs_set_power_adapt_cfg(struct lbs_private *priv, int enable, int8_t p0,
111 int8_t p1, int8_t p2);
112
113int lbs_set_tpc_cfg(struct lbs_private *priv, int enable, int8_t p0, int8_t p1,
114 int8_t p2, int usesnr);
115
116int lbs_set_data_rate(struct lbs_private *priv, u8 rate);
117
118int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
119 uint16_t cmd_action);
120
Holger Schurigbca61f82009-10-16 17:33:23 +0200121int lbs_set_tx_power(struct lbs_private *priv, s16 dbm);
122
123int lbs_set_deep_sleep(struct lbs_private *priv, int deep_sleep);
124
Amitkumar Karwar13118432010-07-08 06:43:48 +0530125int lbs_set_host_sleep(struct lbs_private *priv, int host_sleep);
126
Dan Williamsa45b6f42010-07-27 12:54:34 -0700127int lbs_set_monitor_mode(struct lbs_private *priv, int enable);
128
Dan Williams9fb76632010-07-27 12:55:21 -0700129int lbs_get_rssi(struct lbs_private *priv, s8 *snr, s8 *nf);
130
Dan Williamscc4b9d32010-07-27 12:56:05 -0700131int lbs_set_11d_domain_info(struct lbs_private *priv,
132 struct regulatory_request *request,
133 struct ieee80211_supported_band **bands);
134
Dan Williams4c7c6e002010-07-27 13:01:07 -0700135int lbs_get_reg(struct lbs_private *priv, u16 reg, u16 offset, u32 *value);
136
137int lbs_set_reg(struct lbs_private *priv, u16 reg, u16 offset, u32 value);
138
Dan Williams0bb64082010-07-27 13:08:08 -0700139int lbs_set_ps_mode(struct lbs_private *priv, u16 cmd_action, bool block);
140
Dan Williams14e865b2007-12-10 15:11:23 -0500141#endif /* _LBS_CMD_H */