Jason Liu | 23608e2 | 2011-11-25 00:18:02 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Based on the iomux-v3.c from Linux kernel: |
| 3 | * Copyright (C) 2008 by Sascha Hauer <kernel@pengutronix.de> |
| 4 | * Copyright (C) 2009 by Jan Weitzel Phytec Messtechnik GmbH, |
| 5 | * <armlinux@phytec.de> |
| 6 | * |
| 7 | * Copyright (C) 2004-2011 Freescale Semiconductor, Inc. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License |
| 11 | * as published by the Free Software Foundation; either version 2 |
| 12 | * of the License, or (at your option) any later version. |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
| 21 | * MA 02110-1301, USA. |
| 22 | */ |
| 23 | #include <common.h> |
| 24 | #include <asm/io.h> |
| 25 | #include <asm/arch/imx-regs.h> |
Troy Kisky | af2a35f | 2012-07-19 08:18:22 +0000 | [diff] [blame] | 26 | #include <asm/imx-common/iomux-v3.h> |
Jason Liu | 23608e2 | 2011-11-25 00:18:02 +0000 | [diff] [blame] | 27 | |
| 28 | static void *base = (void *)IOMUXC_BASE_ADDR; |
| 29 | |
| 30 | /* |
| 31 | * configures a single pad in the iomuxer |
| 32 | */ |
Stefan Roese | 59efa05 | 2013-04-10 23:06:46 +0000 | [diff] [blame] | 33 | void imx_iomux_v3_setup_pad(iomux_v3_cfg_t pad) |
Jason Liu | 23608e2 | 2011-11-25 00:18:02 +0000 | [diff] [blame] | 34 | { |
| 35 | u32 mux_ctrl_ofs = (pad & MUX_CTRL_OFS_MASK) >> MUX_CTRL_OFS_SHIFT; |
| 36 | u32 mux_mode = (pad & MUX_MODE_MASK) >> MUX_MODE_SHIFT; |
| 37 | u32 sel_input_ofs = |
| 38 | (pad & MUX_SEL_INPUT_OFS_MASK) >> MUX_SEL_INPUT_OFS_SHIFT; |
| 39 | u32 sel_input = |
| 40 | (pad & MUX_SEL_INPUT_MASK) >> MUX_SEL_INPUT_SHIFT; |
| 41 | u32 pad_ctrl_ofs = |
| 42 | (pad & MUX_PAD_CTRL_OFS_MASK) >> MUX_PAD_CTRL_OFS_SHIFT; |
| 43 | u32 pad_ctrl = (pad & MUX_PAD_CTRL_MASK) >> MUX_PAD_CTRL_SHIFT; |
| 44 | |
| 45 | if (mux_ctrl_ofs) |
| 46 | __raw_writel(mux_mode, base + mux_ctrl_ofs); |
| 47 | |
| 48 | if (sel_input_ofs) |
| 49 | __raw_writel(sel_input, base + sel_input_ofs); |
| 50 | |
| 51 | if (!(pad_ctrl & NO_PAD_CTRL) && pad_ctrl_ofs) |
| 52 | __raw_writel(pad_ctrl, base + pad_ctrl_ofs); |
Jason Liu | 23608e2 | 2011-11-25 00:18:02 +0000 | [diff] [blame] | 53 | } |
| 54 | |
Stefan Roese | 59efa05 | 2013-04-10 23:06:46 +0000 | [diff] [blame] | 55 | void imx_iomux_v3_setup_multiple_pads(iomux_v3_cfg_t const *pad_list, |
| 56 | unsigned count) |
Jason Liu | 23608e2 | 2011-11-25 00:18:02 +0000 | [diff] [blame] | 57 | { |
Eric Nelson | 5ae28d2 | 2012-10-03 07:26:37 +0000 | [diff] [blame] | 58 | iomux_v3_cfg_t const *p = pad_list; |
Jason Liu | 23608e2 | 2011-11-25 00:18:02 +0000 | [diff] [blame] | 59 | int i; |
Jason Liu | 23608e2 | 2011-11-25 00:18:02 +0000 | [diff] [blame] | 60 | |
Stefan Roese | 59efa05 | 2013-04-10 23:06:46 +0000 | [diff] [blame] | 61 | for (i = 0; i < count; i++) |
| 62 | imx_iomux_v3_setup_pad(*p++); |
Jason Liu | 23608e2 | 2011-11-25 00:18:02 +0000 | [diff] [blame] | 63 | } |