]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/imx-common/iomux-v3.h
imx: iomux: reconcile differing iomux implementations
[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..61  (3)
55  * reserved:                    62..63  (2)
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)0x1ffff << MUX_PAD_CTRL_SHIFT)
73 #define MUX_SEL_INPUT_SHIFT     59
74 #define MUX_SEL_INPUT_MASK      ((iomux_v3_cfg_t)0x7 << MUX_SEL_INPUT_SHIFT)
75
76 #define __MUX_PAD_CTRL(x)       ((x) | __PAD_CTRL_VALID)
77 #define MUX_PAD_CTRL(x)         (((iomux_v3_cfg_t)__MUX_PAD_CTRL(x) << \
78                                                 MUX_PAD_CTRL_SHIFT))
79
80 #define IOMUX_PAD(pad_ctrl_ofs, mux_ctrl_ofs, mux_mode, sel_input_ofs,  \
81                 sel_input, pad_ctrl)                                    \
82         (((iomux_v3_cfg_t)(mux_ctrl_ofs) << MUX_CTRL_OFS_SHIFT)     |   \
83         ((iomux_v3_cfg_t)(mux_mode)      << MUX_MODE_SHIFT)         |   \
84         ((iomux_v3_cfg_t)(pad_ctrl_ofs)  << MUX_PAD_CTRL_OFS_SHIFT) |   \
85         ((iomux_v3_cfg_t)(pad_ctrl)      << MUX_PAD_CTRL_SHIFT)     |   \
86         ((iomux_v3_cfg_t)(sel_input_ofs) << MUX_SEL_INPUT_OFS_SHIFT)|   \
87         ((iomux_v3_cfg_t)(sel_input)     << MUX_SEL_INPUT_SHIFT))
88
89 #define NO_MUX_I                0
90 #define NO_PAD_I                0
91
92 #define NO_PAD_CTRL             0
93 #define __PAD_CTRL_VALID        (1 << 17)
94 #define PAD_CTRL_VALID          ((iomux_v3_cfg_t)__PAD_CTRL_VALID << MUX_PAD_CTRL_SHIFT)
95 #define GPIO_PIN_MASK           0x1f
96 #define GPIO_PORT_SHIFT         5
97 #define GPIO_PORT_MASK          (0x7 << GPIO_PORT_SHIFT)
98 #define GPIO_PORTA              (0 << GPIO_PORT_SHIFT)
99 #define GPIO_PORTB              (1 << GPIO_PORT_SHIFT)
100 #define GPIO_PORTC              (2 << GPIO_PORT_SHIFT)
101 #define GPIO_PORTD              (3 << GPIO_PORT_SHIFT)
102 #define GPIO_PORTE              (4 << GPIO_PORT_SHIFT)
103 #define GPIO_PORTF              (5 << GPIO_PORT_SHIFT)
104
105 #define MUX_CONFIG_SION         (0x1 << 4)
106
107
108 int imx_iomux_v3_setup_pad(const iomux_v3_cfg_t pad);
109 int imx_iomux_v3_setup_multiple_pads(const iomux_v3_cfg_t *pad_list,
110                                      unsigned count);
111
112 #endif  /* __ASM_ARCH_IOMUX_V3_H__*/