linux/sound/soc/intel/common/soc-acpi-intel-hsw-bdw-match.c
<<
>>
Prefs
   1/*
   2 * soc-apci-intel-hsw-bdw-match.c - tables and support for ACPI enumeration.
   3 *
   4 * Copyright (c) 2017, Intel Corporation.
   5 *
   6 *
   7 * This program is free software; you can redistribute it and/or modify it
   8 * under the terms and conditions of the GNU General Public License,
   9 * version 2, as published by the Free Software Foundation.
  10 *
  11 * This program is distributed in the hope it will be useful, but WITHOUT
  12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
  14 * more details.
  15 */
  16
  17#include <linux/dmi.h>
  18#include <sound/soc-acpi.h>
  19#include <sound/soc-acpi-intel-match.h>
  20
  21struct snd_soc_acpi_mach snd_soc_acpi_intel_haswell_machines[] = {
  22        {
  23                .id = "INT33CA",
  24                .drv_name = "haswell-audio",
  25                .fw_filename = "intel/IntcSST1.bin",
  26                .sof_fw_filename = "intel/reef-hsw.ri",
  27                .sof_tplg_filename = "intel/reef-hsw.tplg",
  28                .asoc_plat_name = "haswell-pcm-audio",
  29        },
  30        {}
  31};
  32EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_haswell_machines);
  33
  34struct snd_soc_acpi_mach snd_soc_acpi_intel_broadwell_machines[] = {
  35        {
  36                .id = "INT343A",
  37                .drv_name = "broadwell-audio",
  38                .fw_filename =  "intel/IntcSST2.bin",
  39                .sof_fw_filename = "intel/reef-bdw.ri",
  40                .sof_tplg_filename = "intel/reef-bdw-rt286.tplg",
  41                .asoc_plat_name = "haswell-pcm-audio",
  42        },
  43        {
  44                .id = "RT5677CE",
  45                .drv_name = "bdw-rt5677",
  46                .fw_filename =  "intel/IntcSST2.bin",
  47                .sof_fw_filename = "intel/reef-bdw.ri",
  48                .sof_tplg_filename = "intel/reef-bdw-rt286.tplg",
  49                .asoc_plat_name = "haswell-pcm-audio",
  50        },
  51        {
  52                .id = "INT33CA",
  53                .drv_name = "haswell-audio",
  54                .fw_filename = "intel/IntcSST2.bin",
  55                .sof_fw_filename = "intel/reef-bdw.ri",
  56                .sof_tplg_filename = "intel/reef-bdw-rt5640.tplg",
  57                .asoc_plat_name = "haswell-pcm-audio",
  58        },
  59        {}
  60};
  61EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_broadwell_machines);
  62
  63MODULE_LICENSE("GPL v2");
  64MODULE_DESCRIPTION("Intel Common ACPI Match module");
  65