diff options
author | Mac Chiang <mac.chiang@intel.com> | 2019-08-15 14:51:49 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-08-15 17:54:38 +0100 |
commit | c643c189f0fec116e75f9661e734545af0e3225e (patch) | |
tree | c591fa30e067daa95e25fbf455cc42301539ecf5 /sound/soc/intel/common/soc-intel-quirks.h | |
parent | 72b745e3ad65deac94ea4eb83262c52ba3ffdb5b (diff) | |
download | linux-c643c189f0fec116e75f9661e734545af0e3225e.tar.gz linux-c643c189f0fec116e75f9661e734545af0e3225e.tar.bz2 linux-c643c189f0fec116e75f9661e734545af0e3225e.zip |
ASoC: Intel: boards: Add Cometlake machine driver support
reuse and add Cometlake support with:
SSP0 for DA7219 headphone codec
SSP1 for MAX98357a speaker amp codec
Signed-off-by: Mac Chiang <mac.chiang@intel.com>
Acked-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/1565851909-13825-1-git-send-email-mac.chiang@intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/common/soc-intel-quirks.h')
-rw-r--r-- | sound/soc/intel/common/soc-intel-quirks.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/soc/intel/common/soc-intel-quirks.h b/sound/soc/intel/common/soc-intel-quirks.h index 4718fd3cf636..e6357d306cb8 100644 --- a/sound/soc/intel/common/soc-intel-quirks.h +++ b/sound/soc/intel/common/soc-intel-quirks.h @@ -36,6 +36,7 @@ SOC_INTEL_IS_CPU(byt, INTEL_FAM6_ATOM_SILVERMONT); SOC_INTEL_IS_CPU(cht, INTEL_FAM6_ATOM_AIRMONT); SOC_INTEL_IS_CPU(apl, INTEL_FAM6_ATOM_GOLDMONT); SOC_INTEL_IS_CPU(glk, INTEL_FAM6_ATOM_GOLDMONT_PLUS); +SOC_INTEL_IS_CPU(cml, INTEL_FAM6_KABYLAKE_MOBILE); static inline bool soc_intel_is_byt_cr(struct platform_device *pdev) { @@ -110,6 +111,10 @@ static inline bool soc_intel_is_glk(void) return false; } +static inline bool soc_intel_is_cml(void) +{ + return false; +} #endif #endif /* _SND_SOC_INTEL_QUIRKS_H */ |