blob: a5843fc5ff204ee6efb32becd35e671927903f59 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PMac DBDMA lowlevel functions
3 *
4 * Copyright (c) by Takashi Iwai <tiwai@suse.de>
5 * code based on dmasound.c.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22
Takashi Iwai6cbbfe12015-01-28 16:49:33 +010023#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/irq.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/slab.h>
28#include <linux/interrupt.h>
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -070029#include <linux/pci.h>
30#include <linux/dma-mapping.h>
Rob Herring5af50732013-09-17 14:28:33 -050031#include <linux/of_address.h>
32#include <linux/of_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <sound/core.h>
34#include "pmac.h"
35#include <sound/pcm_params.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/pmac_feature.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/* fixed frequency table for awacs, screamer, burgundy, DACA (44100 max) */
40static int awacs_freqs[8] = {
41 44100, 29400, 22050, 17640, 14700, 11025, 8820, 7350
42};
43/* fixed frequency table for tumbler */
44static int tumbler_freqs[1] = {
45 44100
46};
47
T. H. Huthe70515dd52008-01-16 15:57:08 +010048
49/*
50 * we will allocate a single 'emergency' dbdma cmd block to use if the
51 * tx status comes up "DEAD". This happens on some PowerComputing Pmac
52 * clones, either owing to a bug in dbdma or some interaction between
53 * IDE and sound. However, this measure would deal with DEAD status if
54 * it appeared elsewhere.
55 */
56static struct pmac_dbdma emergency_dbdma;
57static int emergency_in_use;
58
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/*
61 * allocate DBDMA command arrays
62 */
Takashi Iwai65b29f52005-11-17 15:09:46 +010063static int snd_pmac_dbdma_alloc(struct snd_pmac *chip, struct pmac_dbdma *rec, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -070065 unsigned int rsize = sizeof(struct dbdma_cmd) * (size + 1);
66
67 rec->space = dma_alloc_coherent(&chip->pdev->dev, rsize,
68 &rec->dma_base, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if (rec->space == NULL)
70 return -ENOMEM;
71 rec->size = size;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -070072 memset(rec->space, 0, rsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 rec->cmds = (void __iomem *)DBDMA_ALIGN(rec->space);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -070074 rec->addr = rec->dma_base + (unsigned long)((char *)rec->cmds - (char *)rec->space);
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return 0;
77}
78
Takashi Iwai65b29f52005-11-17 15:09:46 +010079static void snd_pmac_dbdma_free(struct snd_pmac *chip, struct pmac_dbdma *rec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Benjamin Herrenschmidt367636e2006-02-08 15:04:18 +110081 if (rec->space) {
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -070082 unsigned int rsize = sizeof(struct dbdma_cmd) * (rec->size + 1);
83
84 dma_free_coherent(&chip->pdev->dev, rsize, rec->space, rec->dma_base);
85 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
88
89/*
90 * pcm stuff
91 */
92
93/*
94 * look up frequency table
95 */
96
Takashi Iwai65b29f52005-11-17 15:09:46 +010097unsigned int snd_pmac_rate_index(struct snd_pmac *chip, struct pmac_stream *rec, unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 int i, ok, found;
100
101 ok = rec->cur_freqs;
102 if (rate > chip->freq_table[0])
103 return 0;
104 found = 0;
105 for (i = 0; i < chip->num_freqs; i++, ok >>= 1) {
106 if (! (ok & 1)) continue;
107 found = i;
108 if (rate >= chip->freq_table[i])
109 break;
110 }
111 return found;
112}
113
114/*
115 * check whether another stream is active
116 */
117static inline int another_stream(int stream)
118{
119 return (stream == SNDRV_PCM_STREAM_PLAYBACK) ?
120 SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
121}
122
123/*
124 * allocate buffers
125 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100126static int snd_pmac_pcm_hw_params(struct snd_pcm_substream *subs,
127 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 return snd_pcm_lib_malloc_pages(subs, params_buffer_bytes(hw_params));
130}
131
132/*
133 * release buffers
134 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100135static int snd_pmac_pcm_hw_free(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 snd_pcm_lib_free_pages(subs);
138 return 0;
139}
140
141/*
142 * get a stream of the opposite direction
143 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100144static struct pmac_stream *snd_pmac_get_stream(struct snd_pmac *chip, int stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 switch (stream) {
147 case SNDRV_PCM_STREAM_PLAYBACK:
148 return &chip->playback;
149 case SNDRV_PCM_STREAM_CAPTURE:
150 return &chip->capture;
151 default:
152 snd_BUG();
153 return NULL;
154 }
155}
156
157/*
158 * wait while run status is on
159 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700160static inline void
Takashi Iwai65b29f52005-11-17 15:09:46 +0100161snd_pmac_wait_ack(struct pmac_stream *rec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 int timeout = 50000;
164 while ((in_le32(&rec->dma->status) & RUN) && timeout-- > 0)
165 udelay(1);
166}
167
168/*
169 * set the format and rate to the chip.
170 * call the lowlevel function if defined (e.g. for AWACS).
171 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100172static void snd_pmac_pcm_set_format(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
174 /* set up frequency and format */
175 out_le32(&chip->awacs->control, chip->control_mask | (chip->rate_index << 8));
176 out_le32(&chip->awacs->byteswap, chip->format == SNDRV_PCM_FORMAT_S16_LE ? 1 : 0);
177 if (chip->set_format)
178 chip->set_format(chip);
179}
180
181/*
182 * stop the DMA transfer
183 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100184static inline void snd_pmac_dma_stop(struct pmac_stream *rec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
186 out_le32(&rec->dma->control, (RUN|WAKE|FLUSH|PAUSE) << 16);
187 snd_pmac_wait_ack(rec);
188}
189
190/*
191 * set the command pointer address
192 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100193static inline void snd_pmac_dma_set_command(struct pmac_stream *rec, struct pmac_dbdma *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
195 out_le32(&rec->dma->cmdptr, cmd->addr);
196}
197
198/*
199 * start the DMA
200 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100201static inline void snd_pmac_dma_run(struct pmac_stream *rec, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
203 out_le32(&rec->dma->control, status | (status << 16));
204}
205
206
207/*
208 * prepare playback/capture stream
209 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100210static int snd_pmac_pcm_prepare(struct snd_pmac *chip, struct pmac_stream *rec, struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 int i;
213 volatile struct dbdma_cmd __iomem *cp;
Takashi Iwai65b29f52005-11-17 15:09:46 +0100214 struct snd_pcm_runtime *runtime = subs->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 int rate_index;
216 long offset;
Takashi Iwai65b29f52005-11-17 15:09:46 +0100217 struct pmac_stream *astr;
Risto Suominen946cda72008-04-16 13:16:05 +0200218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 rec->dma_size = snd_pcm_lib_buffer_bytes(subs);
220 rec->period_size = snd_pcm_lib_period_bytes(subs);
221 rec->nperiods = rec->dma_size / rec->period_size;
222 rec->cur_period = 0;
223 rate_index = snd_pmac_rate_index(chip, rec, runtime->rate);
224
225 /* set up constraints */
226 astr = snd_pmac_get_stream(chip, another_stream(rec->stream));
Takashi Iwai7c22f1a2005-10-10 11:46:31 +0200227 if (! astr)
228 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 astr->cur_freqs = 1 << rate_index;
230 astr->cur_formats = 1 << runtime->format;
231 chip->rate_index = rate_index;
232 chip->format = runtime->format;
233
234 /* We really want to execute a DMA stop command, after the AWACS
235 * is initialized.
236 * For reasons I don't understand, it stops the hissing noise
237 * common to many PowerBook G3 systems and random noise otherwise
238 * captured on iBook2's about every third time. -ReneR
239 */
240 spin_lock_irq(&chip->reg_lock);
241 snd_pmac_dma_stop(rec);
David Gibsonf5718722015-02-03 16:36:21 +1100242 chip->extra_dma.cmds->command = cpu_to_le16(DBDMA_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 snd_pmac_dma_set_command(rec, &chip->extra_dma);
244 snd_pmac_dma_run(rec, RUN);
245 spin_unlock_irq(&chip->reg_lock);
246 mdelay(5);
247 spin_lock_irq(&chip->reg_lock);
248 /* continuous DMA memory type doesn't provide the physical address,
249 * so we need to resolve the address here...
250 */
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700251 offset = runtime->dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 for (i = 0, cp = rec->cmd.cmds; i < rec->nperiods; i++, cp++) {
David Gibsonf5718722015-02-03 16:36:21 +1100253 cp->phy_addr = cpu_to_le32(offset);
254 cp->req_count = cpu_to_le16(rec->period_size);
255 /*cp->res_count = cpu_to_le16(0);*/
256 cp->xfer_status = cpu_to_le16(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 offset += rec->period_size;
258 }
259 /* make loop */
David Gibsonf5718722015-02-03 16:36:21 +1100260 cp->command = cpu_to_le16(DBDMA_NOP + BR_ALWAYS);
261 cp->cmd_dep = cpu_to_le32(rec->cmd.addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 snd_pmac_dma_stop(rec);
264 snd_pmac_dma_set_command(rec, &rec->cmd);
265 spin_unlock_irq(&chip->reg_lock);
266
267 return 0;
268}
269
270
271/*
272 * PCM trigger/stop
273 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100274static int snd_pmac_pcm_trigger(struct snd_pmac *chip, struct pmac_stream *rec,
275 struct snd_pcm_substream *subs, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 volatile struct dbdma_cmd __iomem *cp;
278 int i, command;
279
280 switch (cmd) {
281 case SNDRV_PCM_TRIGGER_START:
282 case SNDRV_PCM_TRIGGER_RESUME:
283 if (rec->running)
284 return -EBUSY;
285 command = (subs->stream == SNDRV_PCM_STREAM_PLAYBACK ?
286 OUTPUT_MORE : INPUT_MORE) + INTR_ALWAYS;
287 spin_lock(&chip->reg_lock);
288 snd_pmac_beep_stop(chip);
289 snd_pmac_pcm_set_format(chip);
290 for (i = 0, cp = rec->cmd.cmds; i < rec->nperiods; i++, cp++)
291 out_le16(&cp->command, command);
292 snd_pmac_dma_set_command(rec, &rec->cmd);
293 (void)in_le32(&rec->dma->status);
294 snd_pmac_dma_run(rec, RUN|WAKE);
295 rec->running = 1;
296 spin_unlock(&chip->reg_lock);
297 break;
298
299 case SNDRV_PCM_TRIGGER_STOP:
300 case SNDRV_PCM_TRIGGER_SUSPEND:
301 spin_lock(&chip->reg_lock);
302 rec->running = 0;
Takashi Iwai6da67112009-02-05 16:02:46 +0100303 /*printk(KERN_DEBUG "stopped!!\n");*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 snd_pmac_dma_stop(rec);
305 for (i = 0, cp = rec->cmd.cmds; i < rec->nperiods; i++, cp++)
306 out_le16(&cp->command, DBDMA_STOP);
307 spin_unlock(&chip->reg_lock);
308 break;
309
310 default:
311 return -EINVAL;
312 }
313
314 return 0;
315}
316
317/*
318 * return the current pointer
319 */
320inline
Takashi Iwai65b29f52005-11-17 15:09:46 +0100321static snd_pcm_uframes_t snd_pmac_pcm_pointer(struct snd_pmac *chip,
322 struct pmac_stream *rec,
323 struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
325 int count = 0;
326
327#if 1 /* hmm.. how can we get the current dma pointer?? */
328 int stat;
329 volatile struct dbdma_cmd __iomem *cp = &rec->cmd.cmds[rec->cur_period];
David Gibsonf5718722015-02-03 16:36:21 +1100330 stat = le16_to_cpu(cp->xfer_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (stat & (ACTIVE|DEAD)) {
332 count = in_le16(&cp->res_count);
333 if (count)
334 count = rec->period_size - count;
335 }
336#endif
337 count += rec->cur_period * rec->period_size;
Takashi Iwai6da67112009-02-05 16:02:46 +0100338 /*printk(KERN_DEBUG "pointer=%d\n", count);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return bytes_to_frames(subs->runtime, count);
340}
341
342/*
343 * playback
344 */
345
Takashi Iwai65b29f52005-11-17 15:09:46 +0100346static int snd_pmac_playback_prepare(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100348 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 return snd_pmac_pcm_prepare(chip, &chip->playback, subs);
350}
351
Takashi Iwai65b29f52005-11-17 15:09:46 +0100352static int snd_pmac_playback_trigger(struct snd_pcm_substream *subs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 int cmd)
354{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100355 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return snd_pmac_pcm_trigger(chip, &chip->playback, subs, cmd);
357}
358
Takashi Iwai65b29f52005-11-17 15:09:46 +0100359static snd_pcm_uframes_t snd_pmac_playback_pointer(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100361 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return snd_pmac_pcm_pointer(chip, &chip->playback, subs);
363}
364
365
366/*
367 * capture
368 */
369
Takashi Iwai65b29f52005-11-17 15:09:46 +0100370static int snd_pmac_capture_prepare(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100372 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return snd_pmac_pcm_prepare(chip, &chip->capture, subs);
374}
375
Takashi Iwai65b29f52005-11-17 15:09:46 +0100376static int snd_pmac_capture_trigger(struct snd_pcm_substream *subs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 int cmd)
378{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100379 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return snd_pmac_pcm_trigger(chip, &chip->capture, subs, cmd);
381}
382
Takashi Iwai65b29f52005-11-17 15:09:46 +0100383static snd_pcm_uframes_t snd_pmac_capture_pointer(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100385 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return snd_pmac_pcm_pointer(chip, &chip->capture, subs);
387}
388
389
390/*
T. H. Huthe70515dd52008-01-16 15:57:08 +0100391 * Handle DEAD DMA transfers:
392 * if the TX status comes up "DEAD" - reported on some Power Computing machines
393 * we need to re-start the dbdma - but from a different physical start address
394 * and with a different transfer length. It would get very messy to do this
395 * with the normal dbdma_cmd blocks - we would have to re-write the buffer start
396 * addresses each time. So, we will keep a single dbdma_cmd block which can be
397 * fiddled with.
398 * When DEAD status is first reported the content of the faulted dbdma block is
399 * copied into the emergency buffer and we note that the buffer is in use.
400 * we then bump the start physical address by the amount that was successfully
401 * output before it died.
402 * On any subsequent DEAD result we just do the bump-ups (we know that we are
403 * already using the emergency dbdma_cmd).
404 * CHECK: this just tries to "do it". It is possible that we should abandon
405 * xfers when the number of residual bytes gets below a certain value - I can
406 * see that this might cause a loop-forever if a too small transfer causes
407 * DEAD status. However this is a TODO for now - we'll see what gets reported.
408 * When we get a successful transfer result with the emergency buffer we just
409 * pretend that it completed using the original dmdma_cmd and carry on. The
410 * 'next_cmd' field will already point back to the original loop of blocks.
411 */
412static inline void snd_pmac_pcm_dead_xfer(struct pmac_stream *rec,
413 volatile struct dbdma_cmd __iomem *cp)
414{
415 unsigned short req, res ;
416 unsigned int phy ;
417
418 /* printk(KERN_WARNING "snd-powermac: DMA died - patching it up!\n"); */
419
420 /* to clear DEAD status we must first clear RUN
421 set it to quiescent to be on the safe side */
422 (void)in_le32(&rec->dma->status);
423 out_le32(&rec->dma->control, (RUN|PAUSE|FLUSH|WAKE) << 16);
424
425 if (!emergency_in_use) { /* new problem */
426 memcpy((void *)emergency_dbdma.cmds, (void *)cp,
427 sizeof(struct dbdma_cmd));
428 emergency_in_use = 1;
David Gibsonf5718722015-02-03 16:36:21 +1100429 cp->xfer_status = cpu_to_le16(0);
430 cp->req_count = cpu_to_le16(rec->period_size);
T. H. Huthe70515dd52008-01-16 15:57:08 +0100431 cp = emergency_dbdma.cmds;
432 }
433
434 /* now bump the values to reflect the amount
435 we haven't yet shifted */
David Gibsonf5718722015-02-03 16:36:21 +1100436 req = le16_to_cpu(cp->req_count);
437 res = le16_to_cpu(cp->res_count);
438 phy = le32_to_cpu(cp->phy_addr);
T. H. Huthe70515dd52008-01-16 15:57:08 +0100439 phy += (req - res);
David Gibsonf5718722015-02-03 16:36:21 +1100440 cp->req_count = cpu_to_le16(res);
441 cp->res_count = cpu_to_le16(0);
442 cp->xfer_status = cpu_to_le16(0);
443 cp->phy_addr = cpu_to_le32(phy);
T. H. Huthe70515dd52008-01-16 15:57:08 +0100444
David Gibsonf5718722015-02-03 16:36:21 +1100445 cp->cmd_dep = cpu_to_le32(rec->cmd.addr
T. H. Huthe70515dd52008-01-16 15:57:08 +0100446 + sizeof(struct dbdma_cmd)*((rec->cur_period+1)%rec->nperiods));
447
David Gibsonf5718722015-02-03 16:36:21 +1100448 cp->command = cpu_to_le16(OUTPUT_MORE | BR_ALWAYS | INTR_ALWAYS);
T. H. Huthe70515dd52008-01-16 15:57:08 +0100449
450 /* point at our patched up command block */
451 out_le32(&rec->dma->cmdptr, emergency_dbdma.addr);
452
453 /* we must re-start the controller */
454 (void)in_le32(&rec->dma->status);
455 /* should complete clearing the DEAD status */
456 out_le32(&rec->dma->control, ((RUN|WAKE) << 16) + (RUN|WAKE));
457}
458
459/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 * update playback/capture pointer from interrupts
461 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100462static void snd_pmac_pcm_update(struct snd_pmac *chip, struct pmac_stream *rec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 volatile struct dbdma_cmd __iomem *cp;
465 int c;
466 int stat;
467
468 spin_lock(&chip->reg_lock);
469 if (rec->running) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 for (c = 0; c < rec->nperiods; c++) { /* at most all fragments */
T. H. Huthe70515dd52008-01-16 15:57:08 +0100471
472 if (emergency_in_use) /* already using DEAD xfer? */
473 cp = emergency_dbdma.cmds;
474 else
475 cp = &rec->cmd.cmds[rec->cur_period];
476
David Gibsonf5718722015-02-03 16:36:21 +1100477 stat = le16_to_cpu(cp->xfer_status);
T. H. Huthe70515dd52008-01-16 15:57:08 +0100478
479 if (stat & DEAD) {
480 snd_pmac_pcm_dead_xfer(rec, cp);
481 break; /* this block is still going */
482 }
483
484 if (emergency_in_use)
485 emergency_in_use = 0 ; /* done that */
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (! (stat & ACTIVE))
488 break;
T. H. Huthe70515dd52008-01-16 15:57:08 +0100489
Takashi Iwai6da67112009-02-05 16:02:46 +0100490 /*printk(KERN_DEBUG "update frag %d\n", rec->cur_period);*/
David Gibsonf5718722015-02-03 16:36:21 +1100491 cp->xfer_status = cpu_to_le16(0);
492 cp->req_count = cpu_to_le16(rec->period_size);
493 /*cp->res_count = cpu_to_le16(0);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 rec->cur_period++;
495 if (rec->cur_period >= rec->nperiods) {
496 rec->cur_period = 0;
T. H. Huthe70515dd52008-01-16 15:57:08 +0100497 }
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 spin_unlock(&chip->reg_lock);
500 snd_pcm_period_elapsed(rec->substream);
501 spin_lock(&chip->reg_lock);
502 }
503 }
504 spin_unlock(&chip->reg_lock);
505}
506
507
508/*
509 * hw info
510 */
511
Takashi Iwai65b29f52005-11-17 15:09:46 +0100512static struct snd_pcm_hardware snd_pmac_playback =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
514 .info = (SNDRV_PCM_INFO_INTERLEAVED |
515 SNDRV_PCM_INFO_MMAP |
516 SNDRV_PCM_INFO_MMAP_VALID |
517 SNDRV_PCM_INFO_RESUME),
518 .formats = SNDRV_PCM_FMTBIT_S16_BE | SNDRV_PCM_FMTBIT_S16_LE,
519 .rates = SNDRV_PCM_RATE_8000_44100,
520 .rate_min = 7350,
521 .rate_max = 44100,
522 .channels_min = 2,
523 .channels_max = 2,
524 .buffer_bytes_max = 131072,
525 .period_bytes_min = 256,
526 .period_bytes_max = 16384,
527 .periods_min = 3,
528 .periods_max = PMAC_MAX_FRAGS,
529};
530
Takashi Iwai65b29f52005-11-17 15:09:46 +0100531static struct snd_pcm_hardware snd_pmac_capture =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
533 .info = (SNDRV_PCM_INFO_INTERLEAVED |
534 SNDRV_PCM_INFO_MMAP |
535 SNDRV_PCM_INFO_MMAP_VALID |
536 SNDRV_PCM_INFO_RESUME),
537 .formats = SNDRV_PCM_FMTBIT_S16_BE | SNDRV_PCM_FMTBIT_S16_LE,
538 .rates = SNDRV_PCM_RATE_8000_44100,
539 .rate_min = 7350,
540 .rate_max = 44100,
541 .channels_min = 2,
542 .channels_max = 2,
543 .buffer_bytes_max = 131072,
544 .period_bytes_min = 256,
545 .period_bytes_max = 16384,
546 .periods_min = 3,
547 .periods_max = PMAC_MAX_FRAGS,
548};
549
550
551#if 0 // NYI
Takashi Iwai65b29f52005-11-17 15:09:46 +0100552static int snd_pmac_hw_rule_rate(struct snd_pcm_hw_params *params,
553 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100555 struct snd_pmac *chip = rule->private;
556 struct pmac_stream *rec = snd_pmac_get_stream(chip, rule->deps[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 int i, freq_table[8], num_freqs;
558
Takashi Iwai7c22f1a2005-10-10 11:46:31 +0200559 if (! rec)
560 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 num_freqs = 0;
562 for (i = chip->num_freqs - 1; i >= 0; i--) {
563 if (rec->cur_freqs & (1 << i))
564 freq_table[num_freqs++] = chip->freq_table[i];
565 }
566
567 return snd_interval_list(hw_param_interval(params, rule->var),
568 num_freqs, freq_table, 0);
569}
570
Takashi Iwai65b29f52005-11-17 15:09:46 +0100571static int snd_pmac_hw_rule_format(struct snd_pcm_hw_params *params,
572 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100574 struct snd_pmac *chip = rule->private;
575 struct pmac_stream *rec = snd_pmac_get_stream(chip, rule->deps[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Takashi Iwai7c22f1a2005-10-10 11:46:31 +0200577 if (! rec)
578 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return snd_mask_refine_set(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT),
580 rec->cur_formats);
581}
582#endif // NYI
583
Takashi Iwai65b29f52005-11-17 15:09:46 +0100584static int snd_pmac_pcm_open(struct snd_pmac *chip, struct pmac_stream *rec,
585 struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100587 struct snd_pcm_runtime *runtime = subs->runtime;
Clemens Ladisch918f3a02007-08-13 17:40:54 +0200588 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590 /* look up frequency table and fill bit mask */
591 runtime->hw.rates = 0;
Clemens Ladisch918f3a02007-08-13 17:40:54 +0200592 for (i = 0; i < chip->num_freqs; i++)
593 if (chip->freqs_ok & (1 << i))
594 runtime->hw.rates |=
595 snd_pcm_rate_to_rate_bit(chip->freq_table[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 /* check for minimum and maximum rates */
598 for (i = 0; i < chip->num_freqs; i++) {
599 if (chip->freqs_ok & (1 << i)) {
600 runtime->hw.rate_max = chip->freq_table[i];
601 break;
602 }
603 }
604 for (i = chip->num_freqs - 1; i >= 0; i--) {
605 if (chip->freqs_ok & (1 << i)) {
606 runtime->hw.rate_min = chip->freq_table[i];
607 break;
608 }
609 }
610 runtime->hw.formats = chip->formats_ok;
611 if (chip->can_capture) {
612 if (! chip->can_duplex)
613 runtime->hw.info |= SNDRV_PCM_INFO_HALF_DUPLEX;
614 runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
615 }
616 runtime->private_data = rec;
617 rec->substream = subs;
618
619#if 0 /* FIXME: still under development.. */
620 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
621 snd_pmac_hw_rule_rate, chip, rec->stream, -1);
622 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
623 snd_pmac_hw_rule_format, chip, rec->stream, -1);
624#endif
625
626 runtime->hw.periods_max = rec->cmd.size - 1;
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 /* constraints to fix choppy sound */
629 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
630 return 0;
631}
632
Takashi Iwai65b29f52005-11-17 15:09:46 +0100633static int snd_pmac_pcm_close(struct snd_pmac *chip, struct pmac_stream *rec,
634 struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100636 struct pmac_stream *astr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 snd_pmac_dma_stop(rec);
639
640 astr = snd_pmac_get_stream(chip, another_stream(rec->stream));
Takashi Iwai7c22f1a2005-10-10 11:46:31 +0200641 if (! astr)
642 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 /* reset constraints */
645 astr->cur_freqs = chip->freqs_ok;
646 astr->cur_formats = chip->formats_ok;
Risto Suominen946cda72008-04-16 13:16:05 +0200647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 return 0;
649}
650
Takashi Iwai65b29f52005-11-17 15:09:46 +0100651static int snd_pmac_playback_open(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100653 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 subs->runtime->hw = snd_pmac_playback;
656 return snd_pmac_pcm_open(chip, &chip->playback, subs);
657}
658
Takashi Iwai65b29f52005-11-17 15:09:46 +0100659static int snd_pmac_capture_open(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100661 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 subs->runtime->hw = snd_pmac_capture;
664 return snd_pmac_pcm_open(chip, &chip->capture, subs);
665}
666
Takashi Iwai65b29f52005-11-17 15:09:46 +0100667static int snd_pmac_playback_close(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100669 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 return snd_pmac_pcm_close(chip, &chip->playback, subs);
672}
673
Takashi Iwai65b29f52005-11-17 15:09:46 +0100674static int snd_pmac_capture_close(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100676 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 return snd_pmac_pcm_close(chip, &chip->capture, subs);
679}
680
681/*
682 */
683
Takashi Iwai65b29f52005-11-17 15:09:46 +0100684static struct snd_pcm_ops snd_pmac_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 .open = snd_pmac_playback_open,
686 .close = snd_pmac_playback_close,
687 .ioctl = snd_pcm_lib_ioctl,
688 .hw_params = snd_pmac_pcm_hw_params,
689 .hw_free = snd_pmac_pcm_hw_free,
690 .prepare = snd_pmac_playback_prepare,
691 .trigger = snd_pmac_playback_trigger,
692 .pointer = snd_pmac_playback_pointer,
693};
694
Takashi Iwai65b29f52005-11-17 15:09:46 +0100695static struct snd_pcm_ops snd_pmac_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 .open = snd_pmac_capture_open,
697 .close = snd_pmac_capture_close,
698 .ioctl = snd_pcm_lib_ioctl,
699 .hw_params = snd_pmac_pcm_hw_params,
700 .hw_free = snd_pmac_pcm_hw_free,
701 .prepare = snd_pmac_capture_prepare,
702 .trigger = snd_pmac_capture_trigger,
703 .pointer = snd_pmac_capture_pointer,
704};
705
Bill Pemberton15afafc2012-12-06 12:35:23 -0500706int snd_pmac_pcm_new(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100708 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 int err;
710 int num_captures = 1;
711
712 if (! chip->can_capture)
713 num_captures = 0;
714 err = snd_pcm_new(chip->card, chip->card->driver, 0, 1, num_captures, &pcm);
715 if (err < 0)
716 return err;
717
718 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_pmac_playback_ops);
719 if (chip->can_capture)
720 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_pmac_capture_ops);
721
722 pcm->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX;
724 strcpy(pcm->name, chip->card->shortname);
725 chip->pcm = pcm;
726
727 chip->formats_ok = SNDRV_PCM_FMTBIT_S16_BE;
728 if (chip->can_byte_swap)
729 chip->formats_ok |= SNDRV_PCM_FMTBIT_S16_LE;
730
731 chip->playback.cur_formats = chip->formats_ok;
732 chip->capture.cur_formats = chip->formats_ok;
733 chip->playback.cur_freqs = chip->freqs_ok;
734 chip->capture.cur_freqs = chip->freqs_ok;
735
736 /* preallocate 64k buffer */
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700737 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
738 &chip->pdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 64 * 1024, 64 * 1024);
740
741 return 0;
742}
743
744
Takashi Iwai65b29f52005-11-17 15:09:46 +0100745static void snd_pmac_dbdma_reset(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
747 out_le32(&chip->playback.dma->control, (RUN|PAUSE|FLUSH|WAKE|DEAD) << 16);
748 snd_pmac_wait_ack(&chip->playback);
749 out_le32(&chip->capture.dma->control, (RUN|PAUSE|FLUSH|WAKE|DEAD) << 16);
750 snd_pmac_wait_ack(&chip->capture);
751}
752
753
754/*
755 * handling beep
756 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100757void snd_pmac_beep_dma_start(struct snd_pmac *chip, int bytes, unsigned long addr, int speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100759 struct pmac_stream *rec = &chip->playback;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 snd_pmac_dma_stop(rec);
David Gibsonf5718722015-02-03 16:36:21 +1100762 chip->extra_dma.cmds->req_count = cpu_to_le16(bytes);
763 chip->extra_dma.cmds->xfer_status = cpu_to_le16(0);
764 chip->extra_dma.cmds->cmd_dep = cpu_to_le32(chip->extra_dma.addr);
765 chip->extra_dma.cmds->phy_addr = cpu_to_le32(addr);
766 chip->extra_dma.cmds->command = cpu_to_le16(OUTPUT_MORE + BR_ALWAYS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 out_le32(&chip->awacs->control,
768 (in_le32(&chip->awacs->control) & ~0x1f00)
769 | (speed << 8));
770 out_le32(&chip->awacs->byteswap, 0);
771 snd_pmac_dma_set_command(rec, &chip->extra_dma);
772 snd_pmac_dma_run(rec, RUN);
773}
774
Takashi Iwai65b29f52005-11-17 15:09:46 +0100775void snd_pmac_beep_dma_stop(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
777 snd_pmac_dma_stop(&chip->playback);
David Gibsonf5718722015-02-03 16:36:21 +1100778 chip->extra_dma.cmds->command = cpu_to_le16(DBDMA_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 snd_pmac_pcm_set_format(chip); /* reset format */
780}
781
782
783/*
784 * interrupt handlers
785 */
786static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100787snd_pmac_tx_intr(int irq, void *devid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100789 struct snd_pmac *chip = devid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 snd_pmac_pcm_update(chip, &chip->playback);
791 return IRQ_HANDLED;
792}
793
794
795static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100796snd_pmac_rx_intr(int irq, void *devid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100798 struct snd_pmac *chip = devid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 snd_pmac_pcm_update(chip, &chip->capture);
800 return IRQ_HANDLED;
801}
802
803
804static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100805snd_pmac_ctrl_intr(int irq, void *devid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100807 struct snd_pmac *chip = devid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 int ctrl = in_le32(&chip->awacs->control);
809
Takashi Iwai6da67112009-02-05 16:02:46 +0100810 /*printk(KERN_DEBUG "pmac: control interrupt.. 0x%x\n", ctrl);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (ctrl & MASK_PORTCHG) {
812 /* do something when headphone is plugged/unplugged? */
813 if (chip->update_automute)
814 chip->update_automute(chip, 1);
815 }
816 if (ctrl & MASK_CNTLERR) {
817 int err = (in_le32(&chip->awacs->codec_stat) & MASK_ERRCODE) >> 16;
818 if (err && chip->model <= PMAC_SCREAMER)
819 snd_printk(KERN_DEBUG "error %x\n", err);
820 }
821 /* Writing 1s to the CNTLERR and PORTCHG bits clears them... */
822 out_le32(&chip->awacs->control, ctrl);
823 return IRQ_HANDLED;
824}
825
826
827/*
828 * a wrapper to feature call for compatibility
829 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100830static void snd_pmac_sound_feature(struct snd_pmac *chip, int enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
David Woodhouse4e6a06ee2005-08-17 11:36:35 +0100832 if (ppc_md.feature_call)
833 ppc_md.feature_call(PMAC_FTR_SOUND_CHIP_ENABLE, chip->node, 0, enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836/*
837 * release resources
838 */
839
Takashi Iwai65b29f52005-11-17 15:09:46 +0100840static int snd_pmac_free(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 /* stop sounds */
843 if (chip->initialized) {
844 snd_pmac_dbdma_reset(chip);
845 /* disable interrupts from awacs interface */
846 out_le32(&chip->awacs->control, in_le32(&chip->awacs->control) & 0xfff);
847 }
848
Benjamin Herrenschmidt41e904d2007-06-19 14:37:39 +1000849 if (chip->node)
850 snd_pmac_sound_feature(chip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 /* clean up mixer if any */
853 if (chip->mixer_free)
854 chip->mixer_free(chip);
855
856 snd_pmac_detach_beep(chip);
857
858 /* release resources */
859 if (chip->irq >= 0)
860 free_irq(chip->irq, (void*)chip);
861 if (chip->tx_irq >= 0)
862 free_irq(chip->tx_irq, (void*)chip);
863 if (chip->rx_irq >= 0)
864 free_irq(chip->rx_irq, (void*)chip);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700865 snd_pmac_dbdma_free(chip, &chip->playback.cmd);
866 snd_pmac_dbdma_free(chip, &chip->capture.cmd);
867 snd_pmac_dbdma_free(chip, &chip->extra_dma);
T. H. Huthe70515dd52008-01-16 15:57:08 +0100868 snd_pmac_dbdma_free(chip, &emergency_dbdma);
Markus Elfringff6defa2015-01-03 22:55:54 +0100869 iounmap(chip->macio_base);
870 iounmap(chip->latch_base);
871 iounmap(chip->awacs);
872 iounmap(chip->playback.dma);
873 iounmap(chip->capture.dma);
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 if (chip->node) {
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700876 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 for (i = 0; i < 3; i++) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100878 if (chip->requested & (1 << i))
879 release_mem_region(chip->rsrc[i].start,
Joe Perches28f65c112011-06-09 09:13:32 -0700880 resource_size(&chip->rsrc[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
882 }
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100883
Markus Elfring1ea7a562014-11-17 13:35:54 +0100884 pci_dev_put(chip->pdev);
Stephen Rothwell30686ba2007-04-24 13:53:04 +1000885 of_node_put(chip->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 kfree(chip);
887 return 0;
888}
889
890
891/*
892 * free the device
893 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100894static int snd_pmac_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100896 struct snd_pmac *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 return snd_pmac_free(chip);
898}
899
900
901/*
902 * check the machine support byteswap (little-endian)
903 */
904
Bill Pemberton15afafc2012-12-06 12:35:23 -0500905static void detect_byte_swap(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
907 struct device_node *mio;
908
909 /* if seems that Keylargo can't byte-swap */
910 for (mio = chip->node->parent; mio; mio = mio->parent) {
911 if (strcmp(mio->name, "mac-io") == 0) {
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000912 if (of_device_is_compatible(mio, "Keylargo"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 chip->can_byte_swap = 0;
914 break;
915 }
916 }
917
918 /* it seems the Pismo & iBook can't byte-swap in hardware. */
Grant Likely71a157e2010-02-01 21:34:14 -0700919 if (of_machine_is_compatible("PowerBook3,1") ||
920 of_machine_is_compatible("PowerBook2,1"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 chip->can_byte_swap = 0 ;
922
Grant Likely71a157e2010-02-01 21:34:14 -0700923 if (of_machine_is_compatible("PowerBook2,1"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 chip->can_duplex = 0;
925}
926
927
928/*
929 * detect a sound chip
930 */
Bill Pemberton15afafc2012-12-06 12:35:23 -0500931static int snd_pmac_detect(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
Stephen Rothwell30686ba2007-04-24 13:53:04 +1000933 struct device_node *sound;
934 struct device_node *dn;
Stephen Rothwellc4f55b32007-04-03 22:39:14 +1000935 const unsigned int *prop;
936 unsigned int l;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700937 struct macio_chip* macio;
938
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100939 if (!machine_is(powermac))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 return -ENODEV;
941
942 chip->subframe = 0;
943 chip->revision = 0;
944 chip->freqs_ok = 0xff; /* all ok */
945 chip->model = PMAC_AWACS;
946 chip->can_byte_swap = 1;
947 chip->can_duplex = 1;
948 chip->can_capture = 1;
949 chip->num_freqs = ARRAY_SIZE(awacs_freqs);
950 chip->freq_table = awacs_freqs;
Benjamin Herrenschmidt367636e2006-02-08 15:04:18 +1100951 chip->pdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 chip->control_mask = MASK_IEPC | MASK_IEE | 0x11; /* default */
954
955 /* check machine type */
Grant Likely71a157e2010-02-01 21:34:14 -0700956 if (of_machine_is_compatible("AAPL,3400/2400")
957 || of_machine_is_compatible("AAPL,3500"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 chip->is_pbook_3400 = 1;
Grant Likely71a157e2010-02-01 21:34:14 -0700959 else if (of_machine_is_compatible("PowerBook1,1")
960 || of_machine_is_compatible("AAPL,PowerBook1998"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 chip->is_pbook_G3 = 1;
Stephen Rothwell30686ba2007-04-24 13:53:04 +1000962 chip->node = of_find_node_by_name(NULL, "awacs");
963 sound = of_node_get(chip->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 /*
966 * powermac G3 models have a node called "davbus"
967 * with a child called "sound".
968 */
Benjamin Herrenschmidt52180642005-05-18 16:31:51 +0200969 if (!chip->node)
Stephen Rothwell30686ba2007-04-24 13:53:04 +1000970 chip->node = of_find_node_by_name(NULL, "davbus");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 /*
972 * if we didn't find a davbus device, try 'i2s-a' since
973 * this seems to be what iBooks have
974 */
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700975 if (! chip->node) {
Stephen Rothwell30686ba2007-04-24 13:53:04 +1000976 chip->node = of_find_node_by_name(NULL, "i2s-a");
Benjamin Herrenschmidt52180642005-05-18 16:31:51 +0200977 if (chip->node && chip->node->parent &&
978 chip->node->parent->parent) {
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000979 if (of_device_is_compatible(chip->node->parent->parent,
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700980 "K2-Keylargo"))
981 chip->is_k2 = 1;
982 }
983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (! chip->node)
985 return -ENODEV;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700986
Benjamin Herrenschmidt52180642005-05-18 16:31:51 +0200987 if (!sound) {
Grant Likelyccdb8ed2014-06-04 16:42:26 +0100988 for_each_node_by_name(sound, "sound")
989 if (sound->parent == chip->node)
990 break;
Benjamin Herrenschmidt52180642005-05-18 16:31:51 +0200991 }
Stephen Rothwell30686ba2007-04-24 13:53:04 +1000992 if (! sound) {
993 of_node_put(chip->node);
Benjamin Herrenschmidt41e904d2007-06-19 14:37:39 +1000994 chip->node = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return -ENODEV;
Stephen Rothwell30686ba2007-04-24 13:53:04 +1000996 }
Stephen Rothwellc4f55b32007-04-03 22:39:14 +1000997 prop = of_get_property(sound, "sub-frame", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (prop && *prop < 16)
999 chip->subframe = *prop;
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001000 prop = of_get_property(sound, "layout-id", NULL);
Johannes Berg55c385a2006-06-21 15:43:44 +02001001 if (prop) {
1002 /* partly deprecate snd-powermac, for those machines
1003 * that have a layout-id property for now */
1004 printk(KERN_INFO "snd-powermac no longer handles any "
1005 "machines with a layout-id property "
1006 "in the device-tree, use snd-aoa.\n");
Benjamin Herrenschmidt41e904d2007-06-19 14:37:39 +10001007 of_node_put(sound);
Stephen Rothwell30686ba2007-04-24 13:53:04 +10001008 of_node_put(chip->node);
Benjamin Herrenschmidt41e904d2007-06-19 14:37:39 +10001009 chip->node = NULL;
Johannes Berg55c385a2006-06-21 15:43:44 +02001010 return -ENODEV;
1011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 /* This should be verified on older screamers */
Stephen Rothwell55b61fe2007-05-03 17:26:52 +10001013 if (of_device_is_compatible(sound, "screamer")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 chip->model = PMAC_SCREAMER;
1015 // chip->can_byte_swap = 0; /* FIXME: check this */
1016 }
Stephen Rothwell55b61fe2007-05-03 17:26:52 +10001017 if (of_device_is_compatible(sound, "burgundy")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 chip->model = PMAC_BURGUNDY;
1019 chip->control_mask = MASK_IEPC | 0x11; /* disable IEE */
1020 }
Stephen Rothwell55b61fe2007-05-03 17:26:52 +10001021 if (of_device_is_compatible(sound, "daca")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 chip->model = PMAC_DACA;
1023 chip->can_capture = 0; /* no capture */
1024 chip->can_duplex = 0;
1025 // chip->can_byte_swap = 0; /* FIXME: check this */
1026 chip->control_mask = MASK_IEPC | 0x11; /* disable IEE */
1027 }
Stephen Rothwell55b61fe2007-05-03 17:26:52 +10001028 if (of_device_is_compatible(sound, "tumbler")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 chip->model = PMAC_TUMBLER;
Grant Likely71a157e2010-02-01 21:34:14 -07001030 chip->can_capture = of_machine_is_compatible("PowerMac4,2")
Risto Suominen8460ae72011-02-28 10:38:45 +02001031 || of_machine_is_compatible("PowerBook3,2")
1032 || of_machine_is_compatible("PowerBook3,3")
1033 || of_machine_is_compatible("PowerBook4,1")
1034 || of_machine_is_compatible("PowerBook4,2")
1035 || of_machine_is_compatible("PowerBook4,3");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 chip->can_duplex = 0;
1037 // chip->can_byte_swap = 0; /* FIXME: check this */
1038 chip->num_freqs = ARRAY_SIZE(tumbler_freqs);
1039 chip->freq_table = tumbler_freqs;
1040 chip->control_mask = MASK_IEPC | 0x11; /* disable IEE */
1041 }
Stephen Rothwell55b61fe2007-05-03 17:26:52 +10001042 if (of_device_is_compatible(sound, "snapper")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 chip->model = PMAC_SNAPPER;
1044 // chip->can_byte_swap = 0; /* FIXME: check this */
1045 chip->num_freqs = ARRAY_SIZE(tumbler_freqs);
1046 chip->freq_table = tumbler_freqs;
1047 chip->control_mask = MASK_IEPC | 0x11; /* disable IEE */
1048 }
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001049 prop = of_get_property(sound, "device-id", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 if (prop)
1051 chip->device_id = *prop;
Stephen Rothwell30686ba2007-04-24 13:53:04 +10001052 dn = of_find_node_by_name(NULL, "perch");
1053 chip->has_iic = (dn != NULL);
1054 of_node_put(dn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001056 /* We need the PCI device for DMA allocations, let's use a crude method
1057 * for now ...
1058 */
1059 macio = macio_find(chip->node, macio_unknown);
1060 if (macio == NULL)
1061 printk(KERN_WARNING "snd-powermac: can't locate macio !\n");
1062 else {
1063 struct pci_dev *pdev = NULL;
1064
1065 for_each_pci_dev(pdev) {
1066 struct device_node *np = pci_device_to_OF_node(pdev);
1067 if (np && np == macio->of_node) {
1068 chip->pdev = pdev;
1069 break;
1070 }
1071 }
1072 }
1073 if (chip->pdev == NULL)
Benjamin Herrenschmidt52180642005-05-18 16:31:51 +02001074 printk(KERN_WARNING "snd-powermac: can't locate macio PCI"
1075 " device !\n");
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 detect_byte_swap(chip);
1078
1079 /* look for a property saying what sample rates
1080 are available */
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001081 prop = of_get_property(sound, "sample-rates", &l);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (! prop)
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001083 prop = of_get_property(sound, "output-frame-rates", &l);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (prop) {
1085 int i;
1086 chip->freqs_ok = 0;
1087 for (l /= sizeof(int); l > 0; --l) {
1088 unsigned int r = *prop++;
1089 /* Apple 'Fixed' format */
1090 if (r >= 0x10000)
1091 r >>= 16;
1092 for (i = 0; i < chip->num_freqs; ++i) {
1093 if (r == chip->freq_table[i]) {
1094 chip->freqs_ok |= (1 << i);
1095 break;
1096 }
1097 }
1098 }
1099 } else {
1100 /* assume only 44.1khz */
1101 chip->freqs_ok = 1;
1102 }
1103
Stephen Rothwell30686ba2007-04-24 13:53:04 +10001104 of_node_put(sound);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return 0;
1106}
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108#ifdef PMAC_SUPPORT_AUTOMUTE
1109/*
1110 * auto-mute
1111 */
Takashi Iwai65b29f52005-11-17 15:09:46 +01001112static int pmac_auto_mute_get(struct snd_kcontrol *kcontrol,
1113 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
Takashi Iwai65b29f52005-11-17 15:09:46 +01001115 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 ucontrol->value.integer.value[0] = chip->auto_mute;
1117 return 0;
1118}
1119
Takashi Iwai65b29f52005-11-17 15:09:46 +01001120static int pmac_auto_mute_put(struct snd_kcontrol *kcontrol,
1121 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
Takashi Iwai65b29f52005-11-17 15:09:46 +01001123 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if (ucontrol->value.integer.value[0] != chip->auto_mute) {
Takashi Iwaid4079ac2007-11-15 16:14:12 +01001125 chip->auto_mute = !!ucontrol->value.integer.value[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 if (chip->update_automute)
1127 chip->update_automute(chip, 1);
1128 return 1;
1129 }
1130 return 0;
1131}
1132
Takashi Iwai65b29f52005-11-17 15:09:46 +01001133static int pmac_hp_detect_get(struct snd_kcontrol *kcontrol,
1134 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
Takashi Iwai65b29f52005-11-17 15:09:46 +01001136 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 if (chip->detect_headphone)
1138 ucontrol->value.integer.value[0] = chip->detect_headphone(chip);
1139 else
1140 ucontrol->value.integer.value[0] = 0;
1141 return 0;
1142}
1143
Bill Pemberton15afafc2012-12-06 12:35:23 -05001144static struct snd_kcontrol_new auto_mute_controls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1146 .name = "Auto Mute Switch",
1147 .info = snd_pmac_boolean_mono_info,
1148 .get = pmac_auto_mute_get,
1149 .put = pmac_auto_mute_put,
1150 },
1151 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1152 .name = "Headphone Detection",
1153 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1154 .info = snd_pmac_boolean_mono_info,
1155 .get = pmac_hp_detect_get,
1156 },
1157};
1158
Bill Pemberton15afafc2012-12-06 12:35:23 -05001159int snd_pmac_add_automute(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
1161 int err;
1162 chip->auto_mute = 1;
1163 err = snd_ctl_add(chip->card, snd_ctl_new1(&auto_mute_controls[0], chip));
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001164 if (err < 0) {
1165 printk(KERN_ERR "snd-powermac: Failed to add automute control\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 return err;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 chip->hp_detect_ctl = snd_ctl_new1(&auto_mute_controls[1], chip);
1169 return snd_ctl_add(chip->card, chip->hp_detect_ctl);
1170}
1171#endif /* PMAC_SUPPORT_AUTOMUTE */
1172
1173/*
1174 * create and detect a pmac chip record
1175 */
Bill Pemberton15afafc2012-12-06 12:35:23 -05001176int snd_pmac_new(struct snd_card *card, struct snd_pmac **chip_return)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
Takashi Iwai65b29f52005-11-17 15:09:46 +01001178 struct snd_pmac *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 struct device_node *np;
1180 int i, err;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001181 unsigned int irq;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001182 unsigned long ctrl_addr, txdma_addr, rxdma_addr;
Takashi Iwai65b29f52005-11-17 15:09:46 +01001183 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 .dev_free = snd_pmac_dev_free,
1185 };
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 *chip_return = NULL;
1188
Takashi Iwai561b2202005-09-09 14:22:34 +02001189 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 if (chip == NULL)
1191 return -ENOMEM;
1192 chip->card = card;
1193
1194 spin_lock_init(&chip->reg_lock);
1195 chip->irq = chip->tx_irq = chip->rx_irq = -1;
1196
1197 chip->playback.stream = SNDRV_PCM_STREAM_PLAYBACK;
1198 chip->capture.stream = SNDRV_PCM_STREAM_CAPTURE;
1199
1200 if ((err = snd_pmac_detect(chip)) < 0)
1201 goto __error;
1202
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001203 if (snd_pmac_dbdma_alloc(chip, &chip->playback.cmd, PMAC_MAX_FRAGS + 1) < 0 ||
1204 snd_pmac_dbdma_alloc(chip, &chip->capture.cmd, PMAC_MAX_FRAGS + 1) < 0 ||
T. H. Huthe70515dd52008-01-16 15:57:08 +01001205 snd_pmac_dbdma_alloc(chip, &chip->extra_dma, 2) < 0 ||
1206 snd_pmac_dbdma_alloc(chip, &emergency_dbdma, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 err = -ENOMEM;
1208 goto __error;
1209 }
1210
1211 np = chip->node;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001212 chip->requested = 0;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001213 if (chip->is_k2) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001214 static char *rnames[] = {
1215 "Sound Control", "Sound DMA" };
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001216 for (i = 0; i < 2; i ++) {
1217 if (of_address_to_resource(np->parent, i,
1218 &chip->rsrc[i])) {
1219 printk(KERN_ERR "snd: can't translate rsrc "
1220 " %d (%s)\n", i, rnames[i]);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001221 err = -ENODEV;
1222 goto __error;
1223 }
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001224 if (request_mem_region(chip->rsrc[i].start,
Joe Perches28f65c112011-06-09 09:13:32 -07001225 resource_size(&chip->rsrc[i]),
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001226 rnames[i]) == NULL) {
1227 printk(KERN_ERR "snd: can't request rsrc "
Joe Perches2fb50f12010-11-12 13:38:04 -08001228 " %d (%s: %pR)\n",
1229 i, rnames[i], &chip->rsrc[i]);
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001230 err = -ENODEV;
1231 goto __error;
1232 }
1233 chip->requested |= (1 << i);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001234 }
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001235 ctrl_addr = chip->rsrc[0].start;
1236 txdma_addr = chip->rsrc[1].start;
1237 rxdma_addr = txdma_addr + 0x100;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001238 } else {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001239 static char *rnames[] = {
1240 "Sound Control", "Sound Tx DMA", "Sound Rx DMA" };
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001241 for (i = 0; i < 3; i ++) {
Benjamin Herrenschmidt88356e92006-02-01 03:04:43 -08001242 if (of_address_to_resource(np, i,
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001243 &chip->rsrc[i])) {
1244 printk(KERN_ERR "snd: can't translate rsrc "
1245 " %d (%s)\n", i, rnames[i]);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001246 err = -ENODEV;
1247 goto __error;
1248 }
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001249 if (request_mem_region(chip->rsrc[i].start,
Joe Perches28f65c112011-06-09 09:13:32 -07001250 resource_size(&chip->rsrc[i]),
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001251 rnames[i]) == NULL) {
1252 printk(KERN_ERR "snd: can't request rsrc "
Joe Perches2fb50f12010-11-12 13:38:04 -08001253 " %d (%s: %pR)\n",
1254 i, rnames[i], &chip->rsrc[i]);
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001255 err = -ENODEV;
1256 goto __error;
1257 }
1258 chip->requested |= (1 << i);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001259 }
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001260 ctrl_addr = chip->rsrc[0].start;
1261 txdma_addr = chip->rsrc[1].start;
1262 rxdma_addr = chip->rsrc[2].start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 }
1264
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001265 chip->awacs = ioremap(ctrl_addr, 0x1000);
1266 chip->playback.dma = ioremap(txdma_addr, 0x100);
1267 chip->capture.dma = ioremap(rxdma_addr, 0x100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (chip->model <= PMAC_BURGUNDY) {
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001269 irq = irq_of_parse_and_map(np, 0);
1270 if (request_irq(irq, snd_pmac_ctrl_intr, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 "PMac", (void*)chip)) {
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001272 snd_printk(KERN_ERR "pmac: unable to grab IRQ %d\n",
1273 irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 err = -EBUSY;
1275 goto __error;
1276 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001277 chip->irq = irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001279 irq = irq_of_parse_and_map(np, 1);
1280 if (request_irq(irq, snd_pmac_tx_intr, 0, "PMac Output", (void*)chip)){
1281 snd_printk(KERN_ERR "pmac: unable to grab IRQ %d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 err = -EBUSY;
1283 goto __error;
1284 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001285 chip->tx_irq = irq;
1286 irq = irq_of_parse_and_map(np, 2);
1287 if (request_irq(irq, snd_pmac_rx_intr, 0, "PMac Input", (void*)chip)) {
1288 snd_printk(KERN_ERR "pmac: unable to grab IRQ %d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 err = -EBUSY;
1290 goto __error;
1291 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001292 chip->rx_irq = irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 snd_pmac_sound_feature(chip, 1);
1295
Risto Suominen9a4f20f2008-04-16 13:15:38 +02001296 /* reset & enable interrupts */
1297 if (chip->model <= PMAC_BURGUNDY)
1298 out_le32(&chip->awacs->control, chip->control_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 /* Powerbooks have odd ways of enabling inputs such as
1301 an expansion-bay CD or sound from an internal modem
1302 or a PC-card modem. */
1303 if (chip->is_pbook_3400) {
1304 /* Enable CD and PC-card sound inputs. */
1305 /* This is done by reading from address
1306 * f301a000, + 0x10 to enable the expansion-bay
1307 * CD sound input, + 0x80 to enable the PC-card
1308 * sound input. The 0x100 enables the SCSI bus
1309 * terminator power.
1310 */
1311 chip->latch_base = ioremap (0xf301a000, 0x1000);
1312 in_8(chip->latch_base + 0x190);
1313 } else if (chip->is_pbook_G3) {
1314 struct device_node* mio;
1315 for (mio = chip->node->parent; mio; mio = mio->parent) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001316 if (strcmp(mio->name, "mac-io") == 0) {
1317 struct resource r;
1318 if (of_address_to_resource(mio, 0, &r) == 0)
1319 chip->macio_base =
1320 ioremap(r.start, 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 break;
1322 }
1323 }
1324 /* Enable CD sound input. */
1325 /* The relevant bits for writing to this byte are 0x8f.
1326 * I haven't found out what the 0x80 bit does.
1327 * For the 0xf bits, writing 3 or 7 enables the CD
1328 * input, any other value disables it. Values
1329 * 1, 3, 5, 7 enable the microphone. Values 0, 2,
1330 * 4, 6, 8 - f enable the input from the modem.
1331 */
1332 if (chip->macio_base)
1333 out_8(chip->macio_base + 0x37, 3);
1334 }
1335
1336 /* Reset dbdma channels */
1337 snd_pmac_dbdma_reset(chip);
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0)
1340 goto __error;
1341
1342 *chip_return = chip;
1343 return 0;
1344
1345 __error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 snd_pmac_free(chip);
1347 return err;
1348}
1349
1350
1351/*
1352 * sleep notify for powerbook
1353 */
1354
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -07001355#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357/*
1358 * Save state when going to sleep, restore it afterwards.
1359 */
1360
Takashi Iwai5e12bea2005-11-17 17:17:08 +01001361void snd_pmac_suspend(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 unsigned long flags;
1364
Takashi Iwai5e12bea2005-11-17 17:17:08 +01001365 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 if (chip->suspend)
1367 chip->suspend(chip);
1368 snd_pcm_suspend_all(chip->pcm);
1369 spin_lock_irqsave(&chip->reg_lock, flags);
1370 snd_pmac_beep_stop(chip);
1371 spin_unlock_irqrestore(&chip->reg_lock, flags);
1372 if (chip->irq >= 0)
1373 disable_irq(chip->irq);
1374 if (chip->tx_irq >= 0)
1375 disable_irq(chip->tx_irq);
1376 if (chip->rx_irq >= 0)
1377 disable_irq(chip->rx_irq);
1378 snd_pmac_sound_feature(chip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379}
1380
Takashi Iwai5e12bea2005-11-17 17:17:08 +01001381void snd_pmac_resume(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 snd_pmac_sound_feature(chip, 1);
1384 if (chip->resume)
1385 chip->resume(chip);
1386 /* enable CD sound input */
Takashi Iwai5e12bea2005-11-17 17:17:08 +01001387 if (chip->macio_base && chip->is_pbook_G3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 out_8(chip->macio_base + 0x37, 3);
Takashi Iwai5e12bea2005-11-17 17:17:08 +01001389 else if (chip->is_pbook_3400)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 in_8(chip->latch_base + 0x190);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 snd_pmac_pcm_set_format(chip);
1393
1394 if (chip->irq >= 0)
1395 enable_irq(chip->irq);
1396 if (chip->tx_irq >= 0)
1397 enable_irq(chip->tx_irq);
1398 if (chip->rx_irq >= 0)
1399 enable_irq(chip->rx_irq);
1400
Takashi Iwai5e12bea2005-11-17 17:17:08 +01001401 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402}
1403
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -07001404#endif /* CONFIG_PM */
1405