1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Audio support for PS3 4 * Copyright (C) 2007 Sony Computer Entertainment Inc. 5 * All rights reserved. 6 * Copyright 2006, 2007 Sony Corporation 7 */ 8 9 #include <linux/dma-mapping.h> 10 #include <linux/dmapool.h> 11 #include <linux/gfp.h> 12 #include <linux/init.h> 13 #include <linux/interrupt.h> 14 #include <linux/io.h> 15 #include <linux/module.h> 16 17 #include <sound/asound.h> 18 #include <sound/control.h> 19 #include <sound/core.h> 20 #include <sound/initval.h> 21 #include <sound/memalloc.h> 22 #include <sound/pcm.h> 23 #include <sound/pcm_params.h> 24 25 #include <asm/dma.h> 26 #include <asm/firmware.h> 27 #include <asm/lv1call.h> 28 #include <asm/ps3.h> 29 #include <asm/ps3av.h> 30 31 #include "snd_ps3.h" 32 #include "snd_ps3_reg.h" 33 34 35 /* 36 * global 37 */ 38 static struct snd_ps3_card_info the_card; 39 40 static int snd_ps3_start_delay = CONFIG_SND_PS3_DEFAULT_START_DELAY; 41 42 module_param_named(start_delay, snd_ps3_start_delay, uint, 0644); 43 MODULE_PARM_DESC(start_delay, "time to insert silent data in ms"); 44 45 static int index = SNDRV_DEFAULT_IDX1; 46 static char *id = SNDRV_DEFAULT_STR1; 47 48 module_param(index, int, 0444); 49 MODULE_PARM_DESC(index, "Index value for PS3 soundchip."); 50 module_param(id, charp, 0444); 51 MODULE_PARM_DESC(id, "ID string for PS3 soundchip."); 52 53 54 /* 55 * PS3 audio register access 56 */ 57 static inline u32 read_reg(unsigned int reg) 58 { 59 return in_be32(the_card.mapped_mmio_vaddr + reg); 60 } 61 static inline void write_reg(unsigned int reg, u32 val) 62 { 63 out_be32(the_card.mapped_mmio_vaddr + reg, val); 64 } 65 static inline void update_reg(unsigned int reg, u32 or_val) 66 { 67 u32 newval = read_reg(reg) | or_val; 68 write_reg(reg, newval); 69 } 70 static inline void update_mask_reg(unsigned int reg, u32 mask, u32 or_val) 71 { 72 u32 newval = (read_reg(reg) & mask) | or_val; 73 write_reg(reg, newval); 74 } 75 76 /* 77 * ALSA defs 78 */ 79 static const struct snd_pcm_hardware snd_ps3_pcm_hw = { 80 .info = (SNDRV_PCM_INFO_MMAP | 81 SNDRV_PCM_INFO_NONINTERLEAVED | 82 SNDRV_PCM_INFO_MMAP_VALID), 83 .formats = (SNDRV_PCM_FMTBIT_S16_BE | 84 SNDRV_PCM_FMTBIT_S24_BE), 85 .rates = (SNDRV_PCM_RATE_44100 | 86 SNDRV_PCM_RATE_48000 | 87 SNDRV_PCM_RATE_88200 | 88 SNDRV_PCM_RATE_96000), 89 .rate_min = 44100, 90 .rate_max = 96000, 91 92 .channels_min = 2, /* stereo only */ 93 .channels_max = 2, 94 95 .buffer_bytes_max = PS3_AUDIO_FIFO_SIZE * 64, 96 97 /* interrupt by four stages */ 98 .period_bytes_min = PS3_AUDIO_FIFO_STAGE_SIZE * 4, 99 .period_bytes_max = PS3_AUDIO_FIFO_STAGE_SIZE * 4, 100 101 .periods_min = 16, 102 .periods_max = 32, /* buffer_size_max/ period_bytes_max */ 103 104 .fifo_size = PS3_AUDIO_FIFO_SIZE 105 }; 106 107 static int snd_ps3_verify_dma_stop(struct snd_ps3_card_info *card, 108 int count, int force_stop) 109 { 110 int dma_ch, done, retries, stop_forced = 0; 111 uint32_t status; 112 113 for (dma_ch = 0; dma_ch < 8; dma_ch++) { 114 retries = count; 115 do { 116 status = read_reg(PS3_AUDIO_KICK(dma_ch)) & 117 PS3_AUDIO_KICK_STATUS_MASK; 118 switch (status) { 119 case PS3_AUDIO_KICK_STATUS_DONE: 120 case PS3_AUDIO_KICK_STATUS_NOTIFY: 121 case PS3_AUDIO_KICK_STATUS_CLEAR: 122 case PS3_AUDIO_KICK_STATUS_ERROR: 123 done = 1; 124 break; 125 default: 126 done = 0; 127 udelay(10); 128 } 129 } while (!done && --retries); 130 if (!retries && force_stop) { 131 pr_info("%s: DMA ch %d is not stopped.", 132 __func__, dma_ch); 133 /* last resort. force to stop dma. 134 * NOTE: this cause DMA done interrupts 135 */ 136 update_reg(PS3_AUDIO_CONFIG, PS3_AUDIO_CONFIG_CLEAR); 137 stop_forced = 1; 138 } 139 } 140 return stop_forced; 141 } 142 143 /* 144 * wait for all dma is done. 145 * NOTE: caller should reset card->running before call. 146 * If not, the interrupt handler will re-start DMA, 147 * then DMA is never stopped. 148 */ 149 static void snd_ps3_wait_for_dma_stop(struct snd_ps3_card_info *card) 150 { 151 int stop_forced; 152 /* 153 * wait for the last dma is done 154 */ 155 156 /* 157 * expected maximum DMA done time is 5.7ms + something (DMA itself). 158 * 5.7ms is from 16bit/sample 2ch 44.1Khz; the time next 159 * DMA kick event would occur. 160 */ 161 stop_forced = snd_ps3_verify_dma_stop(card, 700, 1); 162 163 /* 164 * clear outstanding interrupts. 165 */ 166 update_reg(PS3_AUDIO_INTR_0, 0); 167 update_reg(PS3_AUDIO_AX_IS, 0); 168 169 /* 170 *revert CLEAR bit since it will not reset automatically after DMA stop 171 */ 172 if (stop_forced) 173 update_mask_reg(PS3_AUDIO_CONFIG, ~PS3_AUDIO_CONFIG_CLEAR, 0); 174 /* ensure the hardware sees changes */ 175 wmb(); 176 } 177 178 static void snd_ps3_kick_dma(struct snd_ps3_card_info *card) 179 { 180 181 update_reg(PS3_AUDIO_KICK(0), PS3_AUDIO_KICK_REQUEST); 182 /* ensure the hardware sees the change */ 183 wmb(); 184 } 185 186 /* 187 * convert virtual addr to ioif bus addr. 188 */ 189 static dma_addr_t v_to_bus(struct snd_ps3_card_info *card, void *paddr, int ch) 190 { 191 return card->dma_start_bus_addr[ch] + 192 (paddr - card->dma_start_vaddr[ch]); 193 }; 194 195 196 /* 197 * increment ring buffer pointer. 198 * NOTE: caller must hold write spinlock 199 */ 200 static void snd_ps3_bump_buffer(struct snd_ps3_card_info *card, 201 enum snd_ps3_ch ch, size_t byte_count, 202 int stage) 203 { 204 if (!stage) 205 card->dma_last_transfer_vaddr[ch] = 206 card->dma_next_transfer_vaddr[ch]; 207 card->dma_next_transfer_vaddr[ch] += byte_count; 208 if ((card->dma_start_vaddr[ch] + (card->dma_buffer_size / 2)) <= 209 card->dma_next_transfer_vaddr[ch]) { 210 card->dma_next_transfer_vaddr[ch] = card->dma_start_vaddr[ch]; 211 } 212 } 213 /* 214 * setup dmac to send data to audio and attenuate samples on the ring buffer 215 */ 216 static int snd_ps3_program_dma(struct snd_ps3_card_info *card, 217 enum snd_ps3_dma_filltype filltype) 218 { 219 /* this dmac does not support over 4G */ 220 uint32_t dma_addr; 221 int fill_stages, dma_ch, stage; 222 enum snd_ps3_ch ch; 223 uint32_t ch0_kick_event = 0; /* initialize to mute gcc */ 224 unsigned long irqsave; 225 int silent = 0; 226 227 switch (filltype) { 228 case SND_PS3_DMA_FILLTYPE_SILENT_FIRSTFILL: 229 silent = 1; 230 /* intentionally fall thru */ 231 case SND_PS3_DMA_FILLTYPE_FIRSTFILL: 232 ch0_kick_event = PS3_AUDIO_KICK_EVENT_ALWAYS; 233 break; 234 235 case SND_PS3_DMA_FILLTYPE_SILENT_RUNNING: 236 silent = 1; 237 /* intentionally fall thru */ 238 case SND_PS3_DMA_FILLTYPE_RUNNING: 239 ch0_kick_event = PS3_AUDIO_KICK_EVENT_SERIALOUT0_EMPTY; 240 break; 241 } 242 243 snd_ps3_verify_dma_stop(card, 700, 0); 244 fill_stages = 4; 245 spin_lock_irqsave(&card->dma_lock, irqsave); 246 for (ch = 0; ch < 2; ch++) { 247 for (stage = 0; stage < fill_stages; stage++) { 248 dma_ch = stage * 2 + ch; 249 if (silent) 250 dma_addr = card->null_buffer_start_dma_addr; 251 else 252 dma_addr = 253 v_to_bus(card, 254 card->dma_next_transfer_vaddr[ch], 255 ch); 256 257 write_reg(PS3_AUDIO_SOURCE(dma_ch), 258 (PS3_AUDIO_SOURCE_TARGET_SYSTEM_MEMORY | 259 dma_addr)); 260 261 /* dst: fixed to 3wire#0 */ 262 if (ch == 0) 263 write_reg(PS3_AUDIO_DEST(dma_ch), 264 (PS3_AUDIO_DEST_TARGET_AUDIOFIFO | 265 PS3_AUDIO_AO_3W_LDATA(0))); 266 else 267 write_reg(PS3_AUDIO_DEST(dma_ch), 268 (PS3_AUDIO_DEST_TARGET_AUDIOFIFO | 269 PS3_AUDIO_AO_3W_RDATA(0))); 270 271 /* count always 1 DMA block (1/2 stage = 128 bytes) */ 272 write_reg(PS3_AUDIO_DMASIZE(dma_ch), 0); 273 /* bump pointer if needed */ 274 if (!silent) 275 snd_ps3_bump_buffer(card, ch, 276 PS3_AUDIO_DMAC_BLOCK_SIZE, 277 stage); 278 279 /* kick event */ 280 if (dma_ch == 0) 281 write_reg(PS3_AUDIO_KICK(dma_ch), 282 ch0_kick_event); 283 else 284 write_reg(PS3_AUDIO_KICK(dma_ch), 285 PS3_AUDIO_KICK_EVENT_AUDIO_DMA(dma_ch 286 - 1) | 287 PS3_AUDIO_KICK_REQUEST); 288 } 289 } 290 /* ensure the hardware sees the change */ 291 wmb(); 292 spin_unlock_irqrestore(&card->dma_lock, irqsave); 293 294 return 0; 295 } 296 297 /* 298 * Interrupt handler 299 */ 300 static irqreturn_t snd_ps3_interrupt(int irq, void *dev_id) 301 { 302 303 uint32_t port_intr; 304 int underflow_occured = 0; 305 struct snd_ps3_card_info *card = dev_id; 306 307 if (!card->running) { 308 update_reg(PS3_AUDIO_AX_IS, 0); 309 update_reg(PS3_AUDIO_INTR_0, 0); 310 return IRQ_HANDLED; 311 } 312 313 port_intr = read_reg(PS3_AUDIO_AX_IS); 314 /* 315 *serial buffer empty detected (every 4 times), 316 *program next dma and kick it 317 */ 318 if (port_intr & PS3_AUDIO_AX_IE_ASOBEIE(0)) { 319 write_reg(PS3_AUDIO_AX_IS, PS3_AUDIO_AX_IE_ASOBEIE(0)); 320 if (port_intr & PS3_AUDIO_AX_IE_ASOBUIE(0)) { 321 write_reg(PS3_AUDIO_AX_IS, port_intr); 322 underflow_occured = 1; 323 } 324 if (card->silent) { 325 /* we are still in silent time */ 326 snd_ps3_program_dma(card, 327 (underflow_occured) ? 328 SND_PS3_DMA_FILLTYPE_SILENT_FIRSTFILL : 329 SND_PS3_DMA_FILLTYPE_SILENT_RUNNING); 330 snd_ps3_kick_dma(card); 331 card->silent--; 332 } else { 333 snd_ps3_program_dma(card, 334 (underflow_occured) ? 335 SND_PS3_DMA_FILLTYPE_FIRSTFILL : 336 SND_PS3_DMA_FILLTYPE_RUNNING); 337 snd_ps3_kick_dma(card); 338 snd_pcm_period_elapsed(card->substream); 339 } 340 } else if (port_intr & PS3_AUDIO_AX_IE_ASOBUIE(0)) { 341 write_reg(PS3_AUDIO_AX_IS, PS3_AUDIO_AX_IE_ASOBUIE(0)); 342 /* 343 * serial out underflow, but buffer empty not detected. 344 * in this case, fill fifo with 0 to recover. After 345 * filling dummy data, serial automatically start to 346 * consume them and then will generate normal buffer 347 * empty interrupts. 348 * If both buffer underflow and buffer empty are occurred, 349 * it is better to do nomal data transfer than empty one 350 */ 351 snd_ps3_program_dma(card, 352 SND_PS3_DMA_FILLTYPE_SILENT_FIRSTFILL); 353 snd_ps3_kick_dma(card); 354 snd_ps3_program_dma(card, 355 SND_PS3_DMA_FILLTYPE_SILENT_FIRSTFILL); 356 snd_ps3_kick_dma(card); 357 } 358 /* clear interrupt cause */ 359 return IRQ_HANDLED; 360 }; 361 362 /* 363 * audio mute on/off 364 * mute_on : 0 output enabled 365 * 1 mute 366 */ 367 static int snd_ps3_mute(int mute_on) 368 { 369 return ps3av_audio_mute(mute_on); 370 } 371 372 /* 373 * av setting 374 * NOTE: calling this function may generate audio interrupt. 375 */ 376 static int snd_ps3_change_avsetting(struct snd_ps3_card_info *card) 377 { 378 int ret, retries, i; 379 pr_debug("%s: start\n", __func__); 380 381 ret = ps3av_set_audio_mode(card->avs.avs_audio_ch, 382 card->avs.avs_audio_rate, 383 card->avs.avs_audio_width, 384 card->avs.avs_audio_format, 385 card->avs.avs_audio_source); 386 /* 387 * Reset the following unwanted settings: 388 */ 389 390 /* disable all 3wire buffers */ 391 update_mask_reg(PS3_AUDIO_AO_3WMCTRL, 392 ~(PS3_AUDIO_AO_3WMCTRL_ASOEN(0) | 393 PS3_AUDIO_AO_3WMCTRL_ASOEN(1) | 394 PS3_AUDIO_AO_3WMCTRL_ASOEN(2) | 395 PS3_AUDIO_AO_3WMCTRL_ASOEN(3)), 396 0); 397 wmb(); /* ensure the hardware sees the change */ 398 /* wait for actually stopped */ 399 retries = 1000; 400 while ((read_reg(PS3_AUDIO_AO_3WMCTRL) & 401 (PS3_AUDIO_AO_3WMCTRL_ASORUN(0) | 402 PS3_AUDIO_AO_3WMCTRL_ASORUN(1) | 403 PS3_AUDIO_AO_3WMCTRL_ASORUN(2) | 404 PS3_AUDIO_AO_3WMCTRL_ASORUN(3))) && 405 --retries) { 406 udelay(1); 407 } 408 409 /* reset buffer pointer */ 410 for (i = 0; i < 4; i++) { 411 update_reg(PS3_AUDIO_AO_3WCTRL(i), 412 PS3_AUDIO_AO_3WCTRL_ASOBRST_RESET); 413 udelay(10); 414 } 415 wmb(); /* ensure the hardware actually start resetting */ 416 417 /* enable 3wire#0 buffer */ 418 update_reg(PS3_AUDIO_AO_3WMCTRL, PS3_AUDIO_AO_3WMCTRL_ASOEN(0)); 419 420 421 /* In 24bit mode,ALSA inserts a zero byte at first byte of per sample */ 422 update_mask_reg(PS3_AUDIO_AO_3WCTRL(0), 423 ~PS3_AUDIO_AO_3WCTRL_ASODF, 424 PS3_AUDIO_AO_3WCTRL_ASODF_LSB); 425 update_mask_reg(PS3_AUDIO_AO_SPDCTRL(0), 426 ~PS3_AUDIO_AO_SPDCTRL_SPODF, 427 PS3_AUDIO_AO_SPDCTRL_SPODF_LSB); 428 /* ensure all the setting above is written back to register */ 429 wmb(); 430 /* avsetting driver altered AX_IE, caller must reset it if you want */ 431 pr_debug("%s: end\n", __func__); 432 return ret; 433 } 434 435 /* 436 * set sampling rate according to the substream 437 */ 438 static int snd_ps3_set_avsetting(struct snd_pcm_substream *substream) 439 { 440 struct snd_ps3_card_info *card = snd_pcm_substream_chip(substream); 441 struct snd_ps3_avsetting_info avs; 442 int ret; 443 444 avs = card->avs; 445 446 pr_debug("%s: called freq=%d width=%d\n", __func__, 447 substream->runtime->rate, 448 snd_pcm_format_width(substream->runtime->format)); 449 450 pr_debug("%s: before freq=%d width=%d\n", __func__, 451 card->avs.avs_audio_rate, card->avs.avs_audio_width); 452 453 /* sample rate */ 454 switch (substream->runtime->rate) { 455 case 44100: 456 avs.avs_audio_rate = PS3AV_CMD_AUDIO_FS_44K; 457 break; 458 case 48000: 459 avs.avs_audio_rate = PS3AV_CMD_AUDIO_FS_48K; 460 break; 461 case 88200: 462 avs.avs_audio_rate = PS3AV_CMD_AUDIO_FS_88K; 463 break; 464 case 96000: 465 avs.avs_audio_rate = PS3AV_CMD_AUDIO_FS_96K; 466 break; 467 default: 468 pr_info("%s: invalid rate %d\n", __func__, 469 substream->runtime->rate); 470 return 1; 471 } 472 473 /* width */ 474 switch (snd_pcm_format_width(substream->runtime->format)) { 475 case 16: 476 avs.avs_audio_width = PS3AV_CMD_AUDIO_WORD_BITS_16; 477 break; 478 case 24: 479 avs.avs_audio_width = PS3AV_CMD_AUDIO_WORD_BITS_24; 480 break; 481 default: 482 pr_info("%s: invalid width %d\n", __func__, 483 snd_pcm_format_width(substream->runtime->format)); 484 return 1; 485 } 486 487 memcpy(avs.avs_cs_info, ps3av_mode_cs_info, 8); 488 489 if (memcmp(&card->avs, &avs, sizeof(avs))) { 490 pr_debug("%s: after freq=%d width=%d\n", __func__, 491 card->avs.avs_audio_rate, card->avs.avs_audio_width); 492 493 card->avs = avs; 494 snd_ps3_change_avsetting(card); 495 ret = 0; 496 } else 497 ret = 1; 498 499 /* check CS non-audio bit and mute accordingly */ 500 if (avs.avs_cs_info[0] & 0x02) 501 ps3av_audio_mute_analog(1); /* mute if non-audio */ 502 else 503 ps3av_audio_mute_analog(0); 504 505 return ret; 506 } 507 508 /* 509 * PCM operators 510 */ 511 static int snd_ps3_pcm_open(struct snd_pcm_substream *substream) 512 { 513 struct snd_pcm_runtime *runtime = substream->runtime; 514 struct snd_ps3_card_info *card = snd_pcm_substream_chip(substream); 515 516 /* to retrieve substream/runtime in interrupt handler */ 517 card->substream = substream; 518 519 runtime->hw = snd_ps3_pcm_hw; 520 521 card->start_delay = snd_ps3_start_delay; 522 523 /* mute off */ 524 snd_ps3_mute(0); /* this function sleep */ 525 526 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 527 PS3_AUDIO_FIFO_STAGE_SIZE * 4 * 2); 528 return 0; 529 }; 530 531 static int snd_ps3_pcm_close(struct snd_pcm_substream *substream) 532 { 533 /* mute on */ 534 snd_ps3_mute(1); 535 return 0; 536 }; 537 538 static int snd_ps3_pcm_hw_params(struct snd_pcm_substream *substream, 539 struct snd_pcm_hw_params *hw_params) 540 { 541 size_t size; 542 543 /* alloc transport buffer */ 544 size = params_buffer_bytes(hw_params); 545 snd_pcm_lib_malloc_pages(substream, size); 546 return 0; 547 }; 548 549 static int snd_ps3_pcm_hw_free(struct snd_pcm_substream *substream) 550 { 551 return snd_pcm_lib_free_pages(substream); 552 }; 553 554 static int snd_ps3_delay_to_bytes(struct snd_pcm_substream *substream, 555 unsigned int delay_ms) 556 { 557 int ret; 558 int rate ; 559 560 rate = substream->runtime->rate; 561 ret = snd_pcm_format_size(substream->runtime->format, 562 rate * delay_ms / 1000) 563 * substream->runtime->channels; 564 565 pr_debug("%s: time=%d rate=%d bytes=%ld, frames=%d, ret=%d\n", 566 __func__, 567 delay_ms, 568 rate, 569 snd_pcm_format_size(substream->runtime->format, rate), 570 rate * delay_ms / 1000, 571 ret); 572 573 return ret; 574 }; 575 576 static int snd_ps3_pcm_prepare(struct snd_pcm_substream *substream) 577 { 578 struct snd_pcm_runtime *runtime = substream->runtime; 579 struct snd_ps3_card_info *card = snd_pcm_substream_chip(substream); 580 unsigned long irqsave; 581 582 if (!snd_ps3_set_avsetting(substream)) { 583 /* some parameter changed */ 584 write_reg(PS3_AUDIO_AX_IE, 585 PS3_AUDIO_AX_IE_ASOBEIE(0) | 586 PS3_AUDIO_AX_IE_ASOBUIE(0)); 587 /* 588 * let SPDIF device re-lock with SPDIF signal, 589 * start with some silence 590 */ 591 card->silent = snd_ps3_delay_to_bytes(substream, 592 card->start_delay) / 593 (PS3_AUDIO_FIFO_STAGE_SIZE * 4); /* every 4 times */ 594 } 595 596 /* restart ring buffer pointer */ 597 spin_lock_irqsave(&card->dma_lock, irqsave); 598 { 599 card->dma_buffer_size = runtime->dma_bytes; 600 601 card->dma_last_transfer_vaddr[SND_PS3_CH_L] = 602 card->dma_next_transfer_vaddr[SND_PS3_CH_L] = 603 card->dma_start_vaddr[SND_PS3_CH_L] = 604 runtime->dma_area; 605 card->dma_start_bus_addr[SND_PS3_CH_L] = runtime->dma_addr; 606 607 card->dma_last_transfer_vaddr[SND_PS3_CH_R] = 608 card->dma_next_transfer_vaddr[SND_PS3_CH_R] = 609 card->dma_start_vaddr[SND_PS3_CH_R] = 610 runtime->dma_area + (runtime->dma_bytes / 2); 611 card->dma_start_bus_addr[SND_PS3_CH_R] = 612 runtime->dma_addr + (runtime->dma_bytes / 2); 613 614 pr_debug("%s: vaddr=%p bus=%#llx\n", __func__, 615 card->dma_start_vaddr[SND_PS3_CH_L], 616 card->dma_start_bus_addr[SND_PS3_CH_L]); 617 618 } 619 spin_unlock_irqrestore(&card->dma_lock, irqsave); 620 621 /* ensure the hardware sees the change */ 622 mb(); 623 624 return 0; 625 }; 626 627 static int snd_ps3_pcm_trigger(struct snd_pcm_substream *substream, 628 int cmd) 629 { 630 struct snd_ps3_card_info *card = snd_pcm_substream_chip(substream); 631 int ret = 0; 632 633 switch (cmd) { 634 case SNDRV_PCM_TRIGGER_START: 635 /* clear outstanding interrupts */ 636 update_reg(PS3_AUDIO_AX_IS, 0); 637 638 spin_lock(&card->dma_lock); 639 { 640 card->running = 1; 641 } 642 spin_unlock(&card->dma_lock); 643 644 snd_ps3_program_dma(card, 645 SND_PS3_DMA_FILLTYPE_SILENT_FIRSTFILL); 646 snd_ps3_kick_dma(card); 647 while (read_reg(PS3_AUDIO_KICK(7)) & 648 PS3_AUDIO_KICK_STATUS_MASK) { 649 udelay(1); 650 } 651 snd_ps3_program_dma(card, SND_PS3_DMA_FILLTYPE_SILENT_RUNNING); 652 snd_ps3_kick_dma(card); 653 break; 654 655 case SNDRV_PCM_TRIGGER_STOP: 656 spin_lock(&card->dma_lock); 657 { 658 card->running = 0; 659 } 660 spin_unlock(&card->dma_lock); 661 snd_ps3_wait_for_dma_stop(card); 662 break; 663 default: 664 break; 665 666 } 667 668 return ret; 669 }; 670 671 /* 672 * report current pointer 673 */ 674 static snd_pcm_uframes_t snd_ps3_pcm_pointer( 675 struct snd_pcm_substream *substream) 676 { 677 struct snd_ps3_card_info *card = snd_pcm_substream_chip(substream); 678 size_t bytes; 679 snd_pcm_uframes_t ret; 680 681 spin_lock(&card->dma_lock); 682 { 683 bytes = (size_t)(card->dma_last_transfer_vaddr[SND_PS3_CH_L] - 684 card->dma_start_vaddr[SND_PS3_CH_L]); 685 } 686 spin_unlock(&card->dma_lock); 687 688 ret = bytes_to_frames(substream->runtime, bytes * 2); 689 690 return ret; 691 }; 692 693 /* 694 * SPDIF status bits controls 695 */ 696 static int snd_ps3_spdif_mask_info(struct snd_kcontrol *kcontrol, 697 struct snd_ctl_elem_info *uinfo) 698 { 699 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958; 700 uinfo->count = 1; 701 return 0; 702 } 703 704 /* FIXME: ps3av_set_audio_mode() assumes only consumer mode */ 705 static int snd_ps3_spdif_cmask_get(struct snd_kcontrol *kcontrol, 706 struct snd_ctl_elem_value *ucontrol) 707 { 708 memset(ucontrol->value.iec958.status, 0xff, 8); 709 return 0; 710 } 711 712 static int snd_ps3_spdif_pmask_get(struct snd_kcontrol *kcontrol, 713 struct snd_ctl_elem_value *ucontrol) 714 { 715 return 0; 716 } 717 718 static int snd_ps3_spdif_default_get(struct snd_kcontrol *kcontrol, 719 struct snd_ctl_elem_value *ucontrol) 720 { 721 memcpy(ucontrol->value.iec958.status, ps3av_mode_cs_info, 8); 722 return 0; 723 } 724 725 static int snd_ps3_spdif_default_put(struct snd_kcontrol *kcontrol, 726 struct snd_ctl_elem_value *ucontrol) 727 { 728 if (memcmp(ps3av_mode_cs_info, ucontrol->value.iec958.status, 8)) { 729 memcpy(ps3av_mode_cs_info, ucontrol->value.iec958.status, 8); 730 return 1; 731 } 732 return 0; 733 } 734 735 static struct snd_kcontrol_new spdif_ctls[] = { 736 { 737 .access = SNDRV_CTL_ELEM_ACCESS_READ, 738 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 739 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK), 740 .info = snd_ps3_spdif_mask_info, 741 .get = snd_ps3_spdif_cmask_get, 742 }, 743 { 744 .access = SNDRV_CTL_ELEM_ACCESS_READ, 745 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 746 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK), 747 .info = snd_ps3_spdif_mask_info, 748 .get = snd_ps3_spdif_pmask_get, 749 }, 750 { 751 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 752 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT), 753 .info = snd_ps3_spdif_mask_info, 754 .get = snd_ps3_spdif_default_get, 755 .put = snd_ps3_spdif_default_put, 756 }, 757 }; 758 759 static const struct snd_pcm_ops snd_ps3_pcm_spdif_ops = { 760 .open = snd_ps3_pcm_open, 761 .close = snd_ps3_pcm_close, 762 .ioctl = snd_pcm_lib_ioctl, 763 .hw_params = snd_ps3_pcm_hw_params, 764 .hw_free = snd_ps3_pcm_hw_free, 765 .prepare = snd_ps3_pcm_prepare, 766 .trigger = snd_ps3_pcm_trigger, 767 .pointer = snd_ps3_pcm_pointer, 768 }; 769 770 771 static int snd_ps3_map_mmio(void) 772 { 773 the_card.mapped_mmio_vaddr = 774 ioremap(the_card.ps3_dev->m_region->bus_addr, 775 the_card.ps3_dev->m_region->len); 776 777 if (!the_card.mapped_mmio_vaddr) { 778 pr_info("%s: ioremap 0 failed p=%#lx l=%#lx \n", 779 __func__, the_card.ps3_dev->m_region->lpar_addr, 780 the_card.ps3_dev->m_region->len); 781 return -ENXIO; 782 } 783 784 return 0; 785 }; 786 787 static void snd_ps3_unmap_mmio(void) 788 { 789 iounmap(the_card.mapped_mmio_vaddr); 790 the_card.mapped_mmio_vaddr = NULL; 791 } 792 793 static int snd_ps3_allocate_irq(void) 794 { 795 int ret; 796 u64 lpar_addr, lpar_size; 797 u64 __iomem *mapped; 798 799 /* FIXME: move this to device_init (H/W probe) */ 800 801 /* get irq outlet */ 802 ret = lv1_gpu_device_map(1, &lpar_addr, &lpar_size); 803 if (ret) { 804 pr_info("%s: device map 1 failed %d\n", __func__, 805 ret); 806 return -ENXIO; 807 } 808 809 mapped = ioremap(lpar_addr, lpar_size); 810 if (!mapped) { 811 pr_info("%s: ioremap 1 failed \n", __func__); 812 return -ENXIO; 813 } 814 815 the_card.audio_irq_outlet = in_be64(mapped); 816 817 iounmap(mapped); 818 ret = lv1_gpu_device_unmap(1); 819 if (ret) 820 pr_info("%s: unmap 1 failed\n", __func__); 821 822 /* irq */ 823 ret = ps3_irq_plug_setup(PS3_BINDING_CPU_ANY, 824 the_card.audio_irq_outlet, 825 &the_card.irq_no); 826 if (ret) { 827 pr_info("%s:ps3_alloc_irq failed (%d)\n", __func__, ret); 828 return ret; 829 } 830 831 ret = request_irq(the_card.irq_no, snd_ps3_interrupt, 0, 832 SND_PS3_DRIVER_NAME, &the_card); 833 if (ret) { 834 pr_info("%s: request_irq failed (%d)\n", __func__, ret); 835 goto cleanup_irq; 836 } 837 838 return 0; 839 840 cleanup_irq: 841 ps3_irq_plug_destroy(the_card.irq_no); 842 return ret; 843 }; 844 845 static void snd_ps3_free_irq(void) 846 { 847 free_irq(the_card.irq_no, &the_card); 848 ps3_irq_plug_destroy(the_card.irq_no); 849 } 850 851 static void snd_ps3_audio_set_base_addr(uint64_t ioaddr_start) 852 { 853 uint64_t val; 854 int ret; 855 856 val = (ioaddr_start & (0x0fUL << 32)) >> (32 - 20) | 857 (0x03UL << 24) | 858 (0x0fUL << 12) | 859 (PS3_AUDIO_IOID); 860 861 ret = lv1_gpu_attribute(0x100, 0x007, val); 862 if (ret) 863 pr_info("%s: gpu_attribute failed %d\n", __func__, 864 ret); 865 } 866 867 static void snd_ps3_audio_fixup(struct snd_ps3_card_info *card) 868 { 869 /* 870 * avsetting driver seems to never change the following 871 * so, init them here once 872 */ 873 874 /* no dma interrupt needed */ 875 write_reg(PS3_AUDIO_INTR_EN_0, 0); 876 877 /* use every 4 buffer empty interrupt */ 878 update_mask_reg(PS3_AUDIO_AX_IC, 879 PS3_AUDIO_AX_IC_AASOIMD_MASK, 880 PS3_AUDIO_AX_IC_AASOIMD_EVERY4); 881 882 /* enable 3wire clocks */ 883 update_mask_reg(PS3_AUDIO_AO_3WMCTRL, 884 ~(PS3_AUDIO_AO_3WMCTRL_ASOBCLKD_DISABLED | 885 PS3_AUDIO_AO_3WMCTRL_ASOLRCKD_DISABLED), 886 0); 887 update_reg(PS3_AUDIO_AO_3WMCTRL, 888 PS3_AUDIO_AO_3WMCTRL_ASOPLRCK_DEFAULT); 889 } 890 891 static int snd_ps3_init_avsetting(struct snd_ps3_card_info *card) 892 { 893 int ret; 894 pr_debug("%s: start\n", __func__); 895 card->avs.avs_audio_ch = PS3AV_CMD_AUDIO_NUM_OF_CH_2; 896 card->avs.avs_audio_rate = PS3AV_CMD_AUDIO_FS_48K; 897 card->avs.avs_audio_width = PS3AV_CMD_AUDIO_WORD_BITS_16; 898 card->avs.avs_audio_format = PS3AV_CMD_AUDIO_FORMAT_PCM; 899 card->avs.avs_audio_source = PS3AV_CMD_AUDIO_SOURCE_SERIAL; 900 memcpy(card->avs.avs_cs_info, ps3av_mode_cs_info, 8); 901 902 ret = snd_ps3_change_avsetting(card); 903 904 snd_ps3_audio_fixup(card); 905 906 /* to start to generate SPDIF signal, fill data */ 907 snd_ps3_program_dma(card, SND_PS3_DMA_FILLTYPE_SILENT_FIRSTFILL); 908 snd_ps3_kick_dma(card); 909 pr_debug("%s: end\n", __func__); 910 return ret; 911 } 912 913 static int snd_ps3_driver_probe(struct ps3_system_bus_device *dev) 914 { 915 int i, ret; 916 u64 lpar_addr, lpar_size; 917 static u64 dummy_mask; 918 919 if (WARN_ON(!firmware_has_feature(FW_FEATURE_PS3_LV1))) 920 return -ENODEV; 921 if (WARN_ON(dev->match_id != PS3_MATCH_ID_SOUND)) 922 return -ENODEV; 923 924 the_card.ps3_dev = dev; 925 926 ret = ps3_open_hv_device(dev); 927 928 if (ret) 929 return -ENXIO; 930 931 /* setup MMIO */ 932 ret = lv1_gpu_device_map(2, &lpar_addr, &lpar_size); 933 if (ret) { 934 pr_info("%s: device map 2 failed %d\n", __func__, ret); 935 goto clean_open; 936 } 937 ps3_mmio_region_init(dev, dev->m_region, lpar_addr, lpar_size, 938 PAGE_SHIFT); 939 940 ret = snd_ps3_map_mmio(); 941 if (ret) 942 goto clean_dev_map; 943 944 /* setup DMA area */ 945 ps3_dma_region_init(dev, dev->d_region, 946 PAGE_SHIFT, /* use system page size */ 947 0, /* dma type; not used */ 948 NULL, 949 _ALIGN_UP(SND_PS3_DMA_REGION_SIZE, PAGE_SIZE)); 950 dev->d_region->ioid = PS3_AUDIO_IOID; 951 952 ret = ps3_dma_region_create(dev->d_region); 953 if (ret) { 954 pr_info("%s: region_create\n", __func__); 955 goto clean_mmio; 956 } 957 958 dummy_mask = DMA_BIT_MASK(32); 959 dev->core.dma_mask = &dummy_mask; 960 dma_set_coherent_mask(&dev->core, dummy_mask); 961 962 snd_ps3_audio_set_base_addr(dev->d_region->bus_addr); 963 964 /* CONFIG_SND_PS3_DEFAULT_START_DELAY */ 965 the_card.start_delay = snd_ps3_start_delay; 966 967 /* irq */ 968 if (snd_ps3_allocate_irq()) { 969 ret = -ENXIO; 970 goto clean_dma_region; 971 } 972 973 /* create card instance */ 974 ret = snd_card_new(&dev->core, index, id, THIS_MODULE, 975 0, &the_card.card); 976 if (ret < 0) 977 goto clean_irq; 978 979 strcpy(the_card.card->driver, "PS3"); 980 strcpy(the_card.card->shortname, "PS3"); 981 strcpy(the_card.card->longname, "PS3 sound"); 982 983 /* create control elements */ 984 for (i = 0; i < ARRAY_SIZE(spdif_ctls); i++) { 985 ret = snd_ctl_add(the_card.card, 986 snd_ctl_new1(&spdif_ctls[i], &the_card)); 987 if (ret < 0) 988 goto clean_card; 989 } 990 991 /* create PCM devices instance */ 992 /* NOTE:this driver works assuming pcm:substream = 1:1 */ 993 ret = snd_pcm_new(the_card.card, 994 "SPDIF", 995 0, /* instance index, will be stored pcm.device*/ 996 1, /* output substream */ 997 0, /* input substream */ 998 &(the_card.pcm)); 999 if (ret) 1000 goto clean_card; 1001 1002 the_card.pcm->private_data = &the_card; 1003 strcpy(the_card.pcm->name, "SPDIF"); 1004 1005 /* set pcm ops */ 1006 snd_pcm_set_ops(the_card.pcm, SNDRV_PCM_STREAM_PLAYBACK, 1007 &snd_ps3_pcm_spdif_ops); 1008 1009 the_card.pcm->info_flags = SNDRV_PCM_INFO_NONINTERLEAVED; 1010 /* pre-alloc PCM DMA buffer*/ 1011 snd_pcm_lib_preallocate_pages_for_all(the_card.pcm, 1012 SNDRV_DMA_TYPE_DEV, 1013 &dev->core, 1014 SND_PS3_PCM_PREALLOC_SIZE, 1015 SND_PS3_PCM_PREALLOC_SIZE); 1016 1017 /* 1018 * allocate null buffer 1019 * its size should be lager than PS3_AUDIO_FIFO_STAGE_SIZE * 2 1020 * PAGE_SIZE is enogh 1021 */ 1022 the_card.null_buffer_start_vaddr = 1023 dma_alloc_coherent(&the_card.ps3_dev->core, 1024 PAGE_SIZE, 1025 &the_card.null_buffer_start_dma_addr, 1026 GFP_KERNEL); 1027 if (!the_card.null_buffer_start_vaddr) { 1028 pr_info("%s: nullbuffer alloc failed\n", __func__); 1029 ret = -ENOMEM; 1030 goto clean_card; 1031 } 1032 pr_debug("%s: null vaddr=%p dma=%#llx\n", __func__, 1033 the_card.null_buffer_start_vaddr, 1034 the_card.null_buffer_start_dma_addr); 1035 /* set default sample rate/word width */ 1036 snd_ps3_init_avsetting(&the_card); 1037 1038 /* register the card */ 1039 ret = snd_card_register(the_card.card); 1040 if (ret < 0) 1041 goto clean_dma_map; 1042 1043 pr_info("%s started. start_delay=%dms\n", 1044 the_card.card->longname, the_card.start_delay); 1045 return 0; 1046 1047 clean_dma_map: 1048 dma_free_coherent(&the_card.ps3_dev->core, 1049 PAGE_SIZE, 1050 the_card.null_buffer_start_vaddr, 1051 the_card.null_buffer_start_dma_addr); 1052 clean_card: 1053 snd_card_free(the_card.card); 1054 clean_irq: 1055 snd_ps3_free_irq(); 1056 clean_dma_region: 1057 ps3_dma_region_free(dev->d_region); 1058 clean_mmio: 1059 snd_ps3_unmap_mmio(); 1060 clean_dev_map: 1061 lv1_gpu_device_unmap(2); 1062 clean_open: 1063 ps3_close_hv_device(dev); 1064 /* 1065 * there is no destructor function to pcm. 1066 * midlayer automatically releases if the card removed 1067 */ 1068 return ret; 1069 }; /* snd_ps3_probe */ 1070 1071 /* called when module removal */ 1072 static int snd_ps3_driver_remove(struct ps3_system_bus_device *dev) 1073 { 1074 int ret; 1075 pr_info("%s:start id=%d\n", __func__, dev->match_id); 1076 if (dev->match_id != PS3_MATCH_ID_SOUND) 1077 return -ENXIO; 1078 1079 /* 1080 * ctl and preallocate buffer will be freed in 1081 * snd_card_free 1082 */ 1083 ret = snd_card_free(the_card.card); 1084 if (ret) 1085 pr_info("%s: ctl freecard=%d\n", __func__, ret); 1086 1087 dma_free_coherent(&dev->core, 1088 PAGE_SIZE, 1089 the_card.null_buffer_start_vaddr, 1090 the_card.null_buffer_start_dma_addr); 1091 1092 ps3_dma_region_free(dev->d_region); 1093 1094 snd_ps3_free_irq(); 1095 snd_ps3_unmap_mmio(); 1096 1097 lv1_gpu_device_unmap(2); 1098 ps3_close_hv_device(dev); 1099 pr_info("%s:end id=%d\n", __func__, dev->match_id); 1100 return 0; 1101 } /* snd_ps3_remove */ 1102 1103 static struct ps3_system_bus_driver snd_ps3_bus_driver_info = { 1104 .match_id = PS3_MATCH_ID_SOUND, 1105 .probe = snd_ps3_driver_probe, 1106 .remove = snd_ps3_driver_remove, 1107 .shutdown = snd_ps3_driver_remove, 1108 .core = { 1109 .name = SND_PS3_DRIVER_NAME, 1110 .owner = THIS_MODULE, 1111 }, 1112 }; 1113 1114 1115 /* 1116 * module/subsystem initialize/terminate 1117 */ 1118 static int __init snd_ps3_init(void) 1119 { 1120 int ret; 1121 1122 if (!firmware_has_feature(FW_FEATURE_PS3_LV1)) 1123 return -ENXIO; 1124 1125 memset(&the_card, 0, sizeof(the_card)); 1126 spin_lock_init(&the_card.dma_lock); 1127 1128 /* register systembus DRIVER, this calls our probe() func */ 1129 ret = ps3_system_bus_driver_register(&snd_ps3_bus_driver_info); 1130 1131 return ret; 1132 } 1133 module_init(snd_ps3_init); 1134 1135 static void __exit snd_ps3_exit(void) 1136 { 1137 ps3_system_bus_driver_unregister(&snd_ps3_bus_driver_info); 1138 } 1139 module_exit(snd_ps3_exit); 1140 1141 MODULE_LICENSE("GPL v2"); 1142 MODULE_DESCRIPTION("PS3 sound driver"); 1143 MODULE_AUTHOR("Sony Computer Entertainment Inc."); 1144 MODULE_ALIAS(PS3_MODULE_ALIAS_SOUND); 1145