]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/imx-common/iomux-v3.h
TX6 Release 2013-04-22
[karo-tx-uboot.git] / arch / arm / include / asm / imx-common / iomux-v3.h
1 /*
2  * Based on Linux i.MX iomux-v3.h file:
3  * Copyright (C) 2009 by Jan Weitzel Phytec Messtechnik GmbH,
4  *                      <armlinux@phytec.de>
5  *
6  * Copyright (C) 2011 Freescale Semiconductor, Inc.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2
11  * of the License, or (at your option) any later version.
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., 51 Franklin Street, Fifth Floor, Boston,
20  * MA 02110-1301, USA.
21  */
22
23 #ifndef __ASM_ARCH_IOMUX_V3_H__
24 #define __ASM_ARCH_IOMUX_V3_H__
25
26 /*
27  *      build IOMUX_PAD structure
28  *
29  * This iomux scheme is based around pads, which are the physical balls
30  * on the processor.
31  *
32  * - Each pad has a pad control register (IOMUXC_SW_PAD_CTRL_x) which controls
33  *   things like driving strength and pullup/pulldown.
34  * - Each pad can have but not necessarily does have an output routing register
35  *   (IOMUXC_SW_MUX_CTL_PAD_x).
36  * - Each pad can have but not necessarily does have an input routing register
37  *   (IOMUXC_x_SELECT_INPUT)
38  *
39  * The three register sets do not have a fixed offset to each other,
40  * hence we order this table by pad control registers (which all pads
41  * have) and put the optional i/o routing registers into additional
42  * fields.
43  *
44  * The naming convention for the pad modes is SOC_PAD_<padname>__<padmode>
45  * If <padname> or <padmode> refers to a GPIO, it is named GPIO_<unit>_<num>
46  *
47  * IOMUX/PAD Bit field definitions
48  *
49  * MUX_CTRL_OFS:            0..11 (12)
50  * PAD_CTRL_OFS:           12..23 (12)
51  * SEL_INPUT_OFS:          24..35 (12)
52  * MUX_MODE + SION:        36..40  (5)
53  * PAD_CTRL + PAD_CTRL_VALID:   41..58 (18)
54  * SEL_INP:                59..62  (4)
55  * reserved:                 63    (1)
56 */
57
58 typedef u64 iomux_v3_cfg_t;
59
60 #define MUX_CTRL_OFS_SHIFT      0
61 #define MUX_CTRL_OFS_MASK       ((iomux_v3_cfg_t)0xfff << MUX_CTRL_OFS_SHIFT)
62 #define MUX_PAD_CTRL_OFS_SHIFT  12
63 #define MUX_PAD_CTRL_OFS_MASK   ((iomux_v3_cfg_t)0xfff << \
64         MUX_PAD_CTRL_OFS_SHIFT)
65 #define MUX_SEL_INPUT_OFS_SHIFT 24
66 #define MUX_SEL_INPUT_OFS_MASK  ((iomux_v3_cfg_t)0xfff << \
67         MUX_SEL_INPUT_OFS_SHIFT)
68
69 #define MUX_MODE_SHIFT          36
70 #define MUX_MODE_MASK           ((iomux_v3_cfg_t)0x1f << MUX_MODE_SHIFT)
71 #define MUX_PAD_CTRL_SHIFT      41
72 #define MUX_PAD_CTRL_MASK       ((iomux_v3_cfg_t)0x3ffff << MUX_PAD_CTRL_SHIFT)
73 #define MUX_SEL_INPUT_SHIFT     59
74 #define MUX_SEL_INPUT_MASK      ((iomux_v3_cfg_t)0xf << MUX_SEL_INPUT_SHIFT)
75
76 #define MUX_PAD_CTRL(x)         (((iomux_v3_cfg_t)(x) << MUX_PAD_CTRL_SHIFT) | \
77                                 PAD_CTRL_VALID)
78
79 #define IOMUX_PAD(pad_ctrl_ofs, mux_ctrl_ofs, mux_mode, sel_input_ofs,  \
80                 sel_input, pad_ctrl)                                    \
81         (((iomux_v3_cfg_t)(mux_ctrl_ofs) << MUX_CTRL_OFS_SHIFT)     |   \
82         ((iomux_v3_cfg_t)(mux_mode)      << MUX_MODE_SHIFT)         |   \
83         ((iomux_v3_cfg_t)(pad_ctrl_ofs)  << MUX_PAD_CTRL_OFS_SHIFT) |   \
84         ((iomux_v3_cfg_t)(pad_ctrl)      << MUX_PAD_CTRL_SHIFT)     |   \
85         ((iomux_v3_cfg_t)(sel_input_ofs) << MUX_SEL_INPUT_OFS_SHIFT)|   \
86         ((iomux_v3_cfg_t)(sel_input)     << MUX_SEL_INPUT_SHIFT))
87
88 #define NO_PAD_CTRL             (1 << 17)
89 #define GPIO_PIN_MASK           0x1f
90 #define PAD_CTRL_VALID          ((iomux_v3_cfg_t)1 << (MUX_PAD_CTRL_SHIFT + 17))
91 #define GPIO_PORT_SHIFT         5
92 #define GPIO_PORT_MASK          (0x7 << GPIO_PORT_SHIFT)
93 #define GPIO_PORTA              (0 << GPIO_PORT_SHIFT)
94 #define GPIO_PORTB              (1 << GPIO_PORT_SHIFT)
95 #define GPIO_PORTC              (2 << GPIO_PORT_SHIFT)
96 #define GPIO_PORTD              (3 << GPIO_PORT_SHIFT)
97 #define GPIO_PORTE              (4 << GPIO_PORT_SHIFT)
98 #define GPIO_PORTF              (5 << GPIO_PORT_SHIFT)
99
100 #define MUX_CONFIG_SION         (0x1 << 4)
101
102
103 int imx_iomux_v3_setup_pad(iomux_v3_cfg_t pad);
104 int imx_iomux_v3_setup_multiple_pads(iomux_v3_cfg_t const *pad_list,
105                                      unsigned count);
106
107 #endif  /* __ASM_ARCH_IOMUX_V3_H__*/