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

Commit e497a31d authored by Sanjana B's avatar Sanjana B Committed by Gerrit - the friendly Code Review server
Browse files

asoc: csra: update mute register of csra66x0 codec



Update mute register of csra66x0 codec when
called from hw_free api.

Change-Id: I728d1ca3076899ad0e6dea4dcac28416b3e40b18
Signed-off-by: default avatarSanjana B <sanjb@codeaurora.org>
parent e7efdae3
Loading
Loading
Loading
Loading
+20 −1
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
 * Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
 */
#include <linux/init.h>
#include <linux/delay.h>
@@ -602,6 +602,25 @@ static const struct snd_soc_dapm_route csra66x0_dapm_routes[] = {
	{"PGA", NULL, "DAC"},
	{"SPKR", NULL, "PGA"},
};
/*
 * csra66x0_hw_free_mute - Update csra66x0 mute register
 *
 * @component - csra66x0 component
 *
 */
void csra66x0_hw_free_mute(struct snd_soc_component *component)
{
	int val = 0;

	if (component == NULL)
		return;

	val = snd_soc_component_read32(component,
			CSRA66X0_MISC_CONTROL_STATUS_1_FA);
	snd_soc_component_write(component, CSRA66X0_MISC_CONTROL_STATUS_1_FA,
			val | 0x04);
}
EXPORT_SYMBOL(csra66x0_hw_free_mute);

static int csra66x0_wait_for_config_state(struct snd_soc_component *component)
{
+3 −1
Original line number Diff line number Diff line
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
 * Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
 */

#ifndef _CSRA66X0_H
@@ -226,4 +226,6 @@
#define FAULT_STATUS_TEMP           0x10
#define FAULT_STATUS_PROTECT        0x20


void csra66x0_hw_free_mute(struct snd_soc_component *component);
#endif /* _CSRA66X0_H */