1 // SPDX-License-Identifier: GPL-2.0+
3 // Copyright 2012 Freescale Semiconductor, Inc.
4 // Copyright 2012 Linaro Ltd.
7 // Initial development of this code was funded by
8 // Phytec Messtechnik GmbH, https://www.phytec.de
10 #include <linux/clk.h>
11 #include <linux/debugfs.h>
12 #include <linux/err.h>
14 #include <linux/module.h>
16 #include <linux/of_device.h>
17 #include <linux/platform_device.h>
18 #include <linux/slab.h>
20 #include "imx-audmux.h"
22 #define DRIVER_NAME "imx-audmux"
24 static struct clk *audmux_clk;
25 static void __iomem *audmux_base;
29 #define IMX_AUDMUX_V2_PTCR(x) ((x) * 8)
30 #define IMX_AUDMUX_V2_PDCR(x) ((x) * 8 + 4)
32 #ifdef CONFIG_DEBUG_FS
33 static struct dentry *audmux_debugfs_root;
35 /* There is an annoying discontinuity in the SSI numbering with regard
36 * to the Linux number of the devices */
37 static const char *audmux_port_string(int port)
40 case MX31_AUDMUX_PORT1_SSI0:
42 case MX31_AUDMUX_PORT2_SSI1:
44 case MX31_AUDMUX_PORT3_SSI_PINS_3:
46 case MX31_AUDMUX_PORT4_SSI_PINS_4:
48 case MX31_AUDMUX_PORT5_SSI_PINS_5:
50 case MX31_AUDMUX_PORT6_SSI_PINS_6:
57 static ssize_t audmux_read_file(struct file *file, char __user *user_buf,
58 size_t count, loff_t *ppos)
62 uintptr_t port = (uintptr_t)file->private_data;
65 ret = clk_prepare_enable(audmux_clk);
69 ptcr = readl(audmux_base + IMX_AUDMUX_V2_PTCR(port));
70 pdcr = readl(audmux_base + IMX_AUDMUX_V2_PDCR(port));
72 clk_disable_unprepare(audmux_clk);
74 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
78 ret = sysfs_emit(buf, "PDCR: %08x\nPTCR: %08x\n", pdcr, ptcr);
80 if (ptcr & IMX_AUDMUX_V2_PTCR_TFSDIR)
81 ret += scnprintf(buf + ret, PAGE_SIZE - ret,
82 "TxFS output from %s, ",
83 audmux_port_string((ptcr >> 27) & 0x7));
85 ret += scnprintf(buf + ret, PAGE_SIZE - ret,
88 if (ptcr & IMX_AUDMUX_V2_PTCR_TCLKDIR)
89 ret += scnprintf(buf + ret, PAGE_SIZE - ret,
90 "TxClk output from %s",
91 audmux_port_string((ptcr >> 22) & 0x7));
93 ret += scnprintf(buf + ret, PAGE_SIZE - ret,
96 ret += scnprintf(buf + ret, PAGE_SIZE - ret, "\n");
98 if (ptcr & IMX_AUDMUX_V2_PTCR_SYN) {
99 ret += scnprintf(buf + ret, PAGE_SIZE - ret,
100 "Port is symmetric");
102 if (ptcr & IMX_AUDMUX_V2_PTCR_RFSDIR)
103 ret += scnprintf(buf + ret, PAGE_SIZE - ret,
104 "RxFS output from %s, ",
105 audmux_port_string((ptcr >> 17) & 0x7));
107 ret += scnprintf(buf + ret, PAGE_SIZE - ret,
110 if (ptcr & IMX_AUDMUX_V2_PTCR_RCLKDIR)
111 ret += scnprintf(buf + ret, PAGE_SIZE - ret,
112 "RxClk output from %s",
113 audmux_port_string((ptcr >> 12) & 0x7));
115 ret += scnprintf(buf + ret, PAGE_SIZE - ret,
119 ret += scnprintf(buf + ret, PAGE_SIZE - ret,
120 "\nData received from %s\n",
121 audmux_port_string((pdcr >> 13) & 0x7));
123 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
130 static const struct file_operations audmux_debugfs_fops = {
132 .read = audmux_read_file,
133 .llseek = default_llseek,
136 static void audmux_debugfs_init(void)
141 audmux_debugfs_root = debugfs_create_dir("audmux", NULL);
143 for (i = 0; i < MX31_AUDMUX_PORT7_SSI_PINS_7 + 1; i++) {
144 snprintf(buf, sizeof(buf), "ssi%lu", i);
145 debugfs_create_file(buf, 0444, audmux_debugfs_root,
146 (void *)i, &audmux_debugfs_fops);
150 static void audmux_debugfs_remove(void)
152 debugfs_remove_recursive(audmux_debugfs_root);
155 static inline void audmux_debugfs_init(void)
159 static inline void audmux_debugfs_remove(void)
164 static enum imx_audmux_type {
169 static const struct of_device_id imx_audmux_dt_ids[] = {
170 { .compatible = "fsl,imx21-audmux", .data = (void *)IMX21_AUDMUX, },
171 { .compatible = "fsl,imx31-audmux", .data = (void *)IMX31_AUDMUX, },
174 MODULE_DEVICE_TABLE(of, imx_audmux_dt_ids);
176 static const uint8_t port_mapping[] = {
177 0x0, 0x4, 0x8, 0x10, 0x14, 0x1c,
180 int imx_audmux_v1_configure_port(unsigned int port, unsigned int pcr)
182 if (audmux_type != IMX21_AUDMUX)
188 if (port >= ARRAY_SIZE(port_mapping))
191 writel(pcr, audmux_base + port_mapping[port]);
195 EXPORT_SYMBOL_GPL(imx_audmux_v1_configure_port);
197 int imx_audmux_v2_configure_port(unsigned int port, unsigned int ptcr,
202 if (audmux_type != IMX31_AUDMUX)
208 ret = clk_prepare_enable(audmux_clk);
212 writel(ptcr, audmux_base + IMX_AUDMUX_V2_PTCR(port));
213 writel(pdcr, audmux_base + IMX_AUDMUX_V2_PDCR(port));
215 clk_disable_unprepare(audmux_clk);
219 EXPORT_SYMBOL_GPL(imx_audmux_v2_configure_port);
221 static int imx_audmux_parse_dt_defaults(struct platform_device *pdev,
222 struct device_node *of_node)
224 struct device_node *child;
226 for_each_available_child_of_node(of_node, child) {
228 unsigned int ptcr = 0;
229 unsigned int pdcr = 0;
230 unsigned int pcr = 0;
235 ret = of_property_read_u32(child, "fsl,audmux-port", &port);
237 dev_warn(&pdev->dev, "Failed to get fsl,audmux-port of child node \"%pOF\"\n",
241 if (!of_property_read_bool(child, "fsl,port-config")) {
242 dev_warn(&pdev->dev, "child node \"%pOF\" does not have property fsl,port-config\n",
247 for (i = 0; (ret = of_property_read_u32_index(child,
248 "fsl,port-config", i, &val)) == 0;
250 if (audmux_type == IMX31_AUDMUX) {
260 if (ret != -EOVERFLOW) {
261 dev_err(&pdev->dev, "Failed to read u32 at index %d of child %pOF\n",
266 if (audmux_type == IMX31_AUDMUX) {
268 dev_err(&pdev->dev, "One pdcr value is missing in child node %pOF\n",
272 imx_audmux_v2_configure_port(port, ptcr, pdcr);
274 imx_audmux_v1_configure_port(port, pcr);
281 static int imx_audmux_probe(struct platform_device *pdev)
283 audmux_base = devm_platform_ioremap_resource(pdev, 0);
284 if (IS_ERR(audmux_base))
285 return PTR_ERR(audmux_base);
287 audmux_clk = devm_clk_get(&pdev->dev, "audmux");
288 if (IS_ERR(audmux_clk)) {
289 dev_dbg(&pdev->dev, "cannot get clock: %ld\n",
290 PTR_ERR(audmux_clk));
294 audmux_type = (uintptr_t)of_device_get_match_data(&pdev->dev);
296 switch (audmux_type) {
298 audmux_debugfs_init();
305 dev_err(&pdev->dev, "unsupported version!\n");
309 regcache = devm_kzalloc(&pdev->dev, sizeof(u32) * reg_max, GFP_KERNEL);
313 imx_audmux_parse_dt_defaults(pdev, pdev->dev.of_node);
318 static void imx_audmux_remove(struct platform_device *pdev)
320 if (audmux_type == IMX31_AUDMUX)
321 audmux_debugfs_remove();
324 #ifdef CONFIG_PM_SLEEP
325 static int imx_audmux_suspend(struct device *dev)
329 clk_prepare_enable(audmux_clk);
331 for (i = 0; i < reg_max; i++)
332 regcache[i] = readl(audmux_base + i * 4);
334 clk_disable_unprepare(audmux_clk);
339 static int imx_audmux_resume(struct device *dev)
343 clk_prepare_enable(audmux_clk);
345 for (i = 0; i < reg_max; i++)
346 writel(regcache[i], audmux_base + i * 4);
348 clk_disable_unprepare(audmux_clk);
352 #endif /* CONFIG_PM_SLEEP */
354 static const struct dev_pm_ops imx_audmux_pm = {
355 SET_SYSTEM_SLEEP_PM_OPS(imx_audmux_suspend, imx_audmux_resume)
358 static struct platform_driver imx_audmux_driver = {
359 .probe = imx_audmux_probe,
360 .remove_new = imx_audmux_remove,
363 .pm = &imx_audmux_pm,
364 .of_match_table = imx_audmux_dt_ids,
368 static int __init imx_audmux_init(void)
370 return platform_driver_register(&imx_audmux_driver);
372 subsys_initcall(imx_audmux_init);
374 static void __exit imx_audmux_exit(void)
376 platform_driver_unregister(&imx_audmux_driver);
378 module_exit(imx_audmux_exit);
380 MODULE_DESCRIPTION("Freescale i.MX AUDMUX driver");
382 MODULE_LICENSE("GPL v2");
383 MODULE_ALIAS("platform:" DRIVER_NAME);