1 // SPDX-License-Identifier: GPL-2.0 2 // 3 // Fifo-attached Serial Interface (FSI) support for SH7724 4 // 5 // Copyright (C) 2009 Renesas Solutions Corp. 6 // Kuninori Morimoto <morimoto.kuninori@renesas.com> 7 // 8 // Based on ssi.c 9 // Copyright (c) 2007 Manuel Lauss <mano@roarinelk.homelinux.net> 10 11 #include <linux/delay.h> 12 #include <linux/dma-mapping.h> 13 #include <linux/pm_runtime.h> 14 #include <linux/io.h> 15 #include <linux/of.h> 16 #include <linux/scatterlist.h> 17 #include <linux/sh_dma.h> 18 #include <linux/slab.h> 19 #include <linux/module.h> 20 #include <linux/workqueue.h> 21 #include <sound/soc.h> 22 #include <sound/pcm_params.h> 23 #include <sound/sh_fsi.h> 24 25 /* PortA/PortB register */ 26 #define REG_DO_FMT 0x0000 27 #define REG_DOFF_CTL 0x0004 28 #define REG_DOFF_ST 0x0008 29 #define REG_DI_FMT 0x000C 30 #define REG_DIFF_CTL 0x0010 31 #define REG_DIFF_ST 0x0014 32 #define REG_CKG1 0x0018 33 #define REG_CKG2 0x001C 34 #define REG_DIDT 0x0020 35 #define REG_DODT 0x0024 36 #define REG_MUTE_ST 0x0028 37 #define REG_OUT_DMAC 0x002C 38 #define REG_OUT_SEL 0x0030 39 #define REG_IN_DMAC 0x0038 40 41 /* master register */ 42 #define MST_CLK_RST 0x0210 43 #define MST_SOFT_RST 0x0214 44 #define MST_FIFO_SZ 0x0218 45 46 /* core register (depend on FSI version) */ 47 #define A_MST_CTLR 0x0180 48 #define B_MST_CTLR 0x01A0 49 #define CPU_INT_ST 0x01F4 50 #define CPU_IEMSK 0x01F8 51 #define CPU_IMSK 0x01FC 52 #define INT_ST 0x0200 53 #define IEMSK 0x0204 54 #define IMSK 0x0208 55 56 /* DO_FMT */ 57 /* DI_FMT */ 58 #define CR_BWS_MASK (0x3 << 20) /* FSI2 */ 59 #define CR_BWS_24 (0x0 << 20) /* FSI2 */ 60 #define CR_BWS_16 (0x1 << 20) /* FSI2 */ 61 #define CR_BWS_20 (0x2 << 20) /* FSI2 */ 62 63 #define CR_DTMD_PCM (0x0 << 8) /* FSI2 */ 64 #define CR_DTMD_SPDIF_PCM (0x1 << 8) /* FSI2 */ 65 #define CR_DTMD_SPDIF_STREAM (0x2 << 8) /* FSI2 */ 66 67 #define CR_MONO (0x0 << 4) 68 #define CR_MONO_D (0x1 << 4) 69 #define CR_PCM (0x2 << 4) 70 #define CR_I2S (0x3 << 4) 71 #define CR_TDM (0x4 << 4) 72 #define CR_TDM_D (0x5 << 4) 73 74 /* OUT_DMAC */ 75 /* IN_DMAC */ 76 #define VDMD_MASK (0x3 << 4) 77 #define VDMD_FRONT (0x0 << 4) /* Package in front */ 78 #define VDMD_BACK (0x1 << 4) /* Package in back */ 79 #define VDMD_STREAM (0x2 << 4) /* Stream mode(16bit * 2) */ 80 81 #define DMA_ON (0x1 << 0) 82 83 /* DOFF_CTL */ 84 /* DIFF_CTL */ 85 #define IRQ_HALF 0x00100000 86 #define FIFO_CLR 0x00000001 87 88 /* DOFF_ST */ 89 #define ERR_OVER 0x00000010 90 #define ERR_UNDER 0x00000001 91 #define ST_ERR (ERR_OVER | ERR_UNDER) 92 93 /* CKG1 */ 94 #define ACKMD_MASK 0x00007000 95 #define BPFMD_MASK 0x00000700 96 #define DIMD (1 << 4) 97 #define DOMD (1 << 0) 98 99 /* A/B MST_CTLR */ 100 #define BP (1 << 4) /* Fix the signal of Biphase output */ 101 #define SE (1 << 0) /* Fix the master clock */ 102 103 /* CLK_RST */ 104 #define CRB (1 << 4) 105 #define CRA (1 << 0) 106 107 /* IO SHIFT / MACRO */ 108 #define BI_SHIFT 12 109 #define BO_SHIFT 8 110 #define AI_SHIFT 4 111 #define AO_SHIFT 0 112 #define AB_IO(param, shift) (param << shift) 113 114 /* SOFT_RST */ 115 #define PBSR (1 << 12) /* Port B Software Reset */ 116 #define PASR (1 << 8) /* Port A Software Reset */ 117 #define IR (1 << 4) /* Interrupt Reset */ 118 #define FSISR (1 << 0) /* Software Reset */ 119 120 /* OUT_SEL (FSI2) */ 121 #define DMMD (1 << 4) /* SPDIF output timing 0: Biphase only */ 122 /* 1: Biphase and serial */ 123 124 /* FIFO_SZ */ 125 #define FIFO_SZ_MASK 0x7 126 127 #define FSI_RATES SNDRV_PCM_RATE_8000_96000 128 129 #define FSI_FMTS (SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S16_LE) 130 131 /* 132 * bus options 133 * 134 * 0x000000BA 135 * 136 * A : sample widtht 16bit setting 137 * B : sample widtht 24bit setting 138 */ 139 140 #define SHIFT_16DATA 0 141 #define SHIFT_24DATA 4 142 143 #define PACKAGE_24BITBUS_BACK 0 144 #define PACKAGE_24BITBUS_FRONT 1 145 #define PACKAGE_16BITBUS_STREAM 2 146 147 #define BUSOP_SET(s, a) ((a) << SHIFT_ ## s ## DATA) 148 #define BUSOP_GET(s, a) (((a) >> SHIFT_ ## s ## DATA) & 0xF) 149 150 /* 151 * FSI driver use below type name for variable 152 * 153 * xxx_num : number of data 154 * xxx_pos : position of data 155 * xxx_capa : capacity of data 156 */ 157 158 /* 159 * period/frame/sample image 160 * 161 * ex) PCM (2ch) 162 * 163 * period pos period pos 164 * [n] [n + 1] 165 * |<-------------------- period--------------------->| 166 * ==|============================================ ... =|== 167 * | | 168 * ||<----- frame ----->|<------ frame ----->| ... | 169 * |+--------------------+--------------------+- ... | 170 * ||[ sample ][ sample ]|[ sample ][ sample ]| ... | 171 * |+--------------------+--------------------+- ... | 172 * ==|============================================ ... =|== 173 */ 174 175 /* 176 * FSI FIFO image 177 * 178 * | | 179 * | | 180 * | [ sample ] | 181 * | [ sample ] | 182 * | [ sample ] | 183 * | [ sample ] | 184 * --> go to codecs 185 */ 186 187 /* 188 * FSI clock 189 * 190 * FSIxCLK [CPG] (ick) -------> | 191 * |-> FSI_DIV (div)-> FSI2 192 * FSIxCK [external] (xck) ---> | 193 */ 194 195 /* 196 * struct 197 */ 198 199 struct fsi_stream_handler; 200 struct fsi_stream { 201 202 /* 203 * these are initialized by fsi_stream_init() 204 */ 205 struct snd_pcm_substream *substream; 206 int fifo_sample_capa; /* sample capacity of FSI FIFO */ 207 int buff_sample_capa; /* sample capacity of ALSA buffer */ 208 int buff_sample_pos; /* sample position of ALSA buffer */ 209 int period_samples; /* sample number / 1 period */ 210 int period_pos; /* current period position */ 211 int sample_width; /* sample width */ 212 int uerr_num; 213 int oerr_num; 214 215 /* 216 * bus options 217 */ 218 u32 bus_option; 219 220 /* 221 * these are initialized by fsi_handler_init() 222 */ 223 struct fsi_stream_handler *handler; 224 struct fsi_priv *priv; 225 226 /* 227 * these are for DMAEngine 228 */ 229 struct dma_chan *chan; 230 int dma_id; 231 }; 232 233 struct fsi_clk { 234 /* see [FSI clock] */ 235 struct clk *own; 236 struct clk *xck; 237 struct clk *ick; 238 struct clk *div; 239 int (*set_rate)(struct device *dev, 240 struct fsi_priv *fsi); 241 242 unsigned long rate; 243 unsigned int count; 244 }; 245 246 struct fsi_priv { 247 void __iomem *base; 248 phys_addr_t phys; 249 struct fsi_master *master; 250 251 struct fsi_stream playback; 252 struct fsi_stream capture; 253 254 struct fsi_clk clock; 255 256 u32 fmt; 257 258 int chan_num:16; 259 unsigned int clk_master:1; 260 unsigned int clk_cpg:1; 261 unsigned int spdif:1; 262 unsigned int enable_stream:1; 263 unsigned int bit_clk_inv:1; 264 unsigned int lr_clk_inv:1; 265 }; 266 267 struct fsi_stream_handler { 268 int (*init)(struct fsi_priv *fsi, struct fsi_stream *io); 269 int (*quit)(struct fsi_priv *fsi, struct fsi_stream *io); 270 int (*probe)(struct fsi_priv *fsi, struct fsi_stream *io, struct device *dev); 271 int (*transfer)(struct fsi_priv *fsi, struct fsi_stream *io); 272 int (*remove)(struct fsi_priv *fsi, struct fsi_stream *io); 273 int (*start_stop)(struct fsi_priv *fsi, struct fsi_stream *io, 274 int enable); 275 }; 276 #define fsi_stream_handler_call(io, func, args...) \ 277 (!(io) ? -ENODEV : \ 278 !((io)->handler->func) ? 0 : \ 279 (io)->handler->func(args)) 280 281 struct fsi_core { 282 int ver; 283 284 u32 int_st; 285 u32 iemsk; 286 u32 imsk; 287 u32 a_mclk; 288 u32 b_mclk; 289 }; 290 291 struct fsi_master { 292 void __iomem *base; 293 struct fsi_priv fsia; 294 struct fsi_priv fsib; 295 const struct fsi_core *core; 296 spinlock_t lock; 297 }; 298 299 static inline int fsi_stream_is_play(struct fsi_priv *fsi, 300 struct fsi_stream *io) 301 { 302 return &fsi->playback == io; 303 } 304 305 306 /* 307 * basic read write function 308 */ 309 310 static void __fsi_reg_write(u32 __iomem *reg, u32 data) 311 { 312 /* valid data area is 24bit */ 313 data &= 0x00ffffff; 314 315 __raw_writel(data, reg); 316 } 317 318 static u32 __fsi_reg_read(u32 __iomem *reg) 319 { 320 return __raw_readl(reg); 321 } 322 323 static void __fsi_reg_mask_set(u32 __iomem *reg, u32 mask, u32 data) 324 { 325 u32 val = __fsi_reg_read(reg); 326 327 val &= ~mask; 328 val |= data & mask; 329 330 __fsi_reg_write(reg, val); 331 } 332 333 #define fsi_reg_write(p, r, d)\ 334 __fsi_reg_write((p->base + REG_##r), d) 335 336 #define fsi_reg_read(p, r)\ 337 __fsi_reg_read((p->base + REG_##r)) 338 339 #define fsi_reg_mask_set(p, r, m, d)\ 340 __fsi_reg_mask_set((p->base + REG_##r), m, d) 341 342 #define fsi_master_read(p, r) _fsi_master_read(p, MST_##r) 343 #define fsi_core_read(p, r) _fsi_master_read(p, p->core->r) 344 static u32 _fsi_master_read(struct fsi_master *master, u32 reg) 345 { 346 u32 ret; 347 unsigned long flags; 348 349 spin_lock_irqsave(&master->lock, flags); 350 ret = __fsi_reg_read(master->base + reg); 351 spin_unlock_irqrestore(&master->lock, flags); 352 353 return ret; 354 } 355 356 #define fsi_master_mask_set(p, r, m, d) _fsi_master_mask_set(p, MST_##r, m, d) 357 #define fsi_core_mask_set(p, r, m, d) _fsi_master_mask_set(p, p->core->r, m, d) 358 static void _fsi_master_mask_set(struct fsi_master *master, 359 u32 reg, u32 mask, u32 data) 360 { 361 unsigned long flags; 362 363 spin_lock_irqsave(&master->lock, flags); 364 __fsi_reg_mask_set(master->base + reg, mask, data); 365 spin_unlock_irqrestore(&master->lock, flags); 366 } 367 368 /* 369 * basic function 370 */ 371 static int fsi_version(struct fsi_master *master) 372 { 373 return master->core->ver; 374 } 375 376 static struct fsi_master *fsi_get_master(struct fsi_priv *fsi) 377 { 378 return fsi->master; 379 } 380 381 static int fsi_is_clk_master(struct fsi_priv *fsi) 382 { 383 return fsi->clk_master; 384 } 385 386 static int fsi_is_port_a(struct fsi_priv *fsi) 387 { 388 return fsi->master->base == fsi->base; 389 } 390 391 static int fsi_is_spdif(struct fsi_priv *fsi) 392 { 393 return fsi->spdif; 394 } 395 396 static int fsi_is_enable_stream(struct fsi_priv *fsi) 397 { 398 return fsi->enable_stream; 399 } 400 401 static int fsi_is_play(struct snd_pcm_substream *substream) 402 { 403 return substream->stream == SNDRV_PCM_STREAM_PLAYBACK; 404 } 405 406 static struct snd_soc_dai *fsi_get_dai(struct snd_pcm_substream *substream) 407 { 408 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 409 410 return snd_soc_rtd_to_cpu(rtd, 0); 411 } 412 413 static struct fsi_priv *fsi_get_priv_frm_dai(struct snd_soc_dai *dai) 414 { 415 struct fsi_master *master = snd_soc_dai_get_drvdata(dai); 416 417 if (dai->id == 0) 418 return &master->fsia; 419 else 420 return &master->fsib; 421 } 422 423 static struct fsi_priv *fsi_get_priv(struct snd_pcm_substream *substream) 424 { 425 return fsi_get_priv_frm_dai(fsi_get_dai(substream)); 426 } 427 428 static u32 fsi_get_port_shift(struct fsi_priv *fsi, struct fsi_stream *io) 429 { 430 int is_play = fsi_stream_is_play(fsi, io); 431 int is_porta = fsi_is_port_a(fsi); 432 u32 shift; 433 434 if (is_porta) 435 shift = is_play ? AO_SHIFT : AI_SHIFT; 436 else 437 shift = is_play ? BO_SHIFT : BI_SHIFT; 438 439 return shift; 440 } 441 442 static int fsi_frame2sample(struct fsi_priv *fsi, int frames) 443 { 444 return frames * fsi->chan_num; 445 } 446 447 static int fsi_sample2frame(struct fsi_priv *fsi, int samples) 448 { 449 return samples / fsi->chan_num; 450 } 451 452 static int fsi_get_current_fifo_samples(struct fsi_priv *fsi, 453 struct fsi_stream *io) 454 { 455 int is_play = fsi_stream_is_play(fsi, io); 456 u32 status; 457 int frames; 458 459 status = is_play ? 460 fsi_reg_read(fsi, DOFF_ST) : 461 fsi_reg_read(fsi, DIFF_ST); 462 463 frames = 0x1ff & (status >> 8); 464 465 return fsi_frame2sample(fsi, frames); 466 } 467 468 static void fsi_count_fifo_err(struct fsi_priv *fsi) 469 { 470 u32 ostatus = fsi_reg_read(fsi, DOFF_ST); 471 u32 istatus = fsi_reg_read(fsi, DIFF_ST); 472 473 if (ostatus & ERR_OVER) 474 fsi->playback.oerr_num++; 475 476 if (ostatus & ERR_UNDER) 477 fsi->playback.uerr_num++; 478 479 if (istatus & ERR_OVER) 480 fsi->capture.oerr_num++; 481 482 if (istatus & ERR_UNDER) 483 fsi->capture.uerr_num++; 484 485 fsi_reg_write(fsi, DOFF_ST, 0); 486 fsi_reg_write(fsi, DIFF_ST, 0); 487 } 488 489 /* 490 * fsi_stream_xx() function 491 */ 492 static inline struct fsi_stream *fsi_stream_get(struct fsi_priv *fsi, 493 struct snd_pcm_substream *substream) 494 { 495 return fsi_is_play(substream) ? &fsi->playback : &fsi->capture; 496 } 497 498 static int fsi_stream_is_working(struct fsi_priv *fsi, 499 struct fsi_stream *io) 500 { 501 struct fsi_master *master = fsi_get_master(fsi); 502 unsigned long flags; 503 int ret; 504 505 spin_lock_irqsave(&master->lock, flags); 506 ret = !!(io->substream && io->substream->runtime); 507 spin_unlock_irqrestore(&master->lock, flags); 508 509 return ret; 510 } 511 512 static struct fsi_priv *fsi_stream_to_priv(struct fsi_stream *io) 513 { 514 return io->priv; 515 } 516 517 static void fsi_stream_init(struct fsi_priv *fsi, 518 struct fsi_stream *io, 519 struct snd_pcm_substream *substream) 520 { 521 struct snd_pcm_runtime *runtime = substream->runtime; 522 struct fsi_master *master = fsi_get_master(fsi); 523 unsigned long flags; 524 525 spin_lock_irqsave(&master->lock, flags); 526 io->substream = substream; 527 io->buff_sample_capa = fsi_frame2sample(fsi, runtime->buffer_size); 528 io->buff_sample_pos = 0; 529 io->period_samples = fsi_frame2sample(fsi, runtime->period_size); 530 io->period_pos = 0; 531 io->sample_width = samples_to_bytes(runtime, 1); 532 io->bus_option = 0; 533 io->oerr_num = -1; /* ignore 1st err */ 534 io->uerr_num = -1; /* ignore 1st err */ 535 fsi_stream_handler_call(io, init, fsi, io); 536 spin_unlock_irqrestore(&master->lock, flags); 537 } 538 539 static void fsi_stream_quit(struct fsi_priv *fsi, struct fsi_stream *io) 540 { 541 struct snd_soc_dai *dai = fsi_get_dai(io->substream); 542 struct fsi_master *master = fsi_get_master(fsi); 543 unsigned long flags; 544 545 spin_lock_irqsave(&master->lock, flags); 546 547 if (io->oerr_num > 0) 548 dev_err(dai->dev, "over_run = %d\n", io->oerr_num); 549 550 if (io->uerr_num > 0) 551 dev_err(dai->dev, "under_run = %d\n", io->uerr_num); 552 553 fsi_stream_handler_call(io, quit, fsi, io); 554 io->substream = NULL; 555 io->buff_sample_capa = 0; 556 io->buff_sample_pos = 0; 557 io->period_samples = 0; 558 io->period_pos = 0; 559 io->sample_width = 0; 560 io->bus_option = 0; 561 io->oerr_num = 0; 562 io->uerr_num = 0; 563 spin_unlock_irqrestore(&master->lock, flags); 564 } 565 566 static int fsi_stream_transfer(struct fsi_stream *io) 567 { 568 struct fsi_priv *fsi = fsi_stream_to_priv(io); 569 if (!fsi) 570 return -EIO; 571 572 return fsi_stream_handler_call(io, transfer, fsi, io); 573 } 574 575 #define fsi_stream_start(fsi, io)\ 576 fsi_stream_handler_call(io, start_stop, fsi, io, 1) 577 578 #define fsi_stream_stop(fsi, io)\ 579 fsi_stream_handler_call(io, start_stop, fsi, io, 0) 580 581 static int fsi_stream_probe(struct fsi_priv *fsi, struct device *dev) 582 { 583 struct fsi_stream *io; 584 int ret1, ret2; 585 586 io = &fsi->playback; 587 ret1 = fsi_stream_handler_call(io, probe, fsi, io, dev); 588 589 io = &fsi->capture; 590 ret2 = fsi_stream_handler_call(io, probe, fsi, io, dev); 591 592 if (ret1 < 0) 593 return ret1; 594 if (ret2 < 0) 595 return ret2; 596 597 return 0; 598 } 599 600 static int fsi_stream_remove(struct fsi_priv *fsi) 601 { 602 struct fsi_stream *io; 603 int ret1, ret2; 604 605 io = &fsi->playback; 606 ret1 = fsi_stream_handler_call(io, remove, fsi, io); 607 608 io = &fsi->capture; 609 ret2 = fsi_stream_handler_call(io, remove, fsi, io); 610 611 if (ret1 < 0) 612 return ret1; 613 if (ret2 < 0) 614 return ret2; 615 616 return 0; 617 } 618 619 /* 620 * format/bus/dma setting 621 */ 622 static void fsi_format_bus_setup(struct fsi_priv *fsi, struct fsi_stream *io, 623 u32 bus, struct device *dev) 624 { 625 struct fsi_master *master = fsi_get_master(fsi); 626 int is_play = fsi_stream_is_play(fsi, io); 627 u32 fmt = fsi->fmt; 628 629 if (fsi_version(master) >= 2) { 630 u32 dma = 0; 631 632 /* 633 * FSI2 needs DMA/Bus setting 634 */ 635 switch (bus) { 636 case PACKAGE_24BITBUS_FRONT: 637 fmt |= CR_BWS_24; 638 dma |= VDMD_FRONT; 639 dev_dbg(dev, "24bit bus / package in front\n"); 640 break; 641 case PACKAGE_16BITBUS_STREAM: 642 fmt |= CR_BWS_16; 643 dma |= VDMD_STREAM; 644 dev_dbg(dev, "16bit bus / stream mode\n"); 645 break; 646 case PACKAGE_24BITBUS_BACK: 647 default: 648 fmt |= CR_BWS_24; 649 dma |= VDMD_BACK; 650 dev_dbg(dev, "24bit bus / package in back\n"); 651 break; 652 } 653 654 if (is_play) 655 fsi_reg_write(fsi, OUT_DMAC, dma); 656 else 657 fsi_reg_write(fsi, IN_DMAC, dma); 658 } 659 660 if (is_play) 661 fsi_reg_write(fsi, DO_FMT, fmt); 662 else 663 fsi_reg_write(fsi, DI_FMT, fmt); 664 } 665 666 /* 667 * irq function 668 */ 669 670 static void fsi_irq_enable(struct fsi_priv *fsi, struct fsi_stream *io) 671 { 672 u32 data = AB_IO(1, fsi_get_port_shift(fsi, io)); 673 struct fsi_master *master = fsi_get_master(fsi); 674 675 fsi_core_mask_set(master, imsk, data, data); 676 fsi_core_mask_set(master, iemsk, data, data); 677 } 678 679 static void fsi_irq_disable(struct fsi_priv *fsi, struct fsi_stream *io) 680 { 681 u32 data = AB_IO(1, fsi_get_port_shift(fsi, io)); 682 struct fsi_master *master = fsi_get_master(fsi); 683 684 fsi_core_mask_set(master, imsk, data, 0); 685 fsi_core_mask_set(master, iemsk, data, 0); 686 } 687 688 static u32 fsi_irq_get_status(struct fsi_master *master) 689 { 690 return fsi_core_read(master, int_st); 691 } 692 693 static void fsi_irq_clear_status(struct fsi_priv *fsi) 694 { 695 u32 data = 0; 696 struct fsi_master *master = fsi_get_master(fsi); 697 698 data |= AB_IO(1, fsi_get_port_shift(fsi, &fsi->playback)); 699 data |= AB_IO(1, fsi_get_port_shift(fsi, &fsi->capture)); 700 701 /* clear interrupt factor */ 702 fsi_core_mask_set(master, int_st, data, 0); 703 } 704 705 /* 706 * SPDIF master clock function 707 * 708 * These functions are used later FSI2 709 */ 710 static void fsi_spdif_clk_ctrl(struct fsi_priv *fsi, int enable) 711 { 712 struct fsi_master *master = fsi_get_master(fsi); 713 u32 mask, val; 714 715 mask = BP | SE; 716 val = enable ? mask : 0; 717 718 fsi_is_port_a(fsi) ? 719 fsi_core_mask_set(master, a_mclk, mask, val) : 720 fsi_core_mask_set(master, b_mclk, mask, val); 721 } 722 723 /* 724 * clock function 725 */ 726 static int fsi_clk_init(struct device *dev, 727 struct fsi_priv *fsi, 728 int xck, 729 int ick, 730 int div, 731 int (*set_rate)(struct device *dev, 732 struct fsi_priv *fsi)) 733 { 734 struct fsi_clk *clock = &fsi->clock; 735 int is_porta = fsi_is_port_a(fsi); 736 737 clock->xck = NULL; 738 clock->ick = NULL; 739 clock->div = NULL; 740 clock->rate = 0; 741 clock->count = 0; 742 clock->set_rate = set_rate; 743 744 clock->own = devm_clk_get(dev, NULL); 745 if (IS_ERR(clock->own)) 746 return -EINVAL; 747 748 /* external clock */ 749 if (xck) { 750 clock->xck = devm_clk_get(dev, is_porta ? "xcka" : "xckb"); 751 if (IS_ERR(clock->xck)) { 752 dev_err(dev, "can't get xck clock\n"); 753 return -EINVAL; 754 } 755 if (clock->xck == clock->own) { 756 dev_err(dev, "cpu doesn't support xck clock\n"); 757 return -EINVAL; 758 } 759 } 760 761 /* FSIACLK/FSIBCLK */ 762 if (ick) { 763 clock->ick = devm_clk_get(dev, is_porta ? "icka" : "ickb"); 764 if (IS_ERR(clock->ick)) { 765 dev_err(dev, "can't get ick clock\n"); 766 return -EINVAL; 767 } 768 if (clock->ick == clock->own) { 769 dev_err(dev, "cpu doesn't support ick clock\n"); 770 return -EINVAL; 771 } 772 } 773 774 /* FSI-DIV */ 775 if (div) { 776 clock->div = devm_clk_get(dev, is_porta ? "diva" : "divb"); 777 if (IS_ERR(clock->div)) { 778 dev_err(dev, "can't get div clock\n"); 779 return -EINVAL; 780 } 781 if (clock->div == clock->own) { 782 dev_err(dev, "cpu doesn't support div clock\n"); 783 return -EINVAL; 784 } 785 } 786 787 return 0; 788 } 789 790 #define fsi_clk_invalid(fsi) fsi_clk_valid(fsi, 0) 791 static void fsi_clk_valid(struct fsi_priv *fsi, unsigned long rate) 792 { 793 fsi->clock.rate = rate; 794 } 795 796 static int fsi_clk_is_valid(struct fsi_priv *fsi) 797 { 798 return fsi->clock.set_rate && 799 fsi->clock.rate; 800 } 801 802 static int fsi_clk_enable(struct device *dev, 803 struct fsi_priv *fsi) 804 { 805 struct fsi_clk *clock = &fsi->clock; 806 int ret = -EINVAL; 807 808 if (!fsi_clk_is_valid(fsi)) 809 return ret; 810 811 if (0 == clock->count) { 812 ret = clock->set_rate(dev, fsi); 813 if (ret < 0) { 814 fsi_clk_invalid(fsi); 815 return ret; 816 } 817 818 ret = clk_enable(clock->xck); 819 if (ret) 820 goto err; 821 ret = clk_enable(clock->ick); 822 if (ret) 823 goto disable_xck; 824 ret = clk_enable(clock->div); 825 if (ret) 826 goto disable_ick; 827 828 clock->count++; 829 } 830 831 return ret; 832 833 disable_ick: 834 clk_disable(clock->ick); 835 disable_xck: 836 clk_disable(clock->xck); 837 err: 838 return ret; 839 } 840 841 static int fsi_clk_disable(struct device *dev, 842 struct fsi_priv *fsi) 843 { 844 struct fsi_clk *clock = &fsi->clock; 845 846 if (!fsi_clk_is_valid(fsi)) 847 return -EINVAL; 848 849 if (1 == clock->count--) { 850 clk_disable(clock->xck); 851 clk_disable(clock->ick); 852 clk_disable(clock->div); 853 } 854 855 return 0; 856 } 857 858 static int fsi_clk_set_ackbpf(struct device *dev, 859 struct fsi_priv *fsi, 860 int ackmd, int bpfmd) 861 { 862 u32 data = 0; 863 864 /* check ackmd/bpfmd relationship */ 865 if (bpfmd > ackmd) { 866 dev_err(dev, "unsupported rate (%d/%d)\n", ackmd, bpfmd); 867 return -EINVAL; 868 } 869 870 /* ACKMD */ 871 switch (ackmd) { 872 case 512: 873 data |= (0x0 << 12); 874 break; 875 case 256: 876 data |= (0x1 << 12); 877 break; 878 case 128: 879 data |= (0x2 << 12); 880 break; 881 case 64: 882 data |= (0x3 << 12); 883 break; 884 case 32: 885 data |= (0x4 << 12); 886 break; 887 default: 888 dev_err(dev, "unsupported ackmd (%d)\n", ackmd); 889 return -EINVAL; 890 } 891 892 /* BPFMD */ 893 switch (bpfmd) { 894 case 32: 895 data |= (0x0 << 8); 896 break; 897 case 64: 898 data |= (0x1 << 8); 899 break; 900 case 128: 901 data |= (0x2 << 8); 902 break; 903 case 256: 904 data |= (0x3 << 8); 905 break; 906 case 512: 907 data |= (0x4 << 8); 908 break; 909 case 16: 910 data |= (0x7 << 8); 911 break; 912 default: 913 dev_err(dev, "unsupported bpfmd (%d)\n", bpfmd); 914 return -EINVAL; 915 } 916 917 dev_dbg(dev, "ACKMD/BPFMD = %d/%d\n", ackmd, bpfmd); 918 919 fsi_reg_mask_set(fsi, CKG1, (ACKMD_MASK | BPFMD_MASK) , data); 920 udelay(10); 921 922 return 0; 923 } 924 925 static int fsi_clk_set_rate_external(struct device *dev, 926 struct fsi_priv *fsi) 927 { 928 struct clk *xck = fsi->clock.xck; 929 struct clk *ick = fsi->clock.ick; 930 unsigned long rate = fsi->clock.rate; 931 unsigned long xrate; 932 int ackmd, bpfmd; 933 int ret = 0; 934 935 /* check clock rate */ 936 xrate = clk_get_rate(xck); 937 if (xrate % rate) { 938 dev_err(dev, "unsupported clock rate\n"); 939 return -EINVAL; 940 } 941 942 clk_set_parent(ick, xck); 943 clk_set_rate(ick, xrate); 944 945 bpfmd = fsi->chan_num * 32; 946 ackmd = xrate / rate; 947 948 dev_dbg(dev, "external/rate = %ld/%ld\n", xrate, rate); 949 950 ret = fsi_clk_set_ackbpf(dev, fsi, ackmd, bpfmd); 951 if (ret < 0) 952 dev_err(dev, "%s failed", __func__); 953 954 return ret; 955 } 956 957 static int fsi_clk_set_rate_cpg(struct device *dev, 958 struct fsi_priv *fsi) 959 { 960 struct clk *ick = fsi->clock.ick; 961 struct clk *div = fsi->clock.div; 962 unsigned long rate = fsi->clock.rate; 963 unsigned long target = 0; /* 12288000 or 11289600 */ 964 unsigned long actual, cout; 965 unsigned long diff, min; 966 unsigned long best_cout, best_act; 967 int adj; 968 int ackmd, bpfmd; 969 int ret = -EINVAL; 970 971 if (!(12288000 % rate)) 972 target = 12288000; 973 if (!(11289600 % rate)) 974 target = 11289600; 975 if (!target) { 976 dev_err(dev, "unsupported rate\n"); 977 return ret; 978 } 979 980 bpfmd = fsi->chan_num * 32; 981 ackmd = target / rate; 982 ret = fsi_clk_set_ackbpf(dev, fsi, ackmd, bpfmd); 983 if (ret < 0) { 984 dev_err(dev, "%s failed", __func__); 985 return ret; 986 } 987 988 /* 989 * The clock flow is 990 * 991 * [CPG] = cout => [FSI_DIV] = audio => [FSI] => [codec] 992 * 993 * But, it needs to find best match of CPG and FSI_DIV 994 * combination, since it is difficult to generate correct 995 * frequency of audio clock from ick clock only. 996 * Because ick is created from its parent clock. 997 * 998 * target = rate x [512/256/128/64]fs 999 * cout = round(target x adjustment) 1000 * actual = cout / adjustment (by FSI-DIV) ~= target 1001 * audio = actual 1002 */ 1003 min = ~0; 1004 best_cout = 0; 1005 best_act = 0; 1006 for (adj = 1; adj < 0xffff; adj++) { 1007 1008 cout = target * adj; 1009 if (cout > 100000000) /* max clock = 100MHz */ 1010 break; 1011 1012 /* cout/actual audio clock */ 1013 cout = clk_round_rate(ick, cout); 1014 actual = cout / adj; 1015 1016 /* find best frequency */ 1017 diff = abs(actual - target); 1018 if (diff < min) { 1019 min = diff; 1020 best_cout = cout; 1021 best_act = actual; 1022 } 1023 } 1024 1025 ret = clk_set_rate(ick, best_cout); 1026 if (ret < 0) { 1027 dev_err(dev, "ick clock failed\n"); 1028 return -EIO; 1029 } 1030 1031 ret = clk_set_rate(div, clk_round_rate(div, best_act)); 1032 if (ret < 0) { 1033 dev_err(dev, "div clock failed\n"); 1034 return -EIO; 1035 } 1036 1037 dev_dbg(dev, "ick/div = %ld/%ld\n", 1038 clk_get_rate(ick), clk_get_rate(div)); 1039 1040 return ret; 1041 } 1042 1043 static void fsi_pointer_update(struct fsi_stream *io, int size) 1044 { 1045 io->buff_sample_pos += size; 1046 1047 if (io->buff_sample_pos >= 1048 io->period_samples * (io->period_pos + 1)) { 1049 struct snd_pcm_substream *substream = io->substream; 1050 struct snd_pcm_runtime *runtime = substream->runtime; 1051 1052 io->period_pos++; 1053 1054 if (io->period_pos >= runtime->periods) { 1055 io->buff_sample_pos = 0; 1056 io->period_pos = 0; 1057 } 1058 1059 snd_pcm_period_elapsed(substream); 1060 } 1061 } 1062 1063 /* 1064 * pio data transfer handler 1065 */ 1066 static void fsi_pio_push16(struct fsi_priv *fsi, u8 *_buf, int samples) 1067 { 1068 int i; 1069 1070 if (fsi_is_enable_stream(fsi)) { 1071 /* 1072 * stream mode 1073 * see 1074 * fsi_pio_push_init() 1075 */ 1076 u32 *buf = (u32 *)_buf; 1077 1078 for (i = 0; i < samples / 2; i++) 1079 fsi_reg_write(fsi, DODT, buf[i]); 1080 } else { 1081 /* normal mode */ 1082 u16 *buf = (u16 *)_buf; 1083 1084 for (i = 0; i < samples; i++) 1085 fsi_reg_write(fsi, DODT, ((u32)*(buf + i) << 8)); 1086 } 1087 } 1088 1089 static void fsi_pio_pop16(struct fsi_priv *fsi, u8 *_buf, int samples) 1090 { 1091 u16 *buf = (u16 *)_buf; 1092 int i; 1093 1094 for (i = 0; i < samples; i++) 1095 *(buf + i) = (u16)(fsi_reg_read(fsi, DIDT) >> 8); 1096 } 1097 1098 static void fsi_pio_push32(struct fsi_priv *fsi, u8 *_buf, int samples) 1099 { 1100 u32 *buf = (u32 *)_buf; 1101 int i; 1102 1103 for (i = 0; i < samples; i++) 1104 fsi_reg_write(fsi, DODT, *(buf + i)); 1105 } 1106 1107 static void fsi_pio_pop32(struct fsi_priv *fsi, u8 *_buf, int samples) 1108 { 1109 u32 *buf = (u32 *)_buf; 1110 int i; 1111 1112 for (i = 0; i < samples; i++) 1113 *(buf + i) = fsi_reg_read(fsi, DIDT); 1114 } 1115 1116 static u8 *fsi_pio_get_area(struct fsi_priv *fsi, struct fsi_stream *io) 1117 { 1118 struct snd_pcm_runtime *runtime = io->substream->runtime; 1119 1120 return runtime->dma_area + 1121 samples_to_bytes(runtime, io->buff_sample_pos); 1122 } 1123 1124 static int fsi_pio_transfer(struct fsi_priv *fsi, struct fsi_stream *io, 1125 void (*run16)(struct fsi_priv *fsi, u8 *buf, int samples), 1126 void (*run32)(struct fsi_priv *fsi, u8 *buf, int samples), 1127 int samples) 1128 { 1129 u8 *buf; 1130 1131 if (!fsi_stream_is_working(fsi, io)) 1132 return -EINVAL; 1133 1134 buf = fsi_pio_get_area(fsi, io); 1135 1136 switch (io->sample_width) { 1137 case 2: 1138 run16(fsi, buf, samples); 1139 break; 1140 case 4: 1141 run32(fsi, buf, samples); 1142 break; 1143 default: 1144 return -EINVAL; 1145 } 1146 1147 fsi_pointer_update(io, samples); 1148 1149 return 0; 1150 } 1151 1152 static int fsi_pio_pop(struct fsi_priv *fsi, struct fsi_stream *io) 1153 { 1154 int sample_residues; /* samples in FSI fifo */ 1155 int sample_space; /* ALSA free samples space */ 1156 int samples; 1157 1158 sample_residues = fsi_get_current_fifo_samples(fsi, io); 1159 sample_space = io->buff_sample_capa - io->buff_sample_pos; 1160 1161 samples = min(sample_residues, sample_space); 1162 1163 return fsi_pio_transfer(fsi, io, 1164 fsi_pio_pop16, 1165 fsi_pio_pop32, 1166 samples); 1167 } 1168 1169 static int fsi_pio_push(struct fsi_priv *fsi, struct fsi_stream *io) 1170 { 1171 int sample_residues; /* ALSA residue samples */ 1172 int sample_space; /* FSI fifo free samples space */ 1173 int samples; 1174 1175 sample_residues = io->buff_sample_capa - io->buff_sample_pos; 1176 sample_space = io->fifo_sample_capa - 1177 fsi_get_current_fifo_samples(fsi, io); 1178 1179 samples = min(sample_residues, sample_space); 1180 1181 return fsi_pio_transfer(fsi, io, 1182 fsi_pio_push16, 1183 fsi_pio_push32, 1184 samples); 1185 } 1186 1187 static int fsi_pio_start_stop(struct fsi_priv *fsi, struct fsi_stream *io, 1188 int enable) 1189 { 1190 struct fsi_master *master = fsi_get_master(fsi); 1191 u32 clk = fsi_is_port_a(fsi) ? CRA : CRB; 1192 1193 if (enable) 1194 fsi_irq_enable(fsi, io); 1195 else 1196 fsi_irq_disable(fsi, io); 1197 1198 if (fsi_is_clk_master(fsi)) 1199 fsi_master_mask_set(master, CLK_RST, clk, (enable) ? clk : 0); 1200 1201 return 0; 1202 } 1203 1204 static int fsi_pio_push_init(struct fsi_priv *fsi, struct fsi_stream *io) 1205 { 1206 /* 1207 * we can use 16bit stream mode 1208 * when "playback" and "16bit data" 1209 * and platform allows "stream mode" 1210 * see 1211 * fsi_pio_push16() 1212 */ 1213 if (fsi_is_enable_stream(fsi)) 1214 io->bus_option = BUSOP_SET(24, PACKAGE_24BITBUS_BACK) | 1215 BUSOP_SET(16, PACKAGE_16BITBUS_STREAM); 1216 else 1217 io->bus_option = BUSOP_SET(24, PACKAGE_24BITBUS_BACK) | 1218 BUSOP_SET(16, PACKAGE_24BITBUS_BACK); 1219 return 0; 1220 } 1221 1222 static int fsi_pio_pop_init(struct fsi_priv *fsi, struct fsi_stream *io) 1223 { 1224 /* 1225 * always 24bit bus, package back when "capture" 1226 */ 1227 io->bus_option = BUSOP_SET(24, PACKAGE_24BITBUS_BACK) | 1228 BUSOP_SET(16, PACKAGE_24BITBUS_BACK); 1229 return 0; 1230 } 1231 1232 static struct fsi_stream_handler fsi_pio_push_handler = { 1233 .init = fsi_pio_push_init, 1234 .transfer = fsi_pio_push, 1235 .start_stop = fsi_pio_start_stop, 1236 }; 1237 1238 static struct fsi_stream_handler fsi_pio_pop_handler = { 1239 .init = fsi_pio_pop_init, 1240 .transfer = fsi_pio_pop, 1241 .start_stop = fsi_pio_start_stop, 1242 }; 1243 1244 static irqreturn_t fsi_interrupt(int irq, void *data) 1245 { 1246 struct fsi_master *master = data; 1247 u32 int_st = fsi_irq_get_status(master); 1248 1249 /* clear irq status */ 1250 fsi_master_mask_set(master, SOFT_RST, IR, 0); 1251 fsi_master_mask_set(master, SOFT_RST, IR, IR); 1252 1253 if (int_st & AB_IO(1, AO_SHIFT)) 1254 fsi_stream_transfer(&master->fsia.playback); 1255 if (int_st & AB_IO(1, BO_SHIFT)) 1256 fsi_stream_transfer(&master->fsib.playback); 1257 if (int_st & AB_IO(1, AI_SHIFT)) 1258 fsi_stream_transfer(&master->fsia.capture); 1259 if (int_st & AB_IO(1, BI_SHIFT)) 1260 fsi_stream_transfer(&master->fsib.capture); 1261 1262 fsi_count_fifo_err(&master->fsia); 1263 fsi_count_fifo_err(&master->fsib); 1264 1265 fsi_irq_clear_status(&master->fsia); 1266 fsi_irq_clear_status(&master->fsib); 1267 1268 return IRQ_HANDLED; 1269 } 1270 1271 /* 1272 * dma data transfer handler 1273 */ 1274 static int fsi_dma_init(struct fsi_priv *fsi, struct fsi_stream *io) 1275 { 1276 /* 1277 * 24bit data : 24bit bus / package in back 1278 * 16bit data : 16bit bus / stream mode 1279 */ 1280 io->bus_option = BUSOP_SET(24, PACKAGE_24BITBUS_BACK) | 1281 BUSOP_SET(16, PACKAGE_16BITBUS_STREAM); 1282 1283 return 0; 1284 } 1285 1286 static void fsi_dma_complete(void *data) 1287 { 1288 struct fsi_stream *io = (struct fsi_stream *)data; 1289 struct fsi_priv *fsi = fsi_stream_to_priv(io); 1290 1291 fsi_pointer_update(io, io->period_samples); 1292 1293 fsi_count_fifo_err(fsi); 1294 } 1295 1296 static int fsi_dma_transfer(struct fsi_priv *fsi, struct fsi_stream *io) 1297 { 1298 struct snd_soc_dai *dai = fsi_get_dai(io->substream); 1299 struct snd_pcm_substream *substream = io->substream; 1300 struct dma_async_tx_descriptor *desc; 1301 int is_play = fsi_stream_is_play(fsi, io); 1302 enum dma_transfer_direction dir; 1303 int ret = -EIO; 1304 1305 if (is_play) 1306 dir = DMA_MEM_TO_DEV; 1307 else 1308 dir = DMA_DEV_TO_MEM; 1309 1310 desc = dmaengine_prep_dma_cyclic(io->chan, 1311 substream->runtime->dma_addr, 1312 snd_pcm_lib_buffer_bytes(substream), 1313 snd_pcm_lib_period_bytes(substream), 1314 dir, 1315 DMA_PREP_INTERRUPT | DMA_CTRL_ACK); 1316 if (!desc) { 1317 dev_err(dai->dev, "dmaengine_prep_dma_cyclic() fail\n"); 1318 goto fsi_dma_transfer_err; 1319 } 1320 1321 desc->callback = fsi_dma_complete; 1322 desc->callback_param = io; 1323 1324 if (dmaengine_submit(desc) < 0) { 1325 dev_err(dai->dev, "tx_submit() fail\n"); 1326 goto fsi_dma_transfer_err; 1327 } 1328 1329 dma_async_issue_pending(io->chan); 1330 1331 /* 1332 * FIXME 1333 * 1334 * In DMAEngine case, codec and FSI cannot be started simultaneously 1335 * since FSI is using the scheduler work queue. 1336 * Therefore, in capture case, probably FSI FIFO will have got 1337 * overflow error in this point. 1338 * in that case, DMA cannot start transfer until error was cleared. 1339 */ 1340 if (!is_play) { 1341 if (ERR_OVER & fsi_reg_read(fsi, DIFF_ST)) { 1342 fsi_reg_mask_set(fsi, DIFF_CTL, FIFO_CLR, FIFO_CLR); 1343 fsi_reg_write(fsi, DIFF_ST, 0); 1344 } 1345 } 1346 1347 ret = 0; 1348 1349 fsi_dma_transfer_err: 1350 return ret; 1351 } 1352 1353 static int fsi_dma_push_start_stop(struct fsi_priv *fsi, struct fsi_stream *io, 1354 int start) 1355 { 1356 struct fsi_master *master = fsi_get_master(fsi); 1357 u32 clk = fsi_is_port_a(fsi) ? CRA : CRB; 1358 u32 enable = start ? DMA_ON : 0; 1359 1360 fsi_reg_mask_set(fsi, OUT_DMAC, DMA_ON, enable); 1361 1362 dmaengine_terminate_all(io->chan); 1363 1364 if (fsi_is_clk_master(fsi)) 1365 fsi_master_mask_set(master, CLK_RST, clk, (enable) ? clk : 0); 1366 1367 return 0; 1368 } 1369 1370 static int fsi_dma_probe(struct fsi_priv *fsi, struct fsi_stream *io, struct device *dev) 1371 { 1372 int is_play = fsi_stream_is_play(fsi, io); 1373 1374 #ifdef CONFIG_SUPERH 1375 dma_cap_mask_t mask; 1376 dma_cap_zero(mask); 1377 dma_cap_set(DMA_SLAVE, mask); 1378 1379 io->chan = dma_request_channel(mask, shdma_chan_filter, 1380 (void *)io->dma_id); 1381 #else 1382 io->chan = dma_request_slave_channel(dev, is_play ? "tx" : "rx"); 1383 #endif 1384 if (io->chan) { 1385 struct dma_slave_config cfg = {}; 1386 int ret; 1387 1388 if (is_play) { 1389 cfg.dst_addr = fsi->phys + REG_DODT; 1390 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; 1391 cfg.direction = DMA_MEM_TO_DEV; 1392 } else { 1393 cfg.src_addr = fsi->phys + REG_DIDT; 1394 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; 1395 cfg.direction = DMA_DEV_TO_MEM; 1396 } 1397 1398 ret = dmaengine_slave_config(io->chan, &cfg); 1399 if (ret < 0) { 1400 dma_release_channel(io->chan); 1401 io->chan = NULL; 1402 } 1403 } 1404 1405 if (!io->chan) { 1406 1407 /* switch to PIO handler */ 1408 if (is_play) 1409 fsi->playback.handler = &fsi_pio_push_handler; 1410 else 1411 fsi->capture.handler = &fsi_pio_pop_handler; 1412 1413 dev_info(dev, "switch handler (dma => pio)\n"); 1414 1415 /* probe again */ 1416 return fsi_stream_probe(fsi, dev); 1417 } 1418 1419 return 0; 1420 } 1421 1422 static int fsi_dma_remove(struct fsi_priv *fsi, struct fsi_stream *io) 1423 { 1424 fsi_stream_stop(fsi, io); 1425 1426 if (io->chan) 1427 dma_release_channel(io->chan); 1428 1429 io->chan = NULL; 1430 return 0; 1431 } 1432 1433 static struct fsi_stream_handler fsi_dma_push_handler = { 1434 .init = fsi_dma_init, 1435 .probe = fsi_dma_probe, 1436 .transfer = fsi_dma_transfer, 1437 .remove = fsi_dma_remove, 1438 .start_stop = fsi_dma_push_start_stop, 1439 }; 1440 1441 /* 1442 * dai ops 1443 */ 1444 static void fsi_fifo_init(struct fsi_priv *fsi, 1445 struct fsi_stream *io, 1446 struct device *dev) 1447 { 1448 struct fsi_master *master = fsi_get_master(fsi); 1449 int is_play = fsi_stream_is_play(fsi, io); 1450 u32 shift, i; 1451 int frame_capa; 1452 1453 /* get on-chip RAM capacity */ 1454 shift = fsi_master_read(master, FIFO_SZ); 1455 shift >>= fsi_get_port_shift(fsi, io); 1456 shift &= FIFO_SZ_MASK; 1457 frame_capa = 256 << shift; 1458 dev_dbg(dev, "fifo = %d words\n", frame_capa); 1459 1460 /* 1461 * The maximum number of sample data varies depending 1462 * on the number of channels selected for the format. 1463 * 1464 * FIFOs are used in 4-channel units in 3-channel mode 1465 * and in 8-channel units in 5- to 7-channel mode 1466 * meaning that more FIFOs than the required size of DPRAM 1467 * are used. 1468 * 1469 * ex) if 256 words of DP-RAM is connected 1470 * 1 channel: 256 (256 x 1 = 256) 1471 * 2 channels: 128 (128 x 2 = 256) 1472 * 3 channels: 64 ( 64 x 3 = 192) 1473 * 4 channels: 64 ( 64 x 4 = 256) 1474 * 5 channels: 32 ( 32 x 5 = 160) 1475 * 6 channels: 32 ( 32 x 6 = 192) 1476 * 7 channels: 32 ( 32 x 7 = 224) 1477 * 8 channels: 32 ( 32 x 8 = 256) 1478 */ 1479 for (i = 1; i < fsi->chan_num; i <<= 1) 1480 frame_capa >>= 1; 1481 dev_dbg(dev, "%d channel %d store\n", 1482 fsi->chan_num, frame_capa); 1483 1484 io->fifo_sample_capa = fsi_frame2sample(fsi, frame_capa); 1485 1486 /* 1487 * set interrupt generation factor 1488 * clear FIFO 1489 */ 1490 if (is_play) { 1491 fsi_reg_write(fsi, DOFF_CTL, IRQ_HALF); 1492 fsi_reg_mask_set(fsi, DOFF_CTL, FIFO_CLR, FIFO_CLR); 1493 } else { 1494 fsi_reg_write(fsi, DIFF_CTL, IRQ_HALF); 1495 fsi_reg_mask_set(fsi, DIFF_CTL, FIFO_CLR, FIFO_CLR); 1496 } 1497 } 1498 1499 static int fsi_hw_startup(struct fsi_priv *fsi, 1500 struct fsi_stream *io, 1501 struct device *dev) 1502 { 1503 u32 data = 0; 1504 1505 /* clock setting */ 1506 if (fsi_is_clk_master(fsi)) 1507 data = DIMD | DOMD; 1508 1509 fsi_reg_mask_set(fsi, CKG1, (DIMD | DOMD), data); 1510 1511 /* clock inversion (CKG2) */ 1512 data = 0; 1513 if (fsi->bit_clk_inv) 1514 data |= (1 << 0); 1515 if (fsi->lr_clk_inv) 1516 data |= (1 << 4); 1517 if (fsi_is_clk_master(fsi)) 1518 data <<= 8; 1519 fsi_reg_write(fsi, CKG2, data); 1520 1521 /* spdif ? */ 1522 if (fsi_is_spdif(fsi)) { 1523 fsi_spdif_clk_ctrl(fsi, 1); 1524 fsi_reg_mask_set(fsi, OUT_SEL, DMMD, DMMD); 1525 } 1526 1527 /* 1528 * get bus settings 1529 */ 1530 data = 0; 1531 switch (io->sample_width) { 1532 case 2: 1533 data = BUSOP_GET(16, io->bus_option); 1534 break; 1535 case 4: 1536 data = BUSOP_GET(24, io->bus_option); 1537 break; 1538 } 1539 fsi_format_bus_setup(fsi, io, data, dev); 1540 1541 /* irq clear */ 1542 fsi_irq_disable(fsi, io); 1543 fsi_irq_clear_status(fsi); 1544 1545 /* fifo init */ 1546 fsi_fifo_init(fsi, io, dev); 1547 1548 /* start master clock */ 1549 if (fsi_is_clk_master(fsi)) 1550 return fsi_clk_enable(dev, fsi); 1551 1552 return 0; 1553 } 1554 1555 static int fsi_hw_shutdown(struct fsi_priv *fsi, 1556 struct device *dev) 1557 { 1558 /* stop master clock */ 1559 if (fsi_is_clk_master(fsi)) 1560 return fsi_clk_disable(dev, fsi); 1561 1562 return 0; 1563 } 1564 1565 static int fsi_dai_startup(struct snd_pcm_substream *substream, 1566 struct snd_soc_dai *dai) 1567 { 1568 struct fsi_priv *fsi = fsi_get_priv(substream); 1569 1570 fsi_clk_invalid(fsi); 1571 1572 return 0; 1573 } 1574 1575 static void fsi_dai_shutdown(struct snd_pcm_substream *substream, 1576 struct snd_soc_dai *dai) 1577 { 1578 struct fsi_priv *fsi = fsi_get_priv(substream); 1579 1580 fsi_clk_invalid(fsi); 1581 } 1582 1583 static int fsi_dai_trigger(struct snd_pcm_substream *substream, int cmd, 1584 struct snd_soc_dai *dai) 1585 { 1586 struct fsi_priv *fsi = fsi_get_priv(substream); 1587 struct fsi_stream *io = fsi_stream_get(fsi, substream); 1588 int ret = 0; 1589 1590 switch (cmd) { 1591 case SNDRV_PCM_TRIGGER_START: 1592 fsi_stream_init(fsi, io, substream); 1593 if (!ret) 1594 ret = fsi_hw_startup(fsi, io, dai->dev); 1595 if (!ret) 1596 ret = fsi_stream_start(fsi, io); 1597 if (!ret) 1598 ret = fsi_stream_transfer(io); 1599 break; 1600 case SNDRV_PCM_TRIGGER_STOP: 1601 if (!ret) 1602 ret = fsi_hw_shutdown(fsi, dai->dev); 1603 fsi_stream_stop(fsi, io); 1604 fsi_stream_quit(fsi, io); 1605 break; 1606 } 1607 1608 return ret; 1609 } 1610 1611 static int fsi_set_fmt_dai(struct fsi_priv *fsi, unsigned int fmt) 1612 { 1613 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { 1614 case SND_SOC_DAIFMT_I2S: 1615 fsi->fmt = CR_I2S; 1616 fsi->chan_num = 2; 1617 break; 1618 case SND_SOC_DAIFMT_LEFT_J: 1619 fsi->fmt = CR_PCM; 1620 fsi->chan_num = 2; 1621 break; 1622 default: 1623 return -EINVAL; 1624 } 1625 1626 return 0; 1627 } 1628 1629 static int fsi_set_fmt_spdif(struct fsi_priv *fsi) 1630 { 1631 struct fsi_master *master = fsi_get_master(fsi); 1632 1633 if (fsi_version(master) < 2) 1634 return -EINVAL; 1635 1636 fsi->fmt = CR_DTMD_SPDIF_PCM | CR_PCM; 1637 fsi->chan_num = 2; 1638 1639 return 0; 1640 } 1641 1642 static int fsi_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt) 1643 { 1644 struct fsi_priv *fsi = fsi_get_priv_frm_dai(dai); 1645 int ret; 1646 1647 /* set clock master audio interface */ 1648 switch (fmt & SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) { 1649 case SND_SOC_DAIFMT_BC_FC: 1650 break; 1651 case SND_SOC_DAIFMT_BP_FP: 1652 fsi->clk_master = 1; /* cpu is master */ 1653 break; 1654 default: 1655 return -EINVAL; 1656 } 1657 1658 /* set clock inversion */ 1659 switch (fmt & SND_SOC_DAIFMT_INV_MASK) { 1660 case SND_SOC_DAIFMT_NB_IF: 1661 fsi->bit_clk_inv = 0; 1662 fsi->lr_clk_inv = 1; 1663 break; 1664 case SND_SOC_DAIFMT_IB_NF: 1665 fsi->bit_clk_inv = 1; 1666 fsi->lr_clk_inv = 0; 1667 break; 1668 case SND_SOC_DAIFMT_IB_IF: 1669 fsi->bit_clk_inv = 1; 1670 fsi->lr_clk_inv = 1; 1671 break; 1672 case SND_SOC_DAIFMT_NB_NF: 1673 default: 1674 fsi->bit_clk_inv = 0; 1675 fsi->lr_clk_inv = 0; 1676 break; 1677 } 1678 1679 if (fsi_is_clk_master(fsi)) { 1680 if (fsi->clk_cpg) 1681 fsi_clk_init(dai->dev, fsi, 0, 1, 1, 1682 fsi_clk_set_rate_cpg); 1683 else 1684 fsi_clk_init(dai->dev, fsi, 1, 1, 0, 1685 fsi_clk_set_rate_external); 1686 } 1687 1688 /* set format */ 1689 if (fsi_is_spdif(fsi)) 1690 ret = fsi_set_fmt_spdif(fsi); 1691 else 1692 ret = fsi_set_fmt_dai(fsi, fmt & SND_SOC_DAIFMT_FORMAT_MASK); 1693 1694 return ret; 1695 } 1696 1697 static int fsi_dai_hw_params(struct snd_pcm_substream *substream, 1698 struct snd_pcm_hw_params *params, 1699 struct snd_soc_dai *dai) 1700 { 1701 struct fsi_priv *fsi = fsi_get_priv(substream); 1702 1703 if (fsi_is_clk_master(fsi)) 1704 fsi_clk_valid(fsi, params_rate(params)); 1705 1706 return 0; 1707 } 1708 1709 /* 1710 * Select below from Sound Card, not auto 1711 * SND_SOC_DAIFMT_CBC_CFC 1712 * SND_SOC_DAIFMT_CBP_CFP 1713 */ 1714 static u64 fsi_dai_formats = 1715 SND_SOC_POSSIBLE_DAIFMT_I2S | 1716 SND_SOC_POSSIBLE_DAIFMT_LEFT_J | 1717 SND_SOC_POSSIBLE_DAIFMT_NB_NF | 1718 SND_SOC_POSSIBLE_DAIFMT_NB_IF | 1719 SND_SOC_POSSIBLE_DAIFMT_IB_NF | 1720 SND_SOC_POSSIBLE_DAIFMT_IB_IF; 1721 1722 static const struct snd_soc_dai_ops fsi_dai_ops = { 1723 .startup = fsi_dai_startup, 1724 .shutdown = fsi_dai_shutdown, 1725 .trigger = fsi_dai_trigger, 1726 .set_fmt = fsi_dai_set_fmt, 1727 .hw_params = fsi_dai_hw_params, 1728 .auto_selectable_formats = &fsi_dai_formats, 1729 .num_auto_selectable_formats = 1, 1730 }; 1731 1732 /* 1733 * pcm ops 1734 */ 1735 1736 static const struct snd_pcm_hardware fsi_pcm_hardware = { 1737 .info = SNDRV_PCM_INFO_INTERLEAVED | 1738 SNDRV_PCM_INFO_MMAP | 1739 SNDRV_PCM_INFO_MMAP_VALID, 1740 .buffer_bytes_max = 64 * 1024, 1741 .period_bytes_min = 32, 1742 .period_bytes_max = 8192, 1743 .periods_min = 1, 1744 .periods_max = 32, 1745 .fifo_size = 256, 1746 }; 1747 1748 static int fsi_pcm_open(struct snd_soc_component *component, 1749 struct snd_pcm_substream *substream) 1750 { 1751 struct snd_pcm_runtime *runtime = substream->runtime; 1752 int ret = 0; 1753 1754 snd_soc_set_runtime_hwparams(substream, &fsi_pcm_hardware); 1755 1756 ret = snd_pcm_hw_constraint_integer(runtime, 1757 SNDRV_PCM_HW_PARAM_PERIODS); 1758 1759 return ret; 1760 } 1761 1762 static snd_pcm_uframes_t fsi_pointer(struct snd_soc_component *component, 1763 struct snd_pcm_substream *substream) 1764 { 1765 struct fsi_priv *fsi = fsi_get_priv(substream); 1766 struct fsi_stream *io = fsi_stream_get(fsi, substream); 1767 1768 return fsi_sample2frame(fsi, io->buff_sample_pos); 1769 } 1770 1771 /* 1772 * snd_soc_component 1773 */ 1774 1775 #define PREALLOC_BUFFER (32 * 1024) 1776 #define PREALLOC_BUFFER_MAX (32 * 1024) 1777 1778 static int fsi_pcm_new(struct snd_soc_component *component, 1779 struct snd_soc_pcm_runtime *rtd) 1780 { 1781 snd_pcm_set_managed_buffer_all( 1782 rtd->pcm, 1783 SNDRV_DMA_TYPE_DEV, 1784 rtd->card->snd_card->dev, 1785 PREALLOC_BUFFER, PREALLOC_BUFFER_MAX); 1786 return 0; 1787 } 1788 1789 /* 1790 * alsa struct 1791 */ 1792 1793 static struct snd_soc_dai_driver fsi_soc_dai[] = { 1794 { 1795 .name = "fsia-dai", 1796 .playback = { 1797 .rates = FSI_RATES, 1798 .formats = FSI_FMTS, 1799 .channels_min = 2, 1800 .channels_max = 2, 1801 }, 1802 .capture = { 1803 .rates = FSI_RATES, 1804 .formats = FSI_FMTS, 1805 .channels_min = 2, 1806 .channels_max = 2, 1807 }, 1808 .ops = &fsi_dai_ops, 1809 }, 1810 { 1811 .name = "fsib-dai", 1812 .playback = { 1813 .rates = FSI_RATES, 1814 .formats = FSI_FMTS, 1815 .channels_min = 2, 1816 .channels_max = 2, 1817 }, 1818 .capture = { 1819 .rates = FSI_RATES, 1820 .formats = FSI_FMTS, 1821 .channels_min = 2, 1822 .channels_max = 2, 1823 }, 1824 .ops = &fsi_dai_ops, 1825 }, 1826 }; 1827 1828 static const struct snd_soc_component_driver fsi_soc_component = { 1829 .name = "fsi", 1830 .open = fsi_pcm_open, 1831 .pointer = fsi_pointer, 1832 .pcm_construct = fsi_pcm_new, 1833 }; 1834 1835 /* 1836 * platform function 1837 */ 1838 static void fsi_of_parse(char *name, 1839 struct device_node *np, 1840 struct sh_fsi_port_info *info, 1841 struct device *dev) 1842 { 1843 int i; 1844 char prop[128]; 1845 unsigned long flags = 0; 1846 struct { 1847 char *name; 1848 unsigned int val; 1849 } of_parse_property[] = { 1850 { "spdif-connection", SH_FSI_FMT_SPDIF }, 1851 { "stream-mode-support", SH_FSI_ENABLE_STREAM_MODE }, 1852 { "use-internal-clock", SH_FSI_CLK_CPG }, 1853 }; 1854 1855 for (i = 0; i < ARRAY_SIZE(of_parse_property); i++) { 1856 sprintf(prop, "%s,%s", name, of_parse_property[i].name); 1857 if (of_property_present(np, prop)) 1858 flags |= of_parse_property[i].val; 1859 } 1860 info->flags = flags; 1861 1862 dev_dbg(dev, "%s flags : %lx\n", name, info->flags); 1863 } 1864 1865 static void fsi_port_info_init(struct fsi_priv *fsi, 1866 struct sh_fsi_port_info *info) 1867 { 1868 if (info->flags & SH_FSI_FMT_SPDIF) 1869 fsi->spdif = 1; 1870 1871 if (info->flags & SH_FSI_CLK_CPG) 1872 fsi->clk_cpg = 1; 1873 1874 if (info->flags & SH_FSI_ENABLE_STREAM_MODE) 1875 fsi->enable_stream = 1; 1876 } 1877 1878 static void fsi_handler_init(struct fsi_priv *fsi, 1879 struct sh_fsi_port_info *info) 1880 { 1881 fsi->playback.handler = &fsi_pio_push_handler; /* default PIO */ 1882 fsi->playback.priv = fsi; 1883 fsi->capture.handler = &fsi_pio_pop_handler; /* default PIO */ 1884 fsi->capture.priv = fsi; 1885 1886 if (info->tx_id) { 1887 fsi->playback.dma_id = info->tx_id; 1888 fsi->playback.handler = &fsi_dma_push_handler; 1889 } 1890 } 1891 1892 static const struct fsi_core fsi1_core = { 1893 .ver = 1, 1894 1895 /* Interrupt */ 1896 .int_st = INT_ST, 1897 .iemsk = IEMSK, 1898 .imsk = IMSK, 1899 }; 1900 1901 static const struct fsi_core fsi2_core = { 1902 .ver = 2, 1903 1904 /* Interrupt */ 1905 .int_st = CPU_INT_ST, 1906 .iemsk = CPU_IEMSK, 1907 .imsk = CPU_IMSK, 1908 .a_mclk = A_MST_CTLR, 1909 .b_mclk = B_MST_CTLR, 1910 }; 1911 1912 static const struct of_device_id fsi_of_match[] = { 1913 { .compatible = "renesas,sh_fsi", .data = &fsi1_core}, 1914 { .compatible = "renesas,sh_fsi2", .data = &fsi2_core}, 1915 {}, 1916 }; 1917 MODULE_DEVICE_TABLE(of, fsi_of_match); 1918 1919 static const struct platform_device_id fsi_id_table[] = { 1920 { "sh_fsi", (kernel_ulong_t)&fsi1_core }, 1921 {}, 1922 }; 1923 MODULE_DEVICE_TABLE(platform, fsi_id_table); 1924 1925 static int fsi_probe(struct platform_device *pdev) 1926 { 1927 struct fsi_master *master; 1928 struct device_node *np = pdev->dev.of_node; 1929 struct sh_fsi_platform_info info; 1930 const struct fsi_core *core; 1931 struct fsi_priv *fsi; 1932 struct resource *res; 1933 unsigned int irq; 1934 int ret; 1935 1936 memset(&info, 0, sizeof(info)); 1937 1938 core = NULL; 1939 if (np) { 1940 core = of_device_get_match_data(&pdev->dev); 1941 fsi_of_parse("fsia", np, &info.port_a, &pdev->dev); 1942 fsi_of_parse("fsib", np, &info.port_b, &pdev->dev); 1943 } else { 1944 const struct platform_device_id *id_entry = pdev->id_entry; 1945 if (id_entry) 1946 core = (struct fsi_core *)id_entry->driver_data; 1947 1948 if (pdev->dev.platform_data) 1949 memcpy(&info, pdev->dev.platform_data, sizeof(info)); 1950 } 1951 1952 if (!core) { 1953 dev_err(&pdev->dev, "unknown fsi device\n"); 1954 return -ENODEV; 1955 } 1956 1957 res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 1958 irq = platform_get_irq(pdev, 0); 1959 if (!res || (int)irq <= 0) { 1960 dev_err(&pdev->dev, "Not enough FSI platform resources.\n"); 1961 return -ENODEV; 1962 } 1963 1964 master = devm_kzalloc(&pdev->dev, sizeof(*master), GFP_KERNEL); 1965 if (!master) 1966 return -ENOMEM; 1967 1968 master->base = devm_ioremap(&pdev->dev, res->start, resource_size(res)); 1969 if (!master->base) { 1970 dev_err(&pdev->dev, "Unable to ioremap FSI registers.\n"); 1971 return -ENXIO; 1972 } 1973 1974 /* master setting */ 1975 master->core = core; 1976 spin_lock_init(&master->lock); 1977 1978 /* FSI A setting */ 1979 fsi = &master->fsia; 1980 fsi->base = master->base; 1981 fsi->phys = res->start; 1982 fsi->master = master; 1983 fsi_port_info_init(fsi, &info.port_a); 1984 fsi_handler_init(fsi, &info.port_a); 1985 ret = fsi_stream_probe(fsi, &pdev->dev); 1986 if (ret < 0) { 1987 dev_err(&pdev->dev, "FSIA stream probe failed\n"); 1988 return ret; 1989 } 1990 1991 /* FSI B setting */ 1992 fsi = &master->fsib; 1993 fsi->base = master->base + 0x40; 1994 fsi->phys = res->start + 0x40; 1995 fsi->master = master; 1996 fsi_port_info_init(fsi, &info.port_b); 1997 fsi_handler_init(fsi, &info.port_b); 1998 ret = fsi_stream_probe(fsi, &pdev->dev); 1999 if (ret < 0) { 2000 dev_err(&pdev->dev, "FSIB stream probe failed\n"); 2001 goto exit_fsia; 2002 } 2003 2004 pm_runtime_enable(&pdev->dev); 2005 dev_set_drvdata(&pdev->dev, master); 2006 2007 ret = devm_request_irq(&pdev->dev, irq, &fsi_interrupt, 0, 2008 dev_name(&pdev->dev), master); 2009 if (ret) { 2010 dev_err(&pdev->dev, "irq request err\n"); 2011 goto exit_fsib; 2012 } 2013 2014 ret = devm_snd_soc_register_component(&pdev->dev, &fsi_soc_component, 2015 fsi_soc_dai, ARRAY_SIZE(fsi_soc_dai)); 2016 if (ret < 0) { 2017 dev_err(&pdev->dev, "cannot snd component register\n"); 2018 goto exit_fsib; 2019 } 2020 2021 return ret; 2022 2023 exit_fsib: 2024 pm_runtime_disable(&pdev->dev); 2025 fsi_stream_remove(&master->fsib); 2026 exit_fsia: 2027 fsi_stream_remove(&master->fsia); 2028 2029 return ret; 2030 } 2031 2032 static void fsi_remove(struct platform_device *pdev) 2033 { 2034 struct fsi_master *master; 2035 2036 master = dev_get_drvdata(&pdev->dev); 2037 2038 pm_runtime_disable(&pdev->dev); 2039 2040 fsi_stream_remove(&master->fsia); 2041 fsi_stream_remove(&master->fsib); 2042 } 2043 2044 static void __fsi_suspend(struct fsi_priv *fsi, 2045 struct fsi_stream *io, 2046 struct device *dev) 2047 { 2048 if (!fsi_stream_is_working(fsi, io)) 2049 return; 2050 2051 fsi_stream_stop(fsi, io); 2052 fsi_hw_shutdown(fsi, dev); 2053 } 2054 2055 static void __fsi_resume(struct fsi_priv *fsi, 2056 struct fsi_stream *io, 2057 struct device *dev) 2058 { 2059 if (!fsi_stream_is_working(fsi, io)) 2060 return; 2061 2062 fsi_hw_startup(fsi, io, dev); 2063 fsi_stream_start(fsi, io); 2064 } 2065 2066 static int fsi_suspend(struct device *dev) 2067 { 2068 struct fsi_master *master = dev_get_drvdata(dev); 2069 struct fsi_priv *fsia = &master->fsia; 2070 struct fsi_priv *fsib = &master->fsib; 2071 2072 __fsi_suspend(fsia, &fsia->playback, dev); 2073 __fsi_suspend(fsia, &fsia->capture, dev); 2074 2075 __fsi_suspend(fsib, &fsib->playback, dev); 2076 __fsi_suspend(fsib, &fsib->capture, dev); 2077 2078 return 0; 2079 } 2080 2081 static int fsi_resume(struct device *dev) 2082 { 2083 struct fsi_master *master = dev_get_drvdata(dev); 2084 struct fsi_priv *fsia = &master->fsia; 2085 struct fsi_priv *fsib = &master->fsib; 2086 2087 __fsi_resume(fsia, &fsia->playback, dev); 2088 __fsi_resume(fsia, &fsia->capture, dev); 2089 2090 __fsi_resume(fsib, &fsib->playback, dev); 2091 __fsi_resume(fsib, &fsib->capture, dev); 2092 2093 return 0; 2094 } 2095 2096 static const struct dev_pm_ops fsi_pm_ops = { 2097 .suspend = fsi_suspend, 2098 .resume = fsi_resume, 2099 }; 2100 2101 static struct platform_driver fsi_driver = { 2102 .driver = { 2103 .name = "fsi-pcm-audio", 2104 .pm = &fsi_pm_ops, 2105 .of_match_table = fsi_of_match, 2106 }, 2107 .probe = fsi_probe, 2108 .remove_new = fsi_remove, 2109 .id_table = fsi_id_table, 2110 }; 2111 2112 module_platform_driver(fsi_driver); 2113 2114 MODULE_LICENSE("GPL v2"); 2115 MODULE_DESCRIPTION("SuperH onchip FSI audio driver"); 2116 MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>"); 2117 MODULE_ALIAS("platform:fsi-pcm-audio"); 2118