Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e9159e75 authored by John Lin's avatar John Lin Committed by Mark Brown
Browse files

ASoC: rt5645: Add dmi for Broadwell



Add DMI data for Buddy project.

Signed-off-by: default avatarBard Liao <bardliao@realtek.com>
Signed-off-by: default avatarJohn Lin <john.lin@realtek.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent c4450699
Loading
Loading
Loading
Loading
+27 −1
Original line number Original line Diff line number Diff line
@@ -3209,6 +3209,31 @@ static const struct dmi_system_id dmi_platform_intel_braswell[] = {
	{ }
	{ }
};
};


static struct rt5645_platform_data buddy_platform_data = {
	.dmic1_data_pin = RT5645_DMIC_DATA_GPIO5,
	.dmic2_data_pin = RT5645_DMIC_DATA_IN2P,
	.jd_mode = 3,
};

static int buddy_quirk_cb(const struct dmi_system_id *id)
{
	rt5645_pdata = &buddy_platform_data;

	return 1;
}

static struct dmi_system_id dmi_platform_intel_broadwell[] __initdata = {
	{
		.ident = "Chrome Buddy",
		.callback = buddy_quirk_cb,
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "Buddy"),
		},
	},
	{ }
};


static int rt5645_parse_dt(struct rt5645_priv *rt5645, struct device *dev)
static int rt5645_parse_dt(struct rt5645_priv *rt5645, struct device *dev)
{
{
	rt5645->pdata.in2_diff = device_property_read_bool(dev,
	rt5645->pdata.in2_diff = device_property_read_bool(dev,
@@ -3241,7 +3266,8 @@ static int rt5645_i2c_probe(struct i2c_client *i2c,


	if (pdata)
	if (pdata)
		rt5645->pdata = *pdata;
		rt5645->pdata = *pdata;
	else if (dmi_check_system(dmi_platform_intel_braswell))
	else if (dmi_check_system(dmi_platform_intel_braswell) ||
			dmi_check_system(dmi_platform_intel_broadwell))
		rt5645->pdata = *rt5645_pdata;
		rt5645->pdata = *rt5645_pdata;
	else
	else
		rt5645_parse_dt(rt5645, &i2c->dev);
		rt5645_parse_dt(rt5645, &i2c->dev);