libertas: add lbs_host_sleep_cfg() command function
Signed-off-by: David Woodhouse <dwmw2@infradead.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
David S. Miller
parent
a27b9f96f2
commit
6ce4fd2a3a
@@ -111,6 +111,25 @@ out:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria,
|
||||||
|
uint8_t gpio, uint8_t gap)
|
||||||
|
{
|
||||||
|
struct cmd_ds_host_sleep cmd_config;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
cmd_config.criteria = cpu_to_le32(criteria);
|
||||||
|
cmd_config.gpio = gpio;
|
||||||
|
cmd_config.gap = gap;
|
||||||
|
|
||||||
|
ret = lbs_cmd_with_response(priv, CMD_802_11_HOST_SLEEP_CFG, cmd_config);
|
||||||
|
if (ret) {
|
||||||
|
lbs_pr_info("HOST_SLEEP_CFG failed %d\n", ret);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);
|
||||||
|
|
||||||
static int lbs_cmd_802_11_ps_mode(struct lbs_private *priv,
|
static int lbs_cmd_802_11_ps_mode(struct lbs_private *priv,
|
||||||
struct cmd_ds_command *cmd,
|
struct cmd_ds_command *cmd,
|
||||||
u16 cmd_action)
|
u16 cmd_action)
|
||||||
|
@@ -35,4 +35,7 @@ int lbs_set_channel(struct lbs_private *priv, u8 channel);
|
|||||||
|
|
||||||
int lbs_mesh_config(struct lbs_private *priv, int enable);
|
int lbs_mesh_config(struct lbs_private *priv, int enable);
|
||||||
|
|
||||||
|
int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria,
|
||||||
|
uint8_t gpio, uint8_t gap);
|
||||||
|
|
||||||
#endif /* _LBS_CMD_H */
|
#endif /* _LBS_CMD_H */
|
||||||
|
@@ -141,6 +141,13 @@ static inline void lbs_deb_hex(unsigned int grp, const char *prompt, u8 *buf, in
|
|||||||
#define LBS_UPLD_SIZE 2312
|
#define LBS_UPLD_SIZE 2312
|
||||||
#define DEV_NAME_LEN 32
|
#define DEV_NAME_LEN 32
|
||||||
|
|
||||||
|
/* Wake criteria for HOST_SLEEP_CFG command */
|
||||||
|
#define EHS_WAKE_ON_BROADCAST_DATA 0x0001
|
||||||
|
#define EHS_WAKE_ON_UNICAST_DATA 0x0002
|
||||||
|
#define EHS_WAKE_ON_MAC_EVENT 0x0004
|
||||||
|
#define EHS_WAKE_ON_MULTICAST_DATA 0x0008
|
||||||
|
#define EHS_REMOVE_WAKEUP 0xFFFFFFFF
|
||||||
|
|
||||||
/** Misc constants */
|
/** Misc constants */
|
||||||
/* This section defines 802.11 specific contants */
|
/* This section defines 802.11 specific contants */
|
||||||
|
|
||||||
|
@@ -73,6 +73,8 @@
|
|||||||
#define CMD_802_11_SET_AFC 0x003c
|
#define CMD_802_11_SET_AFC 0x003c
|
||||||
#define CMD_802_11_GET_AFC 0x003d
|
#define CMD_802_11_GET_AFC 0x003d
|
||||||
#define CMD_802_11_AD_HOC_STOP 0x0040
|
#define CMD_802_11_AD_HOC_STOP 0x0040
|
||||||
|
#define CMD_802_11_HOST_SLEEP_CFG 0x0043
|
||||||
|
#define CMD_802_11_HOST_SLEEP_ACTIVATE 0x0045
|
||||||
#define CMD_802_11_BEACON_STOP 0x0049
|
#define CMD_802_11_BEACON_STOP 0x0049
|
||||||
#define CMD_802_11_MAC_ADDRESS 0x004d
|
#define CMD_802_11_MAC_ADDRESS 0x004d
|
||||||
#define CMD_802_11_LED_GPIO_CTRL 0x004e
|
#define CMD_802_11_LED_GPIO_CTRL 0x004e
|
||||||
|
@@ -540,6 +540,13 @@ struct MrvlIEtype_keyParamSet {
|
|||||||
u8 key[32];
|
u8 key[32];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct cmd_ds_host_sleep {
|
||||||
|
struct cmd_header hdr;
|
||||||
|
__le32 criteria;
|
||||||
|
uint8_t gpio;
|
||||||
|
uint8_t gap;
|
||||||
|
} __attribute__ ((packed));
|
||||||
|
|
||||||
struct cmd_ds_802_11_key_material {
|
struct cmd_ds_802_11_key_material {
|
||||||
__le16 action;
|
__le16 action;
|
||||||
struct MrvlIEtype_keyParamSet keyParamSet[2];
|
struct MrvlIEtype_keyParamSet keyParamSet[2];
|
||||||
|
Reference in New Issue
Block a user