soc-acpi-intel-hsw-bdw-match.c 797 B

1234567891011121314151617181920212223242526272829303132333435
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * soc-acpi-intel-hsw-bdw-match.c - tables and support for ACPI enumeration.
  4. *
  5. * Copyright (c) 2017, Intel Corporation.
  6. */
  7. #include <linux/dmi.h>
  8. #include <sound/soc-acpi.h>
  9. #include <sound/soc-acpi-intel-match.h>
  10. struct snd_soc_acpi_mach snd_soc_acpi_intel_broadwell_machines[] = {
  11. {
  12. .id = "INT343A",
  13. .drv_name = "bdw_rt286",
  14. .sof_tplg_filename = "sof-bdw-rt286.tplg",
  15. },
  16. {
  17. .id = "10EC5650",
  18. .drv_name = "bdw-rt5650",
  19. .sof_tplg_filename = "sof-bdw-rt5650.tplg",
  20. },
  21. {
  22. .id = "RT5677CE",
  23. .drv_name = "bdw-rt5677",
  24. .sof_tplg_filename = "sof-bdw-rt5677.tplg",
  25. },
  26. {
  27. .id = "INT33CA",
  28. .drv_name = "hsw_rt5640",
  29. .sof_tplg_filename = "sof-bdw-rt5640.tplg",
  30. },
  31. {}
  32. };
  33. EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_broadwell_machines);