blob: 1b11e53f6a629dca9507b64adbef57aecb9bc099 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * PMac DBDMA lowlevel functions
4 *
5 * Copyright (c) by Takashi Iwai <tiwai@suse.de>
6 * code based on dmasound.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
9
Takashi Iwai6cbbfe12015-01-28 16:49:33 +010010#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <asm/irq.h>
12#include <linux/init.h>
13#include <linux/delay.h>
14#include <linux/slab.h>
15#include <linux/interrupt.h>
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -070016#include <linux/pci.h>
17#include <linux/dma-mapping.h>
Rob Herring5af50732013-09-17 14:28:33 -050018#include <linux/of_address.h>
19#include <linux/of_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <sound/core.h>
21#include "pmac.h"
22#include <sound/pcm_params.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/pmac_feature.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026/* fixed frequency table for awacs, screamer, burgundy, DACA (44100 max) */
27static int awacs_freqs[8] = {
28 44100, 29400, 22050, 17640, 14700, 11025, 8820, 7350
29};
30/* fixed frequency table for tumbler */
31static int tumbler_freqs[1] = {
32 44100
33};
34
T. H. Huthe70515dd52008-01-16 15:57:08 +010035
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 */
43static struct pmac_dbdma emergency_dbdma;
44static int emergency_in_use;
45
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/*
48 * allocate DBDMA command arrays
49 */
Takashi Iwai65b29f52005-11-17 15:09:46 +010050static int snd_pmac_dbdma_alloc(struct snd_pmac *chip, struct pmac_dbdma *rec, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -070052 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 if (rec->space == NULL)
57 return -ENOMEM;
58 rec->size = size;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -070059 memset(rec->space, 0, rsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 rec->cmds = (void __iomem *)DBDMA_ALIGN(rec->space);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -070061 rec->addr = rec->dma_base + (unsigned long)((char *)rec->cmds - (char *)rec->space);
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 return 0;
64}
65
Takashi Iwai65b29f52005-11-17 15:09:46 +010066static void snd_pmac_dbdma_free(struct snd_pmac *chip, struct pmac_dbdma *rec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Benjamin Herrenschmidt367636e2006-02-08 15:04:18 +110068 if (rec->space) {
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -070069 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
75
76/*
77 * pcm stuff
78 */
79
80/*
81 * look up frequency table
82 */
83
Takashi Iwai65b29f52005-11-17 15:09:46 +010084unsigned int snd_pmac_rate_index(struct snd_pmac *chip, struct pmac_stream *rec, unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
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 */
104static 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 * allocate buffers
112 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100113static int snd_pmac_pcm_hw_params(struct snd_pcm_substream *subs,
114 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 return snd_pcm_lib_malloc_pages(subs, params_buffer_bytes(hw_params));
117}
118
119/*
120 * release buffers
121 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100122static int snd_pmac_pcm_hw_free(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 snd_pcm_lib_free_pages(subs);
125 return 0;
126}
127
128/*
129 * get a stream of the opposite direction
130 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100131static struct pmac_stream *snd_pmac_get_stream(struct snd_pmac *chip, int stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 switch (stream) {
134 case SNDRV_PCM_STREAM_PLAYBACK:
135 return &chip->playback;
136 case SNDRV_PCM_STREAM_CAPTURE:
137 return &chip->capture;
138 default:
139 snd_BUG();
140 return NULL;
141 }
142}
143
144/*
145 * wait while run status is on
146 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700147static inline void
Takashi Iwai65b29f52005-11-17 15:09:46 +0100148snd_pmac_wait_ack(struct pmac_stream *rec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 int timeout = 50000;
151 while ((in_le32(&rec->dma->status) & RUN) && timeout-- > 0)
152 udelay(1);
153}
154
155/*
156 * set the format and rate to the chip.
157 * call the lowlevel function if defined (e.g. for AWACS).
158 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100159static void snd_pmac_pcm_set_format(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 /* set up frequency and format */
162 out_le32(&chip->awacs->control, chip->control_mask | (chip->rate_index << 8));
163 out_le32(&chip->awacs->byteswap, chip->format == SNDRV_PCM_FORMAT_S16_LE ? 1 : 0);
164 if (chip->set_format)
165 chip->set_format(chip);
166}
167
168/*
169 * stop the DMA transfer
170 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100171static inline void snd_pmac_dma_stop(struct pmac_stream *rec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 out_le32(&rec->dma->control, (RUN|WAKE|FLUSH|PAUSE) << 16);
174 snd_pmac_wait_ack(rec);
175}
176
177/*
178 * set the command pointer address
179 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100180static inline void snd_pmac_dma_set_command(struct pmac_stream *rec, struct pmac_dbdma *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
182 out_le32(&rec->dma->cmdptr, cmd->addr);
183}
184
185/*
186 * start the DMA
187 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100188static inline void snd_pmac_dma_run(struct pmac_stream *rec, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 out_le32(&rec->dma->control, status | (status << 16));
191}
192
193
194/*
195 * prepare playback/capture stream
196 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100197static 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 -0700198{
199 int i;
200 volatile struct dbdma_cmd __iomem *cp;
Takashi Iwai65b29f52005-11-17 15:09:46 +0100201 struct snd_pcm_runtime *runtime = subs->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 int rate_index;
203 long offset;
Takashi Iwai65b29f52005-11-17 15:09:46 +0100204 struct pmac_stream *astr;
Risto Suominen946cda72008-04-16 13:16:05 +0200205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 rec->dma_size = snd_pcm_lib_buffer_bytes(subs);
207 rec->period_size = snd_pcm_lib_period_bytes(subs);
208 rec->nperiods = rec->dma_size / rec->period_size;
209 rec->cur_period = 0;
210 rate_index = snd_pmac_rate_index(chip, rec, runtime->rate);
211
212 /* set up constraints */
213 astr = snd_pmac_get_stream(chip, another_stream(rec->stream));
Takashi Iwai7c22f1a2005-10-10 11:46:31 +0200214 if (! astr)
215 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 astr->cur_freqs = 1 << rate_index;
217 astr->cur_formats = 1 << runtime->format;
218 chip->rate_index = rate_index;
219 chip->format = runtime->format;
220
221 /* We really want to execute a DMA stop command, after the AWACS
222 * is initialized.
223 * For reasons I don't understand, it stops the hissing noise
224 * common to many PowerBook G3 systems and random noise otherwise
225 * captured on iBook2's about every third time. -ReneR
226 */
227 spin_lock_irq(&chip->reg_lock);
228 snd_pmac_dma_stop(rec);
David Gibsonf5718722015-02-03 16:36:21 +1100229 chip->extra_dma.cmds->command = cpu_to_le16(DBDMA_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 snd_pmac_dma_set_command(rec, &chip->extra_dma);
231 snd_pmac_dma_run(rec, RUN);
232 spin_unlock_irq(&chip->reg_lock);
233 mdelay(5);
234 spin_lock_irq(&chip->reg_lock);
235 /* continuous DMA memory type doesn't provide the physical address,
236 * so we need to resolve the address here...
237 */
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700238 offset = runtime->dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 for (i = 0, cp = rec->cmd.cmds; i < rec->nperiods; i++, cp++) {
David Gibsonf5718722015-02-03 16:36:21 +1100240 cp->phy_addr = cpu_to_le32(offset);
241 cp->req_count = cpu_to_le16(rec->period_size);
242 /*cp->res_count = cpu_to_le16(0);*/
243 cp->xfer_status = cpu_to_le16(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 offset += rec->period_size;
245 }
246 /* make loop */
David Gibsonf5718722015-02-03 16:36:21 +1100247 cp->command = cpu_to_le16(DBDMA_NOP + BR_ALWAYS);
248 cp->cmd_dep = cpu_to_le32(rec->cmd.addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 snd_pmac_dma_stop(rec);
251 snd_pmac_dma_set_command(rec, &rec->cmd);
252 spin_unlock_irq(&chip->reg_lock);
253
254 return 0;
255}
256
257
258/*
259 * PCM trigger/stop
260 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100261static int snd_pmac_pcm_trigger(struct snd_pmac *chip, struct pmac_stream *rec,
262 struct snd_pcm_substream *subs, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
264 volatile struct dbdma_cmd __iomem *cp;
265 int i, command;
266
267 switch (cmd) {
268 case SNDRV_PCM_TRIGGER_START:
269 case SNDRV_PCM_TRIGGER_RESUME:
270 if (rec->running)
271 return -EBUSY;
272 command = (subs->stream == SNDRV_PCM_STREAM_PLAYBACK ?
273 OUTPUT_MORE : INPUT_MORE) + INTR_ALWAYS;
274 spin_lock(&chip->reg_lock);
275 snd_pmac_beep_stop(chip);
276 snd_pmac_pcm_set_format(chip);
277 for (i = 0, cp = rec->cmd.cmds; i < rec->nperiods; i++, cp++)
278 out_le16(&cp->command, command);
279 snd_pmac_dma_set_command(rec, &rec->cmd);
280 (void)in_le32(&rec->dma->status);
281 snd_pmac_dma_run(rec, RUN|WAKE);
282 rec->running = 1;
283 spin_unlock(&chip->reg_lock);
284 break;
285
286 case SNDRV_PCM_TRIGGER_STOP:
287 case SNDRV_PCM_TRIGGER_SUSPEND:
288 spin_lock(&chip->reg_lock);
289 rec->running = 0;
Takashi Iwai6da67112009-02-05 16:02:46 +0100290 /*printk(KERN_DEBUG "stopped!!\n");*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 snd_pmac_dma_stop(rec);
292 for (i = 0, cp = rec->cmd.cmds; i < rec->nperiods; i++, cp++)
293 out_le16(&cp->command, DBDMA_STOP);
294 spin_unlock(&chip->reg_lock);
295 break;
296
297 default:
298 return -EINVAL;
299 }
300
301 return 0;
302}
303
304/*
305 * return the current pointer
306 */
307inline
Takashi Iwai65b29f52005-11-17 15:09:46 +0100308static snd_pcm_uframes_t snd_pmac_pcm_pointer(struct snd_pmac *chip,
309 struct pmac_stream *rec,
310 struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
312 int count = 0;
313
314#if 1 /* hmm.. how can we get the current dma pointer?? */
315 int stat;
316 volatile struct dbdma_cmd __iomem *cp = &rec->cmd.cmds[rec->cur_period];
David Gibsonf5718722015-02-03 16:36:21 +1100317 stat = le16_to_cpu(cp->xfer_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (stat & (ACTIVE|DEAD)) {
319 count = in_le16(&cp->res_count);
320 if (count)
321 count = rec->period_size - count;
322 }
323#endif
324 count += rec->cur_period * rec->period_size;
Takashi Iwai6da67112009-02-05 16:02:46 +0100325 /*printk(KERN_DEBUG "pointer=%d\n", count);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return bytes_to_frames(subs->runtime, count);
327}
328
329/*
330 * playback
331 */
332
Takashi Iwai65b29f52005-11-17 15:09:46 +0100333static int snd_pmac_playback_prepare(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100335 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 return snd_pmac_pcm_prepare(chip, &chip->playback, subs);
337}
338
Takashi Iwai65b29f52005-11-17 15:09:46 +0100339static int snd_pmac_playback_trigger(struct snd_pcm_substream *subs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 int cmd)
341{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100342 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return snd_pmac_pcm_trigger(chip, &chip->playback, subs, cmd);
344}
345
Takashi Iwai65b29f52005-11-17 15:09:46 +0100346static snd_pcm_uframes_t snd_pmac_playback_pointer(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_pointer(chip, &chip->playback, subs);
350}
351
352
353/*
354 * capture
355 */
356
Takashi Iwai65b29f52005-11-17 15:09:46 +0100357static int snd_pmac_capture_prepare(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100359 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return snd_pmac_pcm_prepare(chip, &chip->capture, subs);
361}
362
Takashi Iwai65b29f52005-11-17 15:09:46 +0100363static int snd_pmac_capture_trigger(struct snd_pcm_substream *subs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 int cmd)
365{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100366 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return snd_pmac_pcm_trigger(chip, &chip->capture, subs, cmd);
368}
369
Takashi Iwai65b29f52005-11-17 15:09:46 +0100370static snd_pcm_uframes_t snd_pmac_capture_pointer(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_pointer(chip, &chip->capture, subs);
374}
375
376
377/*
T. H. Huthe70515dd52008-01-16 15:57:08 +0100378 * Handle DEAD DMA transfers:
379 * if the TX status comes up "DEAD" - reported on some Power Computing machines
380 * we need to re-start the dbdma - but from a different physical start address
381 * and with a different transfer length. It would get very messy to do this
382 * with the normal dbdma_cmd blocks - we would have to re-write the buffer start
383 * addresses each time. So, we will keep a single dbdma_cmd block which can be
384 * fiddled with.
385 * When DEAD status is first reported the content of the faulted dbdma block is
386 * copied into the emergency buffer and we note that the buffer is in use.
387 * we then bump the start physical address by the amount that was successfully
388 * output before it died.
389 * On any subsequent DEAD result we just do the bump-ups (we know that we are
390 * already using the emergency dbdma_cmd).
391 * CHECK: this just tries to "do it". It is possible that we should abandon
392 * xfers when the number of residual bytes gets below a certain value - I can
393 * see that this might cause a loop-forever if a too small transfer causes
394 * DEAD status. However this is a TODO for now - we'll see what gets reported.
395 * When we get a successful transfer result with the emergency buffer we just
396 * pretend that it completed using the original dmdma_cmd and carry on. The
397 * 'next_cmd' field will already point back to the original loop of blocks.
398 */
399static inline void snd_pmac_pcm_dead_xfer(struct pmac_stream *rec,
400 volatile struct dbdma_cmd __iomem *cp)
401{
402 unsigned short req, res ;
403 unsigned int phy ;
404
405 /* printk(KERN_WARNING "snd-powermac: DMA died - patching it up!\n"); */
406
407 /* to clear DEAD status we must first clear RUN
408 set it to quiescent to be on the safe side */
409 (void)in_le32(&rec->dma->status);
410 out_le32(&rec->dma->control, (RUN|PAUSE|FLUSH|WAKE) << 16);
411
412 if (!emergency_in_use) { /* new problem */
413 memcpy((void *)emergency_dbdma.cmds, (void *)cp,
414 sizeof(struct dbdma_cmd));
415 emergency_in_use = 1;
David Gibsonf5718722015-02-03 16:36:21 +1100416 cp->xfer_status = cpu_to_le16(0);
417 cp->req_count = cpu_to_le16(rec->period_size);
T. H. Huthe70515dd52008-01-16 15:57:08 +0100418 cp = emergency_dbdma.cmds;
419 }
420
421 /* now bump the values to reflect the amount
422 we haven't yet shifted */
David Gibsonf5718722015-02-03 16:36:21 +1100423 req = le16_to_cpu(cp->req_count);
424 res = le16_to_cpu(cp->res_count);
425 phy = le32_to_cpu(cp->phy_addr);
T. H. Huthe70515dd52008-01-16 15:57:08 +0100426 phy += (req - res);
David Gibsonf5718722015-02-03 16:36:21 +1100427 cp->req_count = cpu_to_le16(res);
428 cp->res_count = cpu_to_le16(0);
429 cp->xfer_status = cpu_to_le16(0);
430 cp->phy_addr = cpu_to_le32(phy);
T. H. Huthe70515dd52008-01-16 15:57:08 +0100431
David Gibsonf5718722015-02-03 16:36:21 +1100432 cp->cmd_dep = cpu_to_le32(rec->cmd.addr
T. H. Huthe70515dd52008-01-16 15:57:08 +0100433 + sizeof(struct dbdma_cmd)*((rec->cur_period+1)%rec->nperiods));
434
David Gibsonf5718722015-02-03 16:36:21 +1100435 cp->command = cpu_to_le16(OUTPUT_MORE | BR_ALWAYS | INTR_ALWAYS);
T. H. Huthe70515dd52008-01-16 15:57:08 +0100436
437 /* point at our patched up command block */
438 out_le32(&rec->dma->cmdptr, emergency_dbdma.addr);
439
440 /* we must re-start the controller */
441 (void)in_le32(&rec->dma->status);
442 /* should complete clearing the DEAD status */
443 out_le32(&rec->dma->control, ((RUN|WAKE) << 16) + (RUN|WAKE));
444}
445
446/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 * update playback/capture pointer from interrupts
448 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100449static void snd_pmac_pcm_update(struct snd_pmac *chip, struct pmac_stream *rec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 volatile struct dbdma_cmd __iomem *cp;
452 int c;
453 int stat;
454
455 spin_lock(&chip->reg_lock);
456 if (rec->running) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 for (c = 0; c < rec->nperiods; c++) { /* at most all fragments */
T. H. Huthe70515dd52008-01-16 15:57:08 +0100458
459 if (emergency_in_use) /* already using DEAD xfer? */
460 cp = emergency_dbdma.cmds;
461 else
462 cp = &rec->cmd.cmds[rec->cur_period];
463
David Gibsonf5718722015-02-03 16:36:21 +1100464 stat = le16_to_cpu(cp->xfer_status);
T. H. Huthe70515dd52008-01-16 15:57:08 +0100465
466 if (stat & DEAD) {
467 snd_pmac_pcm_dead_xfer(rec, cp);
468 break; /* this block is still going */
469 }
470
471 if (emergency_in_use)
472 emergency_in_use = 0 ; /* done that */
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (! (stat & ACTIVE))
475 break;
T. H. Huthe70515dd52008-01-16 15:57:08 +0100476
Takashi Iwai6da67112009-02-05 16:02:46 +0100477 /*printk(KERN_DEBUG "update frag %d\n", rec->cur_period);*/
David Gibsonf5718722015-02-03 16:36:21 +1100478 cp->xfer_status = cpu_to_le16(0);
479 cp->req_count = cpu_to_le16(rec->period_size);
480 /*cp->res_count = cpu_to_le16(0);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 rec->cur_period++;
482 if (rec->cur_period >= rec->nperiods) {
483 rec->cur_period = 0;
T. H. Huthe70515dd52008-01-16 15:57:08 +0100484 }
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 spin_unlock(&chip->reg_lock);
487 snd_pcm_period_elapsed(rec->substream);
488 spin_lock(&chip->reg_lock);
489 }
490 }
491 spin_unlock(&chip->reg_lock);
492}
493
494
495/*
496 * hw info
497 */
498
Bhumika Goyal21bf6cf2017-08-17 14:45:56 +0530499static const struct snd_pcm_hardware snd_pmac_playback =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
501 .info = (SNDRV_PCM_INFO_INTERLEAVED |
502 SNDRV_PCM_INFO_MMAP |
503 SNDRV_PCM_INFO_MMAP_VALID |
504 SNDRV_PCM_INFO_RESUME),
505 .formats = SNDRV_PCM_FMTBIT_S16_BE | SNDRV_PCM_FMTBIT_S16_LE,
506 .rates = SNDRV_PCM_RATE_8000_44100,
507 .rate_min = 7350,
508 .rate_max = 44100,
509 .channels_min = 2,
510 .channels_max = 2,
511 .buffer_bytes_max = 131072,
512 .period_bytes_min = 256,
513 .period_bytes_max = 16384,
514 .periods_min = 3,
515 .periods_max = PMAC_MAX_FRAGS,
516};
517
Bhumika Goyal21bf6cf2017-08-17 14:45:56 +0530518static const struct snd_pcm_hardware snd_pmac_capture =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
520 .info = (SNDRV_PCM_INFO_INTERLEAVED |
521 SNDRV_PCM_INFO_MMAP |
522 SNDRV_PCM_INFO_MMAP_VALID |
523 SNDRV_PCM_INFO_RESUME),
524 .formats = SNDRV_PCM_FMTBIT_S16_BE | SNDRV_PCM_FMTBIT_S16_LE,
525 .rates = SNDRV_PCM_RATE_8000_44100,
526 .rate_min = 7350,
527 .rate_max = 44100,
528 .channels_min = 2,
529 .channels_max = 2,
530 .buffer_bytes_max = 131072,
531 .period_bytes_min = 256,
532 .period_bytes_max = 16384,
533 .periods_min = 3,
534 .periods_max = PMAC_MAX_FRAGS,
535};
536
537
538#if 0 // NYI
Takashi Iwai65b29f52005-11-17 15:09:46 +0100539static int snd_pmac_hw_rule_rate(struct snd_pcm_hw_params *params,
540 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100542 struct snd_pmac *chip = rule->private;
543 struct pmac_stream *rec = snd_pmac_get_stream(chip, rule->deps[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 int i, freq_table[8], num_freqs;
545
Takashi Iwai7c22f1a2005-10-10 11:46:31 +0200546 if (! rec)
547 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 num_freqs = 0;
549 for (i = chip->num_freqs - 1; i >= 0; i--) {
550 if (rec->cur_freqs & (1 << i))
551 freq_table[num_freqs++] = chip->freq_table[i];
552 }
553
554 return snd_interval_list(hw_param_interval(params, rule->var),
555 num_freqs, freq_table, 0);
556}
557
Takashi Iwai65b29f52005-11-17 15:09:46 +0100558static int snd_pmac_hw_rule_format(struct snd_pcm_hw_params *params,
559 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100561 struct snd_pmac *chip = rule->private;
562 struct pmac_stream *rec = snd_pmac_get_stream(chip, rule->deps[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Takashi Iwai7c22f1a2005-10-10 11:46:31 +0200564 if (! rec)
565 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 return snd_mask_refine_set(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT),
567 rec->cur_formats);
568}
569#endif // NYI
570
Takashi Iwai65b29f52005-11-17 15:09:46 +0100571static int snd_pmac_pcm_open(struct snd_pmac *chip, struct pmac_stream *rec,
572 struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100574 struct snd_pcm_runtime *runtime = subs->runtime;
Clemens Ladisch918f3a02007-08-13 17:40:54 +0200575 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 /* look up frequency table and fill bit mask */
578 runtime->hw.rates = 0;
Clemens Ladisch918f3a02007-08-13 17:40:54 +0200579 for (i = 0; i < chip->num_freqs; i++)
580 if (chip->freqs_ok & (1 << i))
581 runtime->hw.rates |=
582 snd_pcm_rate_to_rate_bit(chip->freq_table[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 /* check for minimum and maximum rates */
585 for (i = 0; i < chip->num_freqs; i++) {
586 if (chip->freqs_ok & (1 << i)) {
587 runtime->hw.rate_max = chip->freq_table[i];
588 break;
589 }
590 }
591 for (i = chip->num_freqs - 1; i >= 0; i--) {
592 if (chip->freqs_ok & (1 << i)) {
593 runtime->hw.rate_min = chip->freq_table[i];
594 break;
595 }
596 }
597 runtime->hw.formats = chip->formats_ok;
598 if (chip->can_capture) {
599 if (! chip->can_duplex)
600 runtime->hw.info |= SNDRV_PCM_INFO_HALF_DUPLEX;
601 runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
602 }
603 runtime->private_data = rec;
604 rec->substream = subs;
605
606#if 0 /* FIXME: still under development.. */
607 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
608 snd_pmac_hw_rule_rate, chip, rec->stream, -1);
609 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
610 snd_pmac_hw_rule_format, chip, rec->stream, -1);
611#endif
612
613 runtime->hw.periods_max = rec->cmd.size - 1;
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 /* constraints to fix choppy sound */
616 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
617 return 0;
618}
619
Takashi Iwai65b29f52005-11-17 15:09:46 +0100620static int snd_pmac_pcm_close(struct snd_pmac *chip, struct pmac_stream *rec,
621 struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100623 struct pmac_stream *astr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 snd_pmac_dma_stop(rec);
626
627 astr = snd_pmac_get_stream(chip, another_stream(rec->stream));
Takashi Iwai7c22f1a2005-10-10 11:46:31 +0200628 if (! astr)
629 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 /* reset constraints */
632 astr->cur_freqs = chip->freqs_ok;
633 astr->cur_formats = chip->formats_ok;
Risto Suominen946cda72008-04-16 13:16:05 +0200634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return 0;
636}
637
Takashi Iwai65b29f52005-11-17 15:09:46 +0100638static int snd_pmac_playback_open(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100640 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 subs->runtime->hw = snd_pmac_playback;
643 return snd_pmac_pcm_open(chip, &chip->playback, subs);
644}
645
Takashi Iwai65b29f52005-11-17 15:09:46 +0100646static int snd_pmac_capture_open(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100648 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 subs->runtime->hw = snd_pmac_capture;
651 return snd_pmac_pcm_open(chip, &chip->capture, subs);
652}
653
Takashi Iwai65b29f52005-11-17 15:09:46 +0100654static int snd_pmac_playback_close(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100656 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 return snd_pmac_pcm_close(chip, &chip->playback, subs);
659}
660
Takashi Iwai65b29f52005-11-17 15:09:46 +0100661static int snd_pmac_capture_close(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100663 struct snd_pmac *chip = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 return snd_pmac_pcm_close(chip, &chip->capture, subs);
666}
667
668/*
669 */
670
Arvind Yadav3179a3e2017-08-18 13:15:17 +0530671static const struct snd_pcm_ops snd_pmac_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 .open = snd_pmac_playback_open,
673 .close = snd_pmac_playback_close,
674 .ioctl = snd_pcm_lib_ioctl,
675 .hw_params = snd_pmac_pcm_hw_params,
676 .hw_free = snd_pmac_pcm_hw_free,
677 .prepare = snd_pmac_playback_prepare,
678 .trigger = snd_pmac_playback_trigger,
679 .pointer = snd_pmac_playback_pointer,
680};
681
Arvind Yadav3179a3e2017-08-18 13:15:17 +0530682static const struct snd_pcm_ops snd_pmac_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 .open = snd_pmac_capture_open,
684 .close = snd_pmac_capture_close,
685 .ioctl = snd_pcm_lib_ioctl,
686 .hw_params = snd_pmac_pcm_hw_params,
687 .hw_free = snd_pmac_pcm_hw_free,
688 .prepare = snd_pmac_capture_prepare,
689 .trigger = snd_pmac_capture_trigger,
690 .pointer = snd_pmac_capture_pointer,
691};
692
Bill Pemberton15afafc2012-12-06 12:35:23 -0500693int snd_pmac_pcm_new(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100695 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 int err;
697 int num_captures = 1;
698
699 if (! chip->can_capture)
700 num_captures = 0;
701 err = snd_pcm_new(chip->card, chip->card->driver, 0, 1, num_captures, &pcm);
702 if (err < 0)
703 return err;
704
705 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_pmac_playback_ops);
706 if (chip->can_capture)
707 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_pmac_capture_ops);
708
709 pcm->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX;
711 strcpy(pcm->name, chip->card->shortname);
712 chip->pcm = pcm;
713
714 chip->formats_ok = SNDRV_PCM_FMTBIT_S16_BE;
715 if (chip->can_byte_swap)
716 chip->formats_ok |= SNDRV_PCM_FMTBIT_S16_LE;
717
718 chip->playback.cur_formats = chip->formats_ok;
719 chip->capture.cur_formats = chip->formats_ok;
720 chip->playback.cur_freqs = chip->freqs_ok;
721 chip->capture.cur_freqs = chip->freqs_ok;
722
723 /* preallocate 64k buffer */
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700724 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
725 &chip->pdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 64 * 1024, 64 * 1024);
727
728 return 0;
729}
730
731
Takashi Iwai65b29f52005-11-17 15:09:46 +0100732static void snd_pmac_dbdma_reset(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
734 out_le32(&chip->playback.dma->control, (RUN|PAUSE|FLUSH|WAKE|DEAD) << 16);
735 snd_pmac_wait_ack(&chip->playback);
736 out_le32(&chip->capture.dma->control, (RUN|PAUSE|FLUSH|WAKE|DEAD) << 16);
737 snd_pmac_wait_ack(&chip->capture);
738}
739
740
741/*
742 * handling beep
743 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100744void snd_pmac_beep_dma_start(struct snd_pmac *chip, int bytes, unsigned long addr, int speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100746 struct pmac_stream *rec = &chip->playback;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 snd_pmac_dma_stop(rec);
David Gibsonf5718722015-02-03 16:36:21 +1100749 chip->extra_dma.cmds->req_count = cpu_to_le16(bytes);
750 chip->extra_dma.cmds->xfer_status = cpu_to_le16(0);
751 chip->extra_dma.cmds->cmd_dep = cpu_to_le32(chip->extra_dma.addr);
752 chip->extra_dma.cmds->phy_addr = cpu_to_le32(addr);
753 chip->extra_dma.cmds->command = cpu_to_le16(OUTPUT_MORE + BR_ALWAYS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 out_le32(&chip->awacs->control,
755 (in_le32(&chip->awacs->control) & ~0x1f00)
756 | (speed << 8));
757 out_le32(&chip->awacs->byteswap, 0);
758 snd_pmac_dma_set_command(rec, &chip->extra_dma);
759 snd_pmac_dma_run(rec, RUN);
760}
761
Takashi Iwai65b29f52005-11-17 15:09:46 +0100762void snd_pmac_beep_dma_stop(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
764 snd_pmac_dma_stop(&chip->playback);
David Gibsonf5718722015-02-03 16:36:21 +1100765 chip->extra_dma.cmds->command = cpu_to_le16(DBDMA_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 snd_pmac_pcm_set_format(chip); /* reset format */
767}
768
769
770/*
771 * interrupt handlers
772 */
773static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100774snd_pmac_tx_intr(int irq, void *devid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100776 struct snd_pmac *chip = devid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 snd_pmac_pcm_update(chip, &chip->playback);
778 return IRQ_HANDLED;
779}
780
781
782static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100783snd_pmac_rx_intr(int irq, void *devid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100785 struct snd_pmac *chip = devid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 snd_pmac_pcm_update(chip, &chip->capture);
787 return IRQ_HANDLED;
788}
789
790
791static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100792snd_pmac_ctrl_intr(int irq, void *devid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100794 struct snd_pmac *chip = devid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 int ctrl = in_le32(&chip->awacs->control);
796
Takashi Iwai6da67112009-02-05 16:02:46 +0100797 /*printk(KERN_DEBUG "pmac: control interrupt.. 0x%x\n", ctrl);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 if (ctrl & MASK_PORTCHG) {
799 /* do something when headphone is plugged/unplugged? */
800 if (chip->update_automute)
801 chip->update_automute(chip, 1);
802 }
803 if (ctrl & MASK_CNTLERR) {
804 int err = (in_le32(&chip->awacs->codec_stat) & MASK_ERRCODE) >> 16;
805 if (err && chip->model <= PMAC_SCREAMER)
806 snd_printk(KERN_DEBUG "error %x\n", err);
807 }
808 /* Writing 1s to the CNTLERR and PORTCHG bits clears them... */
809 out_le32(&chip->awacs->control, ctrl);
810 return IRQ_HANDLED;
811}
812
813
814/*
815 * a wrapper to feature call for compatibility
816 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100817static void snd_pmac_sound_feature(struct snd_pmac *chip, int enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
David Woodhouse4e6a06e2005-08-17 11:36:35 +0100819 if (ppc_md.feature_call)
820 ppc_md.feature_call(PMAC_FTR_SOUND_CHIP_ENABLE, chip->node, 0, enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823/*
824 * release resources
825 */
826
Takashi Iwai65b29f52005-11-17 15:09:46 +0100827static int snd_pmac_free(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 /* stop sounds */
830 if (chip->initialized) {
831 snd_pmac_dbdma_reset(chip);
832 /* disable interrupts from awacs interface */
833 out_le32(&chip->awacs->control, in_le32(&chip->awacs->control) & 0xfff);
834 }
835
Benjamin Herrenschmidt41e904d2007-06-19 14:37:39 +1000836 if (chip->node)
837 snd_pmac_sound_feature(chip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 /* clean up mixer if any */
840 if (chip->mixer_free)
841 chip->mixer_free(chip);
842
843 snd_pmac_detach_beep(chip);
844
845 /* release resources */
846 if (chip->irq >= 0)
847 free_irq(chip->irq, (void*)chip);
848 if (chip->tx_irq >= 0)
849 free_irq(chip->tx_irq, (void*)chip);
850 if (chip->rx_irq >= 0)
851 free_irq(chip->rx_irq, (void*)chip);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700852 snd_pmac_dbdma_free(chip, &chip->playback.cmd);
853 snd_pmac_dbdma_free(chip, &chip->capture.cmd);
854 snd_pmac_dbdma_free(chip, &chip->extra_dma);
T. H. Huthe70515dd52008-01-16 15:57:08 +0100855 snd_pmac_dbdma_free(chip, &emergency_dbdma);
Markus Elfringff6defa2015-01-03 22:55:54 +0100856 iounmap(chip->macio_base);
857 iounmap(chip->latch_base);
858 iounmap(chip->awacs);
859 iounmap(chip->playback.dma);
860 iounmap(chip->capture.dma);
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 if (chip->node) {
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700863 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 for (i = 0; i < 3; i++) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100865 if (chip->requested & (1 << i))
866 release_mem_region(chip->rsrc[i].start,
Joe Perches28f65c112011-06-09 09:13:32 -0700867 resource_size(&chip->rsrc[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
869 }
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100870
Markus Elfring1ea7a562014-11-17 13:35:54 +0100871 pci_dev_put(chip->pdev);
Stephen Rothwell30686ba2007-04-24 13:53:04 +1000872 of_node_put(chip->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 kfree(chip);
874 return 0;
875}
876
877
878/*
879 * free the device
880 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100881static int snd_pmac_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100883 struct snd_pmac *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return snd_pmac_free(chip);
885}
886
887
888/*
889 * check the machine support byteswap (little-endian)
890 */
891
Bill Pemberton15afafc2012-12-06 12:35:23 -0500892static void detect_byte_swap(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
894 struct device_node *mio;
895
896 /* if seems that Keylargo can't byte-swap */
897 for (mio = chip->node->parent; mio; mio = mio->parent) {
Rob Herring157ab882018-12-05 13:50:46 -0600898 if (of_node_name_eq(mio, "mac-io")) {
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000899 if (of_device_is_compatible(mio, "Keylargo"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 chip->can_byte_swap = 0;
901 break;
902 }
903 }
904
905 /* it seems the Pismo & iBook can't byte-swap in hardware. */
Grant Likely71a157e2010-02-01 21:34:14 -0700906 if (of_machine_is_compatible("PowerBook3,1") ||
907 of_machine_is_compatible("PowerBook2,1"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 chip->can_byte_swap = 0 ;
909
Grant Likely71a157e2010-02-01 21:34:14 -0700910 if (of_machine_is_compatible("PowerBook2,1"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 chip->can_duplex = 0;
912}
913
914
915/*
916 * detect a sound chip
917 */
Bill Pemberton15afafc2012-12-06 12:35:23 -0500918static int snd_pmac_detect(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Stephen Rothwell30686ba2007-04-24 13:53:04 +1000920 struct device_node *sound;
921 struct device_node *dn;
Stephen Rothwellc4f55b32007-04-03 22:39:14 +1000922 const unsigned int *prop;
923 unsigned int l;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700924 struct macio_chip* macio;
925
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100926 if (!machine_is(powermac))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return -ENODEV;
928
929 chip->subframe = 0;
930 chip->revision = 0;
931 chip->freqs_ok = 0xff; /* all ok */
932 chip->model = PMAC_AWACS;
933 chip->can_byte_swap = 1;
934 chip->can_duplex = 1;
935 chip->can_capture = 1;
936 chip->num_freqs = ARRAY_SIZE(awacs_freqs);
937 chip->freq_table = awacs_freqs;
Benjamin Herrenschmidt367636e2006-02-08 15:04:18 +1100938 chip->pdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 chip->control_mask = MASK_IEPC | MASK_IEE | 0x11; /* default */
941
942 /* check machine type */
Grant Likely71a157e2010-02-01 21:34:14 -0700943 if (of_machine_is_compatible("AAPL,3400/2400")
944 || of_machine_is_compatible("AAPL,3500"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 chip->is_pbook_3400 = 1;
Grant Likely71a157e2010-02-01 21:34:14 -0700946 else if (of_machine_is_compatible("PowerBook1,1")
947 || of_machine_is_compatible("AAPL,PowerBook1998"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 chip->is_pbook_G3 = 1;
Stephen Rothwell30686ba2007-04-24 13:53:04 +1000949 chip->node = of_find_node_by_name(NULL, "awacs");
950 sound = of_node_get(chip->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 /*
953 * powermac G3 models have a node called "davbus"
954 * with a child called "sound".
955 */
Benjamin Herrenschmidt52180642005-05-18 16:31:51 +0200956 if (!chip->node)
Stephen Rothwell30686ba2007-04-24 13:53:04 +1000957 chip->node = of_find_node_by_name(NULL, "davbus");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 /*
959 * if we didn't find a davbus device, try 'i2s-a' since
960 * this seems to be what iBooks have
961 */
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700962 if (! chip->node) {
Stephen Rothwell30686ba2007-04-24 13:53:04 +1000963 chip->node = of_find_node_by_name(NULL, "i2s-a");
Benjamin Herrenschmidt52180642005-05-18 16:31:51 +0200964 if (chip->node && chip->node->parent &&
965 chip->node->parent->parent) {
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000966 if (of_device_is_compatible(chip->node->parent->parent,
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700967 "K2-Keylargo"))
968 chip->is_k2 = 1;
969 }
970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 if (! chip->node)
972 return -ENODEV;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700973
Benjamin Herrenschmidt52180642005-05-18 16:31:51 +0200974 if (!sound) {
Grant Likelyccdb8ed2014-06-04 16:42:26 +0100975 for_each_node_by_name(sound, "sound")
976 if (sound->parent == chip->node)
977 break;
Benjamin Herrenschmidt52180642005-05-18 16:31:51 +0200978 }
Stephen Rothwell30686ba2007-04-24 13:53:04 +1000979 if (! sound) {
980 of_node_put(chip->node);
Benjamin Herrenschmidt41e904d2007-06-19 14:37:39 +1000981 chip->node = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 return -ENODEV;
Stephen Rothwell30686ba2007-04-24 13:53:04 +1000983 }
Stephen Rothwellc4f55b32007-04-03 22:39:14 +1000984 prop = of_get_property(sound, "sub-frame", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (prop && *prop < 16)
986 chip->subframe = *prop;
Stephen Rothwellc4f55b32007-04-03 22:39:14 +1000987 prop = of_get_property(sound, "layout-id", NULL);
Johannes Berg55c385a2006-06-21 15:43:44 +0200988 if (prop) {
989 /* partly deprecate snd-powermac, for those machines
990 * that have a layout-id property for now */
991 printk(KERN_INFO "snd-powermac no longer handles any "
992 "machines with a layout-id property "
993 "in the device-tree, use snd-aoa.\n");
Benjamin Herrenschmidt41e904d2007-06-19 14:37:39 +1000994 of_node_put(sound);
Stephen Rothwell30686ba2007-04-24 13:53:04 +1000995 of_node_put(chip->node);
Benjamin Herrenschmidt41e904d2007-06-19 14:37:39 +1000996 chip->node = NULL;
Johannes Berg55c385a2006-06-21 15:43:44 +0200997 return -ENODEV;
998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 /* This should be verified on older screamers */
Stephen Rothwell55b61fe2007-05-03 17:26:52 +10001000 if (of_device_is_compatible(sound, "screamer")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 chip->model = PMAC_SCREAMER;
1002 // chip->can_byte_swap = 0; /* FIXME: check this */
1003 }
Stephen Rothwell55b61fe2007-05-03 17:26:52 +10001004 if (of_device_is_compatible(sound, "burgundy")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 chip->model = PMAC_BURGUNDY;
1006 chip->control_mask = MASK_IEPC | 0x11; /* disable IEE */
1007 }
Stephen Rothwell55b61fe2007-05-03 17:26:52 +10001008 if (of_device_is_compatible(sound, "daca")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 chip->model = PMAC_DACA;
1010 chip->can_capture = 0; /* no capture */
1011 chip->can_duplex = 0;
1012 // chip->can_byte_swap = 0; /* FIXME: check this */
1013 chip->control_mask = MASK_IEPC | 0x11; /* disable IEE */
1014 }
Stephen Rothwell55b61fe2007-05-03 17:26:52 +10001015 if (of_device_is_compatible(sound, "tumbler")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 chip->model = PMAC_TUMBLER;
Grant Likely71a157e2010-02-01 21:34:14 -07001017 chip->can_capture = of_machine_is_compatible("PowerMac4,2")
Risto Suominen8460ae72011-02-28 10:38:45 +02001018 || of_machine_is_compatible("PowerBook3,2")
1019 || of_machine_is_compatible("PowerBook3,3")
1020 || of_machine_is_compatible("PowerBook4,1")
1021 || of_machine_is_compatible("PowerBook4,2")
1022 || of_machine_is_compatible("PowerBook4,3");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 chip->can_duplex = 0;
1024 // chip->can_byte_swap = 0; /* FIXME: check this */
1025 chip->num_freqs = ARRAY_SIZE(tumbler_freqs);
1026 chip->freq_table = tumbler_freqs;
1027 chip->control_mask = MASK_IEPC | 0x11; /* disable IEE */
1028 }
Stephen Rothwell55b61fe2007-05-03 17:26:52 +10001029 if (of_device_is_compatible(sound, "snapper")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 chip->model = PMAC_SNAPPER;
1031 // chip->can_byte_swap = 0; /* FIXME: check this */
1032 chip->num_freqs = ARRAY_SIZE(tumbler_freqs);
1033 chip->freq_table = tumbler_freqs;
1034 chip->control_mask = MASK_IEPC | 0x11; /* disable IEE */
1035 }
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001036 prop = of_get_property(sound, "device-id", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (prop)
1038 chip->device_id = *prop;
Stephen Rothwell30686ba2007-04-24 13:53:04 +10001039 dn = of_find_node_by_name(NULL, "perch");
1040 chip->has_iic = (dn != NULL);
1041 of_node_put(dn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001043 /* We need the PCI device for DMA allocations, let's use a crude method
1044 * for now ...
1045 */
1046 macio = macio_find(chip->node, macio_unknown);
1047 if (macio == NULL)
1048 printk(KERN_WARNING "snd-powermac: can't locate macio !\n");
1049 else {
1050 struct pci_dev *pdev = NULL;
1051
1052 for_each_pci_dev(pdev) {
1053 struct device_node *np = pci_device_to_OF_node(pdev);
1054 if (np && np == macio->of_node) {
1055 chip->pdev = pdev;
1056 break;
1057 }
1058 }
1059 }
1060 if (chip->pdev == NULL)
Benjamin Herrenschmidt52180642005-05-18 16:31:51 +02001061 printk(KERN_WARNING "snd-powermac: can't locate macio PCI"
1062 " device !\n");
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 detect_byte_swap(chip);
1065
1066 /* look for a property saying what sample rates
1067 are available */
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001068 prop = of_get_property(sound, "sample-rates", &l);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (! prop)
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001070 prop = of_get_property(sound, "output-frame-rates", &l);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 if (prop) {
1072 int i;
1073 chip->freqs_ok = 0;
1074 for (l /= sizeof(int); l > 0; --l) {
1075 unsigned int r = *prop++;
1076 /* Apple 'Fixed' format */
1077 if (r >= 0x10000)
1078 r >>= 16;
1079 for (i = 0; i < chip->num_freqs; ++i) {
1080 if (r == chip->freq_table[i]) {
1081 chip->freqs_ok |= (1 << i);
1082 break;
1083 }
1084 }
1085 }
1086 } else {
1087 /* assume only 44.1khz */
1088 chip->freqs_ok = 1;
1089 }
1090
Stephen Rothwell30686ba2007-04-24 13:53:04 +10001091 of_node_put(sound);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 return 0;
1093}
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095#ifdef PMAC_SUPPORT_AUTOMUTE
1096/*
1097 * auto-mute
1098 */
Takashi Iwai65b29f52005-11-17 15:09:46 +01001099static int pmac_auto_mute_get(struct snd_kcontrol *kcontrol,
1100 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101{
Takashi Iwai65b29f52005-11-17 15:09:46 +01001102 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 ucontrol->value.integer.value[0] = chip->auto_mute;
1104 return 0;
1105}
1106
Takashi Iwai65b29f52005-11-17 15:09:46 +01001107static int pmac_auto_mute_put(struct snd_kcontrol *kcontrol,
1108 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
Takashi Iwai65b29f52005-11-17 15:09:46 +01001110 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (ucontrol->value.integer.value[0] != chip->auto_mute) {
Takashi Iwaid4079ac2007-11-15 16:14:12 +01001112 chip->auto_mute = !!ucontrol->value.integer.value[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 if (chip->update_automute)
1114 chip->update_automute(chip, 1);
1115 return 1;
1116 }
1117 return 0;
1118}
1119
Takashi Iwai65b29f52005-11-17 15:09:46 +01001120static int pmac_hp_detect_get(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 (chip->detect_headphone)
1125 ucontrol->value.integer.value[0] = chip->detect_headphone(chip);
1126 else
1127 ucontrol->value.integer.value[0] = 0;
1128 return 0;
1129}
1130
Bill Pemberton15afafc2012-12-06 12:35:23 -05001131static struct snd_kcontrol_new auto_mute_controls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1133 .name = "Auto Mute Switch",
1134 .info = snd_pmac_boolean_mono_info,
1135 .get = pmac_auto_mute_get,
1136 .put = pmac_auto_mute_put,
1137 },
1138 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1139 .name = "Headphone Detection",
1140 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1141 .info = snd_pmac_boolean_mono_info,
1142 .get = pmac_hp_detect_get,
1143 },
1144};
1145
Bill Pemberton15afafc2012-12-06 12:35:23 -05001146int snd_pmac_add_automute(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147{
1148 int err;
1149 chip->auto_mute = 1;
1150 err = snd_ctl_add(chip->card, snd_ctl_new1(&auto_mute_controls[0], chip));
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001151 if (err < 0) {
1152 printk(KERN_ERR "snd-powermac: Failed to add automute control\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 return err;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 chip->hp_detect_ctl = snd_ctl_new1(&auto_mute_controls[1], chip);
1156 return snd_ctl_add(chip->card, chip->hp_detect_ctl);
1157}
1158#endif /* PMAC_SUPPORT_AUTOMUTE */
1159
1160/*
1161 * create and detect a pmac chip record
1162 */
Bill Pemberton15afafc2012-12-06 12:35:23 -05001163int snd_pmac_new(struct snd_card *card, struct snd_pmac **chip_return)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
Takashi Iwai65b29f52005-11-17 15:09:46 +01001165 struct snd_pmac *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 struct device_node *np;
1167 int i, err;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001168 unsigned int irq;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001169 unsigned long ctrl_addr, txdma_addr, rxdma_addr;
Takashi Iwai65b29f52005-11-17 15:09:46 +01001170 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 .dev_free = snd_pmac_dev_free,
1172 };
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 *chip_return = NULL;
1175
Takashi Iwai561b2202005-09-09 14:22:34 +02001176 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 if (chip == NULL)
1178 return -ENOMEM;
1179 chip->card = card;
1180
1181 spin_lock_init(&chip->reg_lock);
1182 chip->irq = chip->tx_irq = chip->rx_irq = -1;
1183
1184 chip->playback.stream = SNDRV_PCM_STREAM_PLAYBACK;
1185 chip->capture.stream = SNDRV_PCM_STREAM_CAPTURE;
1186
1187 if ((err = snd_pmac_detect(chip)) < 0)
1188 goto __error;
1189
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001190 if (snd_pmac_dbdma_alloc(chip, &chip->playback.cmd, PMAC_MAX_FRAGS + 1) < 0 ||
1191 snd_pmac_dbdma_alloc(chip, &chip->capture.cmd, PMAC_MAX_FRAGS + 1) < 0 ||
T. H. Huthe70515dd52008-01-16 15:57:08 +01001192 snd_pmac_dbdma_alloc(chip, &chip->extra_dma, 2) < 0 ||
1193 snd_pmac_dbdma_alloc(chip, &emergency_dbdma, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 err = -ENOMEM;
1195 goto __error;
1196 }
1197
1198 np = chip->node;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001199 chip->requested = 0;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001200 if (chip->is_k2) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001201 static char *rnames[] = {
1202 "Sound Control", "Sound DMA" };
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001203 for (i = 0; i < 2; i ++) {
1204 if (of_address_to_resource(np->parent, i,
1205 &chip->rsrc[i])) {
1206 printk(KERN_ERR "snd: can't translate rsrc "
1207 " %d (%s)\n", i, rnames[i]);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001208 err = -ENODEV;
1209 goto __error;
1210 }
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001211 if (request_mem_region(chip->rsrc[i].start,
Joe Perches28f65c112011-06-09 09:13:32 -07001212 resource_size(&chip->rsrc[i]),
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001213 rnames[i]) == NULL) {
1214 printk(KERN_ERR "snd: can't request rsrc "
Joe Perches2fb50f12010-11-12 13:38:04 -08001215 " %d (%s: %pR)\n",
1216 i, rnames[i], &chip->rsrc[i]);
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001217 err = -ENODEV;
1218 goto __error;
1219 }
1220 chip->requested |= (1 << i);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001221 }
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001222 ctrl_addr = chip->rsrc[0].start;
1223 txdma_addr = chip->rsrc[1].start;
1224 rxdma_addr = txdma_addr + 0x100;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001225 } else {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001226 static char *rnames[] = {
1227 "Sound Control", "Sound Tx DMA", "Sound Rx DMA" };
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001228 for (i = 0; i < 3; i ++) {
Benjamin Herrenschmidt88356e92006-02-01 03:04:43 -08001229 if (of_address_to_resource(np, i,
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001230 &chip->rsrc[i])) {
1231 printk(KERN_ERR "snd: can't translate rsrc "
1232 " %d (%s)\n", i, rnames[i]);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001233 err = -ENODEV;
1234 goto __error;
1235 }
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001236 if (request_mem_region(chip->rsrc[i].start,
Joe Perches28f65c112011-06-09 09:13:32 -07001237 resource_size(&chip->rsrc[i]),
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001238 rnames[i]) == NULL) {
1239 printk(KERN_ERR "snd: can't request rsrc "
Joe Perches2fb50f12010-11-12 13:38:04 -08001240 " %d (%s: %pR)\n",
1241 i, rnames[i], &chip->rsrc[i]);
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001242 err = -ENODEV;
1243 goto __error;
1244 }
1245 chip->requested |= (1 << i);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001246 }
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001247 ctrl_addr = chip->rsrc[0].start;
1248 txdma_addr = chip->rsrc[1].start;
1249 rxdma_addr = chip->rsrc[2].start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
1251
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001252 chip->awacs = ioremap(ctrl_addr, 0x1000);
1253 chip->playback.dma = ioremap(txdma_addr, 0x100);
1254 chip->capture.dma = ioremap(rxdma_addr, 0x100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 if (chip->model <= PMAC_BURGUNDY) {
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001256 irq = irq_of_parse_and_map(np, 0);
1257 if (request_irq(irq, snd_pmac_ctrl_intr, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 "PMac", (void*)chip)) {
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001259 snd_printk(KERN_ERR "pmac: unable to grab IRQ %d\n",
1260 irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 err = -EBUSY;
1262 goto __error;
1263 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001264 chip->irq = irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001266 irq = irq_of_parse_and_map(np, 1);
1267 if (request_irq(irq, snd_pmac_tx_intr, 0, "PMac Output", (void*)chip)){
1268 snd_printk(KERN_ERR "pmac: unable to grab IRQ %d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 err = -EBUSY;
1270 goto __error;
1271 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001272 chip->tx_irq = irq;
1273 irq = irq_of_parse_and_map(np, 2);
1274 if (request_irq(irq, snd_pmac_rx_intr, 0, "PMac Input", (void*)chip)) {
1275 snd_printk(KERN_ERR "pmac: unable to grab IRQ %d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 err = -EBUSY;
1277 goto __error;
1278 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001279 chip->rx_irq = irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281 snd_pmac_sound_feature(chip, 1);
1282
Risto Suominen9a4f20f2008-04-16 13:15:38 +02001283 /* reset & enable interrupts */
1284 if (chip->model <= PMAC_BURGUNDY)
1285 out_le32(&chip->awacs->control, chip->control_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 /* Powerbooks have odd ways of enabling inputs such as
1288 an expansion-bay CD or sound from an internal modem
1289 or a PC-card modem. */
1290 if (chip->is_pbook_3400) {
1291 /* Enable CD and PC-card sound inputs. */
1292 /* This is done by reading from address
1293 * f301a000, + 0x10 to enable the expansion-bay
1294 * CD sound input, + 0x80 to enable the PC-card
1295 * sound input. The 0x100 enables the SCSI bus
1296 * terminator power.
1297 */
1298 chip->latch_base = ioremap (0xf301a000, 0x1000);
1299 in_8(chip->latch_base + 0x190);
1300 } else if (chip->is_pbook_G3) {
1301 struct device_node* mio;
1302 for (mio = chip->node->parent; mio; mio = mio->parent) {
Rob Herring157ab882018-12-05 13:50:46 -06001303 if (of_node_name_eq(mio, "mac-io")) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001304 struct resource r;
1305 if (of_address_to_resource(mio, 0, &r) == 0)
1306 chip->macio_base =
1307 ioremap(r.start, 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 break;
1309 }
1310 }
1311 /* Enable CD sound input. */
1312 /* The relevant bits for writing to this byte are 0x8f.
1313 * I haven't found out what the 0x80 bit does.
1314 * For the 0xf bits, writing 3 or 7 enables the CD
1315 * input, any other value disables it. Values
1316 * 1, 3, 5, 7 enable the microphone. Values 0, 2,
1317 * 4, 6, 8 - f enable the input from the modem.
1318 */
1319 if (chip->macio_base)
1320 out_8(chip->macio_base + 0x37, 3);
1321 }
1322
1323 /* Reset dbdma channels */
1324 snd_pmac_dbdma_reset(chip);
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0)
1327 goto __error;
1328
1329 *chip_return = chip;
1330 return 0;
1331
1332 __error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 snd_pmac_free(chip);
1334 return err;
1335}
1336
1337
1338/*
1339 * sleep notify for powerbook
1340 */
1341
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -07001342#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344/*
1345 * Save state when going to sleep, restore it afterwards.
1346 */
1347
Takashi Iwai5e12bea2005-11-17 17:17:08 +01001348void snd_pmac_suspend(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 unsigned long flags;
1351
Takashi Iwai5e12bea2005-11-17 17:17:08 +01001352 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 if (chip->suspend)
1354 chip->suspend(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 spin_lock_irqsave(&chip->reg_lock, flags);
1356 snd_pmac_beep_stop(chip);
1357 spin_unlock_irqrestore(&chip->reg_lock, flags);
1358 if (chip->irq >= 0)
1359 disable_irq(chip->irq);
1360 if (chip->tx_irq >= 0)
1361 disable_irq(chip->tx_irq);
1362 if (chip->rx_irq >= 0)
1363 disable_irq(chip->rx_irq);
1364 snd_pmac_sound_feature(chip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365}
1366
Takashi Iwai5e12bea2005-11-17 17:17:08 +01001367void snd_pmac_resume(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 snd_pmac_sound_feature(chip, 1);
1370 if (chip->resume)
1371 chip->resume(chip);
1372 /* enable CD sound input */
Takashi Iwai5e12bea2005-11-17 17:17:08 +01001373 if (chip->macio_base && chip->is_pbook_G3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 out_8(chip->macio_base + 0x37, 3);
Takashi Iwai5e12bea2005-11-17 17:17:08 +01001375 else if (chip->is_pbook_3400)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 in_8(chip->latch_base + 0x190);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378 snd_pmac_pcm_set_format(chip);
1379
1380 if (chip->irq >= 0)
1381 enable_irq(chip->irq);
1382 if (chip->tx_irq >= 0)
1383 enable_irq(chip->tx_irq);
1384 if (chip->rx_irq >= 0)
1385 enable_irq(chip->rx_irq);
1386
Takashi Iwai5e12bea2005-11-17 17:17:08 +01001387 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388}
1389
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -07001390#endif /* CONFIG_PM */
1391