1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * skl.c - Implementation of ASoC Intel SKL HD Audio driver 4 * 5 * Copyright (C) 2014-2015 Intel Corp 6 * Author: Jeeja KP <jeeja.kp@intel.com> 7 * 8 * Derived mostly from Intel HDA driver with following copyrights: 9 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de> 10 * PeiSen Hou <pshou@realtek.com.tw> 11 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 12 * 13 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 14 */ 15 16 #include <linux/module.h> 17 #include <linux/pci.h> 18 #include <linux/pm_runtime.h> 19 #include <linux/platform_device.h> 20 #include <linux/firmware.h> 21 #include <linux/delay.h> 22 #include <sound/pcm.h> 23 #include <sound/soc-acpi.h> 24 #include <sound/soc-acpi-intel-match.h> 25 #include <sound/hda_register.h> 26 #include <sound/hdaudio.h> 27 #include <sound/hda_i915.h> 28 #include <sound/hda_codec.h> 29 #include <sound/intel-nhlt.h> 30 #include <sound/intel-dsp-config.h> 31 #include "skl.h" 32 #include "skl-sst-dsp.h" 33 #include "skl-sst-ipc.h" 34 35 #if IS_ENABLED(CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC) 36 #include "../../../soc/codecs/hdac_hda.h" 37 #endif 38 static int skl_pci_binding; 39 module_param_named(pci_binding, skl_pci_binding, int, 0444); 40 MODULE_PARM_DESC(pci_binding, "PCI binding (0=auto, 1=only legacy, 2=only asoc"); 41 42 /* 43 * initialize the PCI registers 44 */ 45 static void skl_update_pci_byte(struct pci_dev *pci, unsigned int reg, 46 unsigned char mask, unsigned char val) 47 { 48 unsigned char data; 49 50 pci_read_config_byte(pci, reg, &data); 51 data &= ~mask; 52 data |= (val & mask); 53 pci_write_config_byte(pci, reg, data); 54 } 55 56 static void skl_init_pci(struct skl_dev *skl) 57 { 58 struct hdac_bus *bus = skl_to_bus(skl); 59 60 /* 61 * Clear bits 0-2 of PCI register TCSEL (at offset 0x44) 62 * TCSEL == Traffic Class Select Register, which sets PCI express QOS 63 * Ensuring these bits are 0 clears playback static on some HD Audio 64 * codecs. 65 * The PCI register TCSEL is defined in the Intel manuals. 66 */ 67 dev_dbg(bus->dev, "Clearing TCSEL\n"); 68 skl_update_pci_byte(skl->pci, AZX_PCIREG_TCSEL, 0x07, 0); 69 } 70 71 static void update_pci_dword(struct pci_dev *pci, 72 unsigned int reg, u32 mask, u32 val) 73 { 74 u32 data = 0; 75 76 pci_read_config_dword(pci, reg, &data); 77 data &= ~mask; 78 data |= (val & mask); 79 pci_write_config_dword(pci, reg, data); 80 } 81 82 /* 83 * skl_enable_miscbdcge - enable/dsiable CGCTL.MISCBDCGE bits 84 * 85 * @dev: device pointer 86 * @enable: enable/disable flag 87 */ 88 static void skl_enable_miscbdcge(struct device *dev, bool enable) 89 { 90 struct pci_dev *pci = to_pci_dev(dev); 91 u32 val; 92 93 val = enable ? AZX_CGCTL_MISCBDCGE_MASK : 0; 94 95 update_pci_dword(pci, AZX_PCIREG_CGCTL, AZX_CGCTL_MISCBDCGE_MASK, val); 96 } 97 98 /** 99 * skl_clock_power_gating: Enable/Disable clock and power gating 100 * 101 * @dev: Device pointer 102 * @enable: Enable/Disable flag 103 */ 104 static void skl_clock_power_gating(struct device *dev, bool enable) 105 { 106 struct pci_dev *pci = to_pci_dev(dev); 107 struct hdac_bus *bus = pci_get_drvdata(pci); 108 u32 val; 109 110 /* Update PDCGE bit of CGCTL register */ 111 val = enable ? AZX_CGCTL_ADSPDCGE : 0; 112 update_pci_dword(pci, AZX_PCIREG_CGCTL, AZX_CGCTL_ADSPDCGE, val); 113 114 /* Update L1SEN bit of EM2 register */ 115 val = enable ? AZX_REG_VS_EM2_L1SEN : 0; 116 snd_hdac_chip_updatel(bus, VS_EM2, AZX_REG_VS_EM2_L1SEN, val); 117 118 /* Update ADSPPGD bit of PGCTL register */ 119 val = enable ? 0 : AZX_PGCTL_ADSPPGD; 120 update_pci_dword(pci, AZX_PCIREG_PGCTL, AZX_PGCTL_ADSPPGD, val); 121 } 122 123 /* 124 * While performing reset, controller may not come back properly causing 125 * issues, so recommendation is to set CGCTL.MISCBDCGE to 0 then do reset 126 * (init chip) and then again set CGCTL.MISCBDCGE to 1 127 */ 128 static int skl_init_chip(struct hdac_bus *bus, bool full_reset) 129 { 130 struct hdac_ext_link *hlink; 131 int ret; 132 133 skl_enable_miscbdcge(bus->dev, false); 134 ret = snd_hdac_bus_init_chip(bus, full_reset); 135 136 /* Reset stream-to-link mapping */ 137 list_for_each_entry(hlink, &bus->hlink_list, list) 138 writel(0, hlink->ml_addr + AZX_REG_ML_LOSIDV); 139 140 skl_enable_miscbdcge(bus->dev, true); 141 142 return ret; 143 } 144 145 void skl_update_d0i3c(struct device *dev, bool enable) 146 { 147 struct pci_dev *pci = to_pci_dev(dev); 148 struct hdac_bus *bus = pci_get_drvdata(pci); 149 u8 reg; 150 int timeout = 50; 151 152 reg = snd_hdac_chip_readb(bus, VS_D0I3C); 153 /* Do not write to D0I3C until command in progress bit is cleared */ 154 while ((reg & AZX_REG_VS_D0I3C_CIP) && --timeout) { 155 udelay(10); 156 reg = snd_hdac_chip_readb(bus, VS_D0I3C); 157 } 158 159 /* Highly unlikely. But if it happens, flag error explicitly */ 160 if (!timeout) { 161 dev_err(bus->dev, "Before D0I3C update: D0I3C CIP timeout\n"); 162 return; 163 } 164 165 if (enable) 166 reg = reg | AZX_REG_VS_D0I3C_I3; 167 else 168 reg = reg & (~AZX_REG_VS_D0I3C_I3); 169 170 snd_hdac_chip_writeb(bus, VS_D0I3C, reg); 171 172 timeout = 50; 173 /* Wait for cmd in progress to be cleared before exiting the function */ 174 reg = snd_hdac_chip_readb(bus, VS_D0I3C); 175 while ((reg & AZX_REG_VS_D0I3C_CIP) && --timeout) { 176 udelay(10); 177 reg = snd_hdac_chip_readb(bus, VS_D0I3C); 178 } 179 180 /* Highly unlikely. But if it happens, flag error explicitly */ 181 if (!timeout) { 182 dev_err(bus->dev, "After D0I3C update: D0I3C CIP timeout\n"); 183 return; 184 } 185 186 dev_dbg(bus->dev, "D0I3C register = 0x%x\n", 187 snd_hdac_chip_readb(bus, VS_D0I3C)); 188 } 189 190 /** 191 * skl_dum_set - set DUM bit in EM2 register 192 * @bus: HD-audio core bus 193 * 194 * Addresses incorrect position reporting for capture streams. 195 * Used on device power up. 196 */ 197 static void skl_dum_set(struct hdac_bus *bus) 198 { 199 /* For the DUM bit to be set, CRST needs to be out of reset state */ 200 if (!(snd_hdac_chip_readb(bus, GCTL) & AZX_GCTL_RESET)) { 201 skl_enable_miscbdcge(bus->dev, false); 202 snd_hdac_bus_exit_link_reset(bus); 203 skl_enable_miscbdcge(bus->dev, true); 204 } 205 206 snd_hdac_chip_updatel(bus, VS_EM2, AZX_VS_EM2_DUM, AZX_VS_EM2_DUM); 207 } 208 209 /* called from IRQ */ 210 static void skl_stream_update(struct hdac_bus *bus, struct hdac_stream *hstr) 211 { 212 snd_pcm_period_elapsed(hstr->substream); 213 } 214 215 static irqreturn_t skl_interrupt(int irq, void *dev_id) 216 { 217 struct hdac_bus *bus = dev_id; 218 u32 status; 219 220 if (!pm_runtime_active(bus->dev)) 221 return IRQ_NONE; 222 223 spin_lock(&bus->reg_lock); 224 225 status = snd_hdac_chip_readl(bus, INTSTS); 226 if (status == 0 || status == 0xffffffff) { 227 spin_unlock(&bus->reg_lock); 228 return IRQ_NONE; 229 } 230 231 /* clear rirb int */ 232 status = snd_hdac_chip_readb(bus, RIRBSTS); 233 if (status & RIRB_INT_MASK) { 234 if (status & RIRB_INT_RESPONSE) 235 snd_hdac_bus_update_rirb(bus); 236 snd_hdac_chip_writeb(bus, RIRBSTS, RIRB_INT_MASK); 237 } 238 239 spin_unlock(&bus->reg_lock); 240 241 return snd_hdac_chip_readl(bus, INTSTS) ? IRQ_WAKE_THREAD : IRQ_HANDLED; 242 } 243 244 static irqreturn_t skl_threaded_handler(int irq, void *dev_id) 245 { 246 struct hdac_bus *bus = dev_id; 247 u32 status; 248 249 status = snd_hdac_chip_readl(bus, INTSTS); 250 251 snd_hdac_bus_handle_stream_irq(bus, status, skl_stream_update); 252 253 return IRQ_HANDLED; 254 } 255 256 static int skl_acquire_irq(struct hdac_bus *bus, int do_disconnect) 257 { 258 struct skl_dev *skl = bus_to_skl(bus); 259 int ret; 260 261 ret = request_threaded_irq(skl->pci->irq, skl_interrupt, 262 skl_threaded_handler, 263 IRQF_SHARED, 264 KBUILD_MODNAME, bus); 265 if (ret) { 266 dev_err(bus->dev, 267 "unable to grab IRQ %d, disabling device\n", 268 skl->pci->irq); 269 return ret; 270 } 271 272 bus->irq = skl->pci->irq; 273 pci_intx(skl->pci, 1); 274 275 return 0; 276 } 277 278 static int skl_suspend_late(struct device *dev) 279 { 280 struct pci_dev *pci = to_pci_dev(dev); 281 struct hdac_bus *bus = pci_get_drvdata(pci); 282 struct skl_dev *skl = bus_to_skl(bus); 283 284 return skl_suspend_late_dsp(skl); 285 } 286 287 #ifdef CONFIG_PM 288 static int _skl_suspend(struct hdac_bus *bus) 289 { 290 struct skl_dev *skl = bus_to_skl(bus); 291 struct pci_dev *pci = to_pci_dev(bus->dev); 292 int ret; 293 294 snd_hdac_ext_bus_link_power_down_all(bus); 295 296 ret = skl_suspend_dsp(skl); 297 if (ret < 0) 298 return ret; 299 300 snd_hdac_bus_stop_chip(bus); 301 update_pci_dword(pci, AZX_PCIREG_PGCTL, 302 AZX_PGCTL_LSRMD_MASK, AZX_PGCTL_LSRMD_MASK); 303 skl_enable_miscbdcge(bus->dev, false); 304 snd_hdac_bus_enter_link_reset(bus); 305 skl_enable_miscbdcge(bus->dev, true); 306 skl_cleanup_resources(skl); 307 308 return 0; 309 } 310 311 static int _skl_resume(struct hdac_bus *bus) 312 { 313 struct skl_dev *skl = bus_to_skl(bus); 314 315 skl_init_pci(skl); 316 skl_dum_set(bus); 317 skl_init_chip(bus, true); 318 319 return skl_resume_dsp(skl); 320 } 321 #endif 322 323 #ifdef CONFIG_PM_SLEEP 324 /* 325 * power management 326 */ 327 static int skl_suspend(struct device *dev) 328 { 329 struct pci_dev *pci = to_pci_dev(dev); 330 struct hdac_bus *bus = pci_get_drvdata(pci); 331 struct skl_dev *skl = bus_to_skl(bus); 332 int ret; 333 334 /* 335 * Do not suspend if streams which are marked ignore suspend are 336 * running, we need to save the state for these and continue 337 */ 338 if (skl->supend_active) { 339 /* turn off the links and stop the CORB/RIRB DMA if it is On */ 340 snd_hdac_ext_bus_link_power_down_all(bus); 341 342 if (bus->cmd_dma_state) 343 snd_hdac_bus_stop_cmd_io(bus); 344 345 enable_irq_wake(bus->irq); 346 pci_save_state(pci); 347 } else { 348 ret = _skl_suspend(bus); 349 if (ret < 0) 350 return ret; 351 skl->fw_loaded = false; 352 } 353 354 return 0; 355 } 356 357 static int skl_resume(struct device *dev) 358 { 359 struct pci_dev *pci = to_pci_dev(dev); 360 struct hdac_bus *bus = pci_get_drvdata(pci); 361 struct skl_dev *skl = bus_to_skl(bus); 362 struct hdac_ext_link *hlink = NULL; 363 int ret; 364 365 /* 366 * resume only when we are not in suspend active, otherwise need to 367 * restore the device 368 */ 369 if (skl->supend_active) { 370 pci_restore_state(pci); 371 snd_hdac_ext_bus_link_power_up_all(bus); 372 disable_irq_wake(bus->irq); 373 /* 374 * turn On the links which are On before active suspend 375 * and start the CORB/RIRB DMA if On before 376 * active suspend. 377 */ 378 list_for_each_entry(hlink, &bus->hlink_list, list) { 379 if (hlink->ref_count) 380 snd_hdac_ext_bus_link_power_up(hlink); 381 } 382 383 ret = 0; 384 if (bus->cmd_dma_state) 385 snd_hdac_bus_init_cmd_io(bus); 386 } else { 387 ret = _skl_resume(bus); 388 389 /* turn off the links which are off before suspend */ 390 list_for_each_entry(hlink, &bus->hlink_list, list) { 391 if (!hlink->ref_count) 392 snd_hdac_ext_bus_link_power_down(hlink); 393 } 394 395 if (!bus->cmd_dma_state) 396 snd_hdac_bus_stop_cmd_io(bus); 397 } 398 399 return ret; 400 } 401 #endif /* CONFIG_PM_SLEEP */ 402 403 #ifdef CONFIG_PM 404 static int skl_runtime_suspend(struct device *dev) 405 { 406 struct pci_dev *pci = to_pci_dev(dev); 407 struct hdac_bus *bus = pci_get_drvdata(pci); 408 409 dev_dbg(bus->dev, "in %s\n", __func__); 410 411 return _skl_suspend(bus); 412 } 413 414 static int skl_runtime_resume(struct device *dev) 415 { 416 struct pci_dev *pci = to_pci_dev(dev); 417 struct hdac_bus *bus = pci_get_drvdata(pci); 418 419 dev_dbg(bus->dev, "in %s\n", __func__); 420 421 return _skl_resume(bus); 422 } 423 #endif /* CONFIG_PM */ 424 425 static const struct dev_pm_ops skl_pm = { 426 SET_SYSTEM_SLEEP_PM_OPS(skl_suspend, skl_resume) 427 SET_RUNTIME_PM_OPS(skl_runtime_suspend, skl_runtime_resume, NULL) 428 .suspend_late = skl_suspend_late, 429 }; 430 431 /* 432 * destructor 433 */ 434 static int skl_free(struct hdac_bus *bus) 435 { 436 struct skl_dev *skl = bus_to_skl(bus); 437 438 skl->init_done = 0; /* to be sure */ 439 440 snd_hdac_ext_stop_streams(bus); 441 442 if (bus->irq >= 0) 443 free_irq(bus->irq, (void *)bus); 444 snd_hdac_bus_free_stream_pages(bus); 445 snd_hdac_stream_free_all(bus); 446 snd_hdac_link_free_all(bus); 447 448 if (bus->remap_addr) 449 iounmap(bus->remap_addr); 450 451 pci_release_regions(skl->pci); 452 pci_disable_device(skl->pci); 453 454 snd_hdac_ext_bus_exit(bus); 455 456 if (IS_ENABLED(CONFIG_SND_SOC_HDAC_HDMI)) { 457 snd_hdac_display_power(bus, HDA_CODEC_IDX_CONTROLLER, false); 458 snd_hdac_i915_exit(bus); 459 } 460 461 return 0; 462 } 463 464 /* 465 * For each ssp there are 3 clocks (mclk/sclk/sclkfs). 466 * e.g. for ssp0, clocks will be named as 467 * "ssp0_mclk", "ssp0_sclk", "ssp0_sclkfs" 468 * So for skl+, there are 6 ssps, so 18 clocks will be created. 469 */ 470 static struct skl_ssp_clk skl_ssp_clks[] = { 471 {.name = "ssp0_mclk"}, {.name = "ssp1_mclk"}, {.name = "ssp2_mclk"}, 472 {.name = "ssp3_mclk"}, {.name = "ssp4_mclk"}, {.name = "ssp5_mclk"}, 473 {.name = "ssp0_sclk"}, {.name = "ssp1_sclk"}, {.name = "ssp2_sclk"}, 474 {.name = "ssp3_sclk"}, {.name = "ssp4_sclk"}, {.name = "ssp5_sclk"}, 475 {.name = "ssp0_sclkfs"}, {.name = "ssp1_sclkfs"}, 476 {.name = "ssp2_sclkfs"}, 477 {.name = "ssp3_sclkfs"}, {.name = "ssp4_sclkfs"}, 478 {.name = "ssp5_sclkfs"}, 479 }; 480 481 static struct snd_soc_acpi_mach *skl_find_hda_machine(struct skl_dev *skl, 482 struct snd_soc_acpi_mach *machines) 483 { 484 struct hdac_bus *bus = skl_to_bus(skl); 485 struct snd_soc_acpi_mach *mach; 486 487 /* check if we have any codecs detected on bus */ 488 if (bus->codec_mask == 0) 489 return NULL; 490 491 /* point to common table */ 492 mach = snd_soc_acpi_intel_hda_machines; 493 494 /* all entries in the machine table use the same firmware */ 495 mach->fw_filename = machines->fw_filename; 496 497 return mach; 498 } 499 500 static int skl_find_machine(struct skl_dev *skl, void *driver_data) 501 { 502 struct hdac_bus *bus = skl_to_bus(skl); 503 struct snd_soc_acpi_mach *mach = driver_data; 504 struct skl_machine_pdata *pdata; 505 506 mach = snd_soc_acpi_find_machine(mach); 507 if (!mach) { 508 dev_dbg(bus->dev, "No matching I2S machine driver found\n"); 509 mach = skl_find_hda_machine(skl, driver_data); 510 if (!mach) { 511 dev_err(bus->dev, "No matching machine driver found\n"); 512 return -ENODEV; 513 } 514 } 515 516 skl->mach = mach; 517 skl->fw_name = mach->fw_filename; 518 pdata = mach->pdata; 519 520 if (pdata) { 521 skl->use_tplg_pcm = pdata->use_tplg_pcm; 522 mach->mach_params.dmic_num = 523 intel_nhlt_get_dmic_geo(&skl->pci->dev, 524 skl->nhlt); 525 } 526 527 return 0; 528 } 529 530 static int skl_machine_device_register(struct skl_dev *skl) 531 { 532 struct snd_soc_acpi_mach *mach = skl->mach; 533 struct hdac_bus *bus = skl_to_bus(skl); 534 struct platform_device *pdev; 535 int ret; 536 537 pdev = platform_device_alloc(mach->drv_name, -1); 538 if (pdev == NULL) { 539 dev_err(bus->dev, "platform device alloc failed\n"); 540 return -EIO; 541 } 542 543 mach->mach_params.platform = dev_name(bus->dev); 544 mach->mach_params.codec_mask = bus->codec_mask; 545 546 ret = platform_device_add_data(pdev, (const void *)mach, sizeof(*mach)); 547 if (ret) { 548 dev_err(bus->dev, "failed to add machine device platform data\n"); 549 platform_device_put(pdev); 550 return ret; 551 } 552 553 ret = platform_device_add(pdev); 554 if (ret) { 555 dev_err(bus->dev, "failed to add machine device\n"); 556 platform_device_put(pdev); 557 return -EIO; 558 } 559 560 561 skl->i2s_dev = pdev; 562 563 return 0; 564 } 565 566 static void skl_machine_device_unregister(struct skl_dev *skl) 567 { 568 if (skl->i2s_dev) 569 platform_device_unregister(skl->i2s_dev); 570 } 571 572 static int skl_dmic_device_register(struct skl_dev *skl) 573 { 574 struct hdac_bus *bus = skl_to_bus(skl); 575 struct platform_device *pdev; 576 int ret; 577 578 /* SKL has one dmic port, so allocate dmic device for this */ 579 pdev = platform_device_alloc("dmic-codec", -1); 580 if (!pdev) { 581 dev_err(bus->dev, "failed to allocate dmic device\n"); 582 return -ENOMEM; 583 } 584 585 ret = platform_device_add(pdev); 586 if (ret) { 587 dev_err(bus->dev, "failed to add dmic device: %d\n", ret); 588 platform_device_put(pdev); 589 return ret; 590 } 591 skl->dmic_dev = pdev; 592 593 return 0; 594 } 595 596 static void skl_dmic_device_unregister(struct skl_dev *skl) 597 { 598 if (skl->dmic_dev) 599 platform_device_unregister(skl->dmic_dev); 600 } 601 602 static struct skl_clk_parent_src skl_clk_src[] = { 603 { .clk_id = SKL_XTAL, .name = "xtal" }, 604 { .clk_id = SKL_CARDINAL, .name = "cardinal", .rate = 24576000 }, 605 { .clk_id = SKL_PLL, .name = "pll", .rate = 96000000 }, 606 }; 607 608 struct skl_clk_parent_src *skl_get_parent_clk(u8 clk_id) 609 { 610 unsigned int i; 611 612 for (i = 0; i < ARRAY_SIZE(skl_clk_src); i++) { 613 if (skl_clk_src[i].clk_id == clk_id) 614 return &skl_clk_src[i]; 615 } 616 617 return NULL; 618 } 619 620 static void init_skl_xtal_rate(int pci_id) 621 { 622 switch (pci_id) { 623 case 0x9d70: 624 case 0x9d71: 625 skl_clk_src[0].rate = 24000000; 626 return; 627 628 default: 629 skl_clk_src[0].rate = 19200000; 630 return; 631 } 632 } 633 634 static int skl_clock_device_register(struct skl_dev *skl) 635 { 636 struct platform_device_info pdevinfo = {NULL}; 637 struct skl_clk_pdata *clk_pdata; 638 639 clk_pdata = devm_kzalloc(&skl->pci->dev, sizeof(*clk_pdata), 640 GFP_KERNEL); 641 if (!clk_pdata) 642 return -ENOMEM; 643 644 init_skl_xtal_rate(skl->pci->device); 645 646 clk_pdata->parent_clks = skl_clk_src; 647 clk_pdata->ssp_clks = skl_ssp_clks; 648 clk_pdata->num_clks = ARRAY_SIZE(skl_ssp_clks); 649 650 /* Query NHLT to fill the rates and parent */ 651 skl_get_clks(skl, clk_pdata->ssp_clks); 652 clk_pdata->pvt_data = skl; 653 654 /* Register Platform device */ 655 pdevinfo.parent = &skl->pci->dev; 656 pdevinfo.id = -1; 657 pdevinfo.name = "skl-ssp-clk"; 658 pdevinfo.data = clk_pdata; 659 pdevinfo.size_data = sizeof(*clk_pdata); 660 skl->clk_dev = platform_device_register_full(&pdevinfo); 661 return PTR_ERR_OR_ZERO(skl->clk_dev); 662 } 663 664 static void skl_clock_device_unregister(struct skl_dev *skl) 665 { 666 if (skl->clk_dev) 667 platform_device_unregister(skl->clk_dev); 668 } 669 670 #if IS_ENABLED(CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC) 671 672 #define IDISP_INTEL_VENDOR_ID 0x80860000 673 674 /* 675 * load the legacy codec driver 676 */ 677 static void load_codec_module(struct hda_codec *codec) 678 { 679 #ifdef MODULE 680 char modalias[MODULE_NAME_LEN]; 681 const char *mod = NULL; 682 683 snd_hdac_codec_modalias(&codec->core, modalias, sizeof(modalias)); 684 mod = modalias; 685 dev_dbg(&codec->core.dev, "loading %s codec module\n", mod); 686 request_module(mod); 687 #endif 688 } 689 690 #endif /* CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC */ 691 692 /* 693 * Probe the given codec address 694 */ 695 static int probe_codec(struct hdac_bus *bus, int addr) 696 { 697 unsigned int cmd = (addr << 28) | (AC_NODE_ROOT << 20) | 698 (AC_VERB_PARAMETERS << 8) | AC_PAR_VENDOR_ID; 699 unsigned int res = -1; 700 struct skl_dev *skl = bus_to_skl(bus); 701 #if IS_ENABLED(CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC) 702 struct hdac_hda_priv *hda_codec; 703 int err; 704 #endif 705 struct hdac_device *hdev; 706 707 mutex_lock(&bus->cmd_mutex); 708 snd_hdac_bus_send_cmd(bus, cmd); 709 snd_hdac_bus_get_response(bus, addr, &res); 710 mutex_unlock(&bus->cmd_mutex); 711 if (res == -1) 712 return -EIO; 713 dev_dbg(bus->dev, "codec #%d probed OK: %x\n", addr, res); 714 715 #if IS_ENABLED(CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC) 716 hda_codec = devm_kzalloc(&skl->pci->dev, sizeof(*hda_codec), 717 GFP_KERNEL); 718 if (!hda_codec) 719 return -ENOMEM; 720 721 hda_codec->codec.bus = skl_to_hbus(skl); 722 hdev = &hda_codec->codec.core; 723 724 err = snd_hdac_ext_bus_device_init(bus, addr, hdev); 725 if (err < 0) 726 return err; 727 728 /* use legacy bus only for HDA codecs, idisp uses ext bus */ 729 if ((res & 0xFFFF0000) != IDISP_INTEL_VENDOR_ID) { 730 hdev->type = HDA_DEV_LEGACY; 731 load_codec_module(&hda_codec->codec); 732 } 733 return 0; 734 #else 735 hdev = devm_kzalloc(&skl->pci->dev, sizeof(*hdev), GFP_KERNEL); 736 if (!hdev) 737 return -ENOMEM; 738 739 return snd_hdac_ext_bus_device_init(bus, addr, hdev); 740 #endif /* CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC */ 741 } 742 743 /* Codec initialization */ 744 static void skl_codec_create(struct hdac_bus *bus) 745 { 746 int c, max_slots; 747 748 max_slots = HDA_MAX_CODECS; 749 750 /* First try to probe all given codec slots */ 751 for (c = 0; c < max_slots; c++) { 752 if ((bus->codec_mask & (1 << c))) { 753 if (probe_codec(bus, c) < 0) { 754 /* 755 * Some BIOSen give you wrong codec addresses 756 * that don't exist 757 */ 758 dev_warn(bus->dev, 759 "Codec #%d probe error; disabling it...\n", c); 760 bus->codec_mask &= ~(1 << c); 761 /* 762 * More badly, accessing to a non-existing 763 * codec often screws up the controller bus, 764 * and disturbs the further communications. 765 * Thus if an error occurs during probing, 766 * better to reset the controller bus to get 767 * back to the sanity state. 768 */ 769 snd_hdac_bus_stop_chip(bus); 770 skl_init_chip(bus, true); 771 } 772 } 773 } 774 } 775 776 static const struct hdac_bus_ops bus_core_ops = { 777 .command = snd_hdac_bus_send_cmd, 778 .get_response = snd_hdac_bus_get_response, 779 }; 780 781 static int skl_i915_init(struct hdac_bus *bus) 782 { 783 int err; 784 785 /* 786 * The HDMI codec is in GPU so we need to ensure that it is powered 787 * up and ready for probe 788 */ 789 err = snd_hdac_i915_init(bus); 790 if (err < 0) 791 return err; 792 793 snd_hdac_display_power(bus, HDA_CODEC_IDX_CONTROLLER, true); 794 795 return 0; 796 } 797 798 static void skl_probe_work(struct work_struct *work) 799 { 800 struct skl_dev *skl = container_of(work, struct skl_dev, probe_work); 801 struct hdac_bus *bus = skl_to_bus(skl); 802 struct hdac_ext_link *hlink = NULL; 803 int err; 804 805 if (IS_ENABLED(CONFIG_SND_SOC_HDAC_HDMI)) { 806 err = skl_i915_init(bus); 807 if (err < 0) 808 return; 809 } 810 811 err = skl_init_chip(bus, true); 812 if (err < 0) { 813 dev_err(bus->dev, "Init chip failed with err: %d\n", err); 814 goto out_err; 815 } 816 817 /* codec detection */ 818 if (!bus->codec_mask) 819 dev_info(bus->dev, "no hda codecs found!\n"); 820 821 /* create codec instances */ 822 skl_codec_create(bus); 823 824 /* register platform dai and controls */ 825 err = skl_platform_register(bus->dev); 826 if (err < 0) { 827 dev_err(bus->dev, "platform register failed: %d\n", err); 828 goto out_err; 829 } 830 831 err = skl_machine_device_register(skl); 832 if (err < 0) { 833 dev_err(bus->dev, "machine register failed: %d\n", err); 834 goto out_err; 835 } 836 837 /* 838 * we are done probing so decrement link counts 839 */ 840 list_for_each_entry(hlink, &bus->hlink_list, list) 841 snd_hdac_ext_bus_link_put(bus, hlink); 842 843 if (IS_ENABLED(CONFIG_SND_SOC_HDAC_HDMI)) 844 snd_hdac_display_power(bus, HDA_CODEC_IDX_CONTROLLER, false); 845 846 /* configure PM */ 847 pm_runtime_put_noidle(bus->dev); 848 pm_runtime_allow(bus->dev); 849 skl->init_done = 1; 850 851 return; 852 853 out_err: 854 if (IS_ENABLED(CONFIG_SND_SOC_HDAC_HDMI)) 855 snd_hdac_display_power(bus, HDA_CODEC_IDX_CONTROLLER, false); 856 } 857 858 /* 859 * constructor 860 */ 861 static int skl_create(struct pci_dev *pci, 862 struct skl_dev **rskl) 863 { 864 struct hdac_ext_bus_ops *ext_ops = NULL; 865 struct skl_dev *skl; 866 struct hdac_bus *bus; 867 struct hda_bus *hbus; 868 int err; 869 870 *rskl = NULL; 871 872 err = pci_enable_device(pci); 873 if (err < 0) 874 return err; 875 876 skl = devm_kzalloc(&pci->dev, sizeof(*skl), GFP_KERNEL); 877 if (!skl) { 878 pci_disable_device(pci); 879 return -ENOMEM; 880 } 881 882 hbus = skl_to_hbus(skl); 883 bus = skl_to_bus(skl); 884 885 INIT_LIST_HEAD(&skl->ppl_list); 886 INIT_LIST_HEAD(&skl->bind_list); 887 888 #if IS_ENABLED(CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC) 889 ext_ops = snd_soc_hdac_hda_get_ops(); 890 #endif 891 snd_hdac_ext_bus_init(bus, &pci->dev, &bus_core_ops, ext_ops); 892 bus->use_posbuf = 1; 893 skl->pci = pci; 894 INIT_WORK(&skl->probe_work, skl_probe_work); 895 bus->bdl_pos_adj = 0; 896 897 mutex_init(&hbus->prepare_mutex); 898 hbus->pci = pci; 899 hbus->mixer_assigned = -1; 900 hbus->modelname = "sklbus"; 901 902 *rskl = skl; 903 904 return 0; 905 } 906 907 static int skl_first_init(struct hdac_bus *bus) 908 { 909 struct skl_dev *skl = bus_to_skl(bus); 910 struct pci_dev *pci = skl->pci; 911 int err; 912 unsigned short gcap; 913 int cp_streams, pb_streams, start_idx; 914 915 err = pci_request_regions(pci, "Skylake HD audio"); 916 if (err < 0) 917 return err; 918 919 bus->addr = pci_resource_start(pci, 0); 920 bus->remap_addr = pci_ioremap_bar(pci, 0); 921 if (bus->remap_addr == NULL) { 922 dev_err(bus->dev, "ioremap error\n"); 923 return -ENXIO; 924 } 925 926 snd_hdac_bus_reset_link(bus, true); 927 928 snd_hdac_bus_parse_capabilities(bus); 929 930 /* check if PPCAP exists */ 931 if (!bus->ppcap) { 932 dev_err(bus->dev, "bus ppcap not set, HDaudio or DSP not present?\n"); 933 return -ENODEV; 934 } 935 936 if (skl_acquire_irq(bus, 0) < 0) 937 return -EBUSY; 938 939 pci_set_master(pci); 940 synchronize_irq(bus->irq); 941 942 gcap = snd_hdac_chip_readw(bus, GCAP); 943 dev_dbg(bus->dev, "chipset global capabilities = 0x%x\n", gcap); 944 945 /* read number of streams from GCAP register */ 946 cp_streams = (gcap >> 8) & 0x0f; 947 pb_streams = (gcap >> 12) & 0x0f; 948 949 if (!pb_streams && !cp_streams) { 950 dev_err(bus->dev, "no streams found in GCAP definitions?\n"); 951 return -EIO; 952 } 953 954 bus->num_streams = cp_streams + pb_streams; 955 956 /* allow 64bit DMA address if supported by H/W */ 957 if (!dma_set_mask(bus->dev, DMA_BIT_MASK(64))) { 958 dma_set_coherent_mask(bus->dev, DMA_BIT_MASK(64)); 959 } else { 960 dma_set_mask(bus->dev, DMA_BIT_MASK(32)); 961 dma_set_coherent_mask(bus->dev, DMA_BIT_MASK(32)); 962 } 963 964 /* initialize streams */ 965 snd_hdac_ext_stream_init_all 966 (bus, 0, cp_streams, SNDRV_PCM_STREAM_CAPTURE); 967 start_idx = cp_streams; 968 snd_hdac_ext_stream_init_all 969 (bus, start_idx, pb_streams, SNDRV_PCM_STREAM_PLAYBACK); 970 971 err = snd_hdac_bus_alloc_stream_pages(bus); 972 if (err < 0) 973 return err; 974 975 /* initialize chip */ 976 skl_init_pci(skl); 977 skl_dum_set(bus); 978 979 return skl_init_chip(bus, true); 980 } 981 982 static int skl_probe(struct pci_dev *pci, 983 const struct pci_device_id *pci_id) 984 { 985 struct skl_dev *skl; 986 struct hdac_bus *bus = NULL; 987 int err; 988 989 switch (skl_pci_binding) { 990 case SND_SKL_PCI_BIND_AUTO: 991 err = snd_intel_dsp_driver_probe(pci); 992 if (err != SND_INTEL_DSP_DRIVER_ANY && 993 err != SND_INTEL_DSP_DRIVER_SST) 994 return -ENODEV; 995 break; 996 case SND_SKL_PCI_BIND_LEGACY: 997 dev_info(&pci->dev, "Module parameter forced binding with HDaudio legacy, aborting probe\n"); 998 return -ENODEV; 999 case SND_SKL_PCI_BIND_ASOC: 1000 dev_info(&pci->dev, "Module parameter forced binding with SKL driver, bypassed detection logic\n"); 1001 break; 1002 default: 1003 dev_err(&pci->dev, "invalid value for skl_pci_binding module parameter, ignored\n"); 1004 break; 1005 } 1006 1007 /* we use ext core ops, so provide NULL for ops here */ 1008 err = skl_create(pci, &skl); 1009 if (err < 0) 1010 return err; 1011 1012 bus = skl_to_bus(skl); 1013 1014 err = skl_first_init(bus); 1015 if (err < 0) { 1016 dev_err(bus->dev, "skl_first_init failed with err: %d\n", err); 1017 goto out_free; 1018 } 1019 1020 skl->pci_id = pci->device; 1021 1022 device_disable_async_suspend(bus->dev); 1023 1024 skl->nhlt = intel_nhlt_init(bus->dev); 1025 1026 if (skl->nhlt == NULL) { 1027 #if !IS_ENABLED(CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC) 1028 dev_err(bus->dev, "no nhlt info found\n"); 1029 err = -ENODEV; 1030 goto out_free; 1031 #else 1032 dev_warn(bus->dev, "no nhlt info found, continuing to try to enable HDaudio codec\n"); 1033 #endif 1034 } else { 1035 1036 err = skl_nhlt_create_sysfs(skl); 1037 if (err < 0) { 1038 dev_err(bus->dev, "skl_nhlt_create_sysfs failed with err: %d\n", err); 1039 goto out_nhlt_free; 1040 } 1041 1042 skl_nhlt_update_topology_bin(skl); 1043 1044 /* create device for dsp clk */ 1045 err = skl_clock_device_register(skl); 1046 if (err < 0) { 1047 dev_err(bus->dev, "skl_clock_device_register failed with err: %d\n", err); 1048 goto out_clk_free; 1049 } 1050 } 1051 1052 pci_set_drvdata(skl->pci, bus); 1053 1054 1055 err = skl_find_machine(skl, (void *)pci_id->driver_data); 1056 if (err < 0) { 1057 dev_err(bus->dev, "skl_find_machine failed with err: %d\n", err); 1058 goto out_nhlt_free; 1059 } 1060 1061 err = skl_init_dsp(skl); 1062 if (err < 0) { 1063 dev_dbg(bus->dev, "error failed to register dsp\n"); 1064 goto out_nhlt_free; 1065 } 1066 skl->enable_miscbdcge = skl_enable_miscbdcge; 1067 skl->clock_power_gating = skl_clock_power_gating; 1068 1069 if (bus->mlcap) 1070 snd_hdac_ext_bus_get_ml_capabilities(bus); 1071 1072 snd_hdac_bus_stop_chip(bus); 1073 1074 /* create device for soc dmic */ 1075 err = skl_dmic_device_register(skl); 1076 if (err < 0) { 1077 dev_err(bus->dev, "skl_dmic_device_register failed with err: %d\n", err); 1078 goto out_dsp_free; 1079 } 1080 1081 schedule_work(&skl->probe_work); 1082 1083 return 0; 1084 1085 out_dsp_free: 1086 skl_free_dsp(skl); 1087 out_clk_free: 1088 skl_clock_device_unregister(skl); 1089 out_nhlt_free: 1090 intel_nhlt_free(skl->nhlt); 1091 out_free: 1092 skl_free(bus); 1093 1094 return err; 1095 } 1096 1097 static void skl_shutdown(struct pci_dev *pci) 1098 { 1099 struct hdac_bus *bus = pci_get_drvdata(pci); 1100 struct hdac_stream *s; 1101 struct hdac_ext_stream *stream; 1102 struct skl_dev *skl; 1103 1104 if (!bus) 1105 return; 1106 1107 skl = bus_to_skl(bus); 1108 1109 if (!skl->init_done) 1110 return; 1111 1112 snd_hdac_ext_stop_streams(bus); 1113 list_for_each_entry(s, &bus->stream_list, list) { 1114 stream = stream_to_hdac_ext_stream(s); 1115 snd_hdac_ext_stream_decouple(bus, stream, false); 1116 } 1117 1118 snd_hdac_bus_stop_chip(bus); 1119 } 1120 1121 static void skl_remove(struct pci_dev *pci) 1122 { 1123 struct hdac_bus *bus = pci_get_drvdata(pci); 1124 struct skl_dev *skl = bus_to_skl(bus); 1125 1126 cancel_work_sync(&skl->probe_work); 1127 1128 pm_runtime_get_noresume(&pci->dev); 1129 1130 /* codec removal, invoke bus_device_remove */ 1131 snd_hdac_ext_bus_device_remove(bus); 1132 1133 skl_platform_unregister(&pci->dev); 1134 skl_free_dsp(skl); 1135 skl_machine_device_unregister(skl); 1136 skl_dmic_device_unregister(skl); 1137 skl_clock_device_unregister(skl); 1138 skl_nhlt_remove_sysfs(skl); 1139 intel_nhlt_free(skl->nhlt); 1140 skl_free(bus); 1141 dev_set_drvdata(&pci->dev, NULL); 1142 } 1143 1144 /* PCI IDs */ 1145 static const struct pci_device_id skl_ids[] = { 1146 #if IS_ENABLED(CONFIG_SND_SOC_INTEL_SKL) 1147 /* Sunrise Point-LP */ 1148 { PCI_DEVICE(0x8086, 0x9d70), 1149 .driver_data = (unsigned long)&snd_soc_acpi_intel_skl_machines}, 1150 #endif 1151 #if IS_ENABLED(CONFIG_SND_SOC_INTEL_APL) 1152 /* BXT-P */ 1153 { PCI_DEVICE(0x8086, 0x5a98), 1154 .driver_data = (unsigned long)&snd_soc_acpi_intel_bxt_machines}, 1155 #endif 1156 #if IS_ENABLED(CONFIG_SND_SOC_INTEL_KBL) 1157 /* KBL */ 1158 { PCI_DEVICE(0x8086, 0x9D71), 1159 .driver_data = (unsigned long)&snd_soc_acpi_intel_kbl_machines}, 1160 #endif 1161 #if IS_ENABLED(CONFIG_SND_SOC_INTEL_GLK) 1162 /* GLK */ 1163 { PCI_DEVICE(0x8086, 0x3198), 1164 .driver_data = (unsigned long)&snd_soc_acpi_intel_glk_machines}, 1165 #endif 1166 #if IS_ENABLED(CONFIG_SND_SOC_INTEL_CNL) 1167 /* CNL */ 1168 { PCI_DEVICE(0x8086, 0x9dc8), 1169 .driver_data = (unsigned long)&snd_soc_acpi_intel_cnl_machines}, 1170 #endif 1171 #if IS_ENABLED(CONFIG_SND_SOC_INTEL_CFL) 1172 /* CFL */ 1173 { PCI_DEVICE(0x8086, 0xa348), 1174 .driver_data = (unsigned long)&snd_soc_acpi_intel_cnl_machines}, 1175 #endif 1176 #if IS_ENABLED(CONFIG_SND_SOC_INTEL_CML_LP) 1177 /* CML-LP */ 1178 { PCI_DEVICE(0x8086, 0x02c8), 1179 .driver_data = (unsigned long)&snd_soc_acpi_intel_cnl_machines}, 1180 #endif 1181 #if IS_ENABLED(CONFIG_SND_SOC_INTEL_CML_H) 1182 /* CML-H */ 1183 { PCI_DEVICE(0x8086, 0x06c8), 1184 .driver_data = (unsigned long)&snd_soc_acpi_intel_cnl_machines}, 1185 #endif 1186 { 0, } 1187 }; 1188 MODULE_DEVICE_TABLE(pci, skl_ids); 1189 1190 /* pci_driver definition */ 1191 static struct pci_driver skl_driver = { 1192 .name = KBUILD_MODNAME, 1193 .id_table = skl_ids, 1194 .probe = skl_probe, 1195 .remove = skl_remove, 1196 .shutdown = skl_shutdown, 1197 .driver = { 1198 .pm = &skl_pm, 1199 }, 1200 }; 1201 module_pci_driver(skl_driver); 1202 1203 MODULE_LICENSE("GPL v2"); 1204 MODULE_DESCRIPTION("Intel Skylake ASoC HDA driver"); 1205