Blame view

sound/ppc/pmac.c 37.2 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  /*
   * PMac DBDMA lowlevel functions
   *
   * Copyright (c) by Takashi Iwai <tiwai@suse.de>
   * code based on dmasound.c.
   *
   *   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
   */
6cbbfe1c8   Takashi Iwai   ALSA: Include lin...
21
  #include <linux/io.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22
23
24
25
26
  #include <asm/irq.h>
  #include <linux/init.h>
  #include <linux/delay.h>
  #include <linux/slab.h>
  #include <linux/interrupt.h>
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
27
28
  #include <linux/pci.h>
  #include <linux/dma-mapping.h>
5af507300   Rob Herring   drivers: clean-up...
29
30
  #include <linux/of_address.h>
  #include <linux/of_irq.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
31
32
33
  #include <sound/core.h>
  #include "pmac.h"
  #include <sound/pcm_params.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
34
  #include <asm/pmac_feature.h>
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
35
  #include <asm/pci-bridge.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
36

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
37
38
39
40
41
42
43
44
  /* fixed frequency table for awacs, screamer, burgundy, DACA (44100 max) */
  static int awacs_freqs[8] = {
  	44100, 29400, 22050, 17640, 14700, 11025, 8820, 7350
  };
  /* fixed frequency table for tumbler */
  static int tumbler_freqs[1] = {
  	44100
  };
e70515dd5   T. H. Huth   [ALSA] snd-powerm...
45
46
47
48
49
50
51
52
53
54
  
  /*
   * we will allocate a single 'emergency' dbdma cmd block to use if the
   * tx status comes up "DEAD".  This happens on some PowerComputing Pmac
   * clones, either owing to a bug in dbdma or some interaction between
   * IDE and sound.  However, this measure would deal with DEAD status if
   * it appeared elsewhere.
   */
  static struct pmac_dbdma emergency_dbdma;
  static int emergency_in_use;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
55
56
57
  /*
   * allocate DBDMA command arrays
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
58
  static int snd_pmac_dbdma_alloc(struct snd_pmac *chip, struct pmac_dbdma *rec, int size)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
59
  {
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
60
61
62
63
  	unsigned int rsize = sizeof(struct dbdma_cmd) * (size + 1);
  
  	rec->space = dma_alloc_coherent(&chip->pdev->dev, rsize,
  					&rec->dma_base, GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
64
65
66
  	if (rec->space == NULL)
  		return -ENOMEM;
  	rec->size = size;
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
67
  	memset(rec->space, 0, rsize);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
68
  	rec->cmds = (void __iomem *)DBDMA_ALIGN(rec->space);
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
69
  	rec->addr = rec->dma_base + (unsigned long)((char *)rec->cmds - (char *)rec->space);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
70
71
  	return 0;
  }
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
72
  static void snd_pmac_dbdma_free(struct snd_pmac *chip, struct pmac_dbdma *rec)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
73
  {
367636e8a   Benjamin Herrenschmidt   [PATCH] powerpc: ...
74
  	if (rec->space) {
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
75
76
77
78
  		unsigned int rsize = sizeof(struct dbdma_cmd) * (rec->size + 1);
  
  		dma_free_coherent(&chip->pdev->dev, rsize, rec->space, rec->dma_base);
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
79
80
81
82
83
84
85
86
87
88
  }
  
  
  /*
   * pcm stuff
   */
  
  /*
   * look up frequency table
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
89
  unsigned int snd_pmac_rate_index(struct snd_pmac *chip, struct pmac_stream *rec, unsigned int rate)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  {
  	int i, ok, found;
  
  	ok = rec->cur_freqs;
  	if (rate > chip->freq_table[0])
  		return 0;
  	found = 0;
  	for (i = 0; i < chip->num_freqs; i++, ok >>= 1) {
  		if (! (ok & 1)) continue;
  		found = i;
  		if (rate >= chip->freq_table[i])
  			break;
  	}
  	return found;
  }
  
  /*
   * check whether another stream is active
   */
  static inline int another_stream(int stream)
  {
  	return (stream == SNDRV_PCM_STREAM_PLAYBACK) ?
  		SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
  }
  
  /*
   * allocate buffers
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
118
119
  static int snd_pmac_pcm_hw_params(struct snd_pcm_substream *subs,
  				  struct snd_pcm_hw_params *hw_params)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
120
121
122
123
124
125
126
  {
  	return snd_pcm_lib_malloc_pages(subs, params_buffer_bytes(hw_params));
  }
  
  /*
   * release buffers
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
127
  static int snd_pmac_pcm_hw_free(struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
128
129
130
131
132
133
134
135
  {
  	snd_pcm_lib_free_pages(subs);
  	return 0;
  }
  
  /*
   * get a stream of the opposite direction
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
136
  static struct pmac_stream *snd_pmac_get_stream(struct snd_pmac *chip, int stream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
  {
  	switch (stream) {
  	case SNDRV_PCM_STREAM_PLAYBACK:
  		return &chip->playback;
  	case SNDRV_PCM_STREAM_CAPTURE:
  		return &chip->capture;
  	default:
  		snd_BUG();
  		return NULL;
  	}
  }
  
  /*
   * wait while run status is on
   */
77933d727   Jesper Juhl   [PATCH] clean up ...
152
  static inline void
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
153
  snd_pmac_wait_ack(struct pmac_stream *rec)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
154
155
156
157
158
159
160
161
162
163
  {
  	int timeout = 50000;
  	while ((in_le32(&rec->dma->status) & RUN) && timeout-- > 0)
  		udelay(1);
  }
  
  /*
   * set the format and rate to the chip.
   * call the lowlevel function if defined (e.g. for AWACS).
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
164
  static void snd_pmac_pcm_set_format(struct snd_pmac *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
165
166
167
168
169
170
171
172
173
174
175
  {
  	/* set up frequency and format */
  	out_le32(&chip->awacs->control, chip->control_mask | (chip->rate_index << 8));
  	out_le32(&chip->awacs->byteswap, chip->format == SNDRV_PCM_FORMAT_S16_LE ? 1 : 0);
  	if (chip->set_format)
  		chip->set_format(chip);
  }
  
  /*
   * stop the DMA transfer
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
176
  static inline void snd_pmac_dma_stop(struct pmac_stream *rec)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
177
178
179
180
181
182
183
184
  {
  	out_le32(&rec->dma->control, (RUN|WAKE|FLUSH|PAUSE) << 16);
  	snd_pmac_wait_ack(rec);
  }
  
  /*
   * set the command pointer address
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
185
  static inline void snd_pmac_dma_set_command(struct pmac_stream *rec, struct pmac_dbdma *cmd)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
186
187
188
189
190
191
192
  {
  	out_le32(&rec->dma->cmdptr, cmd->addr);
  }
  
  /*
   * start the DMA
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
193
  static inline void snd_pmac_dma_run(struct pmac_stream *rec, int status)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
194
195
196
197
198
199
200
201
  {
  	out_le32(&rec->dma->control, status | (status << 16));
  }
  
  
  /*
   * prepare playback/capture stream
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
202
  static int snd_pmac_pcm_prepare(struct snd_pmac *chip, struct pmac_stream *rec, struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
203
204
205
  {
  	int i;
  	volatile struct dbdma_cmd __iomem *cp;
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
206
  	struct snd_pcm_runtime *runtime = subs->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
207
208
  	int rate_index;
  	long offset;
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
209
  	struct pmac_stream *astr;
946cda7d6   Risto Suominen   [ALSA] snd-powerm...
210

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
211
212
213
214
215
216
217
218
  	rec->dma_size = snd_pcm_lib_buffer_bytes(subs);
  	rec->period_size = snd_pcm_lib_period_bytes(subs);
  	rec->nperiods = rec->dma_size / rec->period_size;
  	rec->cur_period = 0;
  	rate_index = snd_pmac_rate_index(chip, rec, runtime->rate);
  
  	/* set up constraints */
  	astr = snd_pmac_get_stream(chip, another_stream(rec->stream));
7c22f1aaa   Takashi Iwai   [ALSA] Remove snd...
219
220
  	if (! astr)
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
221
222
223
224
225
226
227
228
229
230
231
232
233
  	astr->cur_freqs = 1 << rate_index;
  	astr->cur_formats = 1 << runtime->format;
  	chip->rate_index = rate_index;
  	chip->format = runtime->format;
  
  	/* We really want to execute a DMA stop command, after the AWACS
  	 * is initialized.
  	 * For reasons I don't understand, it stops the hissing noise
  	 * common to many PowerBook G3 systems and random noise otherwise
  	 * captured on iBook2's about every third time. -ReneR
  	 */
  	spin_lock_irq(&chip->reg_lock);
  	snd_pmac_dma_stop(rec);
f57187267   David Gibson   powerpc: Move Pow...
234
  	chip->extra_dma.cmds->command = cpu_to_le16(DBDMA_STOP);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
235
236
237
238
239
240
241
242
  	snd_pmac_dma_set_command(rec, &chip->extra_dma);
  	snd_pmac_dma_run(rec, RUN);
  	spin_unlock_irq(&chip->reg_lock);
  	mdelay(5);
  	spin_lock_irq(&chip->reg_lock);
  	/* continuous DMA memory type doesn't provide the physical address,
  	 * so we need to resolve the address here...
  	 */
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
243
  	offset = runtime->dma_addr;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
244
  	for (i = 0, cp = rec->cmd.cmds; i < rec->nperiods; i++, cp++) {
f57187267   David Gibson   powerpc: Move Pow...
245
246
247
248
  		cp->phy_addr = cpu_to_le32(offset);
  		cp->req_count = cpu_to_le16(rec->period_size);
  		/*cp->res_count = cpu_to_le16(0);*/
  		cp->xfer_status = cpu_to_le16(0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
249
250
251
  		offset += rec->period_size;
  	}
  	/* make loop */
f57187267   David Gibson   powerpc: Move Pow...
252
253
  	cp->command = cpu_to_le16(DBDMA_NOP + BR_ALWAYS);
  	cp->cmd_dep = cpu_to_le32(rec->cmd.addr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
254
255
256
257
258
259
260
261
262
263
264
265
  
  	snd_pmac_dma_stop(rec);
  	snd_pmac_dma_set_command(rec, &rec->cmd);
  	spin_unlock_irq(&chip->reg_lock);
  
  	return 0;
  }
  
  
  /*
   * PCM trigger/stop
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
266
267
  static int snd_pmac_pcm_trigger(struct snd_pmac *chip, struct pmac_stream *rec,
  				struct snd_pcm_substream *subs, int cmd)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
  {
  	volatile struct dbdma_cmd __iomem *cp;
  	int i, command;
  
  	switch (cmd) {
  	case SNDRV_PCM_TRIGGER_START:
  	case SNDRV_PCM_TRIGGER_RESUME:
  		if (rec->running)
  			return -EBUSY;
  		command = (subs->stream == SNDRV_PCM_STREAM_PLAYBACK ?
  			   OUTPUT_MORE : INPUT_MORE) + INTR_ALWAYS;
  		spin_lock(&chip->reg_lock);
  		snd_pmac_beep_stop(chip);
  		snd_pmac_pcm_set_format(chip);
  		for (i = 0, cp = rec->cmd.cmds; i < rec->nperiods; i++, cp++)
  			out_le16(&cp->command, command);
  		snd_pmac_dma_set_command(rec, &rec->cmd);
  		(void)in_le32(&rec->dma->status);
  		snd_pmac_dma_run(rec, RUN|WAKE);
  		rec->running = 1;
  		spin_unlock(&chip->reg_lock);
  		break;
  
  	case SNDRV_PCM_TRIGGER_STOP:
  	case SNDRV_PCM_TRIGGER_SUSPEND:
  		spin_lock(&chip->reg_lock);
  		rec->running = 0;
6da671138   Takashi Iwai   ALSA: powermac - ...
295
296
  		/*printk(KERN_DEBUG "stopped!!
  ");*/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
  		snd_pmac_dma_stop(rec);
  		for (i = 0, cp = rec->cmd.cmds; i < rec->nperiods; i++, cp++)
  			out_le16(&cp->command, DBDMA_STOP);
  		spin_unlock(&chip->reg_lock);
  		break;
  
  	default:
  		return -EINVAL;
  	}
  
  	return 0;
  }
  
  /*
   * return the current pointer
   */
  inline
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
314
315
316
  static snd_pcm_uframes_t snd_pmac_pcm_pointer(struct snd_pmac *chip,
  					      struct pmac_stream *rec,
  					      struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
317
318
319
320
321
322
  {
  	int count = 0;
  
  #if 1 /* hmm.. how can we get the current dma pointer?? */
  	int stat;
  	volatile struct dbdma_cmd __iomem *cp = &rec->cmd.cmds[rec->cur_period];
f57187267   David Gibson   powerpc: Move Pow...
323
  	stat = le16_to_cpu(cp->xfer_status);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
324
325
326
327
328
329
330
  	if (stat & (ACTIVE|DEAD)) {
  		count = in_le16(&cp->res_count);
  		if (count)
  			count = rec->period_size - count;
  	}
  #endif
  	count += rec->cur_period * rec->period_size;
6da671138   Takashi Iwai   ALSA: powermac - ...
331
332
  	/*printk(KERN_DEBUG "pointer=%d
  ", count);*/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
333
334
335
336
337
338
  	return bytes_to_frames(subs->runtime, count);
  }
  
  /*
   * playback
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
339
  static int snd_pmac_playback_prepare(struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
340
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
341
  	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
342
343
  	return snd_pmac_pcm_prepare(chip, &chip->playback, subs);
  }
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
344
  static int snd_pmac_playback_trigger(struct snd_pcm_substream *subs,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
345
346
  				     int cmd)
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
347
  	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
348
349
  	return snd_pmac_pcm_trigger(chip, &chip->playback, subs, cmd);
  }
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
350
  static snd_pcm_uframes_t snd_pmac_playback_pointer(struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
351
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
352
  	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
353
354
355
356
357
358
359
  	return snd_pmac_pcm_pointer(chip, &chip->playback, subs);
  }
  
  
  /*
   * capture
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
360
  static int snd_pmac_capture_prepare(struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
361
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
362
  	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
363
364
  	return snd_pmac_pcm_prepare(chip, &chip->capture, subs);
  }
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
365
  static int snd_pmac_capture_trigger(struct snd_pcm_substream *subs,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
366
367
  				    int cmd)
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
368
  	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
369
370
  	return snd_pmac_pcm_trigger(chip, &chip->capture, subs, cmd);
  }
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
371
  static snd_pcm_uframes_t snd_pmac_capture_pointer(struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
372
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
373
  	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
374
375
376
377
378
  	return snd_pmac_pcm_pointer(chip, &chip->capture, subs);
  }
  
  
  /*
e70515dd5   T. H. Huth   [ALSA] snd-powerm...
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
   * Handle DEAD DMA transfers:
   * if the TX status comes up "DEAD" - reported on some Power Computing machines
   * we need to re-start the dbdma - but from a different physical start address
   * and with a different transfer length.  It would get very messy to do this
   * with the normal dbdma_cmd blocks - we would have to re-write the buffer start
   * addresses each time.  So, we will keep a single dbdma_cmd block which can be
   * fiddled with.
   * When DEAD status is first reported the content of the faulted dbdma block is
   * copied into the emergency buffer and we note that the buffer is in use.
   * we then bump the start physical address by the amount that was successfully
   * output before it died.
   * On any subsequent DEAD result we just do the bump-ups (we know that we are
   * already using the emergency dbdma_cmd).
   * CHECK: this just tries to "do it".  It is possible that we should abandon
   * xfers when the number of residual bytes gets below a certain value - I can
   * see that this might cause a loop-forever if a too small transfer causes
   * DEAD status.  However this is a TODO for now - we'll see what gets reported.
   * When we get a successful transfer result with the emergency buffer we just
   * pretend that it completed using the original dmdma_cmd and carry on.  The
   * 'next_cmd' field will already point back to the original loop of blocks.
   */
  static inline void snd_pmac_pcm_dead_xfer(struct pmac_stream *rec,
  					  volatile struct dbdma_cmd __iomem *cp)
  {
  	unsigned short req, res ;
  	unsigned int phy ;
  
  	/* printk(KERN_WARNING "snd-powermac: DMA died - patching it up!
  "); */
  
  	/* to clear DEAD status we must first clear RUN
  	   set it to quiescent to be on the safe side */
  	(void)in_le32(&rec->dma->status);
  	out_le32(&rec->dma->control, (RUN|PAUSE|FLUSH|WAKE) << 16);
  
  	if (!emergency_in_use) { /* new problem */
  		memcpy((void *)emergency_dbdma.cmds, (void *)cp,
  		       sizeof(struct dbdma_cmd));
  		emergency_in_use = 1;
f57187267   David Gibson   powerpc: Move Pow...
418
419
  		cp->xfer_status = cpu_to_le16(0);
  		cp->req_count = cpu_to_le16(rec->period_size);
e70515dd5   T. H. Huth   [ALSA] snd-powerm...
420
421
422
423
424
  		cp = emergency_dbdma.cmds;
  	}
  
  	/* now bump the values to reflect the amount
  	   we haven't yet shifted */
f57187267   David Gibson   powerpc: Move Pow...
425
426
427
  	req = le16_to_cpu(cp->req_count);
  	res = le16_to_cpu(cp->res_count);
  	phy = le32_to_cpu(cp->phy_addr);
e70515dd5   T. H. Huth   [ALSA] snd-powerm...
428
  	phy += (req - res);
f57187267   David Gibson   powerpc: Move Pow...
429
430
431
432
  	cp->req_count = cpu_to_le16(res);
  	cp->res_count = cpu_to_le16(0);
  	cp->xfer_status = cpu_to_le16(0);
  	cp->phy_addr = cpu_to_le32(phy);
e70515dd5   T. H. Huth   [ALSA] snd-powerm...
433

f57187267   David Gibson   powerpc: Move Pow...
434
  	cp->cmd_dep = cpu_to_le32(rec->cmd.addr
e70515dd5   T. H. Huth   [ALSA] snd-powerm...
435
  		+ sizeof(struct dbdma_cmd)*((rec->cur_period+1)%rec->nperiods));
f57187267   David Gibson   powerpc: Move Pow...
436
  	cp->command = cpu_to_le16(OUTPUT_MORE | BR_ALWAYS | INTR_ALWAYS);
e70515dd5   T. H. Huth   [ALSA] snd-powerm...
437
438
439
440
441
442
443
444
445
446
447
  
  	/* point at our patched up command block */
  	out_le32(&rec->dma->cmdptr, emergency_dbdma.addr);
  
  	/* we must re-start the controller */
  	(void)in_le32(&rec->dma->status);
  	/* should complete clearing the DEAD status */
  	out_le32(&rec->dma->control, ((RUN|WAKE) << 16) + (RUN|WAKE));
  }
  
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
448
449
   * update playback/capture pointer from interrupts
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
450
  static void snd_pmac_pcm_update(struct snd_pmac *chip, struct pmac_stream *rec)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
451
452
453
454
455
456
457
  {
  	volatile struct dbdma_cmd __iomem *cp;
  	int c;
  	int stat;
  
  	spin_lock(&chip->reg_lock);
  	if (rec->running) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
458
  		for (c = 0; c < rec->nperiods; c++) { /* at most all fragments */
e70515dd5   T. H. Huth   [ALSA] snd-powerm...
459
460
461
462
463
  
  			if (emergency_in_use)   /* already using DEAD xfer? */
  				cp = emergency_dbdma.cmds;
  			else
  				cp = &rec->cmd.cmds[rec->cur_period];
f57187267   David Gibson   powerpc: Move Pow...
464
  			stat = le16_to_cpu(cp->xfer_status);
e70515dd5   T. H. Huth   [ALSA] snd-powerm...
465
466
467
468
469
470
471
472
  
  			if (stat & DEAD) {
  				snd_pmac_pcm_dead_xfer(rec, cp);
  				break; /* this block is still going */
  			}
  
  			if (emergency_in_use)
  				emergency_in_use = 0 ; /* done that */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
473
474
  			if (! (stat & ACTIVE))
  				break;
e70515dd5   T. H. Huth   [ALSA] snd-powerm...
475

6da671138   Takashi Iwai   ALSA: powermac - ...
476
477
  			/*printk(KERN_DEBUG "update frag %d
  ", rec->cur_period);*/
f57187267   David Gibson   powerpc: Move Pow...
478
479
480
  			cp->xfer_status = cpu_to_le16(0);
  			cp->req_count = cpu_to_le16(rec->period_size);
  			/*cp->res_count = cpu_to_le16(0);*/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
481
482
483
  			rec->cur_period++;
  			if (rec->cur_period >= rec->nperiods) {
  				rec->cur_period = 0;
e70515dd5   T. H. Huth   [ALSA] snd-powerm...
484
  			}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
485
486
487
488
489
490
491
492
493
494
495
496
  			spin_unlock(&chip->reg_lock);
  			snd_pcm_period_elapsed(rec->substream);
  			spin_lock(&chip->reg_lock);
  		}
  	}
  	spin_unlock(&chip->reg_lock);
  }
  
  
  /*
   * hw info
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
497
  static struct snd_pcm_hardware snd_pmac_playback =
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
  {
  	.info =			(SNDRV_PCM_INFO_INTERLEAVED |
  				 SNDRV_PCM_INFO_MMAP |
  				 SNDRV_PCM_INFO_MMAP_VALID |
  				 SNDRV_PCM_INFO_RESUME),
  	.formats =		SNDRV_PCM_FMTBIT_S16_BE | SNDRV_PCM_FMTBIT_S16_LE,
  	.rates =		SNDRV_PCM_RATE_8000_44100,
  	.rate_min =		7350,
  	.rate_max =		44100,
  	.channels_min =		2,
  	.channels_max =		2,
  	.buffer_bytes_max =	131072,
  	.period_bytes_min =	256,
  	.period_bytes_max =	16384,
  	.periods_min =		3,
  	.periods_max =		PMAC_MAX_FRAGS,
  };
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
515
  static struct snd_pcm_hardware snd_pmac_capture =
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
  {
  	.info =			(SNDRV_PCM_INFO_INTERLEAVED |
  				 SNDRV_PCM_INFO_MMAP |
  				 SNDRV_PCM_INFO_MMAP_VALID |
  				 SNDRV_PCM_INFO_RESUME),
  	.formats =		SNDRV_PCM_FMTBIT_S16_BE | SNDRV_PCM_FMTBIT_S16_LE,
  	.rates =		SNDRV_PCM_RATE_8000_44100,
  	.rate_min =		7350,
  	.rate_max =		44100,
  	.channels_min =		2,
  	.channels_max =		2,
  	.buffer_bytes_max =	131072,
  	.period_bytes_min =	256,
  	.period_bytes_max =	16384,
  	.periods_min =		3,
  	.periods_max =		PMAC_MAX_FRAGS,
  };
  
  
  #if 0 // NYI
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
536
537
  static int snd_pmac_hw_rule_rate(struct snd_pcm_hw_params *params,
  				 struct snd_pcm_hw_rule *rule)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
538
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
539
540
  	struct snd_pmac *chip = rule->private;
  	struct pmac_stream *rec = snd_pmac_get_stream(chip, rule->deps[0]);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
541
  	int i, freq_table[8], num_freqs;
7c22f1aaa   Takashi Iwai   [ALSA] Remove snd...
542
543
  	if (! rec)
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
544
545
546
547
548
549
550
551
552
  	num_freqs = 0;
  	for (i = chip->num_freqs - 1; i >= 0; i--) {
  		if (rec->cur_freqs & (1 << i))
  			freq_table[num_freqs++] = chip->freq_table[i];
  	}
  
  	return snd_interval_list(hw_param_interval(params, rule->var),
  				 num_freqs, freq_table, 0);
  }
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
553
554
  static int snd_pmac_hw_rule_format(struct snd_pcm_hw_params *params,
  				   struct snd_pcm_hw_rule *rule)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
555
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
556
557
  	struct snd_pmac *chip = rule->private;
  	struct pmac_stream *rec = snd_pmac_get_stream(chip, rule->deps[0]);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
558

7c22f1aaa   Takashi Iwai   [ALSA] Remove snd...
559
560
  	if (! rec)
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
561
562
563
564
  	return snd_mask_refine_set(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT),
  				   rec->cur_formats);
  }
  #endif // NYI
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
565
566
  static int snd_pmac_pcm_open(struct snd_pmac *chip, struct pmac_stream *rec,
  			     struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
567
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
568
  	struct snd_pcm_runtime *runtime = subs->runtime;
918f3a0e8   Clemens Ladisch   [ALSA] pcm: add s...
569
  	int i;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
570
571
572
  
  	/* look up frequency table and fill bit mask */
  	runtime->hw.rates = 0;
918f3a0e8   Clemens Ladisch   [ALSA] pcm: add s...
573
574
575
576
  	for (i = 0; i < chip->num_freqs; i++)
  		if (chip->freqs_ok & (1 << i))
  			runtime->hw.rates |=
  				snd_pcm_rate_to_rate_bit(chip->freq_table[i]);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
  
  	/* check for minimum and maximum rates */
  	for (i = 0; i < chip->num_freqs; i++) {
  		if (chip->freqs_ok & (1 << i)) {
  			runtime->hw.rate_max = chip->freq_table[i];
  			break;
  		}
  	}
  	for (i = chip->num_freqs - 1; i >= 0; i--) {
  		if (chip->freqs_ok & (1 << i)) {
  			runtime->hw.rate_min = chip->freq_table[i];
  			break;
  		}
  	}
  	runtime->hw.formats = chip->formats_ok;
  	if (chip->can_capture) {
  		if (! chip->can_duplex)
  			runtime->hw.info |= SNDRV_PCM_INFO_HALF_DUPLEX;
  		runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
  	}
  	runtime->private_data = rec;
  	rec->substream = subs;
  
  #if 0 /* FIXME: still under development.. */
  	snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
  			    snd_pmac_hw_rule_rate, chip, rec->stream, -1);
  	snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
  			    snd_pmac_hw_rule_format, chip, rec->stream, -1);
  #endif
  
  	runtime->hw.periods_max = rec->cmd.size - 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
608
609
610
611
  	/* constraints to fix choppy sound */
  	snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
  	return 0;
  }
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
612
613
  static int snd_pmac_pcm_close(struct snd_pmac *chip, struct pmac_stream *rec,
  			      struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
614
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
615
  	struct pmac_stream *astr;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
616
617
618
619
  
  	snd_pmac_dma_stop(rec);
  
  	astr = snd_pmac_get_stream(chip, another_stream(rec->stream));
7c22f1aaa   Takashi Iwai   [ALSA] Remove snd...
620
621
  	if (! astr)
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
622
623
624
625
  
  	/* reset constraints */
  	astr->cur_freqs = chip->freqs_ok;
  	astr->cur_formats = chip->formats_ok;
946cda7d6   Risto Suominen   [ALSA] snd-powerm...
626

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
627
628
  	return 0;
  }
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
629
  static int snd_pmac_playback_open(struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
630
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
631
  	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
632
633
634
635
  
  	subs->runtime->hw = snd_pmac_playback;
  	return snd_pmac_pcm_open(chip, &chip->playback, subs);
  }
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
636
  static int snd_pmac_capture_open(struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
637
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
638
  	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
639
640
641
642
  
  	subs->runtime->hw = snd_pmac_capture;
  	return snd_pmac_pcm_open(chip, &chip->capture, subs);
  }
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
643
  static int snd_pmac_playback_close(struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
644
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
645
  	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
646
647
648
  
  	return snd_pmac_pcm_close(chip, &chip->playback, subs);
  }
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
649
  static int snd_pmac_capture_close(struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
650
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
651
  	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
652
653
654
655
656
657
  
  	return snd_pmac_pcm_close(chip, &chip->capture, subs);
  }
  
  /*
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
658
  static struct snd_pcm_ops snd_pmac_playback_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
659
660
661
662
663
664
665
666
667
  	.open =		snd_pmac_playback_open,
  	.close =	snd_pmac_playback_close,
  	.ioctl =	snd_pcm_lib_ioctl,
  	.hw_params =	snd_pmac_pcm_hw_params,
  	.hw_free =	snd_pmac_pcm_hw_free,
  	.prepare =	snd_pmac_playback_prepare,
  	.trigger =	snd_pmac_playback_trigger,
  	.pointer =	snd_pmac_playback_pointer,
  };
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
668
  static struct snd_pcm_ops snd_pmac_capture_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
669
670
671
672
673
674
675
676
677
  	.open =		snd_pmac_capture_open,
  	.close =	snd_pmac_capture_close,
  	.ioctl =	snd_pcm_lib_ioctl,
  	.hw_params =	snd_pmac_pcm_hw_params,
  	.hw_free =	snd_pmac_pcm_hw_free,
  	.prepare =	snd_pmac_capture_prepare,
  	.trigger =	snd_pmac_capture_trigger,
  	.pointer =	snd_pmac_capture_pointer,
  };
15afafc25   Bill Pemberton   ALSA: ppc: remove...
678
  int snd_pmac_pcm_new(struct snd_pmac *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
679
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
680
  	struct snd_pcm *pcm;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
681
682
683
684
685
686
687
688
689
690
691
692
693
694
  	int err;
  	int num_captures = 1;
  
  	if (! chip->can_capture)
  		num_captures = 0;
  	err = snd_pcm_new(chip->card, chip->card->driver, 0, 1, num_captures, &pcm);
  	if (err < 0)
  		return err;
  
  	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_pmac_playback_ops);
  	if (chip->can_capture)
  		snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_pmac_capture_ops);
  
  	pcm->private_data = chip;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
695
696
697
698
699
700
701
702
703
704
705
706
707
708
  	pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX;
  	strcpy(pcm->name, chip->card->shortname);
  	chip->pcm = pcm;
  
  	chip->formats_ok = SNDRV_PCM_FMTBIT_S16_BE;
  	if (chip->can_byte_swap)
  		chip->formats_ok |= SNDRV_PCM_FMTBIT_S16_LE;
  
  	chip->playback.cur_formats = chip->formats_ok;
  	chip->capture.cur_formats = chip->formats_ok;
  	chip->playback.cur_freqs = chip->freqs_ok;
  	chip->capture.cur_freqs = chip->freqs_ok;
  
  	/* preallocate 64k buffer */
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
709
710
  	snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
  					      &chip->pdev->dev,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
711
712
713
714
  					      64 * 1024, 64 * 1024);
  
  	return 0;
  }
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
715
  static void snd_pmac_dbdma_reset(struct snd_pmac *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
716
717
718
719
720
721
722
723
724
725
726
  {
  	out_le32(&chip->playback.dma->control, (RUN|PAUSE|FLUSH|WAKE|DEAD) << 16);
  	snd_pmac_wait_ack(&chip->playback);
  	out_le32(&chip->capture.dma->control, (RUN|PAUSE|FLUSH|WAKE|DEAD) << 16);
  	snd_pmac_wait_ack(&chip->capture);
  }
  
  
  /*
   * handling beep
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
727
  void snd_pmac_beep_dma_start(struct snd_pmac *chip, int bytes, unsigned long addr, int speed)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
728
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
729
  	struct pmac_stream *rec = &chip->playback;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
730
731
  
  	snd_pmac_dma_stop(rec);
f57187267   David Gibson   powerpc: Move Pow...
732
733
734
735
736
  	chip->extra_dma.cmds->req_count = cpu_to_le16(bytes);
  	chip->extra_dma.cmds->xfer_status = cpu_to_le16(0);
  	chip->extra_dma.cmds->cmd_dep = cpu_to_le32(chip->extra_dma.addr);
  	chip->extra_dma.cmds->phy_addr = cpu_to_le32(addr);
  	chip->extra_dma.cmds->command = cpu_to_le16(OUTPUT_MORE + BR_ALWAYS);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
737
738
739
740
741
742
743
  	out_le32(&chip->awacs->control,
  		 (in_le32(&chip->awacs->control) & ~0x1f00)
  		 | (speed << 8));
  	out_le32(&chip->awacs->byteswap, 0);
  	snd_pmac_dma_set_command(rec, &chip->extra_dma);
  	snd_pmac_dma_run(rec, RUN);
  }
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
744
  void snd_pmac_beep_dma_stop(struct snd_pmac *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
745
746
  {
  	snd_pmac_dma_stop(&chip->playback);
f57187267   David Gibson   powerpc: Move Pow...
747
  	chip->extra_dma.cmds->command = cpu_to_le16(DBDMA_STOP);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
748
749
750
751
752
753
754
755
  	snd_pmac_pcm_set_format(chip); /* reset format */
  }
  
  
  /*
   * interrupt handlers
   */
  static irqreturn_t
7d12e780e   David Howells   IRQ: Maintain reg...
756
  snd_pmac_tx_intr(int irq, void *devid)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
757
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
758
  	struct snd_pmac *chip = devid;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
759
760
761
762
763
764
  	snd_pmac_pcm_update(chip, &chip->playback);
  	return IRQ_HANDLED;
  }
  
  
  static irqreturn_t
7d12e780e   David Howells   IRQ: Maintain reg...
765
  snd_pmac_rx_intr(int irq, void *devid)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
766
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
767
  	struct snd_pmac *chip = devid;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
768
769
770
771
772
773
  	snd_pmac_pcm_update(chip, &chip->capture);
  	return IRQ_HANDLED;
  }
  
  
  static irqreturn_t
7d12e780e   David Howells   IRQ: Maintain reg...
774
  snd_pmac_ctrl_intr(int irq, void *devid)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
775
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
776
  	struct snd_pmac *chip = devid;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
777
  	int ctrl = in_le32(&chip->awacs->control);
6da671138   Takashi Iwai   ALSA: powermac - ...
778
779
  	/*printk(KERN_DEBUG "pmac: control interrupt.. 0x%x
  ", ctrl);*/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
  	if (ctrl & MASK_PORTCHG) {
  		/* do something when headphone is plugged/unplugged? */
  		if (chip->update_automute)
  			chip->update_automute(chip, 1);
  	}
  	if (ctrl & MASK_CNTLERR) {
  		int err = (in_le32(&chip->awacs->codec_stat) & MASK_ERRCODE) >> 16;
  		if (err && chip->model <= PMAC_SCREAMER)
  			snd_printk(KERN_DEBUG "error %x
  ", err);
  	}
  	/* Writing 1s to the CNTLERR and PORTCHG bits clears them... */
  	out_le32(&chip->awacs->control, ctrl);
  	return IRQ_HANDLED;
  }
  
  
  /*
   * a wrapper to feature call for compatibility
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
800
  static void snd_pmac_sound_feature(struct snd_pmac *chip, int enable)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
801
  {
4e6a06eec   David Woodhouse   [PATCH] Stop snd-...
802
803
  	if (ppc_md.feature_call)
  		ppc_md.feature_call(PMAC_FTR_SOUND_CHIP_ENABLE, chip->node, 0, enable);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
804
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
805
806
807
808
  
  /*
   * release resources
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
809
  static int snd_pmac_free(struct snd_pmac *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
810
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
811
812
813
814
815
816
  	/* stop sounds */
  	if (chip->initialized) {
  		snd_pmac_dbdma_reset(chip);
  		/* disable interrupts from awacs interface */
  		out_le32(&chip->awacs->control, in_le32(&chip->awacs->control) & 0xfff);
  	}
41e904dee   Benjamin Herrenschmidt   [POWERPC] Fix snd...
817
818
  	if (chip->node)
  		snd_pmac_sound_feature(chip, 0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
819
820
821
822
823
824
825
826
827
828
829
830
831
832
  
  	/* clean up mixer if any */
  	if (chip->mixer_free)
  		chip->mixer_free(chip);
  
  	snd_pmac_detach_beep(chip);
  
  	/* release resources */
  	if (chip->irq >= 0)
  		free_irq(chip->irq, (void*)chip);
  	if (chip->tx_irq >= 0)
  		free_irq(chip->tx_irq, (void*)chip);
  	if (chip->rx_irq >= 0)
  		free_irq(chip->rx_irq, (void*)chip);
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
833
834
835
  	snd_pmac_dbdma_free(chip, &chip->playback.cmd);
  	snd_pmac_dbdma_free(chip, &chip->capture.cmd);
  	snd_pmac_dbdma_free(chip, &chip->extra_dma);
e70515dd5   T. H. Huth   [ALSA] snd-powerm...
836
  	snd_pmac_dbdma_free(chip, &emergency_dbdma);
ff6defa6a   Markus Elfring   ALSA: Deletion of...
837
838
839
840
841
  	iounmap(chip->macio_base);
  	iounmap(chip->latch_base);
  	iounmap(chip->awacs);
  	iounmap(chip->playback.dma);
  	iounmap(chip->capture.dma);
cc5d0189b   Benjamin Herrenschmidt   [PATCH] powerpc: ...
842

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
843
  	if (chip->node) {
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
844
  		int i;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
845
  		for (i = 0; i < 3; i++) {
cc5d0189b   Benjamin Herrenschmidt   [PATCH] powerpc: ...
846
847
  			if (chip->requested & (1 << i))
  				release_mem_region(chip->rsrc[i].start,
28f65c11f   Joe Perches   treewide: Convert...
848
  						   resource_size(&chip->rsrc[i]));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
849
850
  		}
  	}
cc5d0189b   Benjamin Herrenschmidt   [PATCH] powerpc: ...
851

1ea7a568c   Markus Elfring   ALSA: powermac: D...
852
  	pci_dev_put(chip->pdev);
30686ba6d   Stephen Rothwell   [POWERPC] Remove ...
853
  	of_node_put(chip->node);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
854
855
856
857
858
859
860
861
  	kfree(chip);
  	return 0;
  }
  
  
  /*
   * free the device
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
862
  static int snd_pmac_dev_free(struct snd_device *device)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
863
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
864
  	struct snd_pmac *chip = device->device_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
865
866
867
868
869
870
871
  	return snd_pmac_free(chip);
  }
  
  
  /*
   * check the machine support byteswap (little-endian)
   */
15afafc25   Bill Pemberton   ALSA: ppc: remove...
872
  static void detect_byte_swap(struct snd_pmac *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
873
874
875
876
877
878
  {
  	struct device_node *mio;
  
  	/* if seems that Keylargo can't byte-swap  */
  	for (mio = chip->node->parent; mio; mio = mio->parent) {
  		if (strcmp(mio->name, "mac-io") == 0) {
55b61fec2   Stephen Rothwell   [POWERPC] Rename ...
879
  			if (of_device_is_compatible(mio, "Keylargo"))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
880
881
882
883
884
885
  				chip->can_byte_swap = 0;
  			break;
  		}
  	}
  
  	/* it seems the Pismo & iBook can't byte-swap in hardware. */
71a157e8e   Grant Likely   of: add 'of_' pre...
886
887
  	if (of_machine_is_compatible("PowerBook3,1") ||
  	    of_machine_is_compatible("PowerBook2,1"))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
888
  		chip->can_byte_swap = 0 ;
71a157e8e   Grant Likely   of: add 'of_' pre...
889
  	if (of_machine_is_compatible("PowerBook2,1"))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
890
891
892
893
894
895
896
  		chip->can_duplex = 0;
  }
  
  
  /*
   * detect a sound chip
   */
15afafc25   Bill Pemberton   ALSA: ppc: remove...
897
  static int snd_pmac_detect(struct snd_pmac *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
898
  {
30686ba6d   Stephen Rothwell   [POWERPC] Remove ...
899
900
  	struct device_node *sound;
  	struct device_node *dn;
c4f55b394   Stephen Rothwell   [POWERPC] Rename ...
901
902
  	const unsigned int *prop;
  	unsigned int l;
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
903
  	struct macio_chip* macio;
e8222502e   Benjamin Herrenschmidt   [PATCH] powerpc: ...
904
  	if (!machine_is(powermac))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
905
906
907
908
909
910
911
912
913
914
915
  		return -ENODEV;
  
  	chip->subframe = 0;
  	chip->revision = 0;
  	chip->freqs_ok = 0xff; /* all ok */
  	chip->model = PMAC_AWACS;
  	chip->can_byte_swap = 1;
  	chip->can_duplex = 1;
  	chip->can_capture = 1;
  	chip->num_freqs = ARRAY_SIZE(awacs_freqs);
  	chip->freq_table = awacs_freqs;
367636e8a   Benjamin Herrenschmidt   [PATCH] powerpc: ...
916
  	chip->pdev = NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
917
918
919
920
  
  	chip->control_mask = MASK_IEPC | MASK_IEE | 0x11; /* default */
  
  	/* check machine type */
71a157e8e   Grant Likely   of: add 'of_' pre...
921
922
  	if (of_machine_is_compatible("AAPL,3400/2400")
  	    || of_machine_is_compatible("AAPL,3500"))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
923
  		chip->is_pbook_3400 = 1;
71a157e8e   Grant Likely   of: add 'of_' pre...
924
925
  	else if (of_machine_is_compatible("PowerBook1,1")
  		 || of_machine_is_compatible("AAPL,PowerBook1998"))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
926
  		chip->is_pbook_G3 = 1;
30686ba6d   Stephen Rothwell   [POWERPC] Remove ...
927
928
  	chip->node = of_find_node_by_name(NULL, "awacs");
  	sound = of_node_get(chip->node);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
929
930
931
932
933
  
  	/*
  	 * powermac G3 models have a node called "davbus"
  	 * with a child called "sound".
  	 */
5218064c8   Benjamin Herrenschmidt   [ALSA] ppc32: Fix...
934
  	if (!chip->node)
30686ba6d   Stephen Rothwell   [POWERPC] Remove ...
935
  		chip->node = of_find_node_by_name(NULL, "davbus");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
936
937
938
939
  	/*
  	 * if we didn't find a davbus device, try 'i2s-a' since
  	 * this seems to be what iBooks have
  	 */
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
940
  	if (! chip->node) {
30686ba6d   Stephen Rothwell   [POWERPC] Remove ...
941
  		chip->node = of_find_node_by_name(NULL, "i2s-a");
5218064c8   Benjamin Herrenschmidt   [ALSA] ppc32: Fix...
942
943
  		if (chip->node && chip->node->parent &&
  		    chip->node->parent->parent) {
55b61fec2   Stephen Rothwell   [POWERPC] Rename ...
944
  			if (of_device_is_compatible(chip->node->parent->parent,
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
945
946
947
948
  						 "K2-Keylargo"))
  				chip->is_k2 = 1;
  		}
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
949
950
  	if (! chip->node)
  		return -ENODEV;
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
951

5218064c8   Benjamin Herrenschmidt   [ALSA] ppc32: Fix...
952
  	if (!sound) {
ccdb8ed3b   Grant Likely   of: Migrate of_fi...
953
954
955
  		for_each_node_by_name(sound, "sound")
  			if (sound->parent == chip->node)
  				break;
5218064c8   Benjamin Herrenschmidt   [ALSA] ppc32: Fix...
956
  	}
30686ba6d   Stephen Rothwell   [POWERPC] Remove ...
957
958
  	if (! sound) {
  		of_node_put(chip->node);
41e904dee   Benjamin Herrenschmidt   [POWERPC] Fix snd...
959
  		chip->node = NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
960
  		return -ENODEV;
30686ba6d   Stephen Rothwell   [POWERPC] Remove ...
961
  	}
c4f55b394   Stephen Rothwell   [POWERPC] Rename ...
962
  	prop = of_get_property(sound, "sub-frame", NULL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
963
964
  	if (prop && *prop < 16)
  		chip->subframe = *prop;
c4f55b394   Stephen Rothwell   [POWERPC] Rename ...
965
  	prop = of_get_property(sound, "layout-id", NULL);
55c385ad5   Johannes Berg   [ALSA] snd-powerm...
966
967
968
969
970
971
972
  	if (prop) {
  		/* partly deprecate snd-powermac, for those machines
  		 * that have a layout-id property for now */
  		printk(KERN_INFO "snd-powermac no longer handles any "
  				 "machines with a layout-id property "
  				 "in the device-tree, use snd-aoa.
  ");
41e904dee   Benjamin Herrenschmidt   [POWERPC] Fix snd...
973
  		of_node_put(sound);
30686ba6d   Stephen Rothwell   [POWERPC] Remove ...
974
  		of_node_put(chip->node);
41e904dee   Benjamin Herrenschmidt   [POWERPC] Fix snd...
975
  		chip->node = NULL;
55c385ad5   Johannes Berg   [ALSA] snd-powerm...
976
977
  		return -ENODEV;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
978
  	/* This should be verified on older screamers */
55b61fec2   Stephen Rothwell   [POWERPC] Rename ...
979
  	if (of_device_is_compatible(sound, "screamer")) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
980
981
982
  		chip->model = PMAC_SCREAMER;
  		// chip->can_byte_swap = 0; /* FIXME: check this */
  	}
55b61fec2   Stephen Rothwell   [POWERPC] Rename ...
983
  	if (of_device_is_compatible(sound, "burgundy")) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
984
985
986
  		chip->model = PMAC_BURGUNDY;
  		chip->control_mask = MASK_IEPC | 0x11; /* disable IEE */
  	}
55b61fec2   Stephen Rothwell   [POWERPC] Rename ...
987
  	if (of_device_is_compatible(sound, "daca")) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
988
989
990
991
992
993
  		chip->model = PMAC_DACA;
  		chip->can_capture = 0;  /* no capture */
  		chip->can_duplex = 0;
  		// chip->can_byte_swap = 0; /* FIXME: check this */
  		chip->control_mask = MASK_IEPC | 0x11; /* disable IEE */
  	}
55b61fec2   Stephen Rothwell   [POWERPC] Rename ...
994
  	if (of_device_is_compatible(sound, "tumbler")) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
995
  		chip->model = PMAC_TUMBLER;
71a157e8e   Grant Likely   of: add 'of_' pre...
996
  		chip->can_capture = of_machine_is_compatible("PowerMac4,2")
8460ae70b   Risto Suominen   ALSA: powermac - ...
997
998
999
1000
1001
  				|| of_machine_is_compatible("PowerBook3,2")
  				|| of_machine_is_compatible("PowerBook3,3")
  				|| of_machine_is_compatible("PowerBook4,1")
  				|| of_machine_is_compatible("PowerBook4,2")
  				|| of_machine_is_compatible("PowerBook4,3");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1002
1003
1004
1005
1006
1007
  		chip->can_duplex = 0;
  		// chip->can_byte_swap = 0; /* FIXME: check this */
  		chip->num_freqs = ARRAY_SIZE(tumbler_freqs);
  		chip->freq_table = tumbler_freqs;
  		chip->control_mask = MASK_IEPC | 0x11; /* disable IEE */
  	}
55b61fec2   Stephen Rothwell   [POWERPC] Rename ...
1008
  	if (of_device_is_compatible(sound, "snapper")) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1009
1010
1011
1012
1013
1014
  		chip->model = PMAC_SNAPPER;
  		// chip->can_byte_swap = 0; /* FIXME: check this */
  		chip->num_freqs = ARRAY_SIZE(tumbler_freqs);
  		chip->freq_table = tumbler_freqs;
  		chip->control_mask = MASK_IEPC | 0x11; /* disable IEE */
  	}
c4f55b394   Stephen Rothwell   [POWERPC] Rename ...
1015
  	prop = of_get_property(sound, "device-id", NULL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1016
1017
  	if (prop)
  		chip->device_id = *prop;
30686ba6d   Stephen Rothwell   [POWERPC] Remove ...
1018
1019
1020
  	dn = of_find_node_by_name(NULL, "perch");
  	chip->has_iic = (dn != NULL);
  	of_node_put(dn);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1021

7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
  	/* We need the PCI device for DMA allocations, let's use a crude method
  	 * for now ...
  	 */
  	macio = macio_find(chip->node, macio_unknown);
  	if (macio == NULL)
  		printk(KERN_WARNING "snd-powermac: can't locate macio !
  ");
  	else {
  		struct pci_dev *pdev = NULL;
  
  		for_each_pci_dev(pdev) {
  			struct device_node *np = pci_device_to_OF_node(pdev);
  			if (np && np == macio->of_node) {
  				chip->pdev = pdev;
  				break;
  			}
  		}
  	}
  	if (chip->pdev == NULL)
5218064c8   Benjamin Herrenschmidt   [ALSA] ppc32: Fix...
1041
1042
1043
  		printk(KERN_WARNING "snd-powermac: can't locate macio PCI"
  		       " device !
  ");
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
1044

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1045
1046
1047
1048
  	detect_byte_swap(chip);
  
  	/* look for a property saying what sample rates
  	   are available */
c4f55b394   Stephen Rothwell   [POWERPC] Rename ...
1049
  	prop = of_get_property(sound, "sample-rates", &l);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1050
  	if (! prop)
c4f55b394   Stephen Rothwell   [POWERPC] Rename ...
1051
  		prop = of_get_property(sound, "output-frame-rates", &l);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
  	if (prop) {
  		int i;
  		chip->freqs_ok = 0;
  		for (l /= sizeof(int); l > 0; --l) {
  			unsigned int r = *prop++;
  			/* Apple 'Fixed' format */
  			if (r >= 0x10000)
  				r >>= 16;
  			for (i = 0; i < chip->num_freqs; ++i) {
  				if (r == chip->freq_table[i]) {
  					chip->freqs_ok |= (1 << i);
  					break;
  				}
  			}
  		}
  	} else {
  		/* assume only 44.1khz */
  		chip->freqs_ok = 1;
  	}
30686ba6d   Stephen Rothwell   [POWERPC] Remove ...
1071
  	of_node_put(sound);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1072
1073
  	return 0;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1074
1075
1076
1077
  #ifdef PMAC_SUPPORT_AUTOMUTE
  /*
   * auto-mute
   */
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
1078
1079
  static int pmac_auto_mute_get(struct snd_kcontrol *kcontrol,
  			      struct snd_ctl_elem_value *ucontrol)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1080
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
1081
  	struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1082
1083
1084
  	ucontrol->value.integer.value[0] = chip->auto_mute;
  	return 0;
  }
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
1085
1086
  static int pmac_auto_mute_put(struct snd_kcontrol *kcontrol,
  			      struct snd_ctl_elem_value *ucontrol)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1087
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
1088
  	struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1089
  	if (ucontrol->value.integer.value[0] != chip->auto_mute) {
d4079ac49   Takashi Iwai   [ALSA] powermac -...
1090
  		chip->auto_mute = !!ucontrol->value.integer.value[0];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1091
1092
1093
1094
1095
1096
  		if (chip->update_automute)
  			chip->update_automute(chip, 1);
  		return 1;
  	}
  	return 0;
  }
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
1097
1098
  static int pmac_hp_detect_get(struct snd_kcontrol *kcontrol,
  			      struct snd_ctl_elem_value *ucontrol)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1099
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
1100
  	struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1101
1102
1103
1104
1105
1106
  	if (chip->detect_headphone)
  		ucontrol->value.integer.value[0] = chip->detect_headphone(chip);
  	else
  		ucontrol->value.integer.value[0] = 0;
  	return 0;
  }
15afafc25   Bill Pemberton   ALSA: ppc: remove...
1107
  static struct snd_kcontrol_new auto_mute_controls[] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
  	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  	  .name = "Auto Mute Switch",
  	  .info = snd_pmac_boolean_mono_info,
  	  .get = pmac_auto_mute_get,
  	  .put = pmac_auto_mute_put,
  	},
  	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  	  .name = "Headphone Detection",
  	  .access = SNDRV_CTL_ELEM_ACCESS_READ,
  	  .info = snd_pmac_boolean_mono_info,
  	  .get = pmac_hp_detect_get,
  	},
  };
15afafc25   Bill Pemberton   ALSA: ppc: remove...
1121
  int snd_pmac_add_automute(struct snd_pmac *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1122
1123
1124
1125
  {
  	int err;
  	chip->auto_mute = 1;
  	err = snd_ctl_add(chip->card, snd_ctl_new1(&auto_mute_controls[0], chip));
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
1126
1127
1128
  	if (err < 0) {
  		printk(KERN_ERR "snd-powermac: Failed to add automute control
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1129
  		return err;
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
1130
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1131
1132
1133
1134
1135
1136
1137
1138
  	chip->hp_detect_ctl = snd_ctl_new1(&auto_mute_controls[1], chip);
  	return snd_ctl_add(chip->card, chip->hp_detect_ctl);
  }
  #endif /* PMAC_SUPPORT_AUTOMUTE */
  
  /*
   * create and detect a pmac chip record
   */
15afafc25   Bill Pemberton   ALSA: ppc: remove...
1139
  int snd_pmac_new(struct snd_card *card, struct snd_pmac **chip_return)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1140
  {
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
1141
  	struct snd_pmac *chip;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1142
1143
  	struct device_node *np;
  	int i, err;
0ebfff149   Benjamin Herrenschmidt   [POWERPC] Add new...
1144
  	unsigned int irq;
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
1145
  	unsigned long ctrl_addr, txdma_addr, rxdma_addr;
65b29f503   Takashi Iwai   [ALSA] Remove xxx...
1146
  	static struct snd_device_ops ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1147
1148
  		.dev_free =	snd_pmac_dev_free,
  	};
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1149
  	*chip_return = NULL;
561b220a4   Takashi Iwai   [ALSA] Replace wi...
1150
  	chip = kzalloc(sizeof(*chip), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
  	if (chip == NULL)
  		return -ENOMEM;
  	chip->card = card;
  
  	spin_lock_init(&chip->reg_lock);
  	chip->irq = chip->tx_irq = chip->rx_irq = -1;
  
  	chip->playback.stream = SNDRV_PCM_STREAM_PLAYBACK;
  	chip->capture.stream = SNDRV_PCM_STREAM_CAPTURE;
  
  	if ((err = snd_pmac_detect(chip)) < 0)
  		goto __error;
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
1163
1164
  	if (snd_pmac_dbdma_alloc(chip, &chip->playback.cmd, PMAC_MAX_FRAGS + 1) < 0 ||
  	    snd_pmac_dbdma_alloc(chip, &chip->capture.cmd, PMAC_MAX_FRAGS + 1) < 0 ||
e70515dd5   T. H. Huth   [ALSA] snd-powerm...
1165
1166
  	    snd_pmac_dbdma_alloc(chip, &chip->extra_dma, 2) < 0 ||
  	    snd_pmac_dbdma_alloc(chip, &emergency_dbdma, 2) < 0) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1167
1168
1169
1170
1171
  		err = -ENOMEM;
  		goto __error;
  	}
  
  	np = chip->node;
cc5d0189b   Benjamin Herrenschmidt   [PATCH] powerpc: ...
1172
  	chip->requested = 0;
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
1173
  	if (chip->is_k2) {
cc5d0189b   Benjamin Herrenschmidt   [PATCH] powerpc: ...
1174
1175
  		static char *rnames[] = {
  			"Sound Control", "Sound DMA" };
cc5d0189b   Benjamin Herrenschmidt   [PATCH] powerpc: ...
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
  		for (i = 0; i < 2; i ++) {
  			if (of_address_to_resource(np->parent, i,
  						   &chip->rsrc[i])) {
  				printk(KERN_ERR "snd: can't translate rsrc "
  				       " %d (%s)
  ", i, rnames[i]);
  				err = -ENODEV;
  				goto __error;
  			}
  			if (request_mem_region(chip->rsrc[i].start,
28f65c11f   Joe Perches   treewide: Convert...
1186
  					       resource_size(&chip->rsrc[i]),
cc5d0189b   Benjamin Herrenschmidt   [PATCH] powerpc: ...
1187
1188
  					       rnames[i]) == NULL) {
  				printk(KERN_ERR "snd: can't request rsrc "
2fb50f135   Joe Perches   ALSA: sound/ppc: ...
1189
1190
1191
  				       " %d (%s: %pR)
  ",
  				       i, rnames[i], &chip->rsrc[i]);
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
1192
1193
1194
  				err = -ENODEV;
  				goto __error;
  			}
cc5d0189b   Benjamin Herrenschmidt   [PATCH] powerpc: ...
1195
  			chip->requested |= (1 << i);
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
1196
  		}
cc5d0189b   Benjamin Herrenschmidt   [PATCH] powerpc: ...
1197
1198
1199
  		ctrl_addr = chip->rsrc[0].start;
  		txdma_addr = chip->rsrc[1].start;
  		rxdma_addr = txdma_addr + 0x100;
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
1200
  	} else {
cc5d0189b   Benjamin Herrenschmidt   [PATCH] powerpc: ...
1201
1202
  		static char *rnames[] = {
  			"Sound Control", "Sound Tx DMA", "Sound Rx DMA" };
cc5d0189b   Benjamin Herrenschmidt   [PATCH] powerpc: ...
1203
  		for (i = 0; i < 3; i ++) {
88356e908   Benjamin Herrenschmidt   [PATCH] sound/ppc...
1204
  			if (of_address_to_resource(np, i,
cc5d0189b   Benjamin Herrenschmidt   [PATCH] powerpc: ...
1205
1206
1207
1208
1209
1210
1211
1212
  						   &chip->rsrc[i])) {
  				printk(KERN_ERR "snd: can't translate rsrc "
  				       " %d (%s)
  ", i, rnames[i]);
  				err = -ENODEV;
  				goto __error;
  			}
  			if (request_mem_region(chip->rsrc[i].start,
28f65c11f   Joe Perches   treewide: Convert...
1213
  					       resource_size(&chip->rsrc[i]),
cc5d0189b   Benjamin Herrenschmidt   [PATCH] powerpc: ...
1214
1215
  					       rnames[i]) == NULL) {
  				printk(KERN_ERR "snd: can't request rsrc "
2fb50f135   Joe Perches   ALSA: sound/ppc: ...
1216
1217
1218
  				       " %d (%s: %pR)
  ",
  				       i, rnames[i], &chip->rsrc[i]);
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
1219
1220
1221
  				err = -ENODEV;
  				goto __error;
  			}
cc5d0189b   Benjamin Herrenschmidt   [PATCH] powerpc: ...
1222
  			chip->requested |= (1 << i);
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
1223
  		}
cc5d0189b   Benjamin Herrenschmidt   [PATCH] powerpc: ...
1224
1225
1226
  		ctrl_addr = chip->rsrc[0].start;
  		txdma_addr = chip->rsrc[1].start;
  		rxdma_addr = chip->rsrc[2].start;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1227
  	}
7bbd82775   Benjamin Herrenschmidt   [PATCH] ppc64: ve...
1228
1229
1230
  	chip->awacs = ioremap(ctrl_addr, 0x1000);
  	chip->playback.dma = ioremap(txdma_addr, 0x100);
  	chip->capture.dma = ioremap(rxdma_addr, 0x100);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1231
  	if (chip->model <= PMAC_BURGUNDY) {
0ebfff149   Benjamin Herrenschmidt   [POWERPC] Add new...
1232
1233
  		irq = irq_of_parse_and_map(np, 0);
  		if (request_irq(irq, snd_pmac_ctrl_intr, 0,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1234
  				"PMac", (void*)chip)) {
0ebfff149   Benjamin Herrenschmidt   [POWERPC] Add new...
1235
1236
1237
  			snd_printk(KERN_ERR "pmac: unable to grab IRQ %d
  ",
  				   irq);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1238
1239
1240
  			err = -EBUSY;
  			goto __error;
  		}
0ebfff149   Benjamin Herrenschmidt   [POWERPC] Add new...
1241
  		chip->irq = irq;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1242
  	}
0ebfff149   Benjamin Herrenschmidt   [POWERPC] Add new...
1243
1244
1245
1246
  	irq = irq_of_parse_and_map(np, 1);
  	if (request_irq(irq, snd_pmac_tx_intr, 0, "PMac Output", (void*)chip)){
  		snd_printk(KERN_ERR "pmac: unable to grab IRQ %d
  ", irq);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1247
1248
1249
  		err = -EBUSY;
  		goto __error;
  	}
0ebfff149   Benjamin Herrenschmidt   [POWERPC] Add new...
1250
1251
1252
1253
1254
  	chip->tx_irq = irq;
  	irq = irq_of_parse_and_map(np, 2);
  	if (request_irq(irq, snd_pmac_rx_intr, 0, "PMac Input", (void*)chip)) {
  		snd_printk(KERN_ERR "pmac: unable to grab IRQ %d
  ", irq);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1255
1256
1257
  		err = -EBUSY;
  		goto __error;
  	}
0ebfff149   Benjamin Herrenschmidt   [POWERPC] Add new...
1258
  	chip->rx_irq = irq;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1259
1260
  
  	snd_pmac_sound_feature(chip, 1);
9a4f20fcb   Risto Suominen   [ALSA] snd-powerm...
1261
1262
1263
  	/* reset & enable interrupts */
  	if (chip->model <= PMAC_BURGUNDY)
  		out_le32(&chip->awacs->control, chip->control_mask);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
  
  	/* Powerbooks have odd ways of enabling inputs such as
  	   an expansion-bay CD or sound from an internal modem
  	   or a PC-card modem. */
  	if (chip->is_pbook_3400) {
  		/* Enable CD and PC-card sound inputs. */
  		/* This is done by reading from address
  		 * f301a000, + 0x10 to enable the expansion-bay
  		 * CD sound input, + 0x80 to enable the PC-card
  		 * sound input.  The 0x100 enables the SCSI bus
  		 * terminator power.
  		 */
  		chip->latch_base = ioremap (0xf301a000, 0x1000);
  		in_8(chip->latch_base + 0x190);
  	} else if (chip->is_pbook_G3) {
  		struct device_node* mio;
  		for (mio = chip->node->parent; mio; mio = mio->parent) {
cc5d0189b   Benjamin Herrenschmidt   [PATCH] powerpc: ...
1281
1282
1283
1284
1285
  			if (strcmp(mio->name, "mac-io") == 0) {
  				struct resource r;
  				if (of_address_to_resource(mio, 0, &r) == 0)
  					chip->macio_base =
  						ioremap(r.start, 0x40);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
  				break;
  			}
  		}
  		/* Enable CD sound input. */
  		/* The relevant bits for writing to this byte are 0x8f.
  		 * I haven't found out what the 0x80 bit does.
  		 * For the 0xf bits, writing 3 or 7 enables the CD
  		 * input, any other value disables it.  Values
  		 * 1, 3, 5, 7 enable the microphone.  Values 0, 2,
  		 * 4, 6, 8 - f enable the input from the modem.
  		 */
  		if (chip->macio_base)
  			out_8(chip->macio_base + 0x37, 3);
  	}
  
  	/* Reset dbdma channels */
  	snd_pmac_dbdma_reset(chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
  	if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0)
  		goto __error;
  
  	*chip_return = chip;
  	return 0;
  
   __error:
  	snd_pmac_free(chip);
  	return err;
  }
  
  
  /*
   * sleep notify for powerbook
   */
8c8709334   Benjamin Herrenschmidt   [PATCH] ppc32: Re...
1318
  #ifdef CONFIG_PM
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1319
1320
1321
1322
  
  /*
   * Save state when going to sleep, restore it afterwards.
   */
5e12bea08   Takashi Iwai   [ALSA] powermac -...
1323
  void snd_pmac_suspend(struct snd_pmac *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1324
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1325
  	unsigned long flags;
5e12bea08   Takashi Iwai   [ALSA] powermac -...
1326
  	snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
  	if (chip->suspend)
  		chip->suspend(chip);
  	snd_pcm_suspend_all(chip->pcm);
  	spin_lock_irqsave(&chip->reg_lock, flags);
  	snd_pmac_beep_stop(chip);
  	spin_unlock_irqrestore(&chip->reg_lock, flags);
  	if (chip->irq >= 0)
  		disable_irq(chip->irq);
  	if (chip->tx_irq >= 0)
  		disable_irq(chip->tx_irq);
  	if (chip->rx_irq >= 0)
  		disable_irq(chip->rx_irq);
  	snd_pmac_sound_feature(chip, 0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1340
  }
5e12bea08   Takashi Iwai   [ALSA] powermac -...
1341
  void snd_pmac_resume(struct snd_pmac *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1342
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1343
1344
1345
1346
  	snd_pmac_sound_feature(chip, 1);
  	if (chip->resume)
  		chip->resume(chip);
  	/* enable CD sound input */
5e12bea08   Takashi Iwai   [ALSA] powermac -...
1347
  	if (chip->macio_base && chip->is_pbook_G3)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1348
  		out_8(chip->macio_base + 0x37, 3);
5e12bea08   Takashi Iwai   [ALSA] powermac -...
1349
  	else if (chip->is_pbook_3400)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1350
  		in_8(chip->latch_base + 0x190);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1351
1352
1353
1354
1355
1356
1357
1358
1359
  
  	snd_pmac_pcm_set_format(chip);
  
  	if (chip->irq >= 0)
  		enable_irq(chip->irq);
  	if (chip->tx_irq >= 0)
  		enable_irq(chip->tx_irq);
  	if (chip->rx_irq >= 0)
  		enable_irq(chip->rx_irq);
5e12bea08   Takashi Iwai   [ALSA] powermac -...
1360
  	snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1361
  }
8c8709334   Benjamin Herrenschmidt   [PATCH] ppc32: Re...
1362
  #endif /* CONFIG_PM */