xref: /openbmc/linux/sound/ppc/pmac.c (revision 01001fa1)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * PMac DBDMA lowlevel functions
4  *
5  * Copyright (c) by Takashi Iwai <tiwai@suse.de>
6  * code based on dmasound.c.
7  */
8 
9 
10 #include <linux/io.h>
11 #include <asm/irq.h>
12 #include <linux/init.h>
13 #include <linux/delay.h>
14 #include <linux/slab.h>
15 #include <linux/interrupt.h>
16 #include <linux/pci.h>
17 #include <linux/dma-mapping.h>
18 #include <linux/of_address.h>
19 #include <linux/of_irq.h>
20 #include <sound/core.h>
21 #include "pmac.h"
22 #include <sound/pcm_params.h>
23 #include <asm/pmac_feature.h>
24 
25 
26 /* fixed frequency table for awacs, screamer, burgundy, DACA (44100 max) */
27 static int awacs_freqs[8] = {
28 	44100, 29400, 22050, 17640, 14700, 11025, 8820, 7350
29 };
30 /* fixed frequency table for tumbler */
31 static int tumbler_freqs[1] = {
32 	44100
33 };
34 
35 
36 /*
37  * we will allocate a single 'emergency' dbdma cmd block to use if the
38  * tx status comes up "DEAD".  This happens on some PowerComputing Pmac
39  * clones, either owing to a bug in dbdma or some interaction between
40  * IDE and sound.  However, this measure would deal with DEAD status if
41  * it appeared elsewhere.
42  */
43 static struct pmac_dbdma emergency_dbdma;
44 static int emergency_in_use;
45 
46 
47 /*
48  * allocate DBDMA command arrays
49  */
50 static int snd_pmac_dbdma_alloc(struct snd_pmac *chip, struct pmac_dbdma *rec, int size)
51 {
52 	unsigned int rsize = sizeof(struct dbdma_cmd) * (size + 1);
53 
54 	rec->space = dma_alloc_coherent(&chip->pdev->dev, rsize,
55 					&rec->dma_base, GFP_KERNEL);
56 	if (rec->space == NULL)
57 		return -ENOMEM;
58 	rec->size = size;
59 	memset(rec->space, 0, rsize);
60 	rec->cmds = (void __iomem *)DBDMA_ALIGN(rec->space);
61 	rec->addr = rec->dma_base + (unsigned long)((char *)rec->cmds - (char *)rec->space);
62 
63 	return 0;
64 }
65 
66 static void snd_pmac_dbdma_free(struct snd_pmac *chip, struct pmac_dbdma *rec)
67 {
68 	if (rec->space) {
69 		unsigned int rsize = sizeof(struct dbdma_cmd) * (rec->size + 1);
70 
71 		dma_free_coherent(&chip->pdev->dev, rsize, rec->space, rec->dma_base);
72 	}
73 }
74 
75 
76 /*
77  * pcm stuff
78  */
79 
80 /*
81  * look up frequency table
82  */
83 
84 unsigned int snd_pmac_rate_index(struct snd_pmac *chip, struct pmac_stream *rec, unsigned int rate)
85 {
86 	int i, ok, found;
87 
88 	ok = rec->cur_freqs;
89 	if (rate > chip->freq_table[0])
90 		return 0;
91 	found = 0;
92 	for (i = 0; i < chip->num_freqs; i++, ok >>= 1) {
93 		if (! (ok & 1)) continue;
94 		found = i;
95 		if (rate >= chip->freq_table[i])
96 			break;
97 	}
98 	return found;
99 }
100 
101 /*
102  * check whether another stream is active
103  */
104 static inline int another_stream(int stream)
105 {
106 	return (stream == SNDRV_PCM_STREAM_PLAYBACK) ?
107 		SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
108 }
109 
110 /*
111  * get a stream of the opposite direction
112  */
113 static struct pmac_stream *snd_pmac_get_stream(struct snd_pmac *chip, int stream)
114 {
115 	switch (stream) {
116 	case SNDRV_PCM_STREAM_PLAYBACK:
117 		return &chip->playback;
118 	case SNDRV_PCM_STREAM_CAPTURE:
119 		return &chip->capture;
120 	default:
121 		snd_BUG();
122 		return NULL;
123 	}
124 }
125 
126 /*
127  * wait while run status is on
128  */
129 static inline void
130 snd_pmac_wait_ack(struct pmac_stream *rec)
131 {
132 	int timeout = 50000;
133 	while ((in_le32(&rec->dma->status) & RUN) && timeout-- > 0)
134 		udelay(1);
135 }
136 
137 /*
138  * set the format and rate to the chip.
139  * call the lowlevel function if defined (e.g. for AWACS).
140  */
141 static void snd_pmac_pcm_set_format(struct snd_pmac *chip)
142 {
143 	/* set up frequency and format */
144 	out_le32(&chip->awacs->control, chip->control_mask | (chip->rate_index << 8));
145 	out_le32(&chip->awacs->byteswap, chip->format == SNDRV_PCM_FORMAT_S16_LE ? 1 : 0);
146 	if (chip->set_format)
147 		chip->set_format(chip);
148 }
149 
150 /*
151  * stop the DMA transfer
152  */
153 static inline void snd_pmac_dma_stop(struct pmac_stream *rec)
154 {
155 	out_le32(&rec->dma->control, (RUN|WAKE|FLUSH|PAUSE) << 16);
156 	snd_pmac_wait_ack(rec);
157 }
158 
159 /*
160  * set the command pointer address
161  */
162 static inline void snd_pmac_dma_set_command(struct pmac_stream *rec, struct pmac_dbdma *cmd)
163 {
164 	out_le32(&rec->dma->cmdptr, cmd->addr);
165 }
166 
167 /*
168  * start the DMA
169  */
170 static inline void snd_pmac_dma_run(struct pmac_stream *rec, int status)
171 {
172 	out_le32(&rec->dma->control, status | (status << 16));
173 }
174 
175 
176 /*
177  * prepare playback/capture stream
178  */
179 static int snd_pmac_pcm_prepare(struct snd_pmac *chip, struct pmac_stream *rec, struct snd_pcm_substream *subs)
180 {
181 	int i;
182 	volatile struct dbdma_cmd __iomem *cp;
183 	struct snd_pcm_runtime *runtime = subs->runtime;
184 	int rate_index;
185 	long offset;
186 	struct pmac_stream *astr;
187 
188 	rec->dma_size = snd_pcm_lib_buffer_bytes(subs);
189 	rec->period_size = snd_pcm_lib_period_bytes(subs);
190 	rec->nperiods = rec->dma_size / rec->period_size;
191 	rec->cur_period = 0;
192 	rate_index = snd_pmac_rate_index(chip, rec, runtime->rate);
193 
194 	/* set up constraints */
195 	astr = snd_pmac_get_stream(chip, another_stream(rec->stream));
196 	if (! astr)
197 		return -EINVAL;
198 	astr->cur_freqs = 1 << rate_index;
199 	astr->cur_formats = 1 << runtime->format;
200 	chip->rate_index = rate_index;
201 	chip->format = runtime->format;
202 
203 	/* We really want to execute a DMA stop command, after the AWACS
204 	 * is initialized.
205 	 * For reasons I don't understand, it stops the hissing noise
206 	 * common to many PowerBook G3 systems and random noise otherwise
207 	 * captured on iBook2's about every third time. -ReneR
208 	 */
209 	spin_lock_irq(&chip->reg_lock);
210 	snd_pmac_dma_stop(rec);
211 	chip->extra_dma.cmds->command = cpu_to_le16(DBDMA_STOP);
212 	snd_pmac_dma_set_command(rec, &chip->extra_dma);
213 	snd_pmac_dma_run(rec, RUN);
214 	spin_unlock_irq(&chip->reg_lock);
215 	mdelay(5);
216 	spin_lock_irq(&chip->reg_lock);
217 	/* continuous DMA memory type doesn't provide the physical address,
218 	 * so we need to resolve the address here...
219 	 */
220 	offset = runtime->dma_addr;
221 	for (i = 0, cp = rec->cmd.cmds; i < rec->nperiods; i++, cp++) {
222 		cp->phy_addr = cpu_to_le32(offset);
223 		cp->req_count = cpu_to_le16(rec->period_size);
224 		/*cp->res_count = cpu_to_le16(0);*/
225 		cp->xfer_status = cpu_to_le16(0);
226 		offset += rec->period_size;
227 	}
228 	/* make loop */
229 	cp->command = cpu_to_le16(DBDMA_NOP + BR_ALWAYS);
230 	cp->cmd_dep = cpu_to_le32(rec->cmd.addr);
231 
232 	snd_pmac_dma_stop(rec);
233 	snd_pmac_dma_set_command(rec, &rec->cmd);
234 	spin_unlock_irq(&chip->reg_lock);
235 
236 	return 0;
237 }
238 
239 
240 /*
241  * PCM trigger/stop
242  */
243 static int snd_pmac_pcm_trigger(struct snd_pmac *chip, struct pmac_stream *rec,
244 				struct snd_pcm_substream *subs, int cmd)
245 {
246 	volatile struct dbdma_cmd __iomem *cp;
247 	int i, command;
248 
249 	switch (cmd) {
250 	case SNDRV_PCM_TRIGGER_START:
251 	case SNDRV_PCM_TRIGGER_RESUME:
252 		if (rec->running)
253 			return -EBUSY;
254 		command = (subs->stream == SNDRV_PCM_STREAM_PLAYBACK ?
255 			   OUTPUT_MORE : INPUT_MORE) + INTR_ALWAYS;
256 		spin_lock(&chip->reg_lock);
257 		snd_pmac_beep_stop(chip);
258 		snd_pmac_pcm_set_format(chip);
259 		for (i = 0, cp = rec->cmd.cmds; i < rec->nperiods; i++, cp++)
260 			out_le16(&cp->command, command);
261 		snd_pmac_dma_set_command(rec, &rec->cmd);
262 		(void)in_le32(&rec->dma->status);
263 		snd_pmac_dma_run(rec, RUN|WAKE);
264 		rec->running = 1;
265 		spin_unlock(&chip->reg_lock);
266 		break;
267 
268 	case SNDRV_PCM_TRIGGER_STOP:
269 	case SNDRV_PCM_TRIGGER_SUSPEND:
270 		spin_lock(&chip->reg_lock);
271 		rec->running = 0;
272 		/*printk(KERN_DEBUG "stopped!!\n");*/
273 		snd_pmac_dma_stop(rec);
274 		for (i = 0, cp = rec->cmd.cmds; i < rec->nperiods; i++, cp++)
275 			out_le16(&cp->command, DBDMA_STOP);
276 		spin_unlock(&chip->reg_lock);
277 		break;
278 
279 	default:
280 		return -EINVAL;
281 	}
282 
283 	return 0;
284 }
285 
286 /*
287  * return the current pointer
288  */
289 inline
290 static snd_pcm_uframes_t snd_pmac_pcm_pointer(struct snd_pmac *chip,
291 					      struct pmac_stream *rec,
292 					      struct snd_pcm_substream *subs)
293 {
294 	int count = 0;
295 
296 #if 1 /* hmm.. how can we get the current dma pointer?? */
297 	int stat;
298 	volatile struct dbdma_cmd __iomem *cp = &rec->cmd.cmds[rec->cur_period];
299 	stat = le16_to_cpu(cp->xfer_status);
300 	if (stat & (ACTIVE|DEAD)) {
301 		count = in_le16(&cp->res_count);
302 		if (count)
303 			count = rec->period_size - count;
304 	}
305 #endif
306 	count += rec->cur_period * rec->period_size;
307 	/*printk(KERN_DEBUG "pointer=%d\n", count);*/
308 	return bytes_to_frames(subs->runtime, count);
309 }
310 
311 /*
312  * playback
313  */
314 
315 static int snd_pmac_playback_prepare(struct snd_pcm_substream *subs)
316 {
317 	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
318 	return snd_pmac_pcm_prepare(chip, &chip->playback, subs);
319 }
320 
321 static int snd_pmac_playback_trigger(struct snd_pcm_substream *subs,
322 				     int cmd)
323 {
324 	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
325 	return snd_pmac_pcm_trigger(chip, &chip->playback, subs, cmd);
326 }
327 
328 static snd_pcm_uframes_t snd_pmac_playback_pointer(struct snd_pcm_substream *subs)
329 {
330 	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
331 	return snd_pmac_pcm_pointer(chip, &chip->playback, subs);
332 }
333 
334 
335 /*
336  * capture
337  */
338 
339 static int snd_pmac_capture_prepare(struct snd_pcm_substream *subs)
340 {
341 	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
342 	return snd_pmac_pcm_prepare(chip, &chip->capture, subs);
343 }
344 
345 static int snd_pmac_capture_trigger(struct snd_pcm_substream *subs,
346 				    int cmd)
347 {
348 	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
349 	return snd_pmac_pcm_trigger(chip, &chip->capture, subs, cmd);
350 }
351 
352 static snd_pcm_uframes_t snd_pmac_capture_pointer(struct snd_pcm_substream *subs)
353 {
354 	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
355 	return snd_pmac_pcm_pointer(chip, &chip->capture, subs);
356 }
357 
358 
359 /*
360  * Handle DEAD DMA transfers:
361  * if the TX status comes up "DEAD" - reported on some Power Computing machines
362  * we need to re-start the dbdma - but from a different physical start address
363  * and with a different transfer length.  It would get very messy to do this
364  * with the normal dbdma_cmd blocks - we would have to re-write the buffer start
365  * addresses each time.  So, we will keep a single dbdma_cmd block which can be
366  * fiddled with.
367  * When DEAD status is first reported the content of the faulted dbdma block is
368  * copied into the emergency buffer and we note that the buffer is in use.
369  * we then bump the start physical address by the amount that was successfully
370  * output before it died.
371  * On any subsequent DEAD result we just do the bump-ups (we know that we are
372  * already using the emergency dbdma_cmd).
373  * CHECK: this just tries to "do it".  It is possible that we should abandon
374  * xfers when the number of residual bytes gets below a certain value - I can
375  * see that this might cause a loop-forever if a too small transfer causes
376  * DEAD status.  However this is a TODO for now - we'll see what gets reported.
377  * When we get a successful transfer result with the emergency buffer we just
378  * pretend that it completed using the original dmdma_cmd and carry on.  The
379  * 'next_cmd' field will already point back to the original loop of blocks.
380  */
381 static inline void snd_pmac_pcm_dead_xfer(struct pmac_stream *rec,
382 					  volatile struct dbdma_cmd __iomem *cp)
383 {
384 	unsigned short req, res ;
385 	unsigned int phy ;
386 
387 	/* printk(KERN_WARNING "snd-powermac: DMA died - patching it up!\n"); */
388 
389 	/* to clear DEAD status we must first clear RUN
390 	   set it to quiescent to be on the safe side */
391 	(void)in_le32(&rec->dma->status);
392 	out_le32(&rec->dma->control, (RUN|PAUSE|FLUSH|WAKE) << 16);
393 
394 	if (!emergency_in_use) { /* new problem */
395 		memcpy((void *)emergency_dbdma.cmds, (void *)cp,
396 		       sizeof(struct dbdma_cmd));
397 		emergency_in_use = 1;
398 		cp->xfer_status = cpu_to_le16(0);
399 		cp->req_count = cpu_to_le16(rec->period_size);
400 		cp = emergency_dbdma.cmds;
401 	}
402 
403 	/* now bump the values to reflect the amount
404 	   we haven't yet shifted */
405 	req = le16_to_cpu(cp->req_count);
406 	res = le16_to_cpu(cp->res_count);
407 	phy = le32_to_cpu(cp->phy_addr);
408 	phy += (req - res);
409 	cp->req_count = cpu_to_le16(res);
410 	cp->res_count = cpu_to_le16(0);
411 	cp->xfer_status = cpu_to_le16(0);
412 	cp->phy_addr = cpu_to_le32(phy);
413 
414 	cp->cmd_dep = cpu_to_le32(rec->cmd.addr
415 		+ sizeof(struct dbdma_cmd)*((rec->cur_period+1)%rec->nperiods));
416 
417 	cp->command = cpu_to_le16(OUTPUT_MORE | BR_ALWAYS | INTR_ALWAYS);
418 
419 	/* point at our patched up command block */
420 	out_le32(&rec->dma->cmdptr, emergency_dbdma.addr);
421 
422 	/* we must re-start the controller */
423 	(void)in_le32(&rec->dma->status);
424 	/* should complete clearing the DEAD status */
425 	out_le32(&rec->dma->control, ((RUN|WAKE) << 16) + (RUN|WAKE));
426 }
427 
428 /*
429  * update playback/capture pointer from interrupts
430  */
431 static void snd_pmac_pcm_update(struct snd_pmac *chip, struct pmac_stream *rec)
432 {
433 	volatile struct dbdma_cmd __iomem *cp;
434 	int c;
435 	int stat;
436 
437 	spin_lock(&chip->reg_lock);
438 	if (rec->running) {
439 		for (c = 0; c < rec->nperiods; c++) { /* at most all fragments */
440 
441 			if (emergency_in_use)   /* already using DEAD xfer? */
442 				cp = emergency_dbdma.cmds;
443 			else
444 				cp = &rec->cmd.cmds[rec->cur_period];
445 
446 			stat = le16_to_cpu(cp->xfer_status);
447 
448 			if (stat & DEAD) {
449 				snd_pmac_pcm_dead_xfer(rec, cp);
450 				break; /* this block is still going */
451 			}
452 
453 			if (emergency_in_use)
454 				emergency_in_use = 0 ; /* done that */
455 
456 			if (! (stat & ACTIVE))
457 				break;
458 
459 			/*printk(KERN_DEBUG "update frag %d\n", rec->cur_period);*/
460 			cp->xfer_status = cpu_to_le16(0);
461 			cp->req_count = cpu_to_le16(rec->period_size);
462 			/*cp->res_count = cpu_to_le16(0);*/
463 			rec->cur_period++;
464 			if (rec->cur_period >= rec->nperiods) {
465 				rec->cur_period = 0;
466 			}
467 
468 			spin_unlock(&chip->reg_lock);
469 			snd_pcm_period_elapsed(rec->substream);
470 			spin_lock(&chip->reg_lock);
471 		}
472 	}
473 	spin_unlock(&chip->reg_lock);
474 }
475 
476 
477 /*
478  * hw info
479  */
480 
481 static const struct snd_pcm_hardware snd_pmac_playback =
482 {
483 	.info =			(SNDRV_PCM_INFO_INTERLEAVED |
484 				 SNDRV_PCM_INFO_MMAP |
485 				 SNDRV_PCM_INFO_MMAP_VALID |
486 				 SNDRV_PCM_INFO_RESUME),
487 	.formats =		SNDRV_PCM_FMTBIT_S16_BE | SNDRV_PCM_FMTBIT_S16_LE,
488 	.rates =		SNDRV_PCM_RATE_8000_44100,
489 	.rate_min =		7350,
490 	.rate_max =		44100,
491 	.channels_min =		2,
492 	.channels_max =		2,
493 	.buffer_bytes_max =	131072,
494 	.period_bytes_min =	256,
495 	.period_bytes_max =	16384,
496 	.periods_min =		3,
497 	.periods_max =		PMAC_MAX_FRAGS,
498 };
499 
500 static const struct snd_pcm_hardware snd_pmac_capture =
501 {
502 	.info =			(SNDRV_PCM_INFO_INTERLEAVED |
503 				 SNDRV_PCM_INFO_MMAP |
504 				 SNDRV_PCM_INFO_MMAP_VALID |
505 				 SNDRV_PCM_INFO_RESUME),
506 	.formats =		SNDRV_PCM_FMTBIT_S16_BE | SNDRV_PCM_FMTBIT_S16_LE,
507 	.rates =		SNDRV_PCM_RATE_8000_44100,
508 	.rate_min =		7350,
509 	.rate_max =		44100,
510 	.channels_min =		2,
511 	.channels_max =		2,
512 	.buffer_bytes_max =	131072,
513 	.period_bytes_min =	256,
514 	.period_bytes_max =	16384,
515 	.periods_min =		3,
516 	.periods_max =		PMAC_MAX_FRAGS,
517 };
518 
519 
520 #if 0 // NYI
521 static int snd_pmac_hw_rule_rate(struct snd_pcm_hw_params *params,
522 				 struct snd_pcm_hw_rule *rule)
523 {
524 	struct snd_pmac *chip = rule->private;
525 	struct pmac_stream *rec = snd_pmac_get_stream(chip, rule->deps[0]);
526 	int i, freq_table[8], num_freqs;
527 
528 	if (! rec)
529 		return -EINVAL;
530 	num_freqs = 0;
531 	for (i = chip->num_freqs - 1; i >= 0; i--) {
532 		if (rec->cur_freqs & (1 << i))
533 			freq_table[num_freqs++] = chip->freq_table[i];
534 	}
535 
536 	return snd_interval_list(hw_param_interval(params, rule->var),
537 				 num_freqs, freq_table, 0);
538 }
539 
540 static int snd_pmac_hw_rule_format(struct snd_pcm_hw_params *params,
541 				   struct snd_pcm_hw_rule *rule)
542 {
543 	struct snd_pmac *chip = rule->private;
544 	struct pmac_stream *rec = snd_pmac_get_stream(chip, rule->deps[0]);
545 
546 	if (! rec)
547 		return -EINVAL;
548 	return snd_mask_refine_set(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT),
549 				   rec->cur_formats);
550 }
551 #endif // NYI
552 
553 static int snd_pmac_pcm_open(struct snd_pmac *chip, struct pmac_stream *rec,
554 			     struct snd_pcm_substream *subs)
555 {
556 	struct snd_pcm_runtime *runtime = subs->runtime;
557 	int i;
558 
559 	/* look up frequency table and fill bit mask */
560 	runtime->hw.rates = 0;
561 	for (i = 0; i < chip->num_freqs; i++)
562 		if (chip->freqs_ok & (1 << i))
563 			runtime->hw.rates |=
564 				snd_pcm_rate_to_rate_bit(chip->freq_table[i]);
565 
566 	/* check for minimum and maximum rates */
567 	for (i = 0; i < chip->num_freqs; i++) {
568 		if (chip->freqs_ok & (1 << i)) {
569 			runtime->hw.rate_max = chip->freq_table[i];
570 			break;
571 		}
572 	}
573 	for (i = chip->num_freqs - 1; i >= 0; i--) {
574 		if (chip->freqs_ok & (1 << i)) {
575 			runtime->hw.rate_min = chip->freq_table[i];
576 			break;
577 		}
578 	}
579 	runtime->hw.formats = chip->formats_ok;
580 	if (chip->can_capture) {
581 		if (! chip->can_duplex)
582 			runtime->hw.info |= SNDRV_PCM_INFO_HALF_DUPLEX;
583 		runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
584 	}
585 	runtime->private_data = rec;
586 	rec->substream = subs;
587 
588 #if 0 /* FIXME: still under development.. */
589 	snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
590 			    snd_pmac_hw_rule_rate, chip, rec->stream, -1);
591 	snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
592 			    snd_pmac_hw_rule_format, chip, rec->stream, -1);
593 #endif
594 
595 	runtime->hw.periods_max = rec->cmd.size - 1;
596 
597 	/* constraints to fix choppy sound */
598 	snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
599 	return 0;
600 }
601 
602 static int snd_pmac_pcm_close(struct snd_pmac *chip, struct pmac_stream *rec,
603 			      struct snd_pcm_substream *subs)
604 {
605 	struct pmac_stream *astr;
606 
607 	snd_pmac_dma_stop(rec);
608 
609 	astr = snd_pmac_get_stream(chip, another_stream(rec->stream));
610 	if (! astr)
611 		return -EINVAL;
612 
613 	/* reset constraints */
614 	astr->cur_freqs = chip->freqs_ok;
615 	astr->cur_formats = chip->formats_ok;
616 
617 	return 0;
618 }
619 
620 static int snd_pmac_playback_open(struct snd_pcm_substream *subs)
621 {
622 	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
623 
624 	subs->runtime->hw = snd_pmac_playback;
625 	return snd_pmac_pcm_open(chip, &chip->playback, subs);
626 }
627 
628 static int snd_pmac_capture_open(struct snd_pcm_substream *subs)
629 {
630 	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
631 
632 	subs->runtime->hw = snd_pmac_capture;
633 	return snd_pmac_pcm_open(chip, &chip->capture, subs);
634 }
635 
636 static int snd_pmac_playback_close(struct snd_pcm_substream *subs)
637 {
638 	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
639 
640 	return snd_pmac_pcm_close(chip, &chip->playback, subs);
641 }
642 
643 static int snd_pmac_capture_close(struct snd_pcm_substream *subs)
644 {
645 	struct snd_pmac *chip = snd_pcm_substream_chip(subs);
646 
647 	return snd_pmac_pcm_close(chip, &chip->capture, subs);
648 }
649 
650 /*
651  */
652 
653 static const struct snd_pcm_ops snd_pmac_playback_ops = {
654 	.open =		snd_pmac_playback_open,
655 	.close =	snd_pmac_playback_close,
656 	.ioctl =	snd_pcm_lib_ioctl,
657 	.prepare =	snd_pmac_playback_prepare,
658 	.trigger =	snd_pmac_playback_trigger,
659 	.pointer =	snd_pmac_playback_pointer,
660 };
661 
662 static const struct snd_pcm_ops snd_pmac_capture_ops = {
663 	.open =		snd_pmac_capture_open,
664 	.close =	snd_pmac_capture_close,
665 	.ioctl =	snd_pcm_lib_ioctl,
666 	.prepare =	snd_pmac_capture_prepare,
667 	.trigger =	snd_pmac_capture_trigger,
668 	.pointer =	snd_pmac_capture_pointer,
669 };
670 
671 int snd_pmac_pcm_new(struct snd_pmac *chip)
672 {
673 	struct snd_pcm *pcm;
674 	int err;
675 	int num_captures = 1;
676 
677 	if (! chip->can_capture)
678 		num_captures = 0;
679 	err = snd_pcm_new(chip->card, chip->card->driver, 0, 1, num_captures, &pcm);
680 	if (err < 0)
681 		return err;
682 
683 	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_pmac_playback_ops);
684 	if (chip->can_capture)
685 		snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_pmac_capture_ops);
686 
687 	pcm->private_data = chip;
688 	pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX;
689 	strcpy(pcm->name, chip->card->shortname);
690 	chip->pcm = pcm;
691 
692 	chip->formats_ok = SNDRV_PCM_FMTBIT_S16_BE;
693 	if (chip->can_byte_swap)
694 		chip->formats_ok |= SNDRV_PCM_FMTBIT_S16_LE;
695 
696 	chip->playback.cur_formats = chip->formats_ok;
697 	chip->capture.cur_formats = chip->formats_ok;
698 	chip->playback.cur_freqs = chip->freqs_ok;
699 	chip->capture.cur_freqs = chip->freqs_ok;
700 
701 	/* preallocate 64k buffer */
702 	snd_pcm_set_managed_buffer_all(pcm, SNDRV_DMA_TYPE_DEV,
703 				       &chip->pdev->dev,
704 				       64 * 1024, 64 * 1024);
705 
706 	return 0;
707 }
708 
709 
710 static void snd_pmac_dbdma_reset(struct snd_pmac *chip)
711 {
712 	out_le32(&chip->playback.dma->control, (RUN|PAUSE|FLUSH|WAKE|DEAD) << 16);
713 	snd_pmac_wait_ack(&chip->playback);
714 	out_le32(&chip->capture.dma->control, (RUN|PAUSE|FLUSH|WAKE|DEAD) << 16);
715 	snd_pmac_wait_ack(&chip->capture);
716 }
717 
718 
719 /*
720  * handling beep
721  */
722 void snd_pmac_beep_dma_start(struct snd_pmac *chip, int bytes, unsigned long addr, int speed)
723 {
724 	struct pmac_stream *rec = &chip->playback;
725 
726 	snd_pmac_dma_stop(rec);
727 	chip->extra_dma.cmds->req_count = cpu_to_le16(bytes);
728 	chip->extra_dma.cmds->xfer_status = cpu_to_le16(0);
729 	chip->extra_dma.cmds->cmd_dep = cpu_to_le32(chip->extra_dma.addr);
730 	chip->extra_dma.cmds->phy_addr = cpu_to_le32(addr);
731 	chip->extra_dma.cmds->command = cpu_to_le16(OUTPUT_MORE + BR_ALWAYS);
732 	out_le32(&chip->awacs->control,
733 		 (in_le32(&chip->awacs->control) & ~0x1f00)
734 		 | (speed << 8));
735 	out_le32(&chip->awacs->byteswap, 0);
736 	snd_pmac_dma_set_command(rec, &chip->extra_dma);
737 	snd_pmac_dma_run(rec, RUN);
738 }
739 
740 void snd_pmac_beep_dma_stop(struct snd_pmac *chip)
741 {
742 	snd_pmac_dma_stop(&chip->playback);
743 	chip->extra_dma.cmds->command = cpu_to_le16(DBDMA_STOP);
744 	snd_pmac_pcm_set_format(chip); /* reset format */
745 }
746 
747 
748 /*
749  * interrupt handlers
750  */
751 static irqreturn_t
752 snd_pmac_tx_intr(int irq, void *devid)
753 {
754 	struct snd_pmac *chip = devid;
755 	snd_pmac_pcm_update(chip, &chip->playback);
756 	return IRQ_HANDLED;
757 }
758 
759 
760 static irqreturn_t
761 snd_pmac_rx_intr(int irq, void *devid)
762 {
763 	struct snd_pmac *chip = devid;
764 	snd_pmac_pcm_update(chip, &chip->capture);
765 	return IRQ_HANDLED;
766 }
767 
768 
769 static irqreturn_t
770 snd_pmac_ctrl_intr(int irq, void *devid)
771 {
772 	struct snd_pmac *chip = devid;
773 	int ctrl = in_le32(&chip->awacs->control);
774 
775 	/*printk(KERN_DEBUG "pmac: control interrupt.. 0x%x\n", ctrl);*/
776 	if (ctrl & MASK_PORTCHG) {
777 		/* do something when headphone is plugged/unplugged? */
778 		if (chip->update_automute)
779 			chip->update_automute(chip, 1);
780 	}
781 	if (ctrl & MASK_CNTLERR) {
782 		int err = (in_le32(&chip->awacs->codec_stat) & MASK_ERRCODE) >> 16;
783 		if (err && chip->model <= PMAC_SCREAMER)
784 			snd_printk(KERN_DEBUG "error %x\n", err);
785 	}
786 	/* Writing 1s to the CNTLERR and PORTCHG bits clears them... */
787 	out_le32(&chip->awacs->control, ctrl);
788 	return IRQ_HANDLED;
789 }
790 
791 
792 /*
793  * a wrapper to feature call for compatibility
794  */
795 static void snd_pmac_sound_feature(struct snd_pmac *chip, int enable)
796 {
797 	if (ppc_md.feature_call)
798 		ppc_md.feature_call(PMAC_FTR_SOUND_CHIP_ENABLE, chip->node, 0, enable);
799 }
800 
801 /*
802  * release resources
803  */
804 
805 static int snd_pmac_free(struct snd_pmac *chip)
806 {
807 	/* stop sounds */
808 	if (chip->initialized) {
809 		snd_pmac_dbdma_reset(chip);
810 		/* disable interrupts from awacs interface */
811 		out_le32(&chip->awacs->control, in_le32(&chip->awacs->control) & 0xfff);
812 	}
813 
814 	if (chip->node)
815 		snd_pmac_sound_feature(chip, 0);
816 
817 	/* clean up mixer if any */
818 	if (chip->mixer_free)
819 		chip->mixer_free(chip);
820 
821 	snd_pmac_detach_beep(chip);
822 
823 	/* release resources */
824 	if (chip->irq >= 0)
825 		free_irq(chip->irq, (void*)chip);
826 	if (chip->tx_irq >= 0)
827 		free_irq(chip->tx_irq, (void*)chip);
828 	if (chip->rx_irq >= 0)
829 		free_irq(chip->rx_irq, (void*)chip);
830 	snd_pmac_dbdma_free(chip, &chip->playback.cmd);
831 	snd_pmac_dbdma_free(chip, &chip->capture.cmd);
832 	snd_pmac_dbdma_free(chip, &chip->extra_dma);
833 	snd_pmac_dbdma_free(chip, &emergency_dbdma);
834 	iounmap(chip->macio_base);
835 	iounmap(chip->latch_base);
836 	iounmap(chip->awacs);
837 	iounmap(chip->playback.dma);
838 	iounmap(chip->capture.dma);
839 
840 	if (chip->node) {
841 		int i;
842 		for (i = 0; i < 3; i++) {
843 			if (chip->requested & (1 << i))
844 				release_mem_region(chip->rsrc[i].start,
845 						   resource_size(&chip->rsrc[i]));
846 		}
847 	}
848 
849 	pci_dev_put(chip->pdev);
850 	of_node_put(chip->node);
851 	kfree(chip);
852 	return 0;
853 }
854 
855 
856 /*
857  * free the device
858  */
859 static int snd_pmac_dev_free(struct snd_device *device)
860 {
861 	struct snd_pmac *chip = device->device_data;
862 	return snd_pmac_free(chip);
863 }
864 
865 
866 /*
867  * check the machine support byteswap (little-endian)
868  */
869 
870 static void detect_byte_swap(struct snd_pmac *chip)
871 {
872 	struct device_node *mio;
873 
874 	/* if seems that Keylargo can't byte-swap  */
875 	for (mio = chip->node->parent; mio; mio = mio->parent) {
876 		if (of_node_name_eq(mio, "mac-io")) {
877 			if (of_device_is_compatible(mio, "Keylargo"))
878 				chip->can_byte_swap = 0;
879 			break;
880 		}
881 	}
882 
883 	/* it seems the Pismo & iBook can't byte-swap in hardware. */
884 	if (of_machine_is_compatible("PowerBook3,1") ||
885 	    of_machine_is_compatible("PowerBook2,1"))
886 		chip->can_byte_swap = 0 ;
887 
888 	if (of_machine_is_compatible("PowerBook2,1"))
889 		chip->can_duplex = 0;
890 }
891 
892 
893 /*
894  * detect a sound chip
895  */
896 static int snd_pmac_detect(struct snd_pmac *chip)
897 {
898 	struct device_node *sound;
899 	struct device_node *dn;
900 	const unsigned int *prop;
901 	unsigned int l;
902 	struct macio_chip* macio;
903 
904 	if (!machine_is(powermac))
905 		return -ENODEV;
906 
907 	chip->subframe = 0;
908 	chip->revision = 0;
909 	chip->freqs_ok = 0xff; /* all ok */
910 	chip->model = PMAC_AWACS;
911 	chip->can_byte_swap = 1;
912 	chip->can_duplex = 1;
913 	chip->can_capture = 1;
914 	chip->num_freqs = ARRAY_SIZE(awacs_freqs);
915 	chip->freq_table = awacs_freqs;
916 	chip->pdev = NULL;
917 
918 	chip->control_mask = MASK_IEPC | MASK_IEE | 0x11; /* default */
919 
920 	/* check machine type */
921 	if (of_machine_is_compatible("AAPL,3400/2400")
922 	    || of_machine_is_compatible("AAPL,3500"))
923 		chip->is_pbook_3400 = 1;
924 	else if (of_machine_is_compatible("PowerBook1,1")
925 		 || of_machine_is_compatible("AAPL,PowerBook1998"))
926 		chip->is_pbook_G3 = 1;
927 	chip->node = of_find_node_by_name(NULL, "awacs");
928 	sound = of_node_get(chip->node);
929 
930 	/*
931 	 * powermac G3 models have a node called "davbus"
932 	 * with a child called "sound".
933 	 */
934 	if (!chip->node)
935 		chip->node = of_find_node_by_name(NULL, "davbus");
936 	/*
937 	 * if we didn't find a davbus device, try 'i2s-a' since
938 	 * this seems to be what iBooks have
939 	 */
940 	if (! chip->node) {
941 		chip->node = of_find_node_by_name(NULL, "i2s-a");
942 		if (chip->node && chip->node->parent &&
943 		    chip->node->parent->parent) {
944 			if (of_device_is_compatible(chip->node->parent->parent,
945 						 "K2-Keylargo"))
946 				chip->is_k2 = 1;
947 		}
948 	}
949 	if (! chip->node)
950 		return -ENODEV;
951 
952 	if (!sound) {
953 		for_each_node_by_name(sound, "sound")
954 			if (sound->parent == chip->node)
955 				break;
956 	}
957 	if (! sound) {
958 		of_node_put(chip->node);
959 		chip->node = NULL;
960 		return -ENODEV;
961 	}
962 	prop = of_get_property(sound, "sub-frame", NULL);
963 	if (prop && *prop < 16)
964 		chip->subframe = *prop;
965 	prop = of_get_property(sound, "layout-id", NULL);
966 	if (prop) {
967 		/* partly deprecate snd-powermac, for those machines
968 		 * that have a layout-id property for now */
969 		printk(KERN_INFO "snd-powermac no longer handles any "
970 				 "machines with a layout-id property "
971 				 "in the device-tree, use snd-aoa.\n");
972 		of_node_put(sound);
973 		of_node_put(chip->node);
974 		chip->node = NULL;
975 		return -ENODEV;
976 	}
977 	/* This should be verified on older screamers */
978 	if (of_device_is_compatible(sound, "screamer")) {
979 		chip->model = PMAC_SCREAMER;
980 		// chip->can_byte_swap = 0; /* FIXME: check this */
981 	}
982 	if (of_device_is_compatible(sound, "burgundy")) {
983 		chip->model = PMAC_BURGUNDY;
984 		chip->control_mask = MASK_IEPC | 0x11; /* disable IEE */
985 	}
986 	if (of_device_is_compatible(sound, "daca")) {
987 		chip->model = PMAC_DACA;
988 		chip->can_capture = 0;  /* no capture */
989 		chip->can_duplex = 0;
990 		// chip->can_byte_swap = 0; /* FIXME: check this */
991 		chip->control_mask = MASK_IEPC | 0x11; /* disable IEE */
992 	}
993 	if (of_device_is_compatible(sound, "tumbler")) {
994 		chip->model = PMAC_TUMBLER;
995 		chip->can_capture = of_machine_is_compatible("PowerMac4,2")
996 				|| of_machine_is_compatible("PowerBook3,2")
997 				|| of_machine_is_compatible("PowerBook3,3")
998 				|| of_machine_is_compatible("PowerBook4,1")
999 				|| of_machine_is_compatible("PowerBook4,2")
1000 				|| of_machine_is_compatible("PowerBook4,3");
1001 		chip->can_duplex = 0;
1002 		// chip->can_byte_swap = 0; /* FIXME: check this */
1003 		chip->num_freqs = ARRAY_SIZE(tumbler_freqs);
1004 		chip->freq_table = tumbler_freqs;
1005 		chip->control_mask = MASK_IEPC | 0x11; /* disable IEE */
1006 	}
1007 	if (of_device_is_compatible(sound, "snapper")) {
1008 		chip->model = PMAC_SNAPPER;
1009 		// chip->can_byte_swap = 0; /* FIXME: check this */
1010 		chip->num_freqs = ARRAY_SIZE(tumbler_freqs);
1011 		chip->freq_table = tumbler_freqs;
1012 		chip->control_mask = MASK_IEPC | 0x11; /* disable IEE */
1013 	}
1014 	prop = of_get_property(sound, "device-id", NULL);
1015 	if (prop)
1016 		chip->device_id = *prop;
1017 	dn = of_find_node_by_name(NULL, "perch");
1018 	chip->has_iic = (dn != NULL);
1019 	of_node_put(dn);
1020 
1021 	/* We need the PCI device for DMA allocations, let's use a crude method
1022 	 * for now ...
1023 	 */
1024 	macio = macio_find(chip->node, macio_unknown);
1025 	if (macio == NULL)
1026 		printk(KERN_WARNING "snd-powermac: can't locate macio !\n");
1027 	else {
1028 		struct pci_dev *pdev = NULL;
1029 
1030 		for_each_pci_dev(pdev) {
1031 			struct device_node *np = pci_device_to_OF_node(pdev);
1032 			if (np && np == macio->of_node) {
1033 				chip->pdev = pdev;
1034 				break;
1035 			}
1036 		}
1037 	}
1038 	if (chip->pdev == NULL)
1039 		printk(KERN_WARNING "snd-powermac: can't locate macio PCI"
1040 		       " device !\n");
1041 
1042 	detect_byte_swap(chip);
1043 
1044 	/* look for a property saying what sample rates
1045 	   are available */
1046 	prop = of_get_property(sound, "sample-rates", &l);
1047 	if (! prop)
1048 		prop = of_get_property(sound, "output-frame-rates", &l);
1049 	if (prop) {
1050 		int i;
1051 		chip->freqs_ok = 0;
1052 		for (l /= sizeof(int); l > 0; --l) {
1053 			unsigned int r = *prop++;
1054 			/* Apple 'Fixed' format */
1055 			if (r >= 0x10000)
1056 				r >>= 16;
1057 			for (i = 0; i < chip->num_freqs; ++i) {
1058 				if (r == chip->freq_table[i]) {
1059 					chip->freqs_ok |= (1 << i);
1060 					break;
1061 				}
1062 			}
1063 		}
1064 	} else {
1065 		/* assume only 44.1khz */
1066 		chip->freqs_ok = 1;
1067 	}
1068 
1069 	of_node_put(sound);
1070 	return 0;
1071 }
1072 
1073 #ifdef PMAC_SUPPORT_AUTOMUTE
1074 /*
1075  * auto-mute
1076  */
1077 static int pmac_auto_mute_get(struct snd_kcontrol *kcontrol,
1078 			      struct snd_ctl_elem_value *ucontrol)
1079 {
1080 	struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
1081 	ucontrol->value.integer.value[0] = chip->auto_mute;
1082 	return 0;
1083 }
1084 
1085 static int pmac_auto_mute_put(struct snd_kcontrol *kcontrol,
1086 			      struct snd_ctl_elem_value *ucontrol)
1087 {
1088 	struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
1089 	if (ucontrol->value.integer.value[0] != chip->auto_mute) {
1090 		chip->auto_mute = !!ucontrol->value.integer.value[0];
1091 		if (chip->update_automute)
1092 			chip->update_automute(chip, 1);
1093 		return 1;
1094 	}
1095 	return 0;
1096 }
1097 
1098 static int pmac_hp_detect_get(struct snd_kcontrol *kcontrol,
1099 			      struct snd_ctl_elem_value *ucontrol)
1100 {
1101 	struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
1102 	if (chip->detect_headphone)
1103 		ucontrol->value.integer.value[0] = chip->detect_headphone(chip);
1104 	else
1105 		ucontrol->value.integer.value[0] = 0;
1106 	return 0;
1107 }
1108 
1109 static struct snd_kcontrol_new auto_mute_controls[] = {
1110 	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1111 	  .name = "Auto Mute Switch",
1112 	  .info = snd_pmac_boolean_mono_info,
1113 	  .get = pmac_auto_mute_get,
1114 	  .put = pmac_auto_mute_put,
1115 	},
1116 	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1117 	  .name = "Headphone Detection",
1118 	  .access = SNDRV_CTL_ELEM_ACCESS_READ,
1119 	  .info = snd_pmac_boolean_mono_info,
1120 	  .get = pmac_hp_detect_get,
1121 	},
1122 };
1123 
1124 int snd_pmac_add_automute(struct snd_pmac *chip)
1125 {
1126 	int err;
1127 	chip->auto_mute = 1;
1128 	err = snd_ctl_add(chip->card, snd_ctl_new1(&auto_mute_controls[0], chip));
1129 	if (err < 0) {
1130 		printk(KERN_ERR "snd-powermac: Failed to add automute control\n");
1131 		return err;
1132 	}
1133 	chip->hp_detect_ctl = snd_ctl_new1(&auto_mute_controls[1], chip);
1134 	return snd_ctl_add(chip->card, chip->hp_detect_ctl);
1135 }
1136 #endif /* PMAC_SUPPORT_AUTOMUTE */
1137 
1138 /*
1139  * create and detect a pmac chip record
1140  */
1141 int snd_pmac_new(struct snd_card *card, struct snd_pmac **chip_return)
1142 {
1143 	struct snd_pmac *chip;
1144 	struct device_node *np;
1145 	int i, err;
1146 	unsigned int irq;
1147 	unsigned long ctrl_addr, txdma_addr, rxdma_addr;
1148 	static struct snd_device_ops ops = {
1149 		.dev_free =	snd_pmac_dev_free,
1150 	};
1151 
1152 	*chip_return = NULL;
1153 
1154 	chip = kzalloc(sizeof(*chip), GFP_KERNEL);
1155 	if (chip == NULL)
1156 		return -ENOMEM;
1157 	chip->card = card;
1158 
1159 	spin_lock_init(&chip->reg_lock);
1160 	chip->irq = chip->tx_irq = chip->rx_irq = -1;
1161 
1162 	chip->playback.stream = SNDRV_PCM_STREAM_PLAYBACK;
1163 	chip->capture.stream = SNDRV_PCM_STREAM_CAPTURE;
1164 
1165 	if ((err = snd_pmac_detect(chip)) < 0)
1166 		goto __error;
1167 
1168 	if (snd_pmac_dbdma_alloc(chip, &chip->playback.cmd, PMAC_MAX_FRAGS + 1) < 0 ||
1169 	    snd_pmac_dbdma_alloc(chip, &chip->capture.cmd, PMAC_MAX_FRAGS + 1) < 0 ||
1170 	    snd_pmac_dbdma_alloc(chip, &chip->extra_dma, 2) < 0 ||
1171 	    snd_pmac_dbdma_alloc(chip, &emergency_dbdma, 2) < 0) {
1172 		err = -ENOMEM;
1173 		goto __error;
1174 	}
1175 
1176 	np = chip->node;
1177 	chip->requested = 0;
1178 	if (chip->is_k2) {
1179 		static char *rnames[] = {
1180 			"Sound Control", "Sound DMA" };
1181 		for (i = 0; i < 2; i ++) {
1182 			if (of_address_to_resource(np->parent, i,
1183 						   &chip->rsrc[i])) {
1184 				printk(KERN_ERR "snd: can't translate rsrc "
1185 				       " %d (%s)\n", i, rnames[i]);
1186 				err = -ENODEV;
1187 				goto __error;
1188 			}
1189 			if (request_mem_region(chip->rsrc[i].start,
1190 					       resource_size(&chip->rsrc[i]),
1191 					       rnames[i]) == NULL) {
1192 				printk(KERN_ERR "snd: can't request rsrc "
1193 				       " %d (%s: %pR)\n",
1194 				       i, rnames[i], &chip->rsrc[i]);
1195 				err = -ENODEV;
1196 				goto __error;
1197 			}
1198 			chip->requested |= (1 << i);
1199 		}
1200 		ctrl_addr = chip->rsrc[0].start;
1201 		txdma_addr = chip->rsrc[1].start;
1202 		rxdma_addr = txdma_addr + 0x100;
1203 	} else {
1204 		static char *rnames[] = {
1205 			"Sound Control", "Sound Tx DMA", "Sound Rx DMA" };
1206 		for (i = 0; i < 3; i ++) {
1207 			if (of_address_to_resource(np, i,
1208 						   &chip->rsrc[i])) {
1209 				printk(KERN_ERR "snd: can't translate rsrc "
1210 				       " %d (%s)\n", i, rnames[i]);
1211 				err = -ENODEV;
1212 				goto __error;
1213 			}
1214 			if (request_mem_region(chip->rsrc[i].start,
1215 					       resource_size(&chip->rsrc[i]),
1216 					       rnames[i]) == NULL) {
1217 				printk(KERN_ERR "snd: can't request rsrc "
1218 				       " %d (%s: %pR)\n",
1219 				       i, rnames[i], &chip->rsrc[i]);
1220 				err = -ENODEV;
1221 				goto __error;
1222 			}
1223 			chip->requested |= (1 << i);
1224 		}
1225 		ctrl_addr = chip->rsrc[0].start;
1226 		txdma_addr = chip->rsrc[1].start;
1227 		rxdma_addr = chip->rsrc[2].start;
1228 	}
1229 
1230 	chip->awacs = ioremap(ctrl_addr, 0x1000);
1231 	chip->playback.dma = ioremap(txdma_addr, 0x100);
1232 	chip->capture.dma = ioremap(rxdma_addr, 0x100);
1233 	if (chip->model <= PMAC_BURGUNDY) {
1234 		irq = irq_of_parse_and_map(np, 0);
1235 		if (request_irq(irq, snd_pmac_ctrl_intr, 0,
1236 				"PMac", (void*)chip)) {
1237 			snd_printk(KERN_ERR "pmac: unable to grab IRQ %d\n",
1238 				   irq);
1239 			err = -EBUSY;
1240 			goto __error;
1241 		}
1242 		chip->irq = irq;
1243 	}
1244 	irq = irq_of_parse_and_map(np, 1);
1245 	if (request_irq(irq, snd_pmac_tx_intr, 0, "PMac Output", (void*)chip)){
1246 		snd_printk(KERN_ERR "pmac: unable to grab IRQ %d\n", irq);
1247 		err = -EBUSY;
1248 		goto __error;
1249 	}
1250 	chip->tx_irq = irq;
1251 	irq = irq_of_parse_and_map(np, 2);
1252 	if (request_irq(irq, snd_pmac_rx_intr, 0, "PMac Input", (void*)chip)) {
1253 		snd_printk(KERN_ERR "pmac: unable to grab IRQ %d\n", irq);
1254 		err = -EBUSY;
1255 		goto __error;
1256 	}
1257 	chip->rx_irq = irq;
1258 
1259 	snd_pmac_sound_feature(chip, 1);
1260 
1261 	/* reset & enable interrupts */
1262 	if (chip->model <= PMAC_BURGUNDY)
1263 		out_le32(&chip->awacs->control, chip->control_mask);
1264 
1265 	/* Powerbooks have odd ways of enabling inputs such as
1266 	   an expansion-bay CD or sound from an internal modem
1267 	   or a PC-card modem. */
1268 	if (chip->is_pbook_3400) {
1269 		/* Enable CD and PC-card sound inputs. */
1270 		/* This is done by reading from address
1271 		 * f301a000, + 0x10 to enable the expansion-bay
1272 		 * CD sound input, + 0x80 to enable the PC-card
1273 		 * sound input.  The 0x100 enables the SCSI bus
1274 		 * terminator power.
1275 		 */
1276 		chip->latch_base = ioremap (0xf301a000, 0x1000);
1277 		in_8(chip->latch_base + 0x190);
1278 	} else if (chip->is_pbook_G3) {
1279 		struct device_node* mio;
1280 		for (mio = chip->node->parent; mio; mio = mio->parent) {
1281 			if (of_node_name_eq(mio, "mac-io")) {
1282 				struct resource r;
1283 				if (of_address_to_resource(mio, 0, &r) == 0)
1284 					chip->macio_base =
1285 						ioremap(r.start, 0x40);
1286 				break;
1287 			}
1288 		}
1289 		/* Enable CD sound input. */
1290 		/* The relevant bits for writing to this byte are 0x8f.
1291 		 * I haven't found out what the 0x80 bit does.
1292 		 * For the 0xf bits, writing 3 or 7 enables the CD
1293 		 * input, any other value disables it.  Values
1294 		 * 1, 3, 5, 7 enable the microphone.  Values 0, 2,
1295 		 * 4, 6, 8 - f enable the input from the modem.
1296 		 */
1297 		if (chip->macio_base)
1298 			out_8(chip->macio_base + 0x37, 3);
1299 	}
1300 
1301 	/* Reset dbdma channels */
1302 	snd_pmac_dbdma_reset(chip);
1303 
1304 	if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0)
1305 		goto __error;
1306 
1307 	*chip_return = chip;
1308 	return 0;
1309 
1310  __error:
1311 	snd_pmac_free(chip);
1312 	return err;
1313 }
1314 
1315 
1316 /*
1317  * sleep notify for powerbook
1318  */
1319 
1320 #ifdef CONFIG_PM
1321 
1322 /*
1323  * Save state when going to sleep, restore it afterwards.
1324  */
1325 
1326 void snd_pmac_suspend(struct snd_pmac *chip)
1327 {
1328 	unsigned long flags;
1329 
1330 	snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
1331 	if (chip->suspend)
1332 		chip->suspend(chip);
1333 	spin_lock_irqsave(&chip->reg_lock, flags);
1334 	snd_pmac_beep_stop(chip);
1335 	spin_unlock_irqrestore(&chip->reg_lock, flags);
1336 	if (chip->irq >= 0)
1337 		disable_irq(chip->irq);
1338 	if (chip->tx_irq >= 0)
1339 		disable_irq(chip->tx_irq);
1340 	if (chip->rx_irq >= 0)
1341 		disable_irq(chip->rx_irq);
1342 	snd_pmac_sound_feature(chip, 0);
1343 }
1344 
1345 void snd_pmac_resume(struct snd_pmac *chip)
1346 {
1347 	snd_pmac_sound_feature(chip, 1);
1348 	if (chip->resume)
1349 		chip->resume(chip);
1350 	/* enable CD sound input */
1351 	if (chip->macio_base && chip->is_pbook_G3)
1352 		out_8(chip->macio_base + 0x37, 3);
1353 	else if (chip->is_pbook_3400)
1354 		in_8(chip->latch_base + 0x190);
1355 
1356 	snd_pmac_pcm_set_format(chip);
1357 
1358 	if (chip->irq >= 0)
1359 		enable_irq(chip->irq);
1360 	if (chip->tx_irq >= 0)
1361 		enable_irq(chip->tx_irq);
1362 	if (chip->rx_irq >= 0)
1363 		enable_irq(chip->rx_irq);
1364 
1365 	snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
1366 }
1367 
1368 #endif /* CONFIG_PM */
1369 
1370