ath10k: add sdio extra initializations
authorErik Stromdahl <erik.stromdahl@gmail.com>
Wed, 26 Apr 2017 09:17:56 +0000 (12:17 +0300)
committerKalle Valo <kvalo@qca.qualcomm.com>
Thu, 4 May 2017 12:55:36 +0000 (15:55 +0300)
Extra initializations needed by all sdio boards.
Derived from qcacld.

Signed-off-by: Erik Stromdahl <erik.stromdahl@gmail.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
drivers/net/wireless/ath/ath10k/core.c

index 5a0638915874451201fadfd8ea450504a792a627..4857fbcd1e1ba47bb86838348fbc2ddfaef4eb6a 100644 (file)
@@ -389,6 +389,21 @@ static void ath10k_send_suspend_complete(struct ath10k *ar)
        complete(&ar->target_suspend);
 }
 
+static void ath10k_init_sdio(struct ath10k *ar)
+{
+       u32 param = 0;
+
+       ath10k_bmi_write32(ar, hi_mbox_io_block_sz, 256);
+       ath10k_bmi_write32(ar, hi_mbox_isr_yield_limit, 99);
+       ath10k_bmi_read32(ar, hi_acs_flags, &param);
+
+       param |= (HI_ACS_FLAGS_SDIO_SWAP_MAILBOX_SET |
+                 HI_ACS_FLAGS_SDIO_REDUCE_TX_COMPL_SET |
+                 HI_ACS_FLAGS_ALT_DATA_CREDIT_SIZE);
+
+       ath10k_bmi_write32(ar, hi_acs_flags, param);
+}
+
 static int ath10k_init_configure_target(struct ath10k *ar)
 {
        u32 param_host;
@@ -1953,6 +1968,9 @@ int ath10k_core_start(struct ath10k *ar, enum ath10k_firmware_mode mode,
        if (status)
                goto err;
 
+       if (ar->hif.bus == ATH10K_BUS_SDIO)
+               ath10k_init_sdio(ar);
+
        ar->htc.htc_ops.target_send_suspend_complete =
                ath10k_send_suspend_complete;