soc-acpi-intel-cnl-match.c 788 B

1234567891011121314151617181920212223242526272829303132
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * soc-apci-intel-cnl-match.c - tables and support for CNL ACPI enumeration.
  4. *
  5. * Copyright (c) 2018, Intel Corporation.
  6. *
  7. */
  8. #include <sound/soc-acpi.h>
  9. #include <sound/soc-acpi-intel-match.h>
  10. #include "../skylake/skl.h"
  11. static struct skl_machine_pdata cnl_pdata = {
  12. .use_tplg_pcm = true,
  13. };
  14. struct snd_soc_acpi_mach snd_soc_acpi_intel_cnl_machines[] = {
  15. {
  16. .id = "INT34C2",
  17. .drv_name = "cnl_rt274",
  18. .fw_filename = "intel/dsp_fw_cnl.bin",
  19. .pdata = &cnl_pdata,
  20. .sof_fw_filename = "intel/sof-cnl.ri",
  21. .sof_tplg_filename = "intel/sof-cnl-rt274.tplg",
  22. .asoc_plat_name = "0000:00:1f.3",
  23. },
  24. {},
  25. };
  26. EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_cnl_machines);
  27. MODULE_LICENSE("GPL v2");
  28. MODULE_DESCRIPTION("Intel Common ACPI Match module");