aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/tegra/tegra_asoc_machine.h
blob: d6a8d13205516cca949e1fb75cf7d3dc6df86387 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __TEGRA_ASOC_MACHINE_H__
#define __TEGRA_ASOC_MACHINE_H__

struct clk;
struct gpio_desc;
struct snd_soc_card;
struct snd_soc_jack;
struct platform_device;
struct snd_soc_jack_gpio;
struct snd_soc_pcm_runtime;

struct tegra_asoc_data {
	unsigned int (*mclk_rate)(unsigned int srate);
	const char *codec_dev_name;
	struct snd_soc_card *card;
	unsigned int mclk_id;
	bool hp_jack_gpio_active_low;
	bool add_common_dapm_widgets;
	bool add_common_controls;
	bool add_common_snd_ops;
	bool add_headset_jack;
	bool add_mic_jack;
	bool add_hp_jack;
	bool set_ac97;
};

struct tegra_machine {
	struct clk *clk_pll_a_out0;
	struct clk *clk_pll_a;
	struct clk *clk_cdev1;
	unsigned int set_baseclock;
	unsigned int set_mclk;
	const struct tegra_asoc_data *asoc;
	struct gpio_desc *gpiod_ext_mic_en;
	struct gpio_desc *gpiod_int_mic_en;
	struct gpio_desc *gpiod_spkr_en;
	struct gpio_desc *gpiod_mic_det;
	struct gpio_desc *gpiod_ear_sel;
	struct gpio_desc *gpiod_hp_mute;
	struct gpio_desc *gpiod_hp_det;
	struct snd_soc_jack *mic_jack;
	struct snd_soc_jack_gpio *hp_jack_gpio;
};

int tegra_asoc_machine_probe(struct platform_device *pdev);
int tegra_asoc_machine_init(struct snd_soc_pcm_runtime *rtd);

#endif