mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
3dc0d70917
Add a new client driver for probes support and move all the probes-related code from the core to the client driver. The probes client driver registers a component driver with one CPU DAI driver for extraction and creates a new sound card with one DUMMY DAI link with a dummy codec that will be used for extracting audio data from specific points in the audio pipeline. The probes debugfs ops are based on the initial implementation by Cezary Rojewski and have been moved out of the SOF core into the client driver making it easier to maintain. This change will make it easier for the probes functionality to be added for all platforms without having the need to modify the existing(15+) machine drivers. Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com> Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com> Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> Link: https://lore.kernel.org/r/20220210150525.30756-10-peter.ujfalusi@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
243 lines
6.9 KiB
C
243 lines
6.9 KiB
C
// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
|
|
//
|
|
// Copyright(c) 2020 Intel Corporation. All rights reserved.
|
|
//
|
|
// Authors: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
|
|
//
|
|
|
|
/*
|
|
* Hardware interface for audio DSP on Tigerlake.
|
|
*/
|
|
|
|
#include "../ops.h"
|
|
#include "hda.h"
|
|
#include "hda-ipc.h"
|
|
#include "../sof-audio.h"
|
|
|
|
static const struct snd_sof_debugfs_map tgl_dsp_debugfs[] = {
|
|
{"hda", HDA_DSP_HDA_BAR, 0, 0x4000, SOF_DEBUGFS_ACCESS_ALWAYS},
|
|
{"pp", HDA_DSP_PP_BAR, 0, 0x1000, SOF_DEBUGFS_ACCESS_ALWAYS},
|
|
{"dsp", HDA_DSP_BAR, 0, 0x10000, SOF_DEBUGFS_ACCESS_ALWAYS},
|
|
};
|
|
|
|
static int tgl_dsp_core_get(struct snd_sof_dev *sdev, int core)
|
|
{
|
|
struct sof_ipc_pm_core_config pm_core_config = {
|
|
.hdr = {
|
|
.cmd = SOF_IPC_GLB_PM_MSG | SOF_IPC_PM_CORE_ENABLE,
|
|
.size = sizeof(pm_core_config),
|
|
},
|
|
.enable_mask = sdev->enabled_cores_mask | BIT(core),
|
|
};
|
|
|
|
/* power up primary core if not already powered up and return */
|
|
if (core == SOF_DSP_PRIMARY_CORE)
|
|
return hda_dsp_enable_core(sdev, BIT(core));
|
|
|
|
/* notify DSP for secondary cores */
|
|
return sof_ipc_tx_message(sdev->ipc, pm_core_config.hdr.cmd,
|
|
&pm_core_config, sizeof(pm_core_config),
|
|
&pm_core_config, sizeof(pm_core_config));
|
|
}
|
|
|
|
static int tgl_dsp_core_put(struct snd_sof_dev *sdev, int core)
|
|
{
|
|
struct sof_ipc_pm_core_config pm_core_config = {
|
|
.hdr = {
|
|
.cmd = SOF_IPC_GLB_PM_MSG | SOF_IPC_PM_CORE_ENABLE,
|
|
.size = sizeof(pm_core_config),
|
|
},
|
|
.enable_mask = sdev->enabled_cores_mask & ~BIT(core),
|
|
};
|
|
|
|
/* power down primary core and return */
|
|
if (core == SOF_DSP_PRIMARY_CORE)
|
|
return hda_dsp_core_reset_power_down(sdev, BIT(core));
|
|
|
|
/* notify DSP for secondary cores */
|
|
return sof_ipc_tx_message(sdev->ipc, pm_core_config.hdr.cmd,
|
|
&pm_core_config, sizeof(pm_core_config),
|
|
&pm_core_config, sizeof(pm_core_config));
|
|
}
|
|
|
|
/* Tigerlake ops */
|
|
const struct snd_sof_dsp_ops sof_tgl_ops = {
|
|
/* probe/remove/shutdown */
|
|
.probe = hda_dsp_probe,
|
|
.remove = hda_dsp_remove,
|
|
.shutdown = hda_dsp_shutdown,
|
|
|
|
/* Register IO */
|
|
.write = sof_io_write,
|
|
.read = sof_io_read,
|
|
.write64 = sof_io_write64,
|
|
.read64 = sof_io_read64,
|
|
|
|
/* Block IO */
|
|
.block_read = sof_block_read,
|
|
.block_write = sof_block_write,
|
|
|
|
/* Mailbox IO */
|
|
.mailbox_read = sof_mailbox_read,
|
|
.mailbox_write = sof_mailbox_write,
|
|
|
|
/* doorbell */
|
|
.irq_thread = cnl_ipc_irq_thread,
|
|
|
|
/* ipc */
|
|
.send_msg = cnl_ipc_send_msg,
|
|
.fw_ready = sof_fw_ready,
|
|
.get_mailbox_offset = hda_dsp_ipc_get_mailbox_offset,
|
|
.get_window_offset = hda_dsp_ipc_get_window_offset,
|
|
|
|
.ipc_msg_data = hda_ipc_msg_data,
|
|
.ipc_pcm_params = hda_ipc_pcm_params,
|
|
|
|
/* machine driver */
|
|
.machine_select = hda_machine_select,
|
|
.machine_register = sof_machine_register,
|
|
.machine_unregister = sof_machine_unregister,
|
|
.set_mach_params = hda_set_mach_params,
|
|
|
|
/* debug */
|
|
.debug_map = tgl_dsp_debugfs,
|
|
.debug_map_count = ARRAY_SIZE(tgl_dsp_debugfs),
|
|
.dbg_dump = hda_dsp_dump,
|
|
.ipc_dump = cnl_ipc_dump,
|
|
.debugfs_add_region_item = snd_sof_debugfs_add_region_item_iomem,
|
|
|
|
/* stream callbacks */
|
|
.pcm_open = hda_dsp_pcm_open,
|
|
.pcm_close = hda_dsp_pcm_close,
|
|
.pcm_hw_params = hda_dsp_pcm_hw_params,
|
|
.pcm_hw_free = hda_dsp_stream_hw_free,
|
|
.pcm_trigger = hda_dsp_pcm_trigger,
|
|
.pcm_pointer = hda_dsp_pcm_pointer,
|
|
.pcm_ack = hda_dsp_pcm_ack,
|
|
|
|
/* firmware loading */
|
|
.load_firmware = snd_sof_load_firmware_raw,
|
|
|
|
/* pre/post fw run */
|
|
.pre_fw_run = hda_dsp_pre_fw_run,
|
|
.post_fw_run = hda_dsp_post_fw_run,
|
|
|
|
/* parse platform specific extended manifest */
|
|
.parse_platform_ext_manifest = hda_dsp_ext_man_get_cavs_config_data,
|
|
|
|
/* dsp core get/put */
|
|
.core_get = tgl_dsp_core_get,
|
|
.core_put = tgl_dsp_core_put,
|
|
|
|
/* firmware run */
|
|
.run = hda_dsp_cl_boot_firmware_iccmax,
|
|
|
|
/* trace callback */
|
|
.trace_init = hda_dsp_trace_init,
|
|
.trace_release = hda_dsp_trace_release,
|
|
.trace_trigger = hda_dsp_trace_trigger,
|
|
|
|
/* client ops */
|
|
.register_ipc_clients = hda_register_clients,
|
|
.unregister_ipc_clients = hda_unregister_clients,
|
|
|
|
/* DAI drivers */
|
|
.drv = skl_dai,
|
|
.num_drv = SOF_SKL_NUM_DAIS,
|
|
|
|
/* PM */
|
|
.suspend = hda_dsp_suspend,
|
|
.resume = hda_dsp_resume,
|
|
.runtime_suspend = hda_dsp_runtime_suspend,
|
|
.runtime_resume = hda_dsp_runtime_resume,
|
|
.runtime_idle = hda_dsp_runtime_idle,
|
|
.set_hw_params_upon_resume = hda_dsp_set_hw_params_upon_resume,
|
|
.set_power_state = hda_dsp_set_power_state,
|
|
|
|
/* ALSA HW info flags */
|
|
.hw_info = SNDRV_PCM_INFO_MMAP |
|
|
SNDRV_PCM_INFO_MMAP_VALID |
|
|
SNDRV_PCM_INFO_INTERLEAVED |
|
|
SNDRV_PCM_INFO_PAUSE |
|
|
SNDRV_PCM_INFO_NO_PERIOD_WAKEUP,
|
|
|
|
.dsp_arch_ops = &sof_xtensa_arch_ops,
|
|
};
|
|
EXPORT_SYMBOL_NS(sof_tgl_ops, SND_SOC_SOF_INTEL_HDA_COMMON);
|
|
|
|
const struct sof_intel_dsp_desc tgl_chip_info = {
|
|
/* Tigerlake , Alderlake */
|
|
.cores_num = 4,
|
|
.init_core_mask = 1,
|
|
.host_managed_cores_mask = BIT(0),
|
|
.ipc_req = CNL_DSP_REG_HIPCIDR,
|
|
.ipc_req_mask = CNL_DSP_REG_HIPCIDR_BUSY,
|
|
.ipc_ack = CNL_DSP_REG_HIPCIDA,
|
|
.ipc_ack_mask = CNL_DSP_REG_HIPCIDA_DONE,
|
|
.ipc_ctl = CNL_DSP_REG_HIPCCTL,
|
|
.rom_init_timeout = 300,
|
|
.ssp_count = ICL_SSP_COUNT,
|
|
.ssp_base_offset = CNL_SSP_BASE_OFFSET,
|
|
.sdw_shim_base = SDW_SHIM_BASE,
|
|
.sdw_alh_base = SDW_ALH_BASE,
|
|
.check_sdw_irq = hda_common_check_sdw_irq,
|
|
};
|
|
EXPORT_SYMBOL_NS(tgl_chip_info, SND_SOC_SOF_INTEL_HDA_COMMON);
|
|
|
|
const struct sof_intel_dsp_desc tglh_chip_info = {
|
|
/* Tigerlake-H */
|
|
.cores_num = 2,
|
|
.init_core_mask = 1,
|
|
.host_managed_cores_mask = BIT(0),
|
|
.ipc_req = CNL_DSP_REG_HIPCIDR,
|
|
.ipc_req_mask = CNL_DSP_REG_HIPCIDR_BUSY,
|
|
.ipc_ack = CNL_DSP_REG_HIPCIDA,
|
|
.ipc_ack_mask = CNL_DSP_REG_HIPCIDA_DONE,
|
|
.ipc_ctl = CNL_DSP_REG_HIPCCTL,
|
|
.rom_init_timeout = 300,
|
|
.ssp_count = ICL_SSP_COUNT,
|
|
.ssp_base_offset = CNL_SSP_BASE_OFFSET,
|
|
.sdw_shim_base = SDW_SHIM_BASE,
|
|
.sdw_alh_base = SDW_ALH_BASE,
|
|
.check_sdw_irq = hda_common_check_sdw_irq,
|
|
};
|
|
EXPORT_SYMBOL_NS(tglh_chip_info, SND_SOC_SOF_INTEL_HDA_COMMON);
|
|
|
|
const struct sof_intel_dsp_desc ehl_chip_info = {
|
|
/* Elkhartlake */
|
|
.cores_num = 4,
|
|
.init_core_mask = 1,
|
|
.host_managed_cores_mask = BIT(0),
|
|
.ipc_req = CNL_DSP_REG_HIPCIDR,
|
|
.ipc_req_mask = CNL_DSP_REG_HIPCIDR_BUSY,
|
|
.ipc_ack = CNL_DSP_REG_HIPCIDA,
|
|
.ipc_ack_mask = CNL_DSP_REG_HIPCIDA_DONE,
|
|
.ipc_ctl = CNL_DSP_REG_HIPCCTL,
|
|
.rom_init_timeout = 300,
|
|
.ssp_count = ICL_SSP_COUNT,
|
|
.ssp_base_offset = CNL_SSP_BASE_OFFSET,
|
|
.sdw_shim_base = SDW_SHIM_BASE,
|
|
.sdw_alh_base = SDW_ALH_BASE,
|
|
.check_sdw_irq = hda_common_check_sdw_irq,
|
|
};
|
|
EXPORT_SYMBOL_NS(ehl_chip_info, SND_SOC_SOF_INTEL_HDA_COMMON);
|
|
|
|
const struct sof_intel_dsp_desc adls_chip_info = {
|
|
/* Alderlake-S */
|
|
.cores_num = 2,
|
|
.init_core_mask = BIT(0),
|
|
.host_managed_cores_mask = BIT(0),
|
|
.ipc_req = CNL_DSP_REG_HIPCIDR,
|
|
.ipc_req_mask = CNL_DSP_REG_HIPCIDR_BUSY,
|
|
.ipc_ack = CNL_DSP_REG_HIPCIDA,
|
|
.ipc_ack_mask = CNL_DSP_REG_HIPCIDA_DONE,
|
|
.ipc_ctl = CNL_DSP_REG_HIPCCTL,
|
|
.rom_init_timeout = 300,
|
|
.ssp_count = ICL_SSP_COUNT,
|
|
.ssp_base_offset = CNL_SSP_BASE_OFFSET,
|
|
.sdw_shim_base = SDW_SHIM_BASE,
|
|
.sdw_alh_base = SDW_ALH_BASE,
|
|
.check_sdw_irq = hda_common_check_sdw_irq,
|
|
};
|
|
EXPORT_SYMBOL_NS(adls_chip_info, SND_SOC_SOF_INTEL_HDA_COMMON);
|