soc-acpi-intel-glk-match.c 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * soc-apci-intel-glk-match.c - tables and support for GLK 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. static struct snd_soc_acpi_codecs glk_codecs = {
  11. .num_codecs = 1,
  12. .codecs = {"MX98357A"}
  13. };
  14. struct snd_soc_acpi_mach snd_soc_acpi_intel_glk_machines[] = {
  15. {
  16. .id = "INT343A",
  17. .drv_name = "glk_alc298s_i2s",
  18. .fw_filename = "intel/dsp_fw_glk.bin",
  19. .sof_fw_filename = "intel/sof-glk.ri",
  20. .sof_tplg_filename = "intel/sof-glk-alc298.tplg",
  21. .asoc_plat_name = "0000:00:0e.0",
  22. },
  23. {
  24. .id = "DLGS7219",
  25. .drv_name = "glk_da7219_max98357a",
  26. .fw_filename = "intel/dsp_fw_glk.bin",
  27. .machine_quirk = snd_soc_acpi_codec_list,
  28. .quirk_data = &glk_codecs,
  29. .sof_fw_filename = "intel/sof-glk.ri",
  30. .sof_tplg_filename = "intel/sof-glk-da7219.tplg",
  31. .asoc_plat_name = "0000:00:0e.0",
  32. },
  33. {},
  34. };
  35. EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_glk_machines);
  36. MODULE_LICENSE("GPL v2");
  37. MODULE_DESCRIPTION("Intel Common ACPI Match module");