1 /*
2  * Rockchip PDM ALSA SoC Digital Audio Interface(DAI)  driver
3  *
4  * Copyright (C) 2017 Fuzhou Rockchip Electronics Co., Ltd
5  *
6  * This software is licensed under the terms of the GNU General Public
7  * License version 2, as published by the Free Software Foundation, and
8  * may be copied, distributed, and modified under those terms.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  */
16 
17 #ifndef _ROCKCHIP_PDM_H
18 #define _ROCKCHIP_PDM_H
19 
20 /* PDM REGS */
21 #define PDM_SYSCONFIG	(0x0000)
22 #define PDM_CTRL0	(0x0004)
23 #define PDM_CTRL1	(0x0008)
24 #define PDM_CLK_CTRL	(0x000c)
25 #define PDM_HPF_CTRL	(0x0010)
26 #define PDM_FIFO_CTRL	(0x0014)
27 #define PDM_DMA_CTRL	(0x0018)
28 #define PDM_INT_EN	(0x001c)
29 #define PDM_INT_CLR	(0x0020)
30 #define PDM_INT_ST	(0x0024)
31 #define PDM_RXFIFO_DATA	(0x0030)
32 #define PDM_DATA_VALID	(0x0054)
33 #define PDM_VERSION	(0x0058)
34 
35 /* PDM_SYSCONFIG */
36 #define PDM_RX_MASK		(0x1 << 2)
37 #define PDM_RX_START		(0x1 << 2)
38 #define PDM_RX_STOP		(0x0 << 2)
39 #define PDM_RX_CLR_MASK		(0x1 << 0)
40 #define PDM_RX_CLR_WR		(0x1 << 0)
41 #define PDM_RX_CLR_DONE		(0x0 << 0)
42 
43 /* PDM CTRL0 */
44 #define PDM_PATH_MSK		(0xf << 27)
45 #define PDM_MODE_MSK		BIT(31)
46 #define PDM_MODE_RJ		0
47 #define PDM_MODE_LJ		BIT(31)
48 #define PDM_PATH3_EN		BIT(30)
49 #define PDM_PATH2_EN		BIT(29)
50 #define PDM_PATH1_EN		BIT(28)
51 #define PDM_PATH0_EN		BIT(27)
52 #define PDM_HWT_EN		BIT(26)
53 #define PDM_VDW_MSK		(0x1f << 0)
54 #define PDM_VDW(X)		((X - 1) << 0)
55 
56 /* PDM CTRL1 */
57 #define PDM_FD_NUMERATOR_SFT	16
58 #define PDM_FD_NUMERATOR_MSK	GENMASK(31, 16)
59 #define PDM_FD_DENOMINATOR_SFT	0
60 #define PDM_FD_DENOMINATOR_MSK	GENMASK(15, 0)
61 
62 /* PDM CLK CTRL */
63 #define PDM_CLK_FD_RATIO_MSK	BIT(6)
64 #define PDM_CLK_FD_RATIO_40	(0X0 << 6)
65 #define PDM_CLK_FD_RATIO_35	BIT(6)
66 #define PDM_CLK_MSK		BIT(5)
67 #define PDM_CLK_EN		BIT(5)
68 #define PDM_CLK_DIS		(0x0 << 5)
69 #define PDM_CKP_MSK		BIT(3)
70 #define PDM_CKP_NORMAL		(0x0 << 3)
71 #define PDM_CKP_INVERTED	BIT(3)
72 #define PDM_DS_RATIO_MSK	(0x7 << 0)
73 #define PDM_CLK_320FS		(0x0 << 0)
74 #define PDM_CLK_640FS		(0x1 << 0)
75 #define PDM_CLK_1280FS		(0x2 << 0)
76 #define PDM_CLK_2560FS		(0x3 << 0)
77 #define PDM_CLK_5120FS		(0x4 << 0)
78 
79 /* PDM HPF CTRL */
80 #define PDM_HPF_LE		BIT(3)
81 #define PDM_HPF_RE		BIT(2)
82 #define PDM_HPF_CF_MSK		(0x3 << 0)
83 #define PDM_HPF_3P79HZ		(0x0 << 0)
84 #define PDM_HPF_60HZ		(0x1 << 0)
85 #define PDM_HPF_243HZ		(0x2 << 0)
86 #define PDM_HPF_493HZ		(0x3 << 0)
87 
88 /* PDM DMA CTRL */
89 #define PDM_DMA_RD_MSK		BIT(8)
90 #define PDM_DMA_RD_EN		BIT(8)
91 #define PDM_DMA_RD_DIS		(0x0 << 8)
92 #define PDM_DMA_RDL_MSK		(0x7f << 0)
93 #define PDM_DMA_RDL(X)		((X - 1) << 0)
94 
95 #endif /* _ROCKCHIP_PDM_H */
96