xref: /openbmc/linux/sound/soc/tegra/tegra210_ahub.h (revision 7d764b68)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * tegra210_ahub.h - TEGRA210 AHUB
4  *
5  * Copyright (c) 2020 NVIDIA CORPORATION.  All rights reserved.
6  *
7  */
8 
9 #ifndef __TEGRA210_AHUB__H__
10 #define __TEGRA210_AHUB__H__
11 
12 /* Tegra210 specific */
13 #define TEGRA210_XBAR_PART1_RX				0x200
14 #define TEGRA210_XBAR_PART2_RX				0x400
15 #define TEGRA210_XBAR_RX_STRIDE				0x4
16 #define TEGRA210_XBAR_AUDIO_RX_COUNT			90
17 #define TEGRA210_XBAR_REG_MASK_0			0xf1f03ff
18 #define TEGRA210_XBAR_REG_MASK_1			0x3f30031f
19 #define TEGRA210_XBAR_REG_MASK_2			0xff1cf313
20 #define TEGRA210_XBAR_REG_MASK_3			0x0
21 #define TEGRA210_XBAR_UPDATE_MAX_REG			3
22 /* Tegra186 specific */
23 #define TEGRA186_XBAR_PART3_RX				0x600
24 #define TEGRA186_XBAR_AUDIO_RX_COUNT			115
25 #define TEGRA186_XBAR_REG_MASK_0			0xf3fffff
26 #define TEGRA186_XBAR_REG_MASK_1			0x3f310f1f
27 #define TEGRA186_XBAR_REG_MASK_2			0xff3cf311
28 #define TEGRA186_XBAR_REG_MASK_3			0x3f0f00ff
29 #define TEGRA186_XBAR_UPDATE_MAX_REG			4
30 
31 #define TEGRA_XBAR_UPDATE_MAX_REG (TEGRA186_XBAR_UPDATE_MAX_REG)
32 
33 #define TEGRA186_MAX_REGISTER_ADDR (TEGRA186_XBAR_PART3_RX +		\
34 	(TEGRA210_XBAR_RX_STRIDE * (TEGRA186_XBAR_AUDIO_RX_COUNT - 1)))
35 
36 #define TEGRA210_MAX_REGISTER_ADDR (TEGRA210_XBAR_PART2_RX +		\
37 	(TEGRA210_XBAR_RX_STRIDE * (TEGRA210_XBAR_AUDIO_RX_COUNT - 1)))
38 
39 #define MUX_REG(id) (TEGRA210_XBAR_RX_STRIDE * (id))
40 
41 #define MUX_VALUE(npart, nbit) (1 + (nbit) + (npart) * 32)
42 
43 #define SOC_VALUE_ENUM_WIDE(xreg, shift, xmax, xtexts, xvalues)		\
44 	{								\
45 		.reg = xreg,						\
46 		.shift_l = shift,					\
47 		.shift_r = shift,					\
48 		.items = xmax,						\
49 		.texts = xtexts,					\
50 		.values = xvalues,					\
51 		.mask = xmax ? roundup_pow_of_two(xmax) - 1 : 0		\
52 	}
53 
54 #define SOC_VALUE_ENUM_WIDE_DECL(name, xreg, shift, xtexts, xvalues)	\
55 	static struct soc_enum name =					\
56 		SOC_VALUE_ENUM_WIDE(xreg, shift, ARRAY_SIZE(xtexts),	\
57 				    xtexts, xvalues)
58 
59 #define MUX_ENUM_CTRL_DECL(ename, id)					\
60 	SOC_VALUE_ENUM_WIDE_DECL(ename##_enum, MUX_REG(id), 0,		\
61 				 tegra210_ahub_mux_texts,		\
62 				 tegra210_ahub_mux_values);		\
63 	static const struct snd_kcontrol_new ename##_control =		\
64 		SOC_DAPM_ENUM_EXT("Route", ename##_enum,		\
65 				  tegra_ahub_get_value_enum,		\
66 				  tegra_ahub_put_value_enum)
67 
68 #define MUX_ENUM_CTRL_DECL_186(ename, id)				\
69 	SOC_VALUE_ENUM_WIDE_DECL(ename##_enum, MUX_REG(id), 0,		\
70 				 tegra186_ahub_mux_texts,		\
71 				 tegra186_ahub_mux_values);		\
72 	static const struct snd_kcontrol_new ename##_control =		\
73 		SOC_DAPM_ENUM_EXT("Route", ename##_enum,		\
74 				  tegra_ahub_get_value_enum,		\
75 				  tegra_ahub_put_value_enum)
76 
77 #define WIDGETS(sname, ename)						     \
78 	SND_SOC_DAPM_AIF_IN(sname " XBAR-RX", NULL, 0, SND_SOC_NOPM, 0, 0),  \
79 	SND_SOC_DAPM_AIF_OUT(sname " XBAR-TX", NULL, 0, SND_SOC_NOPM, 0, 0), \
80 	SND_SOC_DAPM_MUX(sname " Mux", SND_SOC_NOPM, 0, 0,		     \
81 			 &ename##_control)
82 
83 #define TX_WIDGETS(sname)						    \
84 	SND_SOC_DAPM_AIF_IN(sname " XBAR-RX", NULL, 0, SND_SOC_NOPM, 0, 0), \
85 	SND_SOC_DAPM_AIF_OUT(sname " XBAR-TX", NULL, 0, SND_SOC_NOPM, 0, 0)
86 
87 #define DAI(sname)							\
88 	{								\
89 		.name = "XBAR-" #sname,					\
90 		.playback = {						\
91 			.stream_name = #sname " XBAR-Playback",		\
92 			.channels_min = 1,				\
93 			.channels_max = 16,				\
94 			.rates = SNDRV_PCM_RATE_8000_192000,		\
95 			.formats = SNDRV_PCM_FMTBIT_S8 |		\
96 				SNDRV_PCM_FMTBIT_S16_LE |		\
97 				SNDRV_PCM_FMTBIT_S24_LE |		\
98 				SNDRV_PCM_FMTBIT_S32_LE,		\
99 		},							\
100 		.capture = {						\
101 			.stream_name = #sname " XBAR-Capture",		\
102 			.channels_min = 1,				\
103 			.channels_max = 16,				\
104 			.rates = SNDRV_PCM_RATE_8000_192000,		\
105 			.formats = SNDRV_PCM_FMTBIT_S8 |		\
106 				SNDRV_PCM_FMTBIT_S16_LE |		\
107 				SNDRV_PCM_FMTBIT_S24_LE |		\
108 				SNDRV_PCM_FMTBIT_S32_LE,		\
109 		},							\
110 	}
111 
112 struct tegra_ahub_soc_data {
113 	const struct regmap_config *regmap_config;
114 	const struct snd_soc_component_driver *cmpnt_drv;
115 	struct snd_soc_dai_driver *dai_drv;
116 	unsigned int mask[4];
117 	unsigned int reg_count;
118 	unsigned int num_dais;
119 };
120 
121 struct tegra_ahub {
122 	const struct tegra_ahub_soc_data *soc_data;
123 	struct regmap *regmap;
124 	struct clk *clk;
125 };
126 
127 #endif
128