libertas: convert SET_WEP to a direct command
[pandora-kernel.git] / drivers / net / wireless / libertas / cmd.h
1 /* Copyright (C) 2007, Red Hat, Inc. */
2
3 #ifndef _LBS_CMD_H_
4 #define _LBS_CMD_H_
5
6 #include "hostcmd.h"
7 #include "dev.h"
8
9 #define lbs_cmd(priv, cmdnr, cmd, cb, cb_arg)   \
10         __lbs_cmd(priv, cmdnr, &(cmd)->hdr, sizeof(*(cmd)), cb, cb_arg)
11
12
13 /* lbs_cmd_with_response() infers the size of the command to be _sent_
14    and requires that the caller sets cmd->size to the (LE) size of
15    the _response_ buffer. */
16 #define lbs_cmd_with_response(priv, cmdnr, cmd) \
17         lbs_cmd(priv, cmdnr, cmd, lbs_cmd_copyback, (unsigned long) (cmd))
18
19 /* __lbs_cmd() will free the cmdnode and return success/failure.
20    __lbs_cmd_async() requires that the callback free the cmdnode */
21 struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv, uint16_t command,
22                                       struct cmd_header *in_cmd, int in_cmd_size,
23                                       int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
24                                       unsigned long callback_arg);
25 int __lbs_cmd(struct lbs_private *priv, uint16_t command,
26               struct cmd_header *in_cmd, int in_cmd_size,
27               int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
28               unsigned long callback_arg);
29
30 int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
31                      struct cmd_header *resp);
32
33 int lbs_update_hw_spec(struct lbs_private *priv);
34
35 int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
36                     struct cmd_ds_mesh_access *cmd);
37
38 int lbs_get_data_rate(struct lbs_private *priv);
39 int lbs_set_data_rate(struct lbs_private *priv, u8 rate);
40
41 int lbs_get_channel(struct lbs_private *priv);
42 int lbs_set_channel(struct lbs_private *priv, u8 channel);
43
44 int lbs_mesh_config(struct lbs_private *priv, uint16_t enable, uint16_t chan);
45
46 int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria);
47 int lbs_suspend(struct lbs_private *priv);
48 int lbs_resume(struct lbs_private *priv);
49
50 int lbs_cmd_802_11_inactivity_timeout(struct lbs_private *priv,
51                                       uint16_t cmd_action, uint16_t *timeout);
52 int lbs_cmd_802_11_sleep_params(struct lbs_private *priv, uint16_t cmd_action,
53                                 struct sleep_params *sp);
54 int lbs_cmd_802_11_set_wep(struct lbs_private *priv, uint16_t cmd_action,
55                            struct assoc_request *assoc);
56
57 #endif /* _LBS_CMD_H */