1 // SPDX-License-Identifier: GPL-2.0-only
4 * Copyright Adrian McMenamin 2005, 2006, 2007
5 * <adrian@mcmen.demon.co.uk>
6 * Requires firmware (BSD licenced) available from:
7 * http://linuxdc.cvs.sourceforge.net/linuxdc/linux-sh-dc/sound/oss/aica/firmware/
11 #include <linux/init.h>
12 #include <linux/jiffies.h>
13 #include <linux/slab.h>
14 #include <linux/time.h>
15 #include <linux/wait.h>
16 #include <linux/module.h>
17 #include <linux/platform_device.h>
18 #include <linux/firmware.h>
19 #include <linux/timer.h>
20 #include <linux/delay.h>
21 #include <linux/workqueue.h>
23 #include <sound/core.h>
24 #include <sound/control.h>
25 #include <sound/pcm.h>
26 #include <sound/initval.h>
27 #include <sound/info.h>
29 #include <mach/sysasic.h>
32 MODULE_AUTHOR("Adrian McMenamin <adrian@mcmen.demon.co.uk>");
33 MODULE_DESCRIPTION("Dreamcast AICA sound (pcm) driver");
34 MODULE_LICENSE("GPL");
35 MODULE_FIRMWARE("aica_firmware.bin");
37 /* module parameters */
38 #define CARD_NAME "AICA"
39 static int index = -1;
41 static bool enable = 1;
42 module_param(index, int, 0444);
43 MODULE_PARM_DESC(index, "Index value for " CARD_NAME " soundcard.");
44 module_param(id, charp, 0444);
45 MODULE_PARM_DESC(id, "ID string for " CARD_NAME " soundcard.");
46 module_param(enable, bool, 0644);
47 MODULE_PARM_DESC(enable, "Enable " CARD_NAME " soundcard.");
49 /* Simple platform device */
50 static struct platform_device *pd;
51 static struct resource aica_memory_space[2] = {
53 .name = "AICA ARM CONTROL",
54 .start = ARM_RESET_REGISTER,
55 .flags = IORESOURCE_MEM,
56 .end = ARM_RESET_REGISTER + 3,
59 .name = "AICA Sound RAM",
60 .start = SPU_MEMORY_BASE,
61 .flags = IORESOURCE_MEM,
62 .end = SPU_MEMORY_BASE + 0x200000 - 1,
66 /* SPU specific functions */
67 /* spu_write_wait - wait for G2-SH FIFO to clear */
68 static void spu_write_wait(void)
73 if (!(readl(G2_FIFO) & 0x11))
75 /* To ensure hardware failure doesn't wedge kernel */
77 if (time_count > 0x10000) {
79 ("WARNING: G2 FIFO appears to be blocked.\n");
85 /* spu_memset - write to memory in SPU address space */
86 static void spu_memset(u32 toi, u32 what, int length)
90 if (snd_BUG_ON(length % 4))
92 for (i = 0; i < length; i++) {
95 local_irq_save(flags);
96 writel(what, toi + SPU_MEMORY_BASE);
97 local_irq_restore(flags);
102 /* spu_memload - write to SPU address space */
103 static void spu_memload(u32 toi, const void *from, int length)
106 const u32 *froml = from;
107 u32 __iomem *to = (u32 __iomem *) (SPU_MEMORY_BASE + toi);
110 length = DIV_ROUND_UP(length, 4);
112 for (i = 0; i < length; i++) {
116 local_irq_save(flags);
118 local_irq_restore(flags);
124 /* spu_disable - set spu registers to stop sound output */
125 static void spu_disable(void)
131 regval = readl(ARM_RESET_REGISTER);
134 local_irq_save(flags);
135 writel(regval, ARM_RESET_REGISTER);
136 local_irq_restore(flags);
137 for (i = 0; i < 64; i++) {
139 regval = readl(SPU_REGISTER_BASE + (i * 0x80));
140 regval = (regval & ~0x4000) | 0x8000;
142 local_irq_save(flags);
143 writel(regval, SPU_REGISTER_BASE + (i * 0x80));
144 local_irq_restore(flags);
148 /* spu_enable - set spu registers to enable sound output */
149 static void spu_enable(void)
152 u32 regval = readl(ARM_RESET_REGISTER);
155 local_irq_save(flags);
156 writel(regval, ARM_RESET_REGISTER);
157 local_irq_restore(flags);
161 * Halt the sound processor, clear the memory,
162 * load some default ARM7 code, and then restart ARM7
164 static void spu_reset(void)
168 spu_memset(0, 0, 0x200000 / 4);
169 /* Put ARM7 in endless loop */
170 local_irq_save(flags);
171 __raw_writel(0xea000002, SPU_MEMORY_BASE);
172 local_irq_restore(flags);
176 /* aica_chn_start - write to spu to start playback */
177 static void aica_chn_start(void)
181 local_irq_save(flags);
182 writel(AICA_CMD_KICK | AICA_CMD_START, (u32 *) AICA_CONTROL_POINT);
183 local_irq_restore(flags);
186 /* aica_chn_halt - write to spu to halt playback */
187 static void aica_chn_halt(void)
191 local_irq_save(flags);
192 writel(AICA_CMD_KICK | AICA_CMD_STOP, (u32 *) AICA_CONTROL_POINT);
193 local_irq_restore(flags);
196 /* ALSA code below */
197 static const struct snd_pcm_hardware snd_pcm_aica_playback_hw = {
198 .info = (SNDRV_PCM_INFO_NONINTERLEAVED),
200 (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE |
201 SNDRV_PCM_FMTBIT_IMA_ADPCM),
202 .rates = SNDRV_PCM_RATE_8000_48000,
207 .buffer_bytes_max = AICA_BUFFER_SIZE,
208 .period_bytes_min = AICA_PERIOD_SIZE,
209 .period_bytes_max = AICA_PERIOD_SIZE,
210 .periods_min = AICA_PERIOD_NUMBER,
211 .periods_max = AICA_PERIOD_NUMBER,
214 static int aica_dma_transfer(int channels, int buffer_size,
215 struct snd_pcm_substream *substream)
217 int q, err, period_offset;
218 struct snd_card_aica *dreamcastcard;
219 struct snd_pcm_runtime *runtime;
222 dreamcastcard = substream->pcm->private_data;
223 period_offset = dreamcastcard->clicks;
224 period_offset %= (AICA_PERIOD_NUMBER / channels);
225 runtime = substream->runtime;
226 for (q = 0; q < channels; q++) {
227 local_irq_save(flags);
228 err = dma_xfer(AICA_DMA_CHANNEL,
229 (unsigned long) (runtime->dma_area +
230 (AICA_BUFFER_SIZE * q) /
234 AICA_CHANNEL0_OFFSET + q * CHANNEL_OFFSET +
235 AICA_PERIOD_SIZE * period_offset,
236 buffer_size / channels, AICA_DMA_MODE);
237 if (unlikely(err < 0)) {
238 local_irq_restore(flags);
241 dma_wait_for_completion(AICA_DMA_CHANNEL);
242 local_irq_restore(flags);
247 static void startup_aica(struct snd_card_aica *dreamcastcard)
249 spu_memload(AICA_CHANNEL0_CONTROL_OFFSET,
250 dreamcastcard->channel, sizeof(struct aica_channel));
254 static void run_spu_dma(struct work_struct *work)
257 struct snd_pcm_runtime *runtime;
258 struct snd_card_aica *dreamcastcard;
260 container_of(work, struct snd_card_aica, spu_dma_work);
261 runtime = dreamcastcard->substream->runtime;
262 if (unlikely(dreamcastcard->dma_check == 0)) {
264 frames_to_bytes(runtime, runtime->buffer_size);
265 if (runtime->channels > 1)
266 dreamcastcard->channel->flags |= 0x01;
267 aica_dma_transfer(runtime->channels, buffer_size,
268 dreamcastcard->substream);
269 startup_aica(dreamcastcard);
270 dreamcastcard->clicks =
271 buffer_size / (AICA_PERIOD_SIZE * runtime->channels);
274 aica_dma_transfer(runtime->channels,
275 AICA_PERIOD_SIZE * runtime->channels,
276 dreamcastcard->substream);
277 snd_pcm_period_elapsed(dreamcastcard->substream);
278 dreamcastcard->clicks++;
279 if (unlikely(dreamcastcard->clicks >= AICA_PERIOD_NUMBER))
280 dreamcastcard->clicks %= AICA_PERIOD_NUMBER;
281 mod_timer(&dreamcastcard->timer, jiffies + 1);
285 static void aica_period_elapsed(struct timer_list *t)
287 struct snd_card_aica *dreamcastcard = from_timer(dreamcastcard,
289 struct snd_pcm_substream *substream = dreamcastcard->substream;
290 /*timer function - so cannot sleep */
292 struct snd_pcm_runtime *runtime;
293 runtime = substream->runtime;
294 dreamcastcard = substream->pcm->private_data;
295 /* Have we played out an additional period? */
297 frames_to_bytes(runtime,
299 (AICA_CONTROL_CHANNEL_SAMPLE_NUMBER)) /
301 if (play_period == dreamcastcard->current_period) {
302 /* reschedule the timer */
303 mod_timer(&(dreamcastcard->timer), jiffies + 1);
306 if (runtime->channels > 1)
307 dreamcastcard->current_period = play_period;
308 if (unlikely(dreamcastcard->dma_check == 0))
309 dreamcastcard->dma_check = 1;
310 schedule_work(&(dreamcastcard->spu_dma_work));
313 static void spu_begin_dma(struct snd_pcm_substream *substream)
315 struct snd_card_aica *dreamcastcard;
316 struct snd_pcm_runtime *runtime;
317 runtime = substream->runtime;
318 dreamcastcard = substream->pcm->private_data;
319 /*get the queue to do the work */
320 schedule_work(&(dreamcastcard->spu_dma_work));
321 mod_timer(&dreamcastcard->timer, jiffies + 4);
324 static int snd_aicapcm_pcm_open(struct snd_pcm_substream
327 struct snd_pcm_runtime *runtime;
328 struct aica_channel *channel;
329 struct snd_card_aica *dreamcastcard;
332 dreamcastcard = substream->pcm->private_data;
333 channel = kmalloc(sizeof(struct aica_channel), GFP_KERNEL);
336 /* set defaults for channel */
337 channel->sfmt = SM_8BIT;
338 channel->cmd = AICA_CMD_START;
339 channel->vol = dreamcastcard->master_volume;
342 channel->flags = 0; /* default to mono */
343 dreamcastcard->channel = channel;
344 runtime = substream->runtime;
345 runtime->hw = snd_pcm_aica_playback_hw;
347 dreamcastcard->clicks = 0;
348 dreamcastcard->current_period = 0;
349 dreamcastcard->dma_check = 0;
353 static int snd_aicapcm_pcm_close(struct snd_pcm_substream
356 struct snd_card_aica *dreamcastcard = substream->pcm->private_data;
357 flush_work(&(dreamcastcard->spu_dma_work));
358 del_timer(&dreamcastcard->timer);
359 dreamcastcard->substream = NULL;
360 kfree(dreamcastcard->channel);
365 static int snd_aicapcm_pcm_prepare(struct snd_pcm_substream
368 struct snd_card_aica *dreamcastcard = substream->pcm->private_data;
369 if ((substream->runtime)->format == SNDRV_PCM_FORMAT_S16_LE)
370 dreamcastcard->channel->sfmt = SM_16BIT;
371 dreamcastcard->channel->freq = substream->runtime->rate;
372 dreamcastcard->substream = substream;
376 static int snd_aicapcm_pcm_trigger(struct snd_pcm_substream
380 case SNDRV_PCM_TRIGGER_START:
381 spu_begin_dma(substream);
383 case SNDRV_PCM_TRIGGER_STOP:
392 static unsigned long snd_aicapcm_pcm_pointer(struct snd_pcm_substream
395 return readl(AICA_CONTROL_CHANNEL_SAMPLE_NUMBER);
398 static const struct snd_pcm_ops snd_aicapcm_playback_ops = {
399 .open = snd_aicapcm_pcm_open,
400 .close = snd_aicapcm_pcm_close,
401 .prepare = snd_aicapcm_pcm_prepare,
402 .trigger = snd_aicapcm_pcm_trigger,
403 .pointer = snd_aicapcm_pcm_pointer,
406 /* TO DO: set up to handle more than one pcm instance */
407 static int __init snd_aicapcmchip(struct snd_card_aica
408 *dreamcastcard, int pcm_index)
412 /* AICA has no capture ability */
414 snd_pcm_new(dreamcastcard->card, "AICA PCM", pcm_index, 1, 0,
416 if (unlikely(err < 0))
418 pcm->private_data = dreamcastcard;
419 strcpy(pcm->name, "AICA PCM");
420 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
421 &snd_aicapcm_playback_ops);
422 /* Allocate the DMA buffers */
423 snd_pcm_set_managed_buffer_all(pcm,
424 SNDRV_DMA_TYPE_CONTINUOUS,
432 #define aica_pcmswitch_info snd_ctl_boolean_mono_info
434 static int aica_pcmswitch_get(struct snd_kcontrol *kcontrol,
435 struct snd_ctl_elem_value *ucontrol)
437 ucontrol->value.integer.value[0] = 1; /* TO DO: Fix me */
441 static int aica_pcmswitch_put(struct snd_kcontrol *kcontrol,
442 struct snd_ctl_elem_value *ucontrol)
444 if (ucontrol->value.integer.value[0] == 1)
445 return 0; /* TO DO: Fix me */
451 static int aica_pcmvolume_info(struct snd_kcontrol *kcontrol,
452 struct snd_ctl_elem_info *uinfo)
454 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
456 uinfo->value.integer.min = 0;
457 uinfo->value.integer.max = 0xFF;
461 static int aica_pcmvolume_get(struct snd_kcontrol *kcontrol,
462 struct snd_ctl_elem_value *ucontrol)
464 struct snd_card_aica *dreamcastcard;
465 dreamcastcard = kcontrol->private_data;
466 if (unlikely(!dreamcastcard->channel))
467 return -ETXTBSY; /* we've not yet been set up */
468 ucontrol->value.integer.value[0] = dreamcastcard->channel->vol;
472 static int aica_pcmvolume_put(struct snd_kcontrol *kcontrol,
473 struct snd_ctl_elem_value *ucontrol)
475 struct snd_card_aica *dreamcastcard;
477 dreamcastcard = kcontrol->private_data;
478 if (unlikely(!dreamcastcard->channel))
480 vol = ucontrol->value.integer.value[0];
483 if (unlikely(dreamcastcard->channel->vol == vol))
485 dreamcastcard->channel->vol = ucontrol->value.integer.value[0];
486 dreamcastcard->master_volume = ucontrol->value.integer.value[0];
487 spu_memload(AICA_CHANNEL0_CONTROL_OFFSET,
488 dreamcastcard->channel, sizeof(struct aica_channel));
492 static const struct snd_kcontrol_new snd_aica_pcmswitch_control = {
493 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
494 .name = "PCM Playback Switch",
496 .info = aica_pcmswitch_info,
497 .get = aica_pcmswitch_get,
498 .put = aica_pcmswitch_put
501 static const struct snd_kcontrol_new snd_aica_pcmvolume_control = {
502 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
503 .name = "PCM Playback Volume",
505 .info = aica_pcmvolume_info,
506 .get = aica_pcmvolume_get,
507 .put = aica_pcmvolume_put
510 static int load_aica_firmware(void)
513 const struct firmware *fw_entry;
515 err = request_firmware(&fw_entry, "aica_firmware.bin", &pd->dev);
518 /* write firmware into memory */
520 spu_memload(0, fw_entry->data, fw_entry->size);
522 release_firmware(fw_entry);
526 static int add_aicamixer_controls(struct snd_card_aica *dreamcastcard)
530 (dreamcastcard->card,
531 snd_ctl_new1(&snd_aica_pcmvolume_control, dreamcastcard));
532 if (unlikely(err < 0))
535 (dreamcastcard->card,
536 snd_ctl_new1(&snd_aica_pcmswitch_control, dreamcastcard));
537 if (unlikely(err < 0))
542 static int snd_aica_remove(struct platform_device *devptr)
544 struct snd_card_aica *dreamcastcard;
545 dreamcastcard = platform_get_drvdata(devptr);
546 if (unlikely(!dreamcastcard))
548 snd_card_free(dreamcastcard->card);
549 kfree(dreamcastcard);
553 static int snd_aica_probe(struct platform_device *devptr)
556 struct snd_card_aica *dreamcastcard;
557 dreamcastcard = kzalloc(sizeof(struct snd_card_aica), GFP_KERNEL);
558 if (unlikely(!dreamcastcard))
560 err = snd_card_new(&devptr->dev, index, SND_AICA_DRIVER,
561 THIS_MODULE, 0, &dreamcastcard->card);
562 if (unlikely(err < 0)) {
563 kfree(dreamcastcard);
566 strcpy(dreamcastcard->card->driver, "snd_aica");
567 strcpy(dreamcastcard->card->shortname, SND_AICA_DRIVER);
568 strcpy(dreamcastcard->card->longname,
569 "Yamaha AICA Super Intelligent Sound Processor for SEGA Dreamcast");
570 /* Prepare to use the queue */
571 INIT_WORK(&(dreamcastcard->spu_dma_work), run_spu_dma);
572 timer_setup(&dreamcastcard->timer, aica_period_elapsed, 0);
573 /* Load the PCM 'chip' */
574 err = snd_aicapcmchip(dreamcastcard, 0);
575 if (unlikely(err < 0))
577 /* Add basic controls */
578 err = add_aicamixer_controls(dreamcastcard);
579 if (unlikely(err < 0))
581 /* Register the card with ALSA subsystem */
582 err = snd_card_register(dreamcastcard->card);
583 if (unlikely(err < 0))
585 platform_set_drvdata(devptr, dreamcastcard);
587 ("ALSA Driver for Yamaha AICA Super Intelligent Sound Processor\n");
590 snd_card_free(dreamcastcard->card);
591 kfree(dreamcastcard);
595 static struct platform_driver snd_aica_driver = {
596 .probe = snd_aica_probe,
597 .remove = snd_aica_remove,
599 .name = SND_AICA_DRIVER,
603 static int __init aica_init(void)
606 err = platform_driver_register(&snd_aica_driver);
607 if (unlikely(err < 0))
609 pd = platform_device_register_simple(SND_AICA_DRIVER, -1,
610 aica_memory_space, 2);
612 platform_driver_unregister(&snd_aica_driver);
615 /* Load the firmware */
616 return load_aica_firmware();
619 static void __exit aica_exit(void)
621 platform_device_unregister(pd);
622 platform_driver_unregister(&snd_aica_driver);
623 /* Kill any sound still playing and reset ARM7 to safe state */
627 module_init(aica_init);
628 module_exit(aica_exit);