diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2009-10-29 12:12:39 -0400 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2009-11-14 04:30:39 -0500 |
commit | 9eedbdf1b4216e286bd660322ae5a52f79eee243 (patch) | |
tree | f68dda745cc87b40aedba9baa84cbb3b7045ffd4 /arch/arm/plat-mxc/audmux-v1.c | |
parent | d8d982b1b284370512d5650aadb300d30fd9d4b2 (diff) |
MXC: Add a digital audio multiplexer driver
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/plat-mxc/audmux-v1.c')
-rw-r--r-- | arch/arm/plat-mxc/audmux-v1.c | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/arch/arm/plat-mxc/audmux-v1.c b/arch/arm/plat-mxc/audmux-v1.c new file mode 100644 index 000000000000..70ab5aff2b9e --- /dev/null +++ b/arch/arm/plat-mxc/audmux-v1.c | |||
@@ -0,0 +1,53 @@ | |||
1 | /* | ||
2 | * Copyright 2009 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de> | ||
3 | * | ||
4 | * Initial development of this code was funded by | ||
5 | * Phytec Messtechnik GmbH, http://www.phytec.de | ||
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 as published by | ||
9 | * the Free Software Foundation; either version 2 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | * | ||
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. | ||
16 | * | ||
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. | ||
20 | */ | ||
21 | |||
22 | #include <linux/module.h> | ||
23 | #include <linux/err.h> | ||
24 | #include <linux/io.h> | ||
25 | #include <linux/clk.h> | ||
26 | #include <mach/audmux.h> | ||
27 | #include <mach/hardware.h> | ||
28 | |||
29 | static void __iomem *audmux_base; | ||
30 | |||
31 | #define MXC_AUDMUX_V1_PCR(x) ((x) * 4) | ||
32 | |||
33 | int mxc_audmux_v1_configure_port(unsigned int port, unsigned int pcr) | ||
34 | { | ||
35 | if (!audmux_base) { | ||
36 | printk("%s: not configured\n", __func__); | ||
37 | return -ENOSYS; | ||
38 | } | ||
39 | |||
40 | writel(pcr, audmux_base + MXC_AUDMUX_V1_PCR(port)); | ||
41 | |||
42 | return 0; | ||
43 | } | ||
44 | EXPORT_SYMBOL_GPL(mxc_audmux_v1_configure_port); | ||
45 | |||
46 | static int mxc_audmux_v1_init(void) | ||
47 | { | ||
48 | if (cpu_is_mx27() || cpu_is_mx21()) | ||
49 | audmux_base = IO_ADDRESS(AUDMUX_BASE_ADDR); | ||
50 | return 0; | ||
51 | } | ||
52 | |||
53 | postcore_initcall(mxc_audmux_v1_init); | ||