2 * skl.c - Implementation of ASoC Intel SKL HD Audio driver
4 * Copyright (C) 2014-2015 Intel Corp
5 * Author: Jeeja KP <jeeja.kp@intel.com>
7 * Derived mostly from Intel HDA driver with following copyrights:
8 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
9 * PeiSen Hou <pshou@realtek.com.tw>
10 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; version 2 of the License.
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 #include <linux/module.h>
25 #include <linux/pci.h>
26 #include <linux/pm_runtime.h>
27 #include <linux/platform_device.h>
28 #include <linux/firmware.h>
29 #include <sound/pcm.h>
30 #include "../common/sst-acpi.h"
31 #include <sound/hda_register.h>
32 #include <sound/hdaudio.h>
33 #include <sound/hda_i915.h>
35 #include "skl-sst-dsp.h"
36 #include "skl-sst-ipc.h"
39 * initialize the PCI registers
41 static void skl_update_pci_byte(struct pci_dev
*pci
, unsigned int reg
,
42 unsigned char mask
, unsigned char val
)
46 pci_read_config_byte(pci
, reg
, &data
);
49 pci_write_config_byte(pci
, reg
, data
);
52 static void skl_init_pci(struct skl
*skl
)
54 struct hdac_ext_bus
*ebus
= &skl
->ebus
;
57 * Clear bits 0-2 of PCI register TCSEL (at offset 0x44)
58 * TCSEL == Traffic Class Select Register, which sets PCI express QOS
59 * Ensuring these bits are 0 clears playback static on some HD Audio
61 * The PCI register TCSEL is defined in the Intel manuals.
63 dev_dbg(ebus_to_hbus(ebus
)->dev
, "Clearing TCSEL\n");
64 skl_update_pci_byte(skl
->pci
, AZX_PCIREG_TCSEL
, 0x07, 0);
67 static void update_pci_dword(struct pci_dev
*pci
,
68 unsigned int reg
, u32 mask
, u32 val
)
72 pci_read_config_dword(pci
, reg
, &data
);
75 pci_write_config_dword(pci
, reg
, data
);
79 * skl_enable_miscbdcge - enable/dsiable CGCTL.MISCBDCGE bits
81 * @dev: device pointer
82 * @enable: enable/disable flag
84 static void skl_enable_miscbdcge(struct device
*dev
, bool enable
)
86 struct pci_dev
*pci
= to_pci_dev(dev
);
89 val
= enable
? AZX_CGCTL_MISCBDCGE_MASK
: 0;
91 update_pci_dword(pci
, AZX_PCIREG_CGCTL
, AZX_CGCTL_MISCBDCGE_MASK
, val
);
95 * While performing reset, controller may not come back properly causing
96 * issues, so recommendation is to set CGCTL.MISCBDCGE to 0 then do reset
97 * (init chip) and then again set CGCTL.MISCBDCGE to 1
99 static int skl_init_chip(struct hdac_bus
*bus
, bool full_reset
)
103 skl_enable_miscbdcge(bus
->dev
, false);
104 ret
= snd_hdac_bus_init_chip(bus
, full_reset
);
105 skl_enable_miscbdcge(bus
->dev
, true);
110 /* called from IRQ */
111 static void skl_stream_update(struct hdac_bus
*bus
, struct hdac_stream
*hstr
)
113 snd_pcm_period_elapsed(hstr
->substream
);
116 static irqreturn_t
skl_interrupt(int irq
, void *dev_id
)
118 struct hdac_ext_bus
*ebus
= dev_id
;
119 struct hdac_bus
*bus
= ebus_to_hbus(ebus
);
122 if (!pm_runtime_active(bus
->dev
))
125 spin_lock(&bus
->reg_lock
);
127 status
= snd_hdac_chip_readl(bus
, INTSTS
);
128 if (status
== 0 || status
== 0xffffffff) {
129 spin_unlock(&bus
->reg_lock
);
134 status
= snd_hdac_chip_readb(bus
, RIRBSTS
);
135 if (status
& RIRB_INT_MASK
) {
136 if (status
& RIRB_INT_RESPONSE
)
137 snd_hdac_bus_update_rirb(bus
);
138 snd_hdac_chip_writeb(bus
, RIRBSTS
, RIRB_INT_MASK
);
141 spin_unlock(&bus
->reg_lock
);
143 return snd_hdac_chip_readl(bus
, INTSTS
) ? IRQ_WAKE_THREAD
: IRQ_HANDLED
;
146 static irqreturn_t
skl_threaded_handler(int irq
, void *dev_id
)
148 struct hdac_ext_bus
*ebus
= dev_id
;
149 struct hdac_bus
*bus
= ebus_to_hbus(ebus
);
152 status
= snd_hdac_chip_readl(bus
, INTSTS
);
154 snd_hdac_bus_handle_stream_irq(bus
, status
, skl_stream_update
);
159 static int skl_acquire_irq(struct hdac_ext_bus
*ebus
, int do_disconnect
)
161 struct skl
*skl
= ebus_to_skl(ebus
);
162 struct hdac_bus
*bus
= ebus_to_hbus(ebus
);
165 ret
= request_threaded_irq(skl
->pci
->irq
, skl_interrupt
,
166 skl_threaded_handler
,
168 KBUILD_MODNAME
, ebus
);
171 "unable to grab IRQ %d, disabling device\n",
176 bus
->irq
= skl
->pci
->irq
;
177 pci_intx(skl
->pci
, 1);
183 static int _skl_suspend(struct hdac_ext_bus
*ebus
)
185 struct skl
*skl
= ebus_to_skl(ebus
);
186 struct hdac_bus
*bus
= ebus_to_hbus(ebus
);
189 snd_hdac_ext_bus_link_power_down_all(ebus
);
191 ret
= skl_suspend_dsp(skl
);
195 snd_hdac_bus_stop_chip(bus
);
196 skl_enable_miscbdcge(bus
->dev
, false);
197 snd_hdac_bus_enter_link_reset(bus
);
198 skl_enable_miscbdcge(bus
->dev
, true);
203 static int _skl_resume(struct hdac_ext_bus
*ebus
)
205 struct skl
*skl
= ebus_to_skl(ebus
);
206 struct hdac_bus
*bus
= ebus_to_hbus(ebus
);
209 skl_init_chip(bus
, true);
211 return skl_resume_dsp(skl
);
215 #ifdef CONFIG_PM_SLEEP
219 static int skl_suspend(struct device
*dev
)
221 struct pci_dev
*pci
= to_pci_dev(dev
);
222 struct hdac_ext_bus
*ebus
= pci_get_drvdata(pci
);
223 struct skl
*skl
= ebus_to_skl(ebus
);
224 struct hdac_bus
*bus
= ebus_to_hbus(ebus
);
227 * Do not suspend if streams which are marked ignore suspend are
228 * running, we need to save the state for these and continue
230 if (skl
->supend_active
) {
231 snd_hdac_ext_bus_link_power_down_all(ebus
);
232 enable_irq_wake(bus
->irq
);
234 pci_disable_device(pci
);
237 return _skl_suspend(ebus
);
241 static int skl_resume(struct device
*dev
)
243 struct pci_dev
*pci
= to_pci_dev(dev
);
244 struct hdac_ext_bus
*ebus
= pci_get_drvdata(pci
);
245 struct skl
*skl
= ebus_to_skl(ebus
);
246 struct hdac_bus
*bus
= ebus_to_hbus(ebus
);
249 /* Turned OFF in HDMI codec driver after codec reconfiguration */
250 if (IS_ENABLED(CONFIG_SND_SOC_HDAC_HDMI
)) {
251 ret
= snd_hdac_display_power(bus
, true);
254 "Cannot turn on display power on i915\n");
260 * resume only when we are not in suspend active, otherwise need to
263 if (skl
->supend_active
) {
264 pci_restore_state(pci
);
265 ret
= pci_enable_device(pci
);
266 snd_hdac_ext_bus_link_power_up_all(ebus
);
267 disable_irq_wake(bus
->irq
);
269 ret
= _skl_resume(ebus
);
274 #endif /* CONFIG_PM_SLEEP */
277 static int skl_runtime_suspend(struct device
*dev
)
279 struct pci_dev
*pci
= to_pci_dev(dev
);
280 struct hdac_ext_bus
*ebus
= pci_get_drvdata(pci
);
281 struct hdac_bus
*bus
= ebus_to_hbus(ebus
);
283 dev_dbg(bus
->dev
, "in %s\n", __func__
);
285 return _skl_suspend(ebus
);
288 static int skl_runtime_resume(struct device
*dev
)
290 struct pci_dev
*pci
= to_pci_dev(dev
);
291 struct hdac_ext_bus
*ebus
= pci_get_drvdata(pci
);
292 struct hdac_bus
*bus
= ebus_to_hbus(ebus
);
294 dev_dbg(bus
->dev
, "in %s\n", __func__
);
296 return _skl_resume(ebus
);
298 #endif /* CONFIG_PM */
300 static const struct dev_pm_ops skl_pm
= {
301 SET_SYSTEM_SLEEP_PM_OPS(skl_suspend
, skl_resume
)
302 SET_RUNTIME_PM_OPS(skl_runtime_suspend
, skl_runtime_resume
, NULL
)
308 static int skl_free(struct hdac_ext_bus
*ebus
)
310 struct skl
*skl
= ebus_to_skl(ebus
);
311 struct hdac_bus
*bus
= ebus_to_hbus(ebus
);
313 skl
->init_failed
= 1; /* to be sure */
315 snd_hdac_ext_stop_streams(ebus
);
318 free_irq(bus
->irq
, (void *)bus
);
320 iounmap(bus
->remap_addr
);
322 snd_hdac_bus_free_stream_pages(bus
);
323 snd_hdac_stream_free_all(ebus
);
324 snd_hdac_link_free_all(ebus
);
325 pci_release_regions(skl
->pci
);
326 pci_disable_device(skl
->pci
);
328 snd_hdac_ext_bus_exit(ebus
);
333 static int skl_machine_device_register(struct skl
*skl
, void *driver_data
)
335 struct hdac_bus
*bus
= ebus_to_hbus(&skl
->ebus
);
336 struct platform_device
*pdev
;
337 struct sst_acpi_mach
*mach
= driver_data
;
340 mach
= sst_acpi_find_machine(mach
);
342 dev_err(bus
->dev
, "No matching machine driver found\n");
345 skl
->fw_name
= mach
->fw_filename
;
347 pdev
= platform_device_alloc(mach
->drv_name
, -1);
349 dev_err(bus
->dev
, "platform device alloc failed\n");
353 ret
= platform_device_add(pdev
);
355 dev_err(bus
->dev
, "failed to add machine device\n");
356 platform_device_put(pdev
);
364 static void skl_machine_device_unregister(struct skl
*skl
)
367 platform_device_unregister(skl
->i2s_dev
);
370 static int skl_dmic_device_register(struct skl
*skl
)
372 struct hdac_bus
*bus
= ebus_to_hbus(&skl
->ebus
);
373 struct platform_device
*pdev
;
376 /* SKL has one dmic port, so allocate dmic device for this */
377 pdev
= platform_device_alloc("dmic-codec", -1);
379 dev_err(bus
->dev
, "failed to allocate dmic device\n");
383 ret
= platform_device_add(pdev
);
385 dev_err(bus
->dev
, "failed to add dmic device: %d\n", ret
);
386 platform_device_put(pdev
);
389 skl
->dmic_dev
= pdev
;
394 static void skl_dmic_device_unregister(struct skl
*skl
)
397 platform_device_unregister(skl
->dmic_dev
);
401 * Probe the given codec address
403 static int probe_codec(struct hdac_ext_bus
*ebus
, int addr
)
405 struct hdac_bus
*bus
= ebus_to_hbus(ebus
);
406 unsigned int cmd
= (addr
<< 28) | (AC_NODE_ROOT
<< 20) |
407 (AC_VERB_PARAMETERS
<< 8) | AC_PAR_VENDOR_ID
;
410 mutex_lock(&bus
->cmd_mutex
);
411 snd_hdac_bus_send_cmd(bus
, cmd
);
412 snd_hdac_bus_get_response(bus
, addr
, &res
);
413 mutex_unlock(&bus
->cmd_mutex
);
416 dev_dbg(bus
->dev
, "codec #%d probed OK\n", addr
);
418 return snd_hdac_ext_bus_device_init(ebus
, addr
);
421 /* Codec initialization */
422 static int skl_codec_create(struct hdac_ext_bus
*ebus
)
424 struct hdac_bus
*bus
= ebus_to_hbus(ebus
);
427 max_slots
= HDA_MAX_CODECS
;
429 /* First try to probe all given codec slots */
430 for (c
= 0; c
< max_slots
; c
++) {
431 if ((bus
->codec_mask
& (1 << c
))) {
432 if (probe_codec(ebus
, c
) < 0) {
434 * Some BIOSen give you wrong codec addresses
438 "Codec #%d probe error; disabling it...\n", c
);
439 bus
->codec_mask
&= ~(1 << c
);
441 * More badly, accessing to a non-existing
442 * codec often screws up the controller bus,
443 * and disturbs the further communications.
444 * Thus if an error occurs during probing,
445 * better to reset the controller bus to get
446 * back to the sanity state.
448 snd_hdac_bus_stop_chip(bus
);
449 skl_init_chip(bus
, true);
457 static const struct hdac_bus_ops bus_core_ops
= {
458 .command
= snd_hdac_bus_send_cmd
,
459 .get_response
= snd_hdac_bus_get_response
,
465 static int skl_create(struct pci_dev
*pci
,
466 const struct hdac_io_ops
*io_ops
,
470 struct hdac_ext_bus
*ebus
;
476 err
= pci_enable_device(pci
);
480 skl
= devm_kzalloc(&pci
->dev
, sizeof(*skl
), GFP_KERNEL
);
482 pci_disable_device(pci
);
486 snd_hdac_ext_bus_init(ebus
, &pci
->dev
, &bus_core_ops
, io_ops
);
487 ebus
->bus
.use_posbuf
= 1;
490 ebus
->bus
.bdl_pos_adj
= 0;
497 static int skl_i915_init(struct hdac_bus
*bus
)
502 * The HDMI codec is in GPU so we need to ensure that it is powered
503 * up and ready for probe
505 err
= snd_hdac_i915_init(bus
);
509 err
= snd_hdac_display_power(bus
, true);
511 dev_err(bus
->dev
, "Cannot turn on display power on i915\n");
518 static int skl_first_init(struct hdac_ext_bus
*ebus
)
520 struct skl
*skl
= ebus_to_skl(ebus
);
521 struct hdac_bus
*bus
= ebus_to_hbus(ebus
);
522 struct pci_dev
*pci
= skl
->pci
;
525 int cp_streams
, pb_streams
, start_idx
;
527 err
= pci_request_regions(pci
, "Skylake HD audio");
531 bus
->addr
= pci_resource_start(pci
, 0);
532 bus
->remap_addr
= pci_ioremap_bar(pci
, 0);
533 if (bus
->remap_addr
== NULL
) {
534 dev_err(bus
->dev
, "ioremap error\n");
538 snd_hdac_ext_bus_parse_capabilities(ebus
);
540 if (skl_acquire_irq(ebus
, 0) < 0)
544 synchronize_irq(bus
->irq
);
546 gcap
= snd_hdac_chip_readw(bus
, GCAP
);
547 dev_dbg(bus
->dev
, "chipset global capabilities = 0x%x\n", gcap
);
549 /* allow 64bit DMA address if supported by H/W */
550 if (!dma_set_mask(bus
->dev
, DMA_BIT_MASK(64))) {
551 dma_set_coherent_mask(bus
->dev
, DMA_BIT_MASK(64));
553 dma_set_mask(bus
->dev
, DMA_BIT_MASK(32));
554 dma_set_coherent_mask(bus
->dev
, DMA_BIT_MASK(32));
557 /* read number of streams from GCAP register */
558 cp_streams
= (gcap
>> 8) & 0x0f;
559 pb_streams
= (gcap
>> 12) & 0x0f;
561 if (!pb_streams
&& !cp_streams
)
564 ebus
->num_streams
= cp_streams
+ pb_streams
;
566 /* initialize streams */
567 snd_hdac_ext_stream_init_all
568 (ebus
, 0, cp_streams
, SNDRV_PCM_STREAM_CAPTURE
);
569 start_idx
= cp_streams
;
570 snd_hdac_ext_stream_init_all
571 (ebus
, start_idx
, pb_streams
, SNDRV_PCM_STREAM_PLAYBACK
);
573 err
= snd_hdac_bus_alloc_stream_pages(bus
);
577 /* initialize chip */
580 if (IS_ENABLED(CONFIG_SND_SOC_HDAC_HDMI
)) {
581 err
= skl_i915_init(bus
);
586 skl_init_chip(bus
, true);
588 /* codec detection */
589 if (!bus
->codec_mask
) {
590 dev_info(bus
->dev
, "no hda codecs found!\n");
596 static int skl_probe(struct pci_dev
*pci
,
597 const struct pci_device_id
*pci_id
)
600 struct hdac_ext_bus
*ebus
= NULL
;
601 struct hdac_bus
*bus
= NULL
;
604 /* we use ext core ops, so provide NULL for ops here */
605 err
= skl_create(pci
, NULL
, &skl
);
610 bus
= ebus_to_hbus(ebus
);
612 err
= skl_first_init(ebus
);
616 skl
->pci_id
= pci
->device
;
618 skl
->nhlt
= skl_nhlt_init(bus
->dev
);
620 if (skl
->nhlt
== NULL
)
623 skl_nhlt_update_topology_bin(skl
);
625 pci_set_drvdata(skl
->pci
, ebus
);
627 /* check if dsp is there */
629 err
= skl_machine_device_register(skl
,
630 (void *)pci_id
->driver_data
);
634 err
= skl_init_dsp(skl
);
636 dev_dbg(bus
->dev
, "error failed to register dsp\n");
639 skl
->skl_sst
->enable_miscbdcge
= skl_enable_miscbdcge
;
643 snd_hdac_ext_bus_get_ml_capabilities(ebus
);
645 /* create device for soc dmic */
646 err
= skl_dmic_device_register(skl
);
650 /* register platform dai and controls */
651 err
= skl_platform_register(bus
->dev
);
655 /* create codec instances */
656 err
= skl_codec_create(ebus
);
660 if (IS_ENABLED(CONFIG_SND_SOC_HDAC_HDMI
)) {
661 err
= snd_hdac_display_power(bus
, false);
663 dev_err(bus
->dev
, "Cannot turn off display power on i915\n");
669 pm_runtime_put_noidle(bus
->dev
);
670 pm_runtime_allow(bus
->dev
);
675 skl_platform_unregister(bus
->dev
);
677 skl_dmic_device_unregister(skl
);
681 skl_machine_device_unregister(skl
);
683 skl
->init_failed
= 1;
689 static void skl_shutdown(struct pci_dev
*pci
)
691 struct hdac_ext_bus
*ebus
= pci_get_drvdata(pci
);
692 struct hdac_bus
*bus
= ebus_to_hbus(ebus
);
693 struct hdac_stream
*s
;
694 struct hdac_ext_stream
*stream
;
700 skl
= ebus_to_skl(ebus
);
702 if (skl
->init_failed
)
705 snd_hdac_ext_stop_streams(ebus
);
706 list_for_each_entry(s
, &bus
->stream_list
, list
) {
707 stream
= stream_to_hdac_ext_stream(s
);
708 snd_hdac_ext_stream_decouple(ebus
, stream
, false);
711 snd_hdac_bus_stop_chip(bus
);
714 static void skl_remove(struct pci_dev
*pci
)
716 struct hdac_ext_bus
*ebus
= pci_get_drvdata(pci
);
717 struct skl
*skl
= ebus_to_skl(ebus
);
720 release_firmware(skl
->tplg
);
722 if (IS_ENABLED(CONFIG_SND_SOC_HDAC_HDMI
))
723 snd_hdac_i915_exit(&ebus
->bus
);
725 if (pci_dev_run_wake(pci
))
726 pm_runtime_get_noresume(&pci
->dev
);
728 skl_platform_unregister(&pci
->dev
);
730 skl_machine_device_unregister(skl
);
731 skl_dmic_device_unregister(skl
);
733 dev_set_drvdata(&pci
->dev
, NULL
);
736 static struct sst_acpi_mach sst_skl_devdata
[] = {
737 { "INT343A", "skl_alc286s_i2s", "intel/dsp_fw_release.bin", NULL
, NULL
, NULL
},
738 { "INT343B", "skl_nau88l25_ssm4567_i2s", "intel/dsp_fw_release.bin",
740 { "MX98357A", "skl_nau88l25_max98357a_i2s", "intel/dsp_fw_release.bin",
745 static struct sst_acpi_mach sst_bxtp_devdata
[] = {
746 { "INT343A", "bxt_alc298s_i2s", "intel/dsp_fw_bxtn.bin", NULL
, NULL
, NULL
},
750 static const struct pci_device_id skl_ids
[] = {
751 /* Sunrise Point-LP */
752 { PCI_DEVICE(0x8086, 0x9d70),
753 .driver_data
= (unsigned long)&sst_skl_devdata
},
755 { PCI_DEVICE(0x8086, 0x5a98),
756 .driver_data
= (unsigned long)&sst_bxtp_devdata
},
759 MODULE_DEVICE_TABLE(pci
, skl_ids
);
761 /* pci_driver definition */
762 static struct pci_driver skl_driver
= {
763 .name
= KBUILD_MODNAME
,
766 .remove
= skl_remove
,
767 .shutdown
= skl_shutdown
,
772 module_pci_driver(skl_driver
);
774 MODULE_LICENSE("GPL v2");
775 MODULE_DESCRIPTION("Intel Skylake ASoC HDA driver");