|
|
@@ -246,6 +246,7 @@ struct sdio_mmc_card {
|
|
|
u8 curr_wr_port;
|
|
|
|
|
|
u8 *mp_regs;
|
|
|
+ u8 auto_tdls;
|
|
|
|
|
|
struct mwifiex_sdio_mpa_tx mpa_tx;
|
|
|
struct mwifiex_sdio_mpa_rx mpa_rx;
|
|
|
@@ -262,6 +263,7 @@ struct mwifiex_sdio_device {
|
|
|
u16 tx_buf_size;
|
|
|
u32 mp_tx_agg_buf_size;
|
|
|
u32 mp_rx_agg_buf_size;
|
|
|
+ u8 auto_tdls;
|
|
|
};
|
|
|
|
|
|
static const struct mwifiex_sdio_card_reg mwifiex_reg_sd87xx = {
|
|
|
@@ -387,6 +389,7 @@ static const struct mwifiex_sdio_device mwifiex_sdio_sd8786 = {
|
|
|
.mp_tx_agg_buf_size = MWIFIEX_MP_AGGR_BUF_SIZE_16K,
|
|
|
.mp_rx_agg_buf_size = MWIFIEX_MP_AGGR_BUF_SIZE_16K,
|
|
|
.supports_fw_dump = false,
|
|
|
+ .auto_tdls = false,
|
|
|
};
|
|
|
|
|
|
static const struct mwifiex_sdio_device mwifiex_sdio_sd8787 = {
|
|
|
@@ -400,6 +403,7 @@ static const struct mwifiex_sdio_device mwifiex_sdio_sd8787 = {
|
|
|
.mp_tx_agg_buf_size = MWIFIEX_MP_AGGR_BUF_SIZE_16K,
|
|
|
.mp_rx_agg_buf_size = MWIFIEX_MP_AGGR_BUF_SIZE_16K,
|
|
|
.supports_fw_dump = false,
|
|
|
+ .auto_tdls = false,
|
|
|
};
|
|
|
|
|
|
static const struct mwifiex_sdio_device mwifiex_sdio_sd8797 = {
|
|
|
@@ -413,6 +417,7 @@ static const struct mwifiex_sdio_device mwifiex_sdio_sd8797 = {
|
|
|
.mp_tx_agg_buf_size = MWIFIEX_MP_AGGR_BUF_SIZE_16K,
|
|
|
.mp_rx_agg_buf_size = MWIFIEX_MP_AGGR_BUF_SIZE_16K,
|
|
|
.supports_fw_dump = false,
|
|
|
+ .auto_tdls = false,
|
|
|
};
|
|
|
|
|
|
static const struct mwifiex_sdio_device mwifiex_sdio_sd8897 = {
|
|
|
@@ -426,6 +431,7 @@ static const struct mwifiex_sdio_device mwifiex_sdio_sd8897 = {
|
|
|
.mp_tx_agg_buf_size = MWIFIEX_MP_AGGR_BUF_SIZE_32K,
|
|
|
.mp_rx_agg_buf_size = MWIFIEX_MP_AGGR_BUF_SIZE_32K,
|
|
|
.supports_fw_dump = true,
|
|
|
+ .auto_tdls = false,
|
|
|
};
|
|
|
|
|
|
static const struct mwifiex_sdio_device mwifiex_sdio_sd8887 = {
|
|
|
@@ -439,6 +445,7 @@ static const struct mwifiex_sdio_device mwifiex_sdio_sd8887 = {
|
|
|
.mp_tx_agg_buf_size = MWIFIEX_MP_AGGR_BUF_SIZE_32K,
|
|
|
.mp_rx_agg_buf_size = MWIFIEX_MP_AGGR_BUF_SIZE_32K,
|
|
|
.supports_fw_dump = false,
|
|
|
+ .auto_tdls = true,
|
|
|
};
|
|
|
|
|
|
/*
|