1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) 2 // 3 // This file is provided under a dual BSD/GPLv2 license. When using or 4 // redistributing this file, you may do so under either license. 5 // 6 // Copyright(c) 2018-2021 Intel Corporation. All rights reserved. 7 // 8 // Author: Liam Girdwood <liam.r.girdwood@linux.intel.com> 9 // 10 11 #include <linux/module.h> 12 #include <linux/pci.h> 13 #include <sound/soc-acpi.h> 14 #include <sound/soc-acpi-intel-match.h> 15 #include <sound/sof.h> 16 #include "../ops.h" 17 #include "atom.h" 18 #include "../sof-pci-dev.h" 19 #include "../sof-audio.h" 20 21 /* platform specific devices */ 22 #include "shim.h" 23 24 static struct snd_soc_acpi_mach sof_tng_machines[] = { 25 { 26 .id = "INT343A", 27 .drv_name = "edison", 28 .sof_tplg_filename = "sof-byt.tplg", 29 }, 30 {} 31 }; 32 33 static const struct snd_sof_debugfs_map tng_debugfs[] = { 34 {"dmac0", DSP_BAR, DMAC0_OFFSET, DMAC_SIZE, 35 SOF_DEBUGFS_ACCESS_ALWAYS}, 36 {"dmac1", DSP_BAR, DMAC1_OFFSET, DMAC_SIZE, 37 SOF_DEBUGFS_ACCESS_ALWAYS}, 38 {"ssp0", DSP_BAR, SSP0_OFFSET, SSP_SIZE, 39 SOF_DEBUGFS_ACCESS_ALWAYS}, 40 {"ssp1", DSP_BAR, SSP1_OFFSET, SSP_SIZE, 41 SOF_DEBUGFS_ACCESS_ALWAYS}, 42 {"ssp2", DSP_BAR, SSP2_OFFSET, SSP_SIZE, 43 SOF_DEBUGFS_ACCESS_ALWAYS}, 44 {"iram", DSP_BAR, IRAM_OFFSET, IRAM_SIZE, 45 SOF_DEBUGFS_ACCESS_D0_ONLY}, 46 {"dram", DSP_BAR, DRAM_OFFSET, DRAM_SIZE, 47 SOF_DEBUGFS_ACCESS_D0_ONLY}, 48 {"shim", DSP_BAR, SHIM_OFFSET, SHIM_SIZE_BYT, 49 SOF_DEBUGFS_ACCESS_ALWAYS}, 50 }; 51 52 static int tangier_pci_probe(struct snd_sof_dev *sdev) 53 { 54 struct snd_sof_pdata *pdata = sdev->pdata; 55 const struct sof_dev_desc *desc = pdata->desc; 56 struct pci_dev *pci = to_pci_dev(sdev->dev); 57 const struct sof_intel_dsp_desc *chip; 58 u32 base, size; 59 int ret; 60 61 chip = get_chip_info(sdev->pdata); 62 if (!chip) { 63 dev_err(sdev->dev, "error: no such device supported\n"); 64 return -EIO; 65 } 66 67 sdev->num_cores = chip->cores_num; 68 69 /* DSP DMA can only access low 31 bits of host memory */ 70 ret = dma_coerce_mask_and_coherent(&pci->dev, DMA_BIT_MASK(31)); 71 if (ret < 0) { 72 dev_err(sdev->dev, "error: failed to set DMA mask %d\n", ret); 73 return ret; 74 } 75 76 /* LPE base */ 77 base = pci_resource_start(pci, desc->resindex_lpe_base) - IRAM_OFFSET; 78 size = PCI_BAR_SIZE; 79 80 dev_dbg(sdev->dev, "LPE PHY base at 0x%x size 0x%x", base, size); 81 sdev->bar[DSP_BAR] = devm_ioremap(sdev->dev, base, size); 82 if (!sdev->bar[DSP_BAR]) { 83 dev_err(sdev->dev, "error: failed to ioremap LPE base 0x%x size 0x%x\n", 84 base, size); 85 return -ENODEV; 86 } 87 dev_dbg(sdev->dev, "LPE VADDR %p\n", sdev->bar[DSP_BAR]); 88 89 /* IMR base - optional */ 90 if (desc->resindex_imr_base == -1) 91 goto irq; 92 93 base = pci_resource_start(pci, desc->resindex_imr_base); 94 size = pci_resource_len(pci, desc->resindex_imr_base); 95 96 /* some BIOSes don't map IMR */ 97 if (base == 0x55aa55aa || base == 0x0) { 98 dev_info(sdev->dev, "IMR not set by BIOS. Ignoring\n"); 99 goto irq; 100 } 101 102 dev_dbg(sdev->dev, "IMR base at 0x%x size 0x%x", base, size); 103 sdev->bar[IMR_BAR] = devm_ioremap(sdev->dev, base, size); 104 if (!sdev->bar[IMR_BAR]) { 105 dev_err(sdev->dev, "error: failed to ioremap IMR base 0x%x size 0x%x\n", 106 base, size); 107 return -ENODEV; 108 } 109 dev_dbg(sdev->dev, "IMR VADDR %p\n", sdev->bar[IMR_BAR]); 110 111 irq: 112 /* register our IRQ */ 113 sdev->ipc_irq = pci->irq; 114 dev_dbg(sdev->dev, "using IRQ %d\n", sdev->ipc_irq); 115 ret = devm_request_threaded_irq(sdev->dev, sdev->ipc_irq, 116 atom_irq_handler, atom_irq_thread, 117 0, "AudioDSP", sdev); 118 if (ret < 0) { 119 dev_err(sdev->dev, "error: failed to register IRQ %d\n", 120 sdev->ipc_irq); 121 return ret; 122 } 123 124 /* enable BUSY and disable DONE Interrupt by default */ 125 snd_sof_dsp_update_bits64(sdev, DSP_BAR, SHIM_IMRX, 126 SHIM_IMRX_BUSY | SHIM_IMRX_DONE, 127 SHIM_IMRX_DONE); 128 129 /* set default mailbox offset for FW ready message */ 130 sdev->dsp_box.offset = MBOX_OFFSET; 131 132 return ret; 133 } 134 135 const struct snd_sof_dsp_ops sof_tng_ops = { 136 /* device init */ 137 .probe = tangier_pci_probe, 138 139 /* DSP core boot / reset */ 140 .run = atom_run, 141 .reset = atom_reset, 142 143 /* Register IO */ 144 .write = sof_io_write, 145 .read = sof_io_read, 146 .write64 = sof_io_write64, 147 .read64 = sof_io_read64, 148 149 /* Block IO */ 150 .block_read = sof_block_read, 151 .block_write = sof_block_write, 152 153 /* Mailbox IO */ 154 .mailbox_read = sof_mailbox_read, 155 .mailbox_write = sof_mailbox_write, 156 157 /* doorbell */ 158 .irq_handler = atom_irq_handler, 159 .irq_thread = atom_irq_thread, 160 161 /* ipc */ 162 .send_msg = atom_send_msg, 163 .fw_ready = sof_fw_ready, 164 .get_mailbox_offset = atom_get_mailbox_offset, 165 .get_window_offset = atom_get_window_offset, 166 167 .ipc_msg_data = sof_ipc_msg_data, 168 .set_stream_data_offset = sof_set_stream_data_offset, 169 170 /* machine driver */ 171 .machine_select = atom_machine_select, 172 .machine_register = sof_machine_register, 173 .machine_unregister = sof_machine_unregister, 174 .set_mach_params = atom_set_mach_params, 175 176 /* debug */ 177 .debug_map = tng_debugfs, 178 .debug_map_count = ARRAY_SIZE(tng_debugfs), 179 .dbg_dump = atom_dump, 180 .debugfs_add_region_item = snd_sof_debugfs_add_region_item_iomem, 181 182 /* stream callbacks */ 183 .pcm_open = sof_stream_pcm_open, 184 .pcm_close = sof_stream_pcm_close, 185 186 /* module loading */ 187 .load_module = snd_sof_parse_module_memcpy, 188 189 /*Firmware loading */ 190 .load_firmware = snd_sof_load_firmware_memcpy, 191 192 /* DAI drivers */ 193 .drv = atom_dai, 194 .num_drv = 3, /* we have only 3 SSPs on byt*/ 195 196 /* ALSA HW info flags */ 197 .hw_info = SNDRV_PCM_INFO_MMAP | 198 SNDRV_PCM_INFO_MMAP_VALID | 199 SNDRV_PCM_INFO_INTERLEAVED | 200 SNDRV_PCM_INFO_PAUSE | 201 SNDRV_PCM_INFO_BATCH, 202 203 .dsp_arch_ops = &sof_xtensa_arch_ops, 204 }; 205 206 const struct sof_intel_dsp_desc tng_chip_info = { 207 .cores_num = 1, 208 .host_managed_cores_mask = 1, 209 }; 210 211 static const struct sof_dev_desc tng_desc = { 212 .machines = sof_tng_machines, 213 .resindex_lpe_base = 3, /* IRAM, but subtract IRAM offset */ 214 .resindex_pcicfg_base = -1, 215 .resindex_imr_base = 0, 216 .irqindex_host_ipc = -1, 217 .chip_info = &tng_chip_info, 218 .default_fw_path = "intel/sof", 219 .default_tplg_path = "intel/sof-tplg", 220 .default_fw_filename = "sof-byt.ri", 221 .nocodec_tplg_filename = "sof-byt.tplg", 222 .ops = &sof_tng_ops, 223 }; 224 225 /* PCI IDs */ 226 static const struct pci_device_id sof_pci_ids[] = { 227 { PCI_DEVICE(0x8086, 0x119a), 228 .driver_data = (unsigned long)&tng_desc}, 229 { 0, } 230 }; 231 MODULE_DEVICE_TABLE(pci, sof_pci_ids); 232 233 /* pci_driver definition */ 234 static struct pci_driver snd_sof_pci_intel_tng_driver = { 235 .name = "sof-audio-pci-intel-tng", 236 .id_table = sof_pci_ids, 237 .probe = sof_pci_probe, 238 .remove = sof_pci_remove, 239 .shutdown = sof_pci_shutdown, 240 .driver = { 241 .pm = &sof_pci_pm, 242 }, 243 }; 244 module_pci_driver(snd_sof_pci_intel_tng_driver); 245 246 MODULE_LICENSE("Dual BSD/GPL"); 247 MODULE_IMPORT_NS(SND_SOC_SOF_INTEL_HIFI_EP_IPC); 248 MODULE_IMPORT_NS(SND_SOC_SOF_XTENSA); 249 MODULE_IMPORT_NS(SND_SOC_SOF_PCI_DEV); 250 MODULE_IMPORT_NS(SND_SOC_SOF_INTEL_ATOM_HIFI_EP); 251