dvc.c 8.5 KB
Newer Older
K
Kuninori Morimoto 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Renesas R-Car DVC support
 *
 * Copyright (C) 2014 Renesas Solutions Corp.
 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#include "rsnd.h"

#define RSND_DVC_NAME_SIZE	16
14 15 16

#define DVC_NAME "dvc"

K
Kuninori Morimoto 已提交
17 18
struct rsnd_dvc {
	struct rsnd_mod mod;
19 20 21 22 23
	struct rsnd_kctrl_cfg_m volume;
	struct rsnd_kctrl_cfg_m mute;
	struct rsnd_kctrl_cfg_s ren;	/* Ramp Enable */
	struct rsnd_kctrl_cfg_s rup;	/* Ramp Rate Up */
	struct rsnd_kctrl_cfg_s rdown;	/* Ramp Rate Down */
K
Kuninori Morimoto 已提交
24 25
};

26
#define rsnd_dvc_get(priv, id) ((struct rsnd_dvc *)(priv->dvc) + id)
27
#define rsnd_dvc_nr(priv) ((priv)->dvc_nr)
28 29 30
#define rsnd_dvc_of_node(priv) \
	of_get_child_by_name(rsnd_priv_to_dev(priv)->of_node, "rcar_sound,dvc")

K
Kuninori Morimoto 已提交
31 32 33 34 35 36 37 38 39
#define rsnd_mod_to_dvc(_mod)	\
	container_of((_mod), struct rsnd_dvc, mod)

#define for_each_rsnd_dvc(pos, priv, i)				\
	for ((i) = 0;						\
	     ((i) < rsnd_dvc_nr(priv)) &&			\
	     ((pos) = (struct rsnd_dvc *)(priv)->dvc + i);	\
	     i++)

40
static const char * const dvc_ramp_rate[] = {
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
	"128 dB/1 step",	 /* 00000 */
	"64 dB/1 step",		 /* 00001 */
	"32 dB/1 step",		 /* 00010 */
	"16 dB/1 step",		 /* 00011 */
	"8 dB/1 step",		 /* 00100 */
	"4 dB/1 step",		 /* 00101 */
	"2 dB/1 step",		 /* 00110 */
	"1 dB/1 step",		 /* 00111 */
	"0.5 dB/1 step",	 /* 01000 */
	"0.25 dB/1 step",	 /* 01001 */
	"0.125 dB/1 step",	 /* 01010 */
	"0.125 dB/2 steps",	 /* 01011 */
	"0.125 dB/4 steps",	 /* 01100 */
	"0.125 dB/8 steps",	 /* 01101 */
	"0.125 dB/16 steps",	 /* 01110 */
	"0.125 dB/32 steps",	 /* 01111 */
	"0.125 dB/64 steps",	 /* 10000 */
	"0.125 dB/128 steps",	 /* 10001 */
	"0.125 dB/256 steps",	 /* 10010 */
	"0.125 dB/512 steps",	 /* 10011 */
	"0.125 dB/1024 steps",	 /* 10100 */
	"0.125 dB/2048 steps",	 /* 10101 */
	"0.125 dB/4096 steps",	 /* 10110 */
	"0.125 dB/8192 steps",	 /* 10111 */
};

67 68 69 70 71 72
static void rsnd_dvc_soft_reset(struct rsnd_mod *mod)
{
	rsnd_mod_write(mod, DVC_SWRSR, 0);
	rsnd_mod_write(mod, DVC_SWRSR, 1);
}

73 74
#define rsnd_dvc_get_vrpdr(dvc) (dvc->rup.val << 8 | dvc->rdown.val)
#define rsnd_dvc_get_vrdbr(dvc) (0x3ff - (dvc->volume.val[0] >> 13))
75

76 77
static void rsnd_dvc_volume_parameter(struct rsnd_dai_stream *io,
					      struct rsnd_mod *mod)
K
Kuninori Morimoto 已提交
78 79
{
	struct rsnd_dvc *dvc = rsnd_mod_to_dvc(mod);
80
	u32 val[RSND_DVC_CHANNELS];
K
Kuninori Morimoto 已提交
81 82
	int i;

83 84 85 86 87 88 89
	/* Enable Ramp */
	if (dvc->ren.val)
		for (i = 0; i < RSND_DVC_CHANNELS; i++)
			val[i] = dvc->volume.cfg.max;
	else
		for (i = 0; i < RSND_DVC_CHANNELS; i++)
			val[i] = dvc->volume.val[i];
K
Kuninori Morimoto 已提交
90

91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
	/* Enable Digital Volume */
	rsnd_mod_write(mod, DVC_VOL0R, val[0]);
	rsnd_mod_write(mod, DVC_VOL1R, val[1]);
}

static void rsnd_dvc_volume_init(struct rsnd_dai_stream *io,
				 struct rsnd_mod *mod)
{
	struct rsnd_dvc *dvc = rsnd_mod_to_dvc(mod);
	u32 dvucr = 0;
	u32 vrctr = 0;
	u32 vrpdr = 0;
	u32 vrdbr = 0;

	/* Enable Digital Volume, Zero Cross Mute Mode */
	dvucr |= 0x101;
107

108 109 110 111 112 113 114 115 116 117
	/* Enable Ramp */
	if (dvc->ren.val) {
		dvucr |= 0x10;

		/*
		 * FIXME !!
		 * use scale-downed Digital Volume
		 * as Volume Ramp
		 * 7F FFFF -> 3FF
		 */
118 119 120
		vrctr = 0xff;
		vrpdr = rsnd_dvc_get_vrpdr(dvc);
		vrdbr = rsnd_dvc_get_vrdbr(dvc);
121 122
	}

123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
	/* Initialize operation */
	rsnd_mod_write(mod, DVC_DVUIR, 1);

	/* General Information */
	rsnd_mod_write(mod, DVC_ADINR, rsnd_get_adinr_bit(mod, io));
	rsnd_mod_write(mod, DVC_DVUCR, dvucr);

	/* Volume Ramp Parameter */
	rsnd_mod_write(mod, DVC_VRCTR, vrctr);
	rsnd_mod_write(mod, DVC_VRPDR, vrpdr);
	rsnd_mod_write(mod, DVC_VRDBR, vrdbr);

	/* Digital Volume Function Parameter */
	rsnd_dvc_volume_parameter(io, mod);

	/* cancel operation */
	rsnd_mod_write(mod, DVC_DVUIR, 0);
}

static void rsnd_dvc_volume_update(struct rsnd_dai_stream *io,
				   struct rsnd_mod *mod)
{
	struct rsnd_dvc *dvc = rsnd_mod_to_dvc(mod);
	u32 zcmcr = 0;
	u32 vrpdr = 0;
	u32 vrdbr = 0;
	int i;

	for (i = 0; i < dvc->mute.cfg.size; i++)
		zcmcr |= (!!dvc->mute.cfg.val[i]) << i;
153

154 155 156
	if (dvc->ren.val) {
		vrpdr = rsnd_dvc_get_vrpdr(dvc);
		vrdbr = rsnd_dvc_get_vrdbr(dvc);
157 158
	}

159 160 161 162 163 164 165 166 167 168 169 170 171
	/* Disable DVC Register access */
	rsnd_mod_write(mod, DVC_DVUER, 0);

	/* Zero Cross Mute Function */
	rsnd_mod_write(mod, DVC_ZCMCR, zcmcr);

	/* Volume Ramp Function */
	rsnd_mod_write(mod, DVC_VRPDR, vrpdr);
	rsnd_mod_write(mod, DVC_VRDBR, vrdbr);
	/* add DVC_VRWTR here */

	/* Digital Volume Function Parameter */
	rsnd_dvc_volume_parameter(io, mod);
172 173 174

	/* Enable DVC Register access */
	rsnd_mod_write(mod, DVC_DVUER, 1);
K
Kuninori Morimoto 已提交
175 176
}

177 178 179 180 181 182 183 184 185 186
static int rsnd_dvc_probe_(struct rsnd_mod *mod,
			   struct rsnd_dai_stream *io,
			   struct rsnd_priv *priv)
{
	return rsnd_cmd_attach(io, rsnd_mod_id(mod));
}

static int rsnd_dvc_remove_(struct rsnd_mod *mod,
			    struct rsnd_dai_stream *io,
			    struct rsnd_priv *priv)
187 188 189 190 191 192 193 194 195 196 197 198
{
	struct rsnd_dvc *dvc = rsnd_mod_to_dvc(mod);

	rsnd_kctrl_remove(dvc->volume);
	rsnd_kctrl_remove(dvc->mute);
	rsnd_kctrl_remove(dvc->ren);
	rsnd_kctrl_remove(dvc->rup);
	rsnd_kctrl_remove(dvc->rdown);

	return 0;
}

199
static int rsnd_dvc_init(struct rsnd_mod *mod,
200
			 struct rsnd_dai_stream *io,
201
			 struct rsnd_priv *priv)
K
Kuninori Morimoto 已提交
202
{
203
	rsnd_mod_power_on(mod);
K
Kuninori Morimoto 已提交
204

205
	rsnd_dvc_soft_reset(mod);
206

207
	rsnd_dvc_volume_init(io, mod);
K
Kuninori Morimoto 已提交
208

209
	rsnd_dvc_volume_update(io, mod);
K
Kuninori Morimoto 已提交
210 211 212 213 214

	return 0;
}

static int rsnd_dvc_quit(struct rsnd_mod *mod,
215
			 struct rsnd_dai_stream *io,
216
			 struct rsnd_priv *priv)
K
Kuninori Morimoto 已提交
217
{
218
	rsnd_mod_power_off(mod);
K
Kuninori Morimoto 已提交
219 220 221 222

	return 0;
}

223
static int rsnd_dvc_pcm_new(struct rsnd_mod *mod,
224
			    struct rsnd_dai_stream *io,
225 226 227
			    struct snd_soc_pcm_runtime *rtd)
{
	struct rsnd_dvc *dvc = rsnd_mod_to_dvc(mod);
228
	int is_play = rsnd_io_is_play(io);
229 230 231
	int ret;

	/* Volume */
232
	ret = rsnd_kctrl_new_m(mod, io, rtd,
233
			is_play ?
234
			"DVC Out Playback Volume" : "DVC In Capture Volume",
235
			rsnd_dvc_volume_update,
236
			&dvc->volume, 0x00800000 - 1);
237 238 239
	if (ret < 0)
		return ret;

240
	/* Mute */
241
	ret = rsnd_kctrl_new_m(mod, io, rtd,
242
			is_play ?
243
			"DVC Out Mute Switch" : "DVC In Mute Switch",
244
			rsnd_dvc_volume_update,
245
			&dvc->mute, 1);
246 247 248
	if (ret < 0)
		return ret;

249
	/* Ramp */
250
	ret = rsnd_kctrl_new_s(mod, io, rtd,
251
			is_play ?
252
			"DVC Out Ramp Switch" : "DVC In Ramp Switch",
253
			rsnd_dvc_volume_update,
254 255 256 257
			&dvc->ren, 1);
	if (ret < 0)
		return ret;

258
	ret = rsnd_kctrl_new_e(mod, io, rtd,
259
			is_play ?
260 261
			"DVC Out Ramp Up Rate" : "DVC In Ramp Up Rate",
			&dvc->rup,
262
			rsnd_dvc_volume_update,
263 264 265 266
			dvc_ramp_rate, ARRAY_SIZE(dvc_ramp_rate));
	if (ret < 0)
		return ret;

267
	ret = rsnd_kctrl_new_e(mod, io, rtd,
268
			is_play ?
269 270
			"DVC Out Ramp Down Rate" : "DVC In Ramp Down Rate",
			&dvc->rdown,
271
			rsnd_dvc_volume_update,
272 273 274 275 276
			dvc_ramp_rate, ARRAY_SIZE(dvc_ramp_rate));

	if (ret < 0)
		return ret;

277 278 279
	return 0;
}

280 281
static struct dma_chan *rsnd_dvc_dma_req(struct rsnd_dai_stream *io,
					 struct rsnd_mod *mod)
282 283 284 285 286 287 288
{
	struct rsnd_priv *priv = rsnd_mod_to_priv(mod);

	return rsnd_dma_request_channel(rsnd_dvc_of_node(priv),
					mod, "tx");
}

K
Kuninori Morimoto 已提交
289
static struct rsnd_mod_ops rsnd_dvc_ops = {
290
	.name		= DVC_NAME,
291
	.dma_req	= rsnd_dvc_dma_req,
292 293
	.probe		= rsnd_dvc_probe_,
	.remove		= rsnd_dvc_remove_,
K
Kuninori Morimoto 已提交
294 295 296 297 298 299 300 301 302 303
	.init		= rsnd_dvc_init,
	.quit		= rsnd_dvc_quit,
	.pcm_new	= rsnd_dvc_pcm_new,
};

struct rsnd_mod *rsnd_dvc_mod_get(struct rsnd_priv *priv, int id)
{
	if (WARN_ON(id < 0 || id >= rsnd_dvc_nr(priv)))
		id = 0;

304
	return rsnd_mod_get(rsnd_dvc_get(priv, id));
305 306
}

K
Kuninori Morimoto 已提交
307 308 309 310
int rsnd_dvc_probe(struct platform_device *pdev,
		   const struct rsnd_of_data *of_data,
		   struct rsnd_priv *priv)
{
311 312
	struct device_node *node;
	struct device_node *np;
K
Kuninori Morimoto 已提交
313 314 315 316
	struct device *dev = rsnd_priv_to_dev(priv);
	struct rsnd_dvc *dvc;
	struct clk *clk;
	char name[RSND_DVC_NAME_SIZE];
317
	int i, nr, ret;
K
Kuninori Morimoto 已提交
318 319

	/* This driver doesn't support Gen1 at this point */
320 321
	if (rsnd_is_gen1(priv))
		return 0;
K
Kuninori Morimoto 已提交
322

323 324 325
	node = rsnd_dvc_of_node(priv);
	if (!node)
		return 0; /* not used is not error */
326

327 328 329 330 331
	nr = of_get_child_count(node);
	if (!nr) {
		ret = -EINVAL;
		goto rsnd_dvc_probe_done;
	}
332

K
Kuninori Morimoto 已提交
333
	dvc	= devm_kzalloc(dev, sizeof(*dvc) * nr, GFP_KERNEL);
334 335 336 337
	if (!dvc) {
		ret = -ENOMEM;
		goto rsnd_dvc_probe_done;
	}
K
Kuninori Morimoto 已提交
338 339 340 341

	priv->dvc_nr	= nr;
	priv->dvc	= dvc;

342 343 344 345
	i = 0;
	for_each_child_of_node(node, np) {
		dvc = rsnd_dvc_get(priv, i);

346 347
		snprintf(name, RSND_DVC_NAME_SIZE, "%s.%d",
			 DVC_NAME, i);
K
Kuninori Morimoto 已提交
348 349

		clk = devm_clk_get(dev, name);
350 351 352 353
		if (IS_ERR(clk)) {
			ret = PTR_ERR(clk);
			goto rsnd_dvc_probe_done;
		}
K
Kuninori Morimoto 已提交
354

355
		ret = rsnd_mod_init(priv, rsnd_mod_get(dvc), &rsnd_dvc_ops,
356
			      clk, RSND_MOD_DVC, i);
357
		if (ret)
358 359 360
			goto rsnd_dvc_probe_done;

		i++;
K
Kuninori Morimoto 已提交
361 362
	}

363 364 365 366
rsnd_dvc_probe_done:
	of_node_put(node);

	return ret;
K
Kuninori Morimoto 已提交
367
}
368 369 370 371 372 373 374 375

void rsnd_dvc_remove(struct platform_device *pdev,
		     struct rsnd_priv *priv)
{
	struct rsnd_dvc *dvc;
	int i;

	for_each_rsnd_dvc(dvc, priv, i) {
376
		rsnd_mod_quit(rsnd_mod_get(dvc));
377 378
	}
}