Blame view

sound/pci/lola/lola_clock.c 8.02 KB
d43f3010b   Takashi Iwai   ALSA: Add the dri...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  /*
   *  Support for Digigram Lola PCI-e boards
   *
   *  Copyright (c) 2011 Takashi Iwai <tiwai@suse.de>
   *
   *  This program is free software; you can redistribute it and/or modify it
   *  under the terms of the GNU General Public License as published by the Free
   *  Software Foundation; either version 2 of the License, or (at your option)
   *  any later version.
   *
   *  This program is distributed in the hope that it will be useful, but WITHOUT
   *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
   *  more details.
   *
   *  You should have received a copy of the GNU General Public License along with
   *  this program; if not, write to the Free Software Foundation, Inc., 59
   *  Temple Place - Suite 330, Boston, MA  02111-1307, USA.
   */
  
  #include <linux/kernel.h>
  #include <linux/init.h>
f2e019251   Takashi Iwai   ALSA: lola - Yet ...
23
  #include <linux/delay.h>
d43f3010b   Takashi Iwai   ALSA: Add the dri...
24
25
26
  #include <sound/core.h>
  #include <sound/pcm.h>
  #include "lola.h"
1c5d7b312   Takashi Iwai   ALSA: lola - Make...
27
  unsigned int lola_sample_rate_convert(unsigned int coded)
d43f3010b   Takashi Iwai   ALSA: Add the dri...
28
29
30
31
32
33
34
35
36
37
38
39
40
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
  {
  	unsigned int freq;
  
  	/* base frequency */
  	switch (coded & 0x3) {
  	case 0:     freq = 48000; break;
  	case 1:     freq = 44100; break;
  	case 2:     freq = 32000; break;
  	default:    return 0;   /* error */
  	}
  
  	/* multiplier / devisor */
  	switch (coded & 0x1c) {
  	case (0 << 2):    break;
  	case (4 << 2):    break;
  	case (1 << 2):    freq *= 2; break;
  	case (2 << 2):    freq *= 4; break;
  	case (5 << 2):    freq /= 2; break;
  	case (6 << 2):    freq /= 4; break;
  	default:        return 0;   /* error */
  	}
  
  	/* ajustement */
  	switch (coded & 0x60) {
  	case (0 << 5):    break;
  	case (1 << 5):    freq = (freq * 999) / 1000; break;
  	case (2 << 5):    freq = (freq * 1001) / 1000; break;
  	default:        return 0;   /* error */
  	}
  	return freq;
  }
  
  /*
   * Granualrity
   */
  
  #define LOLA_MAXFREQ_AT_GRANULARITY_MIN         48000
  #define LOLA_MAXFREQ_AT_GRANULARITY_BELOW_MAX   96000
  
  static bool check_gran_clock_compatibility(struct lola *chip,
  					   unsigned int val,
  					   unsigned int freq)
  {
  	if (!chip->granularity)
  		return true;
  
  	if (val < LOLA_GRANULARITY_MIN || val > LOLA_GRANULARITY_MAX ||
  	    (val % LOLA_GRANULARITY_STEP) != 0)
  		return false;
  
  	if (val == LOLA_GRANULARITY_MIN) {
  		if (freq > LOLA_MAXFREQ_AT_GRANULARITY_MIN)
  			return false;
  	} else if (val < LOLA_GRANULARITY_MAX) {
  		if (freq > LOLA_MAXFREQ_AT_GRANULARITY_BELOW_MAX)
  			return false;
  	}
  	return true;
  }
  
  int lola_set_granularity(struct lola *chip, unsigned int val, bool force)
  {
  	int err;
  
  	if (!force) {
  		if (val == chip->granularity)
  			return 0;
  #if 0
  		/* change Gran only if there are no streams allocated ! */
  		if (chip->audio_in_alloc_mask || chip->audio_out_alloc_mask)
  			return -EBUSY;
  #endif
  		if (!check_gran_clock_compatibility(chip, val,
  						    chip->clock.cur_freq))
  			return -EINVAL;
  	}
  
  	chip->granularity = val;
  	val /= LOLA_GRANULARITY_STEP;
  
  	/* audio function group */
  	err = lola_codec_write(chip, 1, LOLA_VERB_SET_GRANULARITY_STEPS,
  			       val, 0);
  	if (err < 0)
  		return err;
  	/* this can be a very slow function !!! */
  	usleep_range(400 * val, 20000);
  	return lola_codec_flush(chip);
  }
  
  /*
   * Clock widget handling
   */
e23e7a143   Bill Pemberton   ALSA: pci: remove...
121
  int lola_init_clock_widget(struct lola *chip, int nid)
d43f3010b   Takashi Iwai   ALSA: Add the dri...
122
123
124
125
126
127
128
  {
  	unsigned int val;
  	int i, j, nitems, nb_verbs, idx, idx_list;
  	int err;
  
  	err = lola_read_param(chip, nid, LOLA_PAR_AUDIO_WIDGET_CAP, &val);
  	if (err < 0) {
f58e2fced   Takashi Iwai   ALSA: lola: Use s...
129
130
  		dev_err(chip->card->dev, "Can't read wcaps for 0x%x
  ", nid);
d43f3010b   Takashi Iwai   ALSA: Add the dri...
131
132
133
134
  		return err;
  	}
  
  	if ((val & 0xfff00000) != 0x01f00000) { /* test SubType and Type */
f58e2fced   Takashi Iwai   ALSA: lola: Use s...
135
136
  		dev_dbg(chip->card->dev, "No valid clock widget
  ");
d43f3010b   Takashi Iwai   ALSA: Add the dri...
137
138
139
140
141
  		return 0;
  	}
  
  	chip->clock.nid = nid;
  	chip->clock.items = val & 0xff;
f58e2fced   Takashi Iwai   ALSA: lola: Use s...
142
143
  	dev_dbg(chip->card->dev, "clock_list nid=%x, entries=%d
  ", nid,
d43f3010b   Takashi Iwai   ALSA: Add the dri...
144
145
  		    chip->clock.items);
  	if (chip->clock.items > MAX_SAMPLE_CLOCK_COUNT) {
f58e2fced   Takashi Iwai   ALSA: lola: Use s...
146
147
  		dev_err(chip->card->dev, "CLOCK_LIST too big: %d
  ",
d43f3010b   Takashi Iwai   ALSA: Add the dri...
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
  		       chip->clock.items);
  		return -EINVAL;
  	}
  
  	nitems = chip->clock.items;
  	nb_verbs = (nitems + 3) / 4;
  	idx = 0;
  	idx_list = 0;
  	for (i = 0; i < nb_verbs; i++) {
  		unsigned int res_ex;
  		unsigned short items[4];
  
  		err = lola_codec_read(chip, nid, LOLA_VERB_GET_CLOCK_LIST,
  				      idx, 0, &val, &res_ex);
  		if (err < 0) {
f58e2fced   Takashi Iwai   ALSA: lola: Use s...
163
164
  			dev_err(chip->card->dev, "Can't read CLOCK_LIST
  ");
d43f3010b   Takashi Iwai   ALSA: Add the dri...
165
166
167
168
169
170
171
172
173
174
175
176
177
178
  			return -EINVAL;
  		}
  
  		items[0] = val & 0xfff;
  		items[1] = (val >> 16) & 0xfff;
  		items[2] = res_ex & 0xfff;
  		items[3] = (res_ex >> 16) & 0xfff;
  
  		for (j = 0; j < 4; j++) {
  			unsigned char type = items[j] >> 8;
  			unsigned int freq = items[j] & 0xff;
  			int format = LOLA_CLOCK_FORMAT_NONE;
  			bool add_clock = true;
  			if (type == LOLA_CLOCK_TYPE_INTERNAL) {
1c5d7b312   Takashi Iwai   ALSA: lola - Make...
179
  				freq = lola_sample_rate_convert(freq);
d43f3010b   Takashi Iwai   ALSA: Add the dri...
180
181
182
183
184
185
186
187
  				if (freq < chip->sample_rate_min)
  					add_clock = false;
  				else if (freq == 48000) {
  					chip->clock.cur_index = idx_list;
  					chip->clock.cur_freq = 48000;
  					chip->clock.cur_valid = true;
  				}
  			} else if (type == LOLA_CLOCK_TYPE_VIDEO) {
1c5d7b312   Takashi Iwai   ALSA: lola - Make...
188
  				freq = lola_sample_rate_convert(freq);
d43f3010b   Takashi Iwai   ALSA: Add the dri...
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
  				if (freq < chip->sample_rate_min)
  					add_clock = false;
  				/* video clock has a format (0:NTSC, 1:PAL)*/
  				if (items[j] & 0x80)
  					format = LOLA_CLOCK_FORMAT_NTSC;
  				else
  					format = LOLA_CLOCK_FORMAT_PAL;
  			}
  			if (add_clock) {
  				struct lola_sample_clock *sc;
  				sc = &chip->clock.sample_clock[idx_list];
  				sc->type = type;
  				sc->format = format;
  				sc->freq = freq;
  				/* keep the index used with the board */
  				chip->clock.idx_lookup[idx_list] = idx;
  				idx_list++;
  			} else {
  				chip->clock.items--;
  			}
  			if (++idx >= nitems)
  				break;
  		}
  	}
  	return 0;
  }
  
  /* enable unsolicited events of the clock widget */
  int lola_enable_clock_events(struct lola *chip)
  {
  	unsigned int res;
  	int err;
  
  	err = lola_codec_read(chip, chip->clock.nid,
  			      LOLA_VERB_SET_UNSOLICITED_ENABLE,
  			      LOLA_UNSOLICITED_ENABLE | LOLA_UNSOLICITED_TAG,
  			      0, &res, NULL);
  	if (err < 0)
  		return err;
  	if (res) {
f58e2fced   Takashi Iwai   ALSA: lola: Use s...
229
230
  		dev_warn(chip->card->dev, "error in enable_clock_events %d
  ",
d43f3010b   Takashi Iwai   ALSA: Add the dri...
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
  		       res);
  		return -EINVAL;
  	}
  	return 0;
  }
  
  int lola_set_clock_index(struct lola *chip, unsigned int idx)
  {
  	unsigned int res;
  	int err;
  
  	err = lola_codec_read(chip, chip->clock.nid,
  			      LOLA_VERB_SET_CLOCK_SELECT,
  			      chip->clock.idx_lookup[idx],
  			      0, &res, NULL);
  	if (err < 0)
  		return err;
  	if (res) {
f58e2fced   Takashi Iwai   ALSA: lola: Use s...
249
250
  		dev_warn(chip->card->dev, "error in set_clock %d
  ", res);
d43f3010b   Takashi Iwai   ALSA: Add the dri...
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
  		return -EINVAL;
  	}
  	return 0;
  }
  
  bool lola_update_ext_clock_freq(struct lola *chip, unsigned int val)
  {
  	unsigned int tag;
  
  	/* the current EXTERNAL clock information gets updated by interrupt
  	 * with an unsolicited response
  	 */
  	if (!val)
  		return false;
  	tag = (val >> LOLA_UNSOL_RESP_TAG_OFFSET) & LOLA_UNSOLICITED_TAG_MASK;
  	if (tag != LOLA_UNSOLICITED_TAG)
  		return false;
  
  	/* only for current = external clocks */
  	if (chip->clock.sample_clock[chip->clock.cur_index].type !=
  	    LOLA_CLOCK_TYPE_INTERNAL) {
1c5d7b312   Takashi Iwai   ALSA: lola - Make...
272
  		chip->clock.cur_freq = lola_sample_rate_convert(val & 0x7f);
d43f3010b   Takashi Iwai   ALSA: Add the dri...
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
  		chip->clock.cur_valid = (val & 0x100) != 0;
  	}
  	return true;
  }
  
  int lola_set_clock(struct lola *chip, int idx)
  {
  	int freq = 0;
  	bool valid = false;
  
  	if (idx == chip->clock.cur_index) {
  		/* current clock is allowed */
  		freq = chip->clock.cur_freq;
  		valid = chip->clock.cur_valid;
  	} else if (chip->clock.sample_clock[idx].type ==
  		   LOLA_CLOCK_TYPE_INTERNAL) {
  		/* internal clocks allowed */
  		freq = chip->clock.sample_clock[idx].freq;
  		valid = true;
  	}
  
  	if (!freq || !valid)
  		return -EINVAL;
  
  	if (!check_gran_clock_compatibility(chip, chip->granularity, freq))
  		return -EINVAL;
  
  	if (idx != chip->clock.cur_index) {
  		int err = lola_set_clock_index(chip, idx);
  		if (err < 0)
  			return err;
  		/* update new settings */
  		chip->clock.cur_index = idx;
  		chip->clock.cur_freq = freq;
  		chip->clock.cur_valid = true;
  	}
  	return 0;
  }
  
  int lola_set_sample_rate(struct lola *chip, int rate)
  {
  	int i;
  
  	if (chip->clock.cur_freq == rate && chip->clock.cur_valid)
  		return 0;
  	/* search for new dwClockIndex */
  	for (i = 0; i < chip->clock.items; i++) {
  		if (chip->clock.sample_clock[i].type == LOLA_CLOCK_TYPE_INTERNAL &&
  		    chip->clock.sample_clock[i].freq == rate)
  			break;
  	}
  	if (i >= chip->clock.items)
  		return -EINVAL;
  	return lola_set_clock(chip, i);
  }