]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - include/sound/rcar_snd.h
Merge remote-tracking branch 'regulator/fix/core' into regulator-linus
[mirror_ubuntu-artful-kernel.git] / include / sound / rcar_snd.h
1 /*
2 * Renesas R-Car SRU/SCU/SSIU/SSI support
3 *
4 * Copyright (C) 2013 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12 #ifndef RCAR_SND_H
13 #define RCAR_SND_H
14
15 #include <linux/sh_clk.h>
16
17 #define RSND_GEN1_SRU 0
18 #define RSND_GEN1_ADG 1
19 #define RSND_GEN1_SSI 2
20
21 #define RSND_GEN2_SCU 0
22 #define RSND_GEN2_ADG 1
23 #define RSND_GEN2_SSIU 2
24 #define RSND_GEN2_SSI 3
25
26 #define RSND_BASE_MAX 4
27
28 /*
29 * flags
30 *
31 * 0xAB000000
32 *
33 * A : clock sharing settings
34 * B : SSI direction
35 */
36 #define RSND_SSI_CLK_PIN_SHARE (1 << 31)
37
38 #define RSND_SSI(_dma_id, _pio_irq, _flags) \
39 { .dma_id = _dma_id, .pio_irq = _pio_irq, .flags = _flags }
40 #define RSND_SSI_UNUSED \
41 { .dma_id = -1, .pio_irq = -1, .flags = 0 }
42
43 struct rsnd_ssi_platform_info {
44 int dma_id;
45 int pio_irq;
46 u32 flags;
47 };
48
49 #define RSND_SRC(rate, _dma_id) \
50 { .convert_rate = rate, .dma_id = _dma_id, }
51 #define RSND_SRC_UNUSED \
52 { .convert_rate = 0, .dma_id = -1, }
53
54 struct rsnd_src_platform_info {
55 u32 convert_rate; /* sampling rate convert */
56 int dma_id; /* for Gen2 SCU */
57 };
58
59 /*
60 * flags
61 */
62 struct rsnd_dvc_platform_info {
63 u32 flags;
64 };
65
66 struct rsnd_dai_path_info {
67 struct rsnd_ssi_platform_info *ssi;
68 struct rsnd_src_platform_info *src;
69 struct rsnd_dvc_platform_info *dvc;
70 };
71
72 struct rsnd_dai_platform_info {
73 struct rsnd_dai_path_info playback;
74 struct rsnd_dai_path_info capture;
75 };
76
77 /*
78 * flags
79 *
80 * 0x0000000A
81 *
82 * A : generation
83 */
84 #define RSND_GEN_MASK (0xF << 0)
85 #define RSND_GEN1 (1 << 0) /* fixme */
86 #define RSND_GEN2 (2 << 0) /* fixme */
87
88 struct rcar_snd_info {
89 u32 flags;
90 struct rsnd_ssi_platform_info *ssi_info;
91 int ssi_info_nr;
92 struct rsnd_src_platform_info *src_info;
93 int src_info_nr;
94 struct rsnd_dvc_platform_info *dvc_info;
95 int dvc_info_nr;
96 struct rsnd_dai_platform_info *dai_info;
97 int dai_info_nr;
98 int (*start)(int id);
99 int (*stop)(int id);
100 };
101
102 #endif