pci.c (25799B)
1// SPDX-License-Identifier: BSD-3-Clause-Clear 2/* 3 * Copyright (c) 2019-2020 The Linux Foundation. All rights reserved. 4 * Copyright (c) 2021-2022, Qualcomm Innovation Center, Inc. All rights reserved. 5 */ 6 7#include <linux/module.h> 8#include <linux/msi.h> 9#include <linux/pci.h> 10#include <linux/of.h> 11 12#include "pci.h" 13#include "core.h" 14#include "hif.h" 15#include "mhi.h" 16#include "debug.h" 17#include "pcic.h" 18 19#define ATH11K_PCI_BAR_NUM 0 20#define ATH11K_PCI_DMA_MASK 32 21 22#define TCSR_SOC_HW_VERSION 0x0224 23#define TCSR_SOC_HW_VERSION_MAJOR_MASK GENMASK(11, 8) 24#define TCSR_SOC_HW_VERSION_MINOR_MASK GENMASK(7, 0) 25 26#define QCA6390_DEVICE_ID 0x1101 27#define QCN9074_DEVICE_ID 0x1104 28#define WCN6855_DEVICE_ID 0x1103 29 30static const struct pci_device_id ath11k_pci_id_table[] = { 31 { PCI_VDEVICE(QCOM, QCA6390_DEVICE_ID) }, 32 { PCI_VDEVICE(QCOM, WCN6855_DEVICE_ID) }, 33 { PCI_VDEVICE(QCOM, QCN9074_DEVICE_ID) }, 34 {0} 35}; 36 37MODULE_DEVICE_TABLE(pci, ath11k_pci_id_table); 38 39static int ath11k_pci_bus_wake_up(struct ath11k_base *ab) 40{ 41 struct ath11k_pci *ab_pci = ath11k_pci_priv(ab); 42 43 return mhi_device_get_sync(ab_pci->mhi_ctrl->mhi_dev); 44} 45 46static void ath11k_pci_bus_release(struct ath11k_base *ab) 47{ 48 struct ath11k_pci *ab_pci = ath11k_pci_priv(ab); 49 50 mhi_device_put(ab_pci->mhi_ctrl->mhi_dev); 51} 52 53static inline void ath11k_pci_select_window(struct ath11k_pci *ab_pci, u32 offset) 54{ 55 struct ath11k_base *ab = ab_pci->ab; 56 57 u32 window = FIELD_GET(ATH11K_PCI_WINDOW_VALUE_MASK, offset); 58 59 lockdep_assert_held(&ab_pci->window_lock); 60 61 if (window != ab_pci->register_window) { 62 iowrite32(ATH11K_PCI_WINDOW_ENABLE_BIT | window, 63 ab->mem + ATH11K_PCI_WINDOW_REG_ADDRESS); 64 ioread32(ab->mem + ATH11K_PCI_WINDOW_REG_ADDRESS); 65 ab_pci->register_window = window; 66 } 67} 68 69static void 70ath11k_pci_window_write32(struct ath11k_base *ab, u32 offset, u32 value) 71{ 72 struct ath11k_pci *ab_pci = ath11k_pci_priv(ab); 73 u32 window_start = ATH11K_PCI_WINDOW_START; 74 75 spin_lock_bh(&ab_pci->window_lock); 76 ath11k_pci_select_window(ab_pci, offset); 77 iowrite32(value, ab->mem + window_start + 78 (offset & ATH11K_PCI_WINDOW_RANGE_MASK)); 79 spin_unlock_bh(&ab_pci->window_lock); 80} 81 82static u32 ath11k_pci_window_read32(struct ath11k_base *ab, u32 offset) 83{ 84 struct ath11k_pci *ab_pci = ath11k_pci_priv(ab); 85 u32 window_start = ATH11K_PCI_WINDOW_START; 86 u32 val; 87 88 spin_lock_bh(&ab_pci->window_lock); 89 ath11k_pci_select_window(ab_pci, offset); 90 val = ioread32(ab->mem + window_start + 91 (offset & ATH11K_PCI_WINDOW_RANGE_MASK)); 92 spin_unlock_bh(&ab_pci->window_lock); 93 94 return val; 95} 96 97int ath11k_pci_get_msi_irq(struct ath11k_base *ab, unsigned int vector) 98{ 99 struct pci_dev *pci_dev = to_pci_dev(ab->dev); 100 101 return pci_irq_vector(pci_dev, vector); 102} 103 104static const struct ath11k_pci_ops ath11k_pci_ops_qca6390 = { 105 .wakeup = ath11k_pci_bus_wake_up, 106 .release = ath11k_pci_bus_release, 107 .get_msi_irq = ath11k_pci_get_msi_irq, 108 .window_write32 = ath11k_pci_window_write32, 109 .window_read32 = ath11k_pci_window_read32, 110}; 111 112static const struct ath11k_pci_ops ath11k_pci_ops_qcn9074 = { 113 .get_msi_irq = ath11k_pci_get_msi_irq, 114 .window_write32 = ath11k_pci_window_write32, 115 .window_read32 = ath11k_pci_window_read32, 116}; 117 118static const struct ath11k_msi_config msi_config_one_msi = { 119 .total_vectors = 1, 120 .total_users = 4, 121 .users = (struct ath11k_msi_user[]) { 122 { .name = "MHI", .num_vectors = 3, .base_vector = 0 }, 123 { .name = "CE", .num_vectors = 1, .base_vector = 0 }, 124 { .name = "WAKE", .num_vectors = 1, .base_vector = 0 }, 125 { .name = "DP", .num_vectors = 1, .base_vector = 0 }, 126 }, 127}; 128 129static inline void ath11k_pci_select_static_window(struct ath11k_pci *ab_pci) 130{ 131 u32 umac_window; 132 u32 ce_window; 133 u32 window; 134 135 umac_window = FIELD_GET(ATH11K_PCI_WINDOW_VALUE_MASK, HAL_SEQ_WCSS_UMAC_OFFSET); 136 ce_window = FIELD_GET(ATH11K_PCI_WINDOW_VALUE_MASK, HAL_CE_WFSS_CE_REG_BASE); 137 window = (umac_window << 12) | (ce_window << 6); 138 139 iowrite32(ATH11K_PCI_WINDOW_ENABLE_BIT | window, 140 ab_pci->ab->mem + ATH11K_PCI_WINDOW_REG_ADDRESS); 141} 142 143static void ath11k_pci_soc_global_reset(struct ath11k_base *ab) 144{ 145 u32 val, delay; 146 147 val = ath11k_pcic_read32(ab, PCIE_SOC_GLOBAL_RESET); 148 149 val |= PCIE_SOC_GLOBAL_RESET_V; 150 151 ath11k_pcic_write32(ab, PCIE_SOC_GLOBAL_RESET, val); 152 153 /* TODO: exact time to sleep is uncertain */ 154 delay = 10; 155 mdelay(delay); 156 157 /* Need to toggle V bit back otherwise stuck in reset status */ 158 val &= ~PCIE_SOC_GLOBAL_RESET_V; 159 160 ath11k_pcic_write32(ab, PCIE_SOC_GLOBAL_RESET, val); 161 162 mdelay(delay); 163 164 val = ath11k_pcic_read32(ab, PCIE_SOC_GLOBAL_RESET); 165 if (val == 0xffffffff) 166 ath11k_warn(ab, "link down error during global reset\n"); 167} 168 169static void ath11k_pci_clear_dbg_registers(struct ath11k_base *ab) 170{ 171 u32 val; 172 173 /* read cookie */ 174 val = ath11k_pcic_read32(ab, PCIE_Q6_COOKIE_ADDR); 175 ath11k_dbg(ab, ATH11K_DBG_PCI, "cookie:0x%x\n", val); 176 177 val = ath11k_pcic_read32(ab, WLAON_WARM_SW_ENTRY); 178 ath11k_dbg(ab, ATH11K_DBG_PCI, "WLAON_WARM_SW_ENTRY 0x%x\n", val); 179 180 /* TODO: exact time to sleep is uncertain */ 181 mdelay(10); 182 183 /* write 0 to WLAON_WARM_SW_ENTRY to prevent Q6 from 184 * continuing warm path and entering dead loop. 185 */ 186 ath11k_pcic_write32(ab, WLAON_WARM_SW_ENTRY, 0); 187 mdelay(10); 188 189 val = ath11k_pcic_read32(ab, WLAON_WARM_SW_ENTRY); 190 ath11k_dbg(ab, ATH11K_DBG_PCI, "WLAON_WARM_SW_ENTRY 0x%x\n", val); 191 192 /* A read clear register. clear the register to prevent 193 * Q6 from entering wrong code path. 194 */ 195 val = ath11k_pcic_read32(ab, WLAON_SOC_RESET_CAUSE_REG); 196 ath11k_dbg(ab, ATH11K_DBG_PCI, "soc reset cause:%d\n", val); 197} 198 199static int ath11k_pci_set_link_reg(struct ath11k_base *ab, 200 u32 offset, u32 value, u32 mask) 201{ 202 u32 v; 203 int i; 204 205 v = ath11k_pcic_read32(ab, offset); 206 if ((v & mask) == value) 207 return 0; 208 209 for (i = 0; i < 10; i++) { 210 ath11k_pcic_write32(ab, offset, (v & ~mask) | value); 211 212 v = ath11k_pcic_read32(ab, offset); 213 if ((v & mask) == value) 214 return 0; 215 216 mdelay(2); 217 } 218 219 ath11k_warn(ab, "failed to set pcie link register 0x%08x: 0x%08x != 0x%08x\n", 220 offset, v & mask, value); 221 222 return -ETIMEDOUT; 223} 224 225static int ath11k_pci_fix_l1ss(struct ath11k_base *ab) 226{ 227 int ret; 228 229 ret = ath11k_pci_set_link_reg(ab, 230 PCIE_QSERDES_COM_SYSCLK_EN_SEL_REG(ab), 231 PCIE_QSERDES_COM_SYSCLK_EN_SEL_VAL, 232 PCIE_QSERDES_COM_SYSCLK_EN_SEL_MSK); 233 if (ret) { 234 ath11k_warn(ab, "failed to set sysclk: %d\n", ret); 235 return ret; 236 } 237 238 ret = ath11k_pci_set_link_reg(ab, 239 PCIE_PCS_OSC_DTCT_CONFIG1_REG(ab), 240 PCIE_PCS_OSC_DTCT_CONFIG1_VAL, 241 PCIE_PCS_OSC_DTCT_CONFIG_MSK); 242 if (ret) { 243 ath11k_warn(ab, "failed to set dtct config1 error: %d\n", ret); 244 return ret; 245 } 246 247 ret = ath11k_pci_set_link_reg(ab, 248 PCIE_PCS_OSC_DTCT_CONFIG2_REG(ab), 249 PCIE_PCS_OSC_DTCT_CONFIG2_VAL, 250 PCIE_PCS_OSC_DTCT_CONFIG_MSK); 251 if (ret) { 252 ath11k_warn(ab, "failed to set dtct config2: %d\n", ret); 253 return ret; 254 } 255 256 ret = ath11k_pci_set_link_reg(ab, 257 PCIE_PCS_OSC_DTCT_CONFIG4_REG(ab), 258 PCIE_PCS_OSC_DTCT_CONFIG4_VAL, 259 PCIE_PCS_OSC_DTCT_CONFIG_MSK); 260 if (ret) { 261 ath11k_warn(ab, "failed to set dtct config4: %d\n", ret); 262 return ret; 263 } 264 265 return 0; 266} 267 268static void ath11k_pci_enable_ltssm(struct ath11k_base *ab) 269{ 270 u32 val; 271 int i; 272 273 val = ath11k_pcic_read32(ab, PCIE_PCIE_PARF_LTSSM); 274 275 /* PCIE link seems very unstable after the Hot Reset*/ 276 for (i = 0; val != PARM_LTSSM_VALUE && i < 5; i++) { 277 if (val == 0xffffffff) 278 mdelay(5); 279 280 ath11k_pcic_write32(ab, PCIE_PCIE_PARF_LTSSM, PARM_LTSSM_VALUE); 281 val = ath11k_pcic_read32(ab, PCIE_PCIE_PARF_LTSSM); 282 } 283 284 ath11k_dbg(ab, ATH11K_DBG_PCI, "pci ltssm 0x%x\n", val); 285 286 val = ath11k_pcic_read32(ab, GCC_GCC_PCIE_HOT_RST); 287 val |= GCC_GCC_PCIE_HOT_RST_VAL; 288 ath11k_pcic_write32(ab, GCC_GCC_PCIE_HOT_RST, val); 289 val = ath11k_pcic_read32(ab, GCC_GCC_PCIE_HOT_RST); 290 291 ath11k_dbg(ab, ATH11K_DBG_PCI, "pci pcie_hot_rst 0x%x\n", val); 292 293 mdelay(5); 294} 295 296static void ath11k_pci_clear_all_intrs(struct ath11k_base *ab) 297{ 298 /* This is a WAR for PCIE Hotreset. 299 * When target receive Hotreset, but will set the interrupt. 300 * So when download SBL again, SBL will open Interrupt and 301 * receive it, and crash immediately. 302 */ 303 ath11k_pcic_write32(ab, PCIE_PCIE_INT_ALL_CLEAR, PCIE_INT_CLEAR_ALL); 304} 305 306static void ath11k_pci_set_wlaon_pwr_ctrl(struct ath11k_base *ab) 307{ 308 u32 val; 309 310 val = ath11k_pcic_read32(ab, WLAON_QFPROM_PWR_CTRL_REG); 311 val &= ~QFPROM_PWR_CTRL_VDD4BLOW_MASK; 312 ath11k_pcic_write32(ab, WLAON_QFPROM_PWR_CTRL_REG, val); 313} 314 315static void ath11k_pci_force_wake(struct ath11k_base *ab) 316{ 317 ath11k_pcic_write32(ab, PCIE_SOC_WAKE_PCIE_LOCAL_REG, 1); 318 mdelay(5); 319} 320 321static void ath11k_pci_sw_reset(struct ath11k_base *ab, bool power_on) 322{ 323 mdelay(100); 324 325 if (power_on) { 326 ath11k_pci_enable_ltssm(ab); 327 ath11k_pci_clear_all_intrs(ab); 328 ath11k_pci_set_wlaon_pwr_ctrl(ab); 329 if (ab->hw_params.fix_l1ss) 330 ath11k_pci_fix_l1ss(ab); 331 } 332 333 ath11k_mhi_clear_vector(ab); 334 ath11k_pci_clear_dbg_registers(ab); 335 ath11k_pci_soc_global_reset(ab); 336 ath11k_mhi_set_mhictrl_reset(ab); 337} 338 339static void ath11k_pci_init_qmi_ce_config(struct ath11k_base *ab) 340{ 341 struct ath11k_qmi_ce_cfg *cfg = &ab->qmi.ce_cfg; 342 343 cfg->tgt_ce = ab->hw_params.target_ce_config; 344 cfg->tgt_ce_len = ab->hw_params.target_ce_count; 345 346 cfg->svc_to_ce_map = ab->hw_params.svc_to_ce_map; 347 cfg->svc_to_ce_map_len = ab->hw_params.svc_to_ce_map_len; 348 ab->qmi.service_ins_id = ab->hw_params.qmi_service_ins_id; 349 350 ath11k_ce_get_shadow_config(ab, &cfg->shadow_reg_v2, 351 &cfg->shadow_reg_v2_len); 352} 353 354static void ath11k_pci_msi_config(struct ath11k_pci *ab_pci, bool enable) 355{ 356 struct pci_dev *dev = ab_pci->pdev; 357 u16 control; 358 359 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control); 360 361 if (enable) 362 control |= PCI_MSI_FLAGS_ENABLE; 363 else 364 control &= ~PCI_MSI_FLAGS_ENABLE; 365 366 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control); 367} 368 369static void ath11k_pci_msi_enable(struct ath11k_pci *ab_pci) 370{ 371 ath11k_pci_msi_config(ab_pci, true); 372} 373 374static void ath11k_pci_msi_disable(struct ath11k_pci *ab_pci) 375{ 376 ath11k_pci_msi_config(ab_pci, false); 377} 378 379static int ath11k_pci_alloc_msi(struct ath11k_pci *ab_pci) 380{ 381 struct ath11k_base *ab = ab_pci->ab; 382 const struct ath11k_msi_config *msi_config = ab->pci.msi.config; 383 struct pci_dev *pci_dev = ab_pci->pdev; 384 struct msi_desc *msi_desc; 385 int num_vectors; 386 int ret; 387 388 num_vectors = pci_alloc_irq_vectors(pci_dev, 389 msi_config->total_vectors, 390 msi_config->total_vectors, 391 PCI_IRQ_MSI); 392 if (num_vectors == msi_config->total_vectors) { 393 set_bit(ATH11K_FLAG_MULTI_MSI_VECTORS, &ab->dev_flags); 394 } else { 395 num_vectors = pci_alloc_irq_vectors(ab_pci->pdev, 396 1, 397 1, 398 PCI_IRQ_MSI); 399 if (num_vectors < 0) { 400 ret = -EINVAL; 401 goto reset_msi_config; 402 } 403 clear_bit(ATH11K_FLAG_MULTI_MSI_VECTORS, &ab->dev_flags); 404 ab->pci.msi.config = &msi_config_one_msi; 405 ath11k_dbg(ab, ATH11K_DBG_PCI, "request MSI one vector\n"); 406 } 407 ath11k_info(ab, "MSI vectors: %d\n", num_vectors); 408 409 ath11k_pci_msi_disable(ab_pci); 410 411 msi_desc = irq_get_msi_desc(ab_pci->pdev->irq); 412 if (!msi_desc) { 413 ath11k_err(ab, "msi_desc is NULL!\n"); 414 ret = -EINVAL; 415 goto free_msi_vector; 416 } 417 418 ab->pci.msi.ep_base_data = msi_desc->msg.data; 419 420 pci_read_config_dword(pci_dev, pci_dev->msi_cap + PCI_MSI_ADDRESS_LO, 421 &ab->pci.msi.addr_lo); 422 423 if (msi_desc->pci.msi_attrib.is_64) { 424 pci_read_config_dword(pci_dev, pci_dev->msi_cap + PCI_MSI_ADDRESS_HI, 425 &ab->pci.msi.addr_hi); 426 } else { 427 ab->pci.msi.addr_hi = 0; 428 } 429 430 ath11k_dbg(ab, ATH11K_DBG_PCI, "msi base data is %d\n", ab->pci.msi.ep_base_data); 431 432 return 0; 433 434free_msi_vector: 435 pci_free_irq_vectors(ab_pci->pdev); 436 437reset_msi_config: 438 return ret; 439} 440 441static void ath11k_pci_free_msi(struct ath11k_pci *ab_pci) 442{ 443 pci_free_irq_vectors(ab_pci->pdev); 444} 445 446static int ath11k_pci_config_msi_data(struct ath11k_pci *ab_pci) 447{ 448 struct msi_desc *msi_desc; 449 450 msi_desc = irq_get_msi_desc(ab_pci->pdev->irq); 451 if (!msi_desc) { 452 ath11k_err(ab_pci->ab, "msi_desc is NULL!\n"); 453 pci_free_irq_vectors(ab_pci->pdev); 454 return -EINVAL; 455 } 456 457 ab_pci->ab->pci.msi.ep_base_data = msi_desc->msg.data; 458 459 ath11k_dbg(ab_pci->ab, ATH11K_DBG_PCI, "pci after request_irq msi_ep_base_data %d\n", 460 ab_pci->ab->pci.msi.ep_base_data); 461 462 return 0; 463} 464 465static int ath11k_pci_claim(struct ath11k_pci *ab_pci, struct pci_dev *pdev) 466{ 467 struct ath11k_base *ab = ab_pci->ab; 468 u16 device_id; 469 int ret = 0; 470 471 pci_read_config_word(pdev, PCI_DEVICE_ID, &device_id); 472 if (device_id != ab_pci->dev_id) { 473 ath11k_err(ab, "pci device id mismatch: 0x%x 0x%x\n", 474 device_id, ab_pci->dev_id); 475 ret = -EIO; 476 goto out; 477 } 478 479 ret = pci_assign_resource(pdev, ATH11K_PCI_BAR_NUM); 480 if (ret) { 481 ath11k_err(ab, "failed to assign pci resource: %d\n", ret); 482 goto out; 483 } 484 485 ret = pci_enable_device(pdev); 486 if (ret) { 487 ath11k_err(ab, "failed to enable pci device: %d\n", ret); 488 goto out; 489 } 490 491 ret = pci_request_region(pdev, ATH11K_PCI_BAR_NUM, "ath11k_pci"); 492 if (ret) { 493 ath11k_err(ab, "failed to request pci region: %d\n", ret); 494 goto disable_device; 495 } 496 497 ret = dma_set_mask_and_coherent(&pdev->dev, 498 DMA_BIT_MASK(ATH11K_PCI_DMA_MASK)); 499 if (ret) { 500 ath11k_err(ab, "failed to set pci dma mask to %d: %d\n", 501 ATH11K_PCI_DMA_MASK, ret); 502 goto release_region; 503 } 504 505 pci_set_master(pdev); 506 507 ab->mem_len = pci_resource_len(pdev, ATH11K_PCI_BAR_NUM); 508 ab->mem = pci_iomap(pdev, ATH11K_PCI_BAR_NUM, 0); 509 if (!ab->mem) { 510 ath11k_err(ab, "failed to map pci bar %d\n", ATH11K_PCI_BAR_NUM); 511 ret = -EIO; 512 goto clear_master; 513 } 514 515 ath11k_dbg(ab, ATH11K_DBG_BOOT, "boot pci_mem 0x%pK\n", ab->mem); 516 return 0; 517 518clear_master: 519 pci_clear_master(pdev); 520release_region: 521 pci_release_region(pdev, ATH11K_PCI_BAR_NUM); 522disable_device: 523 pci_disable_device(pdev); 524out: 525 return ret; 526} 527 528static void ath11k_pci_free_region(struct ath11k_pci *ab_pci) 529{ 530 struct ath11k_base *ab = ab_pci->ab; 531 struct pci_dev *pci_dev = ab_pci->pdev; 532 533 pci_iounmap(pci_dev, ab->mem); 534 ab->mem = NULL; 535 pci_clear_master(pci_dev); 536 pci_release_region(pci_dev, ATH11K_PCI_BAR_NUM); 537 if (pci_is_enabled(pci_dev)) 538 pci_disable_device(pci_dev); 539} 540 541static void ath11k_pci_aspm_disable(struct ath11k_pci *ab_pci) 542{ 543 struct ath11k_base *ab = ab_pci->ab; 544 545 pcie_capability_read_word(ab_pci->pdev, PCI_EXP_LNKCTL, 546 &ab_pci->link_ctl); 547 548 ath11k_dbg(ab, ATH11K_DBG_PCI, "pci link_ctl 0x%04x L0s %d L1 %d\n", 549 ab_pci->link_ctl, 550 u16_get_bits(ab_pci->link_ctl, PCI_EXP_LNKCTL_ASPM_L0S), 551 u16_get_bits(ab_pci->link_ctl, PCI_EXP_LNKCTL_ASPM_L1)); 552 553 /* disable L0s and L1 */ 554 pcie_capability_write_word(ab_pci->pdev, PCI_EXP_LNKCTL, 555 ab_pci->link_ctl & ~PCI_EXP_LNKCTL_ASPMC); 556 557 set_bit(ATH11K_PCI_ASPM_RESTORE, &ab_pci->flags); 558} 559 560static void ath11k_pci_aspm_restore(struct ath11k_pci *ab_pci) 561{ 562 if (test_and_clear_bit(ATH11K_PCI_ASPM_RESTORE, &ab_pci->flags)) 563 pcie_capability_write_word(ab_pci->pdev, PCI_EXP_LNKCTL, 564 ab_pci->link_ctl); 565} 566 567static int ath11k_pci_power_up(struct ath11k_base *ab) 568{ 569 struct ath11k_pci *ab_pci = ath11k_pci_priv(ab); 570 int ret; 571 572 ab_pci->register_window = 0; 573 clear_bit(ATH11K_FLAG_DEVICE_INIT_DONE, &ab->dev_flags); 574 ath11k_pci_sw_reset(ab_pci->ab, true); 575 576 /* Disable ASPM during firmware download due to problems switching 577 * to AMSS state. 578 */ 579 ath11k_pci_aspm_disable(ab_pci); 580 581 ath11k_pci_msi_enable(ab_pci); 582 583 ret = ath11k_mhi_start(ab_pci); 584 if (ret) { 585 ath11k_err(ab, "failed to start mhi: %d\n", ret); 586 return ret; 587 } 588 589 if (ab->hw_params.static_window_map) 590 ath11k_pci_select_static_window(ab_pci); 591 592 return 0; 593} 594 595static void ath11k_pci_power_down(struct ath11k_base *ab) 596{ 597 struct ath11k_pci *ab_pci = ath11k_pci_priv(ab); 598 599 /* restore aspm in case firmware bootup fails */ 600 ath11k_pci_aspm_restore(ab_pci); 601 602 ath11k_pci_force_wake(ab_pci->ab); 603 604 ath11k_pci_msi_disable(ab_pci); 605 606 ath11k_mhi_stop(ab_pci); 607 clear_bit(ATH11K_FLAG_DEVICE_INIT_DONE, &ab->dev_flags); 608 ath11k_pci_sw_reset(ab_pci->ab, false); 609} 610 611static int ath11k_pci_hif_suspend(struct ath11k_base *ab) 612{ 613 struct ath11k_pci *ar_pci = ath11k_pci_priv(ab); 614 615 return ath11k_mhi_suspend(ar_pci); 616} 617 618static int ath11k_pci_hif_resume(struct ath11k_base *ab) 619{ 620 struct ath11k_pci *ar_pci = ath11k_pci_priv(ab); 621 622 return ath11k_mhi_resume(ar_pci); 623} 624 625static void ath11k_pci_hif_ce_irq_enable(struct ath11k_base *ab) 626{ 627 ath11k_pcic_ce_irqs_enable(ab); 628} 629 630static void ath11k_pci_hif_ce_irq_disable(struct ath11k_base *ab) 631{ 632 ath11k_pcic_ce_irq_disable_sync(ab); 633} 634 635static int ath11k_pci_start(struct ath11k_base *ab) 636{ 637 struct ath11k_pci *ab_pci = ath11k_pci_priv(ab); 638 639 /* TODO: for now don't restore ASPM in case of single MSI 640 * vector as MHI register reading in M2 causes system hang. 641 */ 642 if (test_bit(ATH11K_FLAG_MULTI_MSI_VECTORS, &ab->dev_flags)) 643 ath11k_pci_aspm_restore(ab_pci); 644 else 645 ath11k_info(ab, "leaving PCI ASPM disabled to avoid MHI M2 problems\n"); 646 647 ath11k_pcic_start(ab); 648 649 return 0; 650} 651 652static const struct ath11k_hif_ops ath11k_pci_hif_ops = { 653 .start = ath11k_pci_start, 654 .stop = ath11k_pcic_stop, 655 .read32 = ath11k_pcic_read32, 656 .write32 = ath11k_pcic_write32, 657 .power_down = ath11k_pci_power_down, 658 .power_up = ath11k_pci_power_up, 659 .suspend = ath11k_pci_hif_suspend, 660 .resume = ath11k_pci_hif_resume, 661 .irq_enable = ath11k_pcic_ext_irq_enable, 662 .irq_disable = ath11k_pcic_ext_irq_disable, 663 .get_msi_address = ath11k_pcic_get_msi_address, 664 .get_user_msi_vector = ath11k_pcic_get_user_msi_assignment, 665 .map_service_to_pipe = ath11k_pcic_map_service_to_pipe, 666 .ce_irq_enable = ath11k_pci_hif_ce_irq_enable, 667 .ce_irq_disable = ath11k_pci_hif_ce_irq_disable, 668 .get_ce_msi_idx = ath11k_pcic_get_ce_msi_idx, 669}; 670 671static void ath11k_pci_read_hw_version(struct ath11k_base *ab, u32 *major, u32 *minor) 672{ 673 u32 soc_hw_version; 674 675 soc_hw_version = ath11k_pcic_read32(ab, TCSR_SOC_HW_VERSION); 676 *major = FIELD_GET(TCSR_SOC_HW_VERSION_MAJOR_MASK, 677 soc_hw_version); 678 *minor = FIELD_GET(TCSR_SOC_HW_VERSION_MINOR_MASK, 679 soc_hw_version); 680 681 ath11k_dbg(ab, ATH11K_DBG_PCI, "pci tcsr_soc_hw_version major %d minor %d\n", 682 *major, *minor); 683} 684 685static int ath11k_pci_set_irq_affinity_hint(struct ath11k_pci *ab_pci, 686 const struct cpumask *m) 687{ 688 if (test_bit(ATH11K_FLAG_MULTI_MSI_VECTORS, &ab_pci->ab->dev_flags)) 689 return 0; 690 691 return irq_set_affinity_hint(ab_pci->pdev->irq, m); 692} 693 694static int ath11k_pci_probe(struct pci_dev *pdev, 695 const struct pci_device_id *pci_dev) 696{ 697 struct ath11k_base *ab; 698 struct ath11k_pci *ab_pci; 699 u32 soc_hw_version_major, soc_hw_version_minor, addr; 700 int ret; 701 702 ab = ath11k_core_alloc(&pdev->dev, sizeof(*ab_pci), ATH11K_BUS_PCI); 703 704 if (!ab) { 705 dev_err(&pdev->dev, "failed to allocate ath11k base\n"); 706 return -ENOMEM; 707 } 708 709 ab->dev = &pdev->dev; 710 pci_set_drvdata(pdev, ab); 711 ab_pci = ath11k_pci_priv(ab); 712 ab_pci->dev_id = pci_dev->device; 713 ab_pci->ab = ab; 714 ab_pci->pdev = pdev; 715 ab->hif.ops = &ath11k_pci_hif_ops; 716 pci_set_drvdata(pdev, ab); 717 spin_lock_init(&ab_pci->window_lock); 718 719 /* Set fixed_mem_region to true for platforms support reserved memory 720 * from DT. If memory is reserved from DT for FW, ath11k driver need not 721 * allocate memory. 722 */ 723 ret = of_property_read_u32(ab->dev->of_node, "memory-region", &addr); 724 if (!ret) 725 set_bit(ATH11K_FLAG_FIXED_MEM_RGN, &ab->dev_flags); 726 727 ret = ath11k_pci_claim(ab_pci, pdev); 728 if (ret) { 729 ath11k_err(ab, "failed to claim device: %d\n", ret); 730 goto err_free_core; 731 } 732 733 ath11k_dbg(ab, ATH11K_DBG_BOOT, "pci probe %04x:%04x %04x:%04x\n", 734 pdev->vendor, pdev->device, 735 pdev->subsystem_vendor, pdev->subsystem_device); 736 737 ab->id.vendor = pdev->vendor; 738 ab->id.device = pdev->device; 739 ab->id.subsystem_vendor = pdev->subsystem_vendor; 740 ab->id.subsystem_device = pdev->subsystem_device; 741 742 switch (pci_dev->device) { 743 case QCA6390_DEVICE_ID: 744 ath11k_pci_read_hw_version(ab, &soc_hw_version_major, 745 &soc_hw_version_minor); 746 switch (soc_hw_version_major) { 747 case 2: 748 ab->hw_rev = ATH11K_HW_QCA6390_HW20; 749 break; 750 default: 751 dev_err(&pdev->dev, "Unsupported QCA6390 SOC hardware version: %d %d\n", 752 soc_hw_version_major, soc_hw_version_minor); 753 ret = -EOPNOTSUPP; 754 goto err_pci_free_region; 755 } 756 757 ab->pci.ops = &ath11k_pci_ops_qca6390; 758 break; 759 case QCN9074_DEVICE_ID: 760 ab->pci.ops = &ath11k_pci_ops_qcn9074; 761 ab->hw_rev = ATH11K_HW_QCN9074_HW10; 762 break; 763 case WCN6855_DEVICE_ID: 764 ab->id.bdf_search = ATH11K_BDF_SEARCH_BUS_AND_BOARD; 765 ath11k_pci_read_hw_version(ab, &soc_hw_version_major, 766 &soc_hw_version_minor); 767 switch (soc_hw_version_major) { 768 case 2: 769 switch (soc_hw_version_minor) { 770 case 0x00: 771 case 0x01: 772 ab->hw_rev = ATH11K_HW_WCN6855_HW20; 773 break; 774 case 0x10: 775 case 0x11: 776 ab->hw_rev = ATH11K_HW_WCN6855_HW21; 777 break; 778 default: 779 goto unsupported_wcn6855_soc; 780 } 781 break; 782 default: 783unsupported_wcn6855_soc: 784 dev_err(&pdev->dev, "Unsupported WCN6855 SOC hardware version: %d %d\n", 785 soc_hw_version_major, soc_hw_version_minor); 786 ret = -EOPNOTSUPP; 787 goto err_pci_free_region; 788 } 789 790 ab->pci.ops = &ath11k_pci_ops_qca6390; 791 break; 792 default: 793 dev_err(&pdev->dev, "Unknown PCI device found: 0x%x\n", 794 pci_dev->device); 795 ret = -EOPNOTSUPP; 796 goto err_pci_free_region; 797 } 798 799 ret = ath11k_pcic_init_msi_config(ab); 800 if (ret) { 801 ath11k_err(ab, "failed to init msi config: %d\n", ret); 802 goto err_pci_free_region; 803 } 804 805 ret = ath11k_pci_alloc_msi(ab_pci); 806 if (ret) { 807 ath11k_err(ab, "failed to enable msi: %d\n", ret); 808 goto err_pci_free_region; 809 } 810 811 ret = ath11k_core_pre_init(ab); 812 if (ret) 813 goto err_pci_disable_msi; 814 815 ret = ath11k_mhi_register(ab_pci); 816 if (ret) { 817 ath11k_err(ab, "failed to register mhi: %d\n", ret); 818 goto err_pci_disable_msi; 819 } 820 821 ret = ath11k_hal_srng_init(ab); 822 if (ret) 823 goto err_mhi_unregister; 824 825 ret = ath11k_ce_alloc_pipes(ab); 826 if (ret) { 827 ath11k_err(ab, "failed to allocate ce pipes: %d\n", ret); 828 goto err_hal_srng_deinit; 829 } 830 831 ath11k_pci_init_qmi_ce_config(ab); 832 833 ret = ath11k_pcic_config_irq(ab); 834 if (ret) { 835 ath11k_err(ab, "failed to config irq: %d\n", ret); 836 goto err_ce_free; 837 } 838 839 ret = ath11k_pci_set_irq_affinity_hint(ab_pci, cpumask_of(0)); 840 if (ret) { 841 ath11k_err(ab, "failed to set irq affinity %d\n", ret); 842 goto err_free_irq; 843 } 844 845 /* kernel may allocate a dummy vector before request_irq and 846 * then allocate a real vector when request_irq is called. 847 * So get msi_data here again to avoid spurious interrupt 848 * as msi_data will configured to srngs. 849 */ 850 ret = ath11k_pci_config_msi_data(ab_pci); 851 if (ret) { 852 ath11k_err(ab, "failed to config msi_data: %d\n", ret); 853 goto err_irq_affinity_cleanup; 854 } 855 856 ret = ath11k_core_init(ab); 857 if (ret) { 858 ath11k_err(ab, "failed to init core: %d\n", ret); 859 goto err_irq_affinity_cleanup; 860 } 861 return 0; 862 863err_irq_affinity_cleanup: 864 ath11k_pci_set_irq_affinity_hint(ab_pci, NULL); 865 866err_free_irq: 867 ath11k_pcic_free_irq(ab); 868 869err_ce_free: 870 ath11k_ce_free_pipes(ab); 871 872err_hal_srng_deinit: 873 ath11k_hal_srng_deinit(ab); 874 875err_mhi_unregister: 876 ath11k_mhi_unregister(ab_pci); 877 878err_pci_disable_msi: 879 ath11k_pci_free_msi(ab_pci); 880 881err_pci_free_region: 882 ath11k_pci_free_region(ab_pci); 883 884err_free_core: 885 ath11k_core_free(ab); 886 887 return ret; 888} 889 890static void ath11k_pci_remove(struct pci_dev *pdev) 891{ 892 struct ath11k_base *ab = pci_get_drvdata(pdev); 893 struct ath11k_pci *ab_pci = ath11k_pci_priv(ab); 894 895 ath11k_pci_set_irq_affinity_hint(ab_pci, NULL); 896 897 if (test_bit(ATH11K_FLAG_QMI_FAIL, &ab->dev_flags)) { 898 ath11k_pci_power_down(ab); 899 ath11k_debugfs_soc_destroy(ab); 900 ath11k_qmi_deinit_service(ab); 901 goto qmi_fail; 902 } 903 904 set_bit(ATH11K_FLAG_UNREGISTERING, &ab->dev_flags); 905 906 ath11k_core_deinit(ab); 907 908qmi_fail: 909 ath11k_mhi_unregister(ab_pci); 910 911 ath11k_pcic_free_irq(ab); 912 ath11k_pci_free_msi(ab_pci); 913 ath11k_pci_free_region(ab_pci); 914 915 ath11k_hal_srng_deinit(ab); 916 ath11k_ce_free_pipes(ab); 917 ath11k_core_free(ab); 918} 919 920static void ath11k_pci_shutdown(struct pci_dev *pdev) 921{ 922 struct ath11k_base *ab = pci_get_drvdata(pdev); 923 924 ath11k_pci_power_down(ab); 925} 926 927static __maybe_unused int ath11k_pci_pm_suspend(struct device *dev) 928{ 929 struct ath11k_base *ab = dev_get_drvdata(dev); 930 int ret; 931 932 if (test_bit(ATH11K_FLAG_QMI_FAIL, &ab->dev_flags)) { 933 ath11k_dbg(ab, ATH11K_DBG_BOOT, "boot skipping pci suspend as qmi is not initialised\n"); 934 return 0; 935 } 936 937 ret = ath11k_core_suspend(ab); 938 if (ret) 939 ath11k_warn(ab, "failed to suspend core: %d\n", ret); 940 941 return ret; 942} 943 944static __maybe_unused int ath11k_pci_pm_resume(struct device *dev) 945{ 946 struct ath11k_base *ab = dev_get_drvdata(dev); 947 int ret; 948 949 if (test_bit(ATH11K_FLAG_QMI_FAIL, &ab->dev_flags)) { 950 ath11k_dbg(ab, ATH11K_DBG_BOOT, "boot skipping pci resume as qmi is not initialised\n"); 951 return 0; 952 } 953 954 ret = ath11k_core_resume(ab); 955 if (ret) 956 ath11k_warn(ab, "failed to resume core: %d\n", ret); 957 958 return ret; 959} 960 961static SIMPLE_DEV_PM_OPS(ath11k_pci_pm_ops, 962 ath11k_pci_pm_suspend, 963 ath11k_pci_pm_resume); 964 965static struct pci_driver ath11k_pci_driver = { 966 .name = "ath11k_pci", 967 .id_table = ath11k_pci_id_table, 968 .probe = ath11k_pci_probe, 969 .remove = ath11k_pci_remove, 970 .shutdown = ath11k_pci_shutdown, 971#ifdef CONFIG_PM 972 .driver.pm = &ath11k_pci_pm_ops, 973#endif 974}; 975 976static int ath11k_pci_init(void) 977{ 978 int ret; 979 980 ret = pci_register_driver(&ath11k_pci_driver); 981 if (ret) 982 pr_err("failed to register ath11k pci driver: %d\n", 983 ret); 984 985 return ret; 986} 987module_init(ath11k_pci_init); 988 989static void ath11k_pci_exit(void) 990{ 991 pci_unregister_driver(&ath11k_pci_driver); 992} 993 994module_exit(ath11k_pci_exit); 995 996MODULE_DESCRIPTION("Driver support for Qualcomm Technologies 802.11ax WLAN PCIe devices"); 997MODULE_LICENSE("Dual BSD/GPL"); 998 999/* QCA639x 2.0 firmware files */ 1000MODULE_FIRMWARE(ATH11K_FW_DIR "/QCA6390/hw2.0/" ATH11K_BOARD_API2_FILE); 1001MODULE_FIRMWARE(ATH11K_FW_DIR "/QCA6390/hw2.0/" ATH11K_AMSS_FILE); 1002MODULE_FIRMWARE(ATH11K_FW_DIR "/QCA6390/hw2.0/" ATH11K_M3_FILE);