Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2004-2006 Freescale Semiconductor, Inc. All Rights Reserved. |
| 3 | * Copyright (C) 2008 by Sascha Hauer <kernel@pengutronix.de> |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 4 | * Copyright (C) 2009 by Valentin Longchamp <valentin.longchamp@epfl.ch> |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 5 | * |
| 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. |
| 14 | * |
| 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, |
| 18 | * MA 02110-1301, USA. |
| 19 | */ |
Russell King | 2f8163b | 2011-07-26 10:53:52 +0100 | [diff] [blame] | 20 | #include <linux/gpio.h> |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 21 | #include <linux/module.h> |
| 22 | #include <linux/spinlock.h> |
| 23 | #include <linux/io.h> |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 24 | #include <linux/kernel.h> |
Shawn Guo | 267dd34 | 2012-09-13 13:26:00 +0800 | [diff] [blame] | 25 | |
Shawn Guo | 50f2de6 | 2012-09-14 14:14:45 +0800 | [diff] [blame] | 26 | #include "hardware.h" |
Shawn Guo | 267dd34 | 2012-09-13 13:26:00 +0800 | [diff] [blame] | 27 | #include "iomux-mx3.h" |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 28 | |
| 29 | /* |
| 30 | * IOMUX register (base) addresses |
| 31 | */ |
Uwe Kleine-König | 1273e76 | 2009-12-16 19:06:12 +0100 | [diff] [blame] | 32 | #define IOMUX_BASE MX31_IO_ADDRESS(MX31_IOMUXC_BASE_ADDR) |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 33 | #define IOMUXINT_OBS1 (IOMUX_BASE + 0x000) |
| 34 | #define IOMUXINT_OBS2 (IOMUX_BASE + 0x004) |
| 35 | #define IOMUXGPR (IOMUX_BASE + 0x008) |
| 36 | #define IOMUXSW_MUX_CTL (IOMUX_BASE + 0x00C) |
| 37 | #define IOMUXSW_PAD_CTL (IOMUX_BASE + 0x154) |
| 38 | |
| 39 | static DEFINE_SPINLOCK(gpio_mux_lock); |
| 40 | |
| 41 | #define IOMUX_REG_MASK (IOMUX_PADNUM_MASK & ~0x3) |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 42 | |
Joe Perches | f6d4750 | 2015-05-19 18:37:49 -0700 | [diff] [blame] | 43 | static DECLARE_BITMAP(mxc_pin_alloc_map, NB_PORTS * 32); |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 44 | /* |
| 45 | * set the mode for a IOMUX pin. |
| 46 | */ |
Dmitry Voytik | c300873 | 2014-11-06 22:55:04 +0400 | [diff] [blame] | 47 | void mxc_iomux_mode(unsigned int pin_mode) |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 48 | { |
Dmitry Voytik | c300873 | 2014-11-06 22:55:04 +0400 | [diff] [blame] | 49 | u32 field; |
| 50 | u32 l; |
| 51 | u32 mode; |
Luotao Fu | defa8c3 | 2008-09-09 10:19:43 +0200 | [diff] [blame] | 52 | void __iomem *reg; |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 53 | |
| 54 | reg = IOMUXSW_MUX_CTL + (pin_mode & IOMUX_REG_MASK); |
| 55 | field = pin_mode & 0x3; |
| 56 | mode = (pin_mode & IOMUX_MODE_MASK) >> IOMUX_MODE_SHIFT; |
| 57 | |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 58 | spin_lock(&gpio_mux_lock); |
| 59 | |
Johannes Berg | c553138 | 2016-01-27 17:59:35 +0100 | [diff] [blame] | 60 | l = imx_readl(reg); |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 61 | l &= ~(0xff << (field * 8)); |
| 62 | l |= mode << (field * 8); |
Johannes Berg | c553138 | 2016-01-27 17:59:35 +0100 | [diff] [blame] | 63 | imx_writel(l, reg); |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 64 | |
| 65 | spin_unlock(&gpio_mux_lock); |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 66 | } |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 67 | |
| 68 | /* |
| 69 | * This function configures the pad value for a IOMUX pin. |
| 70 | */ |
| 71 | void mxc_iomux_set_pad(enum iomux_pins pin, u32 config) |
| 72 | { |
Luotao Fu | defa8c3 | 2008-09-09 10:19:43 +0200 | [diff] [blame] | 73 | u32 field, l; |
| 74 | void __iomem *reg; |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 75 | |
Guennadi Liakhovetski | 4a7b98d | 2008-11-13 12:20:49 +0100 | [diff] [blame] | 76 | pin &= IOMUX_PADNUM_MASK; |
| 77 | reg = IOMUXSW_PAD_CTL + (pin + 2) / 3 * 4; |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 78 | field = (pin + 2) % 3; |
| 79 | |
Guennadi Liakhovetski | 4a7b98d | 2008-11-13 12:20:49 +0100 | [diff] [blame] | 80 | pr_debug("%s: reg offset = 0x%x, field = %d\n", |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 81 | __func__, (pin + 2) / 3, field); |
| 82 | |
| 83 | spin_lock(&gpio_mux_lock); |
| 84 | |
Johannes Berg | c553138 | 2016-01-27 17:59:35 +0100 | [diff] [blame] | 85 | l = imx_readl(reg); |
Guennadi Liakhovetski | 4a7b98d | 2008-11-13 12:20:49 +0100 | [diff] [blame] | 86 | l &= ~(0x1ff << (field * 10)); |
| 87 | l |= config << (field * 10); |
Johannes Berg | c553138 | 2016-01-27 17:59:35 +0100 | [diff] [blame] | 88 | imx_writel(l, reg); |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 89 | |
| 90 | spin_unlock(&gpio_mux_lock); |
| 91 | } |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 92 | |
| 93 | /* |
Valentin Longchamp | ef754d6 | 2009-05-06 11:44:20 +0200 | [diff] [blame] | 94 | * allocs a single pin: |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 95 | * - reserves the pin so that it is not claimed by another driver |
| 96 | * - setups the iomux according to the configuration |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 97 | */ |
Uwe Kleine-König | 10a3c45 | 2011-03-02 10:59:48 +0100 | [diff] [blame] | 98 | int mxc_iomux_alloc_pin(unsigned int pin, const char *label) |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 99 | { |
| 100 | unsigned pad = pin & IOMUX_PADNUM_MASK; |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 101 | |
| 102 | if (pad >= (PIN_MAX + 1)) { |
Colin Ian King | aa9fff5 | 2015-11-28 16:27:34 +0000 | [diff] [blame] | 103 | printk(KERN_ERR "mxc_iomux: Attempt to request nonexistent pin %u for \"%s\"\n", |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 104 | pad, label ? label : "?"); |
| 105 | return -EINVAL; |
| 106 | } |
| 107 | |
| 108 | if (test_and_set_bit(pad, mxc_pin_alloc_map)) { |
| 109 | printk(KERN_ERR "mxc_iomux: pin %u already used. Allocation for \"%s\" failed\n", |
| 110 | pad, label ? label : "?"); |
Valentin Longchamp | ef754d6 | 2009-05-06 11:44:20 +0200 | [diff] [blame] | 111 | return -EBUSY; |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 112 | } |
| 113 | mxc_iomux_mode(pin); |
| 114 | |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 115 | return 0; |
| 116 | } |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 117 | |
Uwe Kleine-König | 10a3c45 | 2011-03-02 10:59:48 +0100 | [diff] [blame] | 118 | int mxc_iomux_setup_multiple_pins(const unsigned int *pin_list, unsigned count, |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 119 | const char *label) |
| 120 | { |
Uwe Kleine-König | 10a3c45 | 2011-03-02 10:59:48 +0100 | [diff] [blame] | 121 | const unsigned int *p = pin_list; |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 122 | int i; |
| 123 | int ret = -EINVAL; |
| 124 | |
| 125 | for (i = 0; i < count; i++) { |
Valentin Longchamp | ef754d6 | 2009-05-06 11:44:20 +0200 | [diff] [blame] | 126 | ret = mxc_iomux_alloc_pin(*p, label); |
| 127 | if (ret) |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 128 | goto setup_error; |
| 129 | p++; |
| 130 | } |
| 131 | return 0; |
| 132 | |
| 133 | setup_error: |
| 134 | mxc_iomux_release_multiple_pins(pin_list, i); |
| 135 | return ret; |
| 136 | } |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 137 | |
Uwe Kleine-König | 10a3c45 | 2011-03-02 10:59:48 +0100 | [diff] [blame] | 138 | void mxc_iomux_release_pin(unsigned int pin) |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 139 | { |
| 140 | unsigned pad = pin & IOMUX_PADNUM_MASK; |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 141 | |
| 142 | if (pad < (PIN_MAX + 1)) |
| 143 | clear_bit(pad, mxc_pin_alloc_map); |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 144 | } |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 145 | |
Uwe Kleine-König | 10a3c45 | 2011-03-02 10:59:48 +0100 | [diff] [blame] | 146 | void mxc_iomux_release_multiple_pins(const unsigned int *pin_list, int count) |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 147 | { |
Uwe Kleine-König | 10a3c45 | 2011-03-02 10:59:48 +0100 | [diff] [blame] | 148 | const unsigned int *p = pin_list; |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 149 | int i; |
| 150 | |
| 151 | for (i = 0; i < count; i++) { |
| 152 | mxc_iomux_release_pin(*p); |
| 153 | p++; |
| 154 | } |
| 155 | } |
Valentin Longchamp | b722263 | 2009-01-28 15:13:50 +0100 | [diff] [blame] | 156 | |
| 157 | /* |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 158 | * This function enables/disables the general purpose function for a particular |
| 159 | * signal. |
| 160 | */ |
| 161 | void mxc_iomux_set_gpr(enum iomux_gp_func gp, bool en) |
| 162 | { |
| 163 | u32 l; |
| 164 | |
| 165 | spin_lock(&gpio_mux_lock); |
Johannes Berg | c553138 | 2016-01-27 17:59:35 +0100 | [diff] [blame] | 166 | l = imx_readl(IOMUXGPR); |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 167 | if (en) |
| 168 | l |= gp; |
| 169 | else |
| 170 | l &= ~gp; |
| 171 | |
Johannes Berg | c553138 | 2016-01-27 17:59:35 +0100 | [diff] [blame] | 172 | imx_writel(l, IOMUXGPR); |
Sascha Hauer | 90292ea | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 173 | spin_unlock(&gpio_mux_lock); |
| 174 | } |