blob: 27ee1dcc3e2e4f5111c14d40fd89f09f8810a40f [file] [log] [blame]
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001#ifndef __SOUND_FSI_H
2#define __SOUND_FSI_H
3
4/*
5 * Fifo-attached Serial Interface (FSI) support for SH7724
6 *
7 * Copyright (C) 2009 Renesas Solutions Corp.
8 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
Kuninori Morimoto3c2ef842010-07-16 19:51:06 +090015#define FSI_PORT_A 0
16#define FSI_PORT_B 1
17
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090018#include <linux/clk.h>
19#include <sound/soc.h>
20
Kuninori Morimotof17c13c2011-01-24 10:43:19 +090021/*
22 * flags format
23 *
Kuninori Morimoto766812e2012-05-17 17:36:47 -070024 * 0x00000CBA
Kuninori Morimotof17c13c2011-01-24 10:43:19 +090025 *
26 * A: inversion
27 * B: format mode
Kuninori Morimoto766812e2012-05-17 17:36:47 -070028 * C: chip specific
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -080029 * D: clock selecter if master mode
Kuninori Morimotof17c13c2011-01-24 10:43:19 +090030 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090031
Kuninori Morimotof17c13c2011-01-24 10:43:19 +090032/* A: clock inversion */
33#define SH_FSI_INVERSION_MASK 0x0000000F
34#define SH_FSI_LRM_INV (1 << 0)
35#define SH_FSI_BRM_INV (1 << 1)
36#define SH_FSI_LRS_INV (1 << 2)
37#define SH_FSI_BRS_INV (1 << 3)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090038
Kuninori Morimotof17c13c2011-01-24 10:43:19 +090039/* B: format mode */
40#define SH_FSI_FMT_MASK 0x000000F0
41#define SH_FSI_FMT_DAI (0 << 4)
42#define SH_FSI_FMT_SPDIF (1 << 4)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090043
Kuninori Morimoto766812e2012-05-17 17:36:47 -070044/* C: chip specific */
45#define SH_FSI_OPTION_MASK 0x00000F00
46#define SH_FSI_ENABLE_STREAM_MODE (1 << 8) /* for 16bit data */
Kuninori Morimotoccad7b42010-07-13 12:13:14 +090047
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -080048/* D: clock selecter if master mode */
49#define SH_FSI_CLK_MASK 0x0000F000
50#define SH_FSI_CLK_EXTERNAL (1 << 12)
51#define SH_FSI_CLK_CPG (2 << 12) /* FSIxCK + FSI-DIV */
52
Kuninori Morimotoccad7b42010-07-13 12:13:14 +090053/*
54 * set_rate return value
55 *
56 * see ACKMD/BPFMD on
57 * ACK_MD (FSI2)
58 * CKG1 (FSI)
59 *
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +000060 * err : return value < 0
61 * no change : return value == 0
62 * change xMD : return value > 0
Kuninori Morimotoccad7b42010-07-13 12:13:14 +090063 *
64 * 0x-00000AB
65 *
66 * A: ACKMD value
67 * B: BPFMD value
68 */
69
70#define SH_FSI_ACKMD_MASK (0xF << 0)
71#define SH_FSI_ACKMD_512 (1 << 0)
72#define SH_FSI_ACKMD_256 (2 << 0)
73#define SH_FSI_ACKMD_128 (3 << 0)
74#define SH_FSI_ACKMD_64 (4 << 0)
75#define SH_FSI_ACKMD_32 (5 << 0)
76
77#define SH_FSI_BPFMD_MASK (0xF << 4)
78#define SH_FSI_BPFMD_512 (1 << 4)
79#define SH_FSI_BPFMD_256 (2 << 4)
80#define SH_FSI_BPFMD_128 (3 << 4)
81#define SH_FSI_BPFMD_64 (4 << 4)
82#define SH_FSI_BPFMD_32 (5 << 4)
83#define SH_FSI_BPFMD_16 (6 << 4)
84
Kuninori Morimotofec691e2012-02-03 00:58:48 -080085struct sh_fsi_port_info {
86 unsigned long flags;
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -080087 int tx_id;
88 int rx_id;
Kuninori Morimotofec691e2012-02-03 00:58:48 -080089 int (*set_rate)(struct device *dev, int rate, int enable);
90};
91
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090092struct sh_fsi_platform_info {
Kuninori Morimotofec691e2012-02-03 00:58:48 -080093 struct sh_fsi_port_info port_a;
94 struct sh_fsi_port_info port_b;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090095};
96
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090097#endif /* __SOUND_FSI_H */