2 * Copyright 2009 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
4 * Initial development of this code was funded by
5 * Phytec Messtechnik GmbH, http://www.phytec.de
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include <linux/module.h>
23 #include <linux/err.h>
25 #include <linux/clk.h>
26 #include <linux/debugfs.h>
27 #include <mach/audmux.h>
28 #include <mach/hardware.h>
30 static struct clk
*audmux_clk
;
31 static void __iomem
*audmux_base
;
33 #define MXC_AUDMUX_V2_PTCR(x) ((x) * 8)
34 #define MXC_AUDMUX_V2_PDCR(x) ((x) * 8 + 4)
36 #ifdef CONFIG_DEBUG_FS
37 static struct dentry
*audmux_debugfs_root
;
39 static int audmux_open_file(struct inode
*inode
, struct file
*file
)
41 file
->private_data
= inode
->i_private
;
45 /* There is an annoying discontinuity in the SSI numbering with regard
46 * to the Linux number of the devices */
47 static const char *audmux_port_string(int port
)
50 case MX31_AUDMUX_PORT1_SSI0
:
52 case MX31_AUDMUX_PORT2_SSI1
:
54 case MX31_AUDMUX_PORT3_SSI_PINS_3
:
56 case MX31_AUDMUX_PORT4_SSI_PINS_4
:
58 case MX31_AUDMUX_PORT5_SSI_PINS_5
:
60 case MX31_AUDMUX_PORT6_SSI_PINS_6
:
67 static ssize_t
audmux_read_file(struct file
*file
, char __user
*user_buf
,
68 size_t count
, loff_t
*ppos
)
71 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
72 int port
= (int)file
->private_data
;
79 clk_enable(audmux_clk
);
81 ptcr
= readl(audmux_base
+ MXC_AUDMUX_V2_PTCR(port
));
82 pdcr
= readl(audmux_base
+ MXC_AUDMUX_V2_PDCR(port
));
85 clk_disable(audmux_clk
);
87 ret
= snprintf(buf
, PAGE_SIZE
, "PDCR: %08x\nPTCR: %08x\n",
90 if (ptcr
& MXC_AUDMUX_V2_PTCR_TFSDIR
)
91 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
92 "TxFS output from %s, ",
93 audmux_port_string((ptcr
>> 27) & 0x7));
95 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
98 if (ptcr
& MXC_AUDMUX_V2_PTCR_TCLKDIR
)
99 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
100 "TxClk output from %s",
101 audmux_port_string((ptcr
>> 22) & 0x7));
103 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
106 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "\n");
108 if (ptcr
& MXC_AUDMUX_V2_PTCR_SYN
) {
109 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
110 "Port is symmetric");
112 if (ptcr
& MXC_AUDMUX_V2_PTCR_RFSDIR
)
113 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
114 "RxFS output from %s, ",
115 audmux_port_string((ptcr
>> 17) & 0x7));
117 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
120 if (ptcr
& MXC_AUDMUX_V2_PTCR_RCLKDIR
)
121 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
122 "RxClk output from %s",
123 audmux_port_string((ptcr
>> 12) & 0x7));
125 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
129 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
130 "\nData received from %s\n",
131 audmux_port_string((pdcr
>> 13) & 0x7));
133 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
140 static const struct file_operations audmux_debugfs_fops
= {
141 .open
= audmux_open_file
,
142 .read
= audmux_read_file
,
145 static void audmux_debugfs_init(void)
150 audmux_debugfs_root
= debugfs_create_dir("audmux", NULL
);
151 if (!audmux_debugfs_root
) {
152 pr_warning("Failed to create AUDMUX debugfs root\n");
156 for (i
= 1; i
< 8; i
++) {
157 snprintf(buf
, sizeof(buf
), "ssi%d", i
);
158 if (!debugfs_create_file(buf
, 0444, audmux_debugfs_root
,
159 (void *)i
, &audmux_debugfs_fops
))
160 pr_warning("Failed to create AUDMUX port %d debugfs file\n",
165 static inline void audmux_debugfs_init(void)
170 int mxc_audmux_v2_configure_port(unsigned int port
, unsigned int ptcr
,
177 clk_enable(audmux_clk
);
179 writel(ptcr
, audmux_base
+ MXC_AUDMUX_V2_PTCR(port
));
180 writel(pdcr
, audmux_base
+ MXC_AUDMUX_V2_PDCR(port
));
183 clk_disable(audmux_clk
);
187 EXPORT_SYMBOL_GPL(mxc_audmux_v2_configure_port
);
189 static int mxc_audmux_v2_init(void)
194 audmux_clk
= clk_get(NULL
, "audmux");
195 if (IS_ERR(audmux_clk
)) {
196 ret
= PTR_ERR(audmux_clk
);
197 printk(KERN_ERR
"%s: cannot get clock: %d\n", __func__
,
203 if (cpu_is_mx31() || cpu_is_mx35())
204 audmux_base
= IO_ADDRESS(AUDMUX_BASE_ADDR
);
206 audmux_debugfs_init();
211 postcore_initcall(mxc_audmux_v2_init
);