Merge tag 'wireless-drivers-next-for-davem-2019-08-19' of git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next
Kalle Valo says: ==================== wireless-drivers-next patches for 5.4 First set of patches for 5.4. Major changes: brcmfmac * enable 160 MHz channel support rt2x00 * add support for PLANEX GW-USMicroN USB device rtw88 * add Bluetooth coexistance support ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -230,19 +230,16 @@ static void rsi_reset_card(struct sdio_func *pfunction)
|
||||
rsi_dbg(ERR_ZONE, "%s: CMD0 failed : %d\n", __func__, err);
|
||||
|
||||
/* Issue CMD5, arg = 0 */
|
||||
if (!host->ocr_avail) {
|
||||
err = rsi_issue_sdiocommand(pfunction, SD_IO_SEND_OP_COND, 0,
|
||||
(MMC_RSP_R4 | MMC_CMD_BCR), &resp);
|
||||
if (err)
|
||||
rsi_dbg(ERR_ZONE, "%s: CMD5 failed : %d\n",
|
||||
__func__, err);
|
||||
|
||||
host->ocr_avail = resp;
|
||||
}
|
||||
err = rsi_issue_sdiocommand(pfunction, SD_IO_SEND_OP_COND, 0,
|
||||
(MMC_RSP_R4 | MMC_CMD_BCR), &resp);
|
||||
if (err)
|
||||
rsi_dbg(ERR_ZONE, "%s: CMD5 failed : %d\n",
|
||||
__func__, err);
|
||||
card->ocr = resp;
|
||||
/* Issue CMD5, arg = ocr. Wait till card is ready */
|
||||
for (i = 0; i < 100; i++) {
|
||||
err = rsi_issue_sdiocommand(pfunction, SD_IO_SEND_OP_COND,
|
||||
host->ocr_avail,
|
||||
card->ocr,
|
||||
(MMC_RSP_R4 | MMC_CMD_BCR), &resp);
|
||||
if (err) {
|
||||
rsi_dbg(ERR_ZONE, "%s: CMD5 failed : %d\n",
|
||||
@@ -844,11 +841,11 @@ static int rsi_init_sdio_interface(struct rsi_hw *adapter,
|
||||
struct sdio_func *pfunction)
|
||||
{
|
||||
struct rsi_91x_sdiodev *rsi_91x_dev;
|
||||
int status = -ENOMEM;
|
||||
int status;
|
||||
|
||||
rsi_91x_dev = kzalloc(sizeof(*rsi_91x_dev), GFP_KERNEL);
|
||||
if (!rsi_91x_dev)
|
||||
return status;
|
||||
return -ENOMEM;
|
||||
|
||||
adapter->rsi_dev = rsi_91x_dev;
|
||||
|
||||
@@ -890,7 +887,7 @@ static int rsi_init_sdio_interface(struct rsi_hw *adapter,
|
||||
#ifdef CONFIG_RSI_DEBUGFS
|
||||
adapter->num_debugfs_entries = MAX_DEBUGFS_ENTRIES;
|
||||
#endif
|
||||
return status;
|
||||
return 0;
|
||||
fail:
|
||||
sdio_disable_func(pfunction);
|
||||
sdio_release_host(pfunction);
|
||||
@@ -944,7 +941,7 @@ static int rsi_sdio_ta_reset(struct rsi_hw *adapter)
|
||||
put_unaligned_le32(TA_HOLD_THREAD_VALUE, data);
|
||||
addr = TA_HOLD_THREAD_REG | RSI_SD_REQUEST_MASTER;
|
||||
status = rsi_sdio_write_register_multiple(adapter, addr,
|
||||
(u8 *)&data,
|
||||
(u8 *)data,
|
||||
RSI_9116_REG_SIZE);
|
||||
if (status < 0) {
|
||||
rsi_dbg(ERR_ZONE, "Unable to hold TA threads\n");
|
||||
@@ -954,7 +951,7 @@ static int rsi_sdio_ta_reset(struct rsi_hw *adapter)
|
||||
put_unaligned_le32(TA_SOFT_RST_CLR, data);
|
||||
addr = TA_SOFT_RESET_REG | RSI_SD_REQUEST_MASTER;
|
||||
status = rsi_sdio_write_register_multiple(adapter, addr,
|
||||
(u8 *)&data,
|
||||
(u8 *)data,
|
||||
RSI_9116_REG_SIZE);
|
||||
if (status < 0) {
|
||||
rsi_dbg(ERR_ZONE, "Unable to get TA out of reset\n");
|
||||
@@ -964,7 +961,7 @@ static int rsi_sdio_ta_reset(struct rsi_hw *adapter)
|
||||
put_unaligned_le32(TA_PC_ZERO, data);
|
||||
addr = TA_TH0_PC_REG | RSI_SD_REQUEST_MASTER;
|
||||
status = rsi_sdio_write_register_multiple(adapter, addr,
|
||||
(u8 *)&data,
|
||||
(u8 *)data,
|
||||
RSI_9116_REG_SIZE);
|
||||
if (status < 0) {
|
||||
rsi_dbg(ERR_ZONE, "Unable to Reset TA PC value\n");
|
||||
@@ -975,7 +972,7 @@ static int rsi_sdio_ta_reset(struct rsi_hw *adapter)
|
||||
put_unaligned_le32(TA_RELEASE_THREAD_VALUE, data);
|
||||
addr = TA_RELEASE_THREAD_REG | RSI_SD_REQUEST_MASTER;
|
||||
status = rsi_sdio_write_register_multiple(adapter, addr,
|
||||
(u8 *)&data,
|
||||
(u8 *)data,
|
||||
RSI_9116_REG_SIZE);
|
||||
if (status < 0) {
|
||||
rsi_dbg(ERR_ZONE, "Unable to release TA threads\n");
|
||||
|
Reference in New Issue
Block a user