2 * DaVinci pin multiplexing configurations
4 * Author: Vladimir Barinov, MontaVista Software, Inc. <source@mvista.com>
6 * 2007 (c) MontaVista Software, Inc. This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
12 #include <linux/spinlock.h>
14 #include <asm/hardware.h>
16 #include <asm/arch/mux.h>
18 /* System control register offsets */
22 static DEFINE_SPINLOCK(mux_lock
);
24 void davinci_mux_peripheral(unsigned int mux
, unsigned int enable
)
26 u32 pinmux
, muxreg
= PINMUX0
;
28 if (mux
>= DAVINCI_MUX_LEVEL2
) {
30 mux
-= DAVINCI_MUX_LEVEL2
;
34 pinmux
= davinci_readl(DAVINCI_SYSTEM_MODULE_BASE
+ muxreg
);
38 pinmux
&= ~(1 << mux
);
39 davinci_writel(pinmux
, DAVINCI_SYSTEM_MODULE_BASE
+ muxreg
);
40 spin_unlock(&mux_lock
);