2 * Copyright 2004-2006 Freescale Semiconductor, Inc. All Rights Reserved.
3 * Copyright (C) 2008 by Sascha Hauer <kernel@pengutronix.de>
4 * Copyright (C) 2009 by Valentin Longchamp <valentin.longchamp@epfl.ch>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20 #include <linux/gpio.h>
21 #include <linux/module.h>
22 #include <linux/spinlock.h>
24 #include <linux/kernel.h>
25 #include <mach/hardware.h>
26 #include <mach/iomux-mx3.h>
29 * IOMUX register (base) addresses
31 #define IOMUX_BASE MX31_IO_ADDRESS(MX31_IOMUXC_BASE_ADDR)
32 #define IOMUXINT_OBS1 (IOMUX_BASE + 0x000)
33 #define IOMUXINT_OBS2 (IOMUX_BASE + 0x004)
34 #define IOMUXGPR (IOMUX_BASE + 0x008)
35 #define IOMUXSW_MUX_CTL (IOMUX_BASE + 0x00C)
36 #define IOMUXSW_PAD_CTL (IOMUX_BASE + 0x154)
38 static DEFINE_SPINLOCK(gpio_mux_lock
);
40 #define IOMUX_REG_MASK (IOMUX_PADNUM_MASK & ~0x3)
42 unsigned long mxc_pin_alloc_map
[NB_PORTS
* 32 / BITS_PER_LONG
];
44 * set the mode for a IOMUX pin.
46 int mxc_iomux_mode(unsigned int pin_mode
)
48 u32 field
, l
, mode
, ret
= 0;
51 reg
= IOMUXSW_MUX_CTL
+ (pin_mode
& IOMUX_REG_MASK
);
52 field
= pin_mode
& 0x3;
53 mode
= (pin_mode
& IOMUX_MODE_MASK
) >> IOMUX_MODE_SHIFT
;
55 spin_lock(&gpio_mux_lock
);
58 l
&= ~(0xff << (field
* 8));
59 l
|= mode
<< (field
* 8);
62 spin_unlock(&gpio_mux_lock
);
66 EXPORT_SYMBOL(mxc_iomux_mode
);
69 * This function configures the pad value for a IOMUX pin.
71 void mxc_iomux_set_pad(enum iomux_pins pin
, u32 config
)
76 pin
&= IOMUX_PADNUM_MASK
;
77 reg
= IOMUXSW_PAD_CTL
+ (pin
+ 2) / 3 * 4;
78 field
= (pin
+ 2) % 3;
80 pr_debug("%s: reg offset = 0x%x, field = %d\n",
81 __func__
, (pin
+ 2) / 3, field
);
83 spin_lock(&gpio_mux_lock
);
86 l
&= ~(0x1ff << (field
* 10));
87 l
|= config
<< (field
* 10);
90 spin_unlock(&gpio_mux_lock
);
92 EXPORT_SYMBOL(mxc_iomux_set_pad
);
95 * allocs a single pin:
96 * - reserves the pin so that it is not claimed by another driver
97 * - setups the iomux according to the configuration
99 int mxc_iomux_alloc_pin(unsigned int pin
, const char *label
)
101 unsigned pad
= pin
& IOMUX_PADNUM_MASK
;
103 if (pad
>= (PIN_MAX
+ 1)) {
104 printk(KERN_ERR
"mxc_iomux: Attempt to request nonexistant pin %u for \"%s\"\n",
105 pad
, label
? label
: "?");
109 if (test_and_set_bit(pad
, mxc_pin_alloc_map
)) {
110 printk(KERN_ERR
"mxc_iomux: pin %u already used. Allocation for \"%s\" failed\n",
111 pad
, label
? label
: "?");
118 EXPORT_SYMBOL(mxc_iomux_alloc_pin
);
120 int mxc_iomux_setup_multiple_pins(const unsigned int *pin_list
, unsigned count
,
123 const unsigned int *p
= pin_list
;
127 for (i
= 0; i
< count
; i
++) {
128 ret
= mxc_iomux_alloc_pin(*p
, label
);
136 mxc_iomux_release_multiple_pins(pin_list
, i
);
139 EXPORT_SYMBOL(mxc_iomux_setup_multiple_pins
);
141 void mxc_iomux_release_pin(unsigned int pin
)
143 unsigned pad
= pin
& IOMUX_PADNUM_MASK
;
145 if (pad
< (PIN_MAX
+ 1))
146 clear_bit(pad
, mxc_pin_alloc_map
);
148 EXPORT_SYMBOL(mxc_iomux_release_pin
);
150 void mxc_iomux_release_multiple_pins(const unsigned int *pin_list
, int count
)
152 const unsigned int *p
= pin_list
;
155 for (i
= 0; i
< count
; i
++) {
156 mxc_iomux_release_pin(*p
);
160 EXPORT_SYMBOL(mxc_iomux_release_multiple_pins
);
163 * This function enables/disables the general purpose function for a particular
166 void mxc_iomux_set_gpr(enum iomux_gp_func gp
, bool en
)
170 spin_lock(&gpio_mux_lock
);
171 l
= __raw_readl(IOMUXGPR
);
177 __raw_writel(l
, IOMUXGPR
);
178 spin_unlock(&gpio_mux_lock
);
180 EXPORT_SYMBOL(mxc_iomux_set_gpr
);