diff options
author | Akshu Agrawal <akshu.agrawal@amd.com> | 2019-10-23 23:29:47 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-10-24 13:43:25 +0200 |
commit | e42599d6bbf5aa48ae8a2942946b0f6194017fdf (patch) | |
tree | 217b45fd38665d9b1a557dd4965d6fdf800d71e8 | |
parent | ASoC: kirkwood: fix IRQ error handling (diff) | |
download | linux-e42599d6bbf5aa48ae8a2942946b0f6194017fdf.tar.xz linux-e42599d6bbf5aa48ae8a2942946b0f6194017fdf.zip |
ASoC: rt5650: Add Kahlee platform specfic changes
Add platform specific data for Kahlee project.
Signed-off-by: Akshu Agrawal <akshu.agrawal@amd.com>
Signed-off-by: Shirish S <shirish.s@amd.com>
Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
Link: https://lore.kernel.org/r/20191023212948.92246-1-cujomalainey@chromium.org
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/rt5645.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sound/soc/codecs/rt5645.c b/sound/soc/codecs/rt5645.c index 1c06b3b9218c..a15e4ecd2a24 100644 --- a/sound/soc/codecs/rt5645.c +++ b/sound/soc/codecs/rt5645.c @@ -3636,6 +3636,12 @@ static const struct rt5645_platform_data lattepanda_board_platform_data = { .inv_jd1_1 = true }; +static const struct rt5645_platform_data kahlee_platform_data = { + .dmic1_data_pin = RT5645_DMIC_DATA_GPIO5, + .dmic2_data_pin = RT5645_DMIC_DATA_IN2P, + .jd_mode = 3, +}; + static const struct dmi_system_id dmi_platform_data[] = { { .ident = "Chrome Buddy", @@ -3742,6 +3748,13 @@ static const struct dmi_system_id dmi_platform_data[] = { }, .driver_data = (void *)&lattepanda_board_platform_data, }, + { + .ident = "Chrome Kahlee", + .matches = { + DMI_MATCH(DMI_PRODUCT_NAME, "Kahlee"), + }, + .driver_data = (void *)&kahlee_platform_data, + }, { } }; |