]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/arch-s5pc1xx/gpio.h
Merge branch 'u-boot-imx/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / arch / arm / include / asm / arch-s5pc1xx / gpio.h
1 /*
2  * (C) Copyright 2009 Samsung Electronics
3  * Minkyu Kang <mk7.kang@samsung.com>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of
8  * the License, or (at your option) any later version.
9  *
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., 59 Temple Place, Suite 330, Boston,
18  * MA 02111-1307 USA
19  */
20
21 #ifndef __ASM_ARCH_GPIO_H
22 #define __ASM_ARCH_GPIO_H
23
24 #ifndef __ASSEMBLY__
25 struct s5p_gpio_bank {
26         unsigned int    con;
27         unsigned int    dat;
28         unsigned int    pull;
29         unsigned int    drv;
30         unsigned int    pdn_con;
31         unsigned int    pdn_pull;
32         unsigned char   res1[8];
33 };
34
35 struct s5pc100_gpio {
36         struct s5p_gpio_bank a0;
37         struct s5p_gpio_bank a1;
38         struct s5p_gpio_bank b;
39         struct s5p_gpio_bank c;
40         struct s5p_gpio_bank d;
41         struct s5p_gpio_bank e0;
42         struct s5p_gpio_bank e1;
43         struct s5p_gpio_bank f0;
44         struct s5p_gpio_bank f1;
45         struct s5p_gpio_bank f2;
46         struct s5p_gpio_bank f3;
47         struct s5p_gpio_bank g0;
48         struct s5p_gpio_bank g1;
49         struct s5p_gpio_bank g2;
50         struct s5p_gpio_bank g3;
51         struct s5p_gpio_bank i;
52         struct s5p_gpio_bank j0;
53         struct s5p_gpio_bank j1;
54         struct s5p_gpio_bank j2;
55         struct s5p_gpio_bank j3;
56         struct s5p_gpio_bank j4;
57         struct s5p_gpio_bank k0;
58         struct s5p_gpio_bank k1;
59         struct s5p_gpio_bank k2;
60         struct s5p_gpio_bank k3;
61         struct s5p_gpio_bank l0;
62         struct s5p_gpio_bank l1;
63         struct s5p_gpio_bank l2;
64         struct s5p_gpio_bank l3;
65         struct s5p_gpio_bank l4;
66         struct s5p_gpio_bank h0;
67         struct s5p_gpio_bank h1;
68         struct s5p_gpio_bank h2;
69         struct s5p_gpio_bank h3;
70 };
71
72 struct s5pc110_gpio {
73         struct s5p_gpio_bank a0;
74         struct s5p_gpio_bank a1;
75         struct s5p_gpio_bank b;
76         struct s5p_gpio_bank c0;
77         struct s5p_gpio_bank c1;
78         struct s5p_gpio_bank d0;
79         struct s5p_gpio_bank d1;
80         struct s5p_gpio_bank e0;
81         struct s5p_gpio_bank e1;
82         struct s5p_gpio_bank f0;
83         struct s5p_gpio_bank f1;
84         struct s5p_gpio_bank f2;
85         struct s5p_gpio_bank f3;
86         struct s5p_gpio_bank g0;
87         struct s5p_gpio_bank g1;
88         struct s5p_gpio_bank g2;
89         struct s5p_gpio_bank g3;
90         struct s5p_gpio_bank i;
91         struct s5p_gpio_bank j0;
92         struct s5p_gpio_bank j1;
93         struct s5p_gpio_bank j2;
94         struct s5p_gpio_bank j3;
95         struct s5p_gpio_bank j4;
96         struct s5p_gpio_bank mp0_1;
97         struct s5p_gpio_bank mp0_2;
98         struct s5p_gpio_bank mp0_3;
99         struct s5p_gpio_bank mp0_4;
100         struct s5p_gpio_bank mp0_5;
101         struct s5p_gpio_bank mp0_6;
102         struct s5p_gpio_bank mp0_7;
103         struct s5p_gpio_bank mp1_0;
104         struct s5p_gpio_bank mp1_1;
105         struct s5p_gpio_bank mp1_2;
106         struct s5p_gpio_bank mp1_3;
107         struct s5p_gpio_bank mp1_4;
108         struct s5p_gpio_bank mp1_5;
109         struct s5p_gpio_bank mp1_6;
110         struct s5p_gpio_bank mp1_7;
111         struct s5p_gpio_bank mp1_8;
112         struct s5p_gpio_bank mp2_0;
113         struct s5p_gpio_bank mp2_1;
114         struct s5p_gpio_bank mp2_2;
115         struct s5p_gpio_bank mp2_3;
116         struct s5p_gpio_bank mp2_4;
117         struct s5p_gpio_bank mp2_5;
118         struct s5p_gpio_bank mp2_6;
119         struct s5p_gpio_bank mp2_7;
120         struct s5p_gpio_bank mp2_8;
121         struct s5p_gpio_bank res1[48];
122         struct s5p_gpio_bank h0;
123         struct s5p_gpio_bank h1;
124         struct s5p_gpio_bank h2;
125         struct s5p_gpio_bank h3;
126 };
127
128 /* functions */
129 void s5p_gpio_cfg_pin(struct s5p_gpio_bank *bank, int gpio, int cfg);
130 void s5p_gpio_direction_output(struct s5p_gpio_bank *bank, int gpio, int en);
131 void s5p_gpio_direction_input(struct s5p_gpio_bank *bank, int gpio);
132 void s5p_gpio_set_value(struct s5p_gpio_bank *bank, int gpio, int en);
133 unsigned int s5p_gpio_get_value(struct s5p_gpio_bank *bank, int gpio);
134 void s5p_gpio_set_pull(struct s5p_gpio_bank *bank, int gpio, int mode);
135 void s5p_gpio_set_drv(struct s5p_gpio_bank *bank, int gpio, int mode);
136 void s5p_gpio_set_rate(struct s5p_gpio_bank *bank, int gpio, int mode);
137
138 /* GPIO pins per bank  */
139 #define GPIO_PER_BANK 8
140
141 static inline unsigned int s5p_gpio_base(int nr)
142 {
143         return S5PC110_GPIO_BASE;
144 }
145
146 static inline unsigned int s5p_gpio_part_max(int nr)
147 {
148         return 0;
149 }
150
151 #define s5pc110_gpio_get_nr(bank, pin)    \
152         ((((((unsigned int)&(((struct s5pc110_gpio *)S5PC110_GPIO_BASE)->bank))\
153             - S5PC110_GPIO_BASE) / sizeof(struct s5p_gpio_bank)) \
154           * GPIO_PER_BANK) + pin)
155 #endif
156
157 /* Pin configurations */
158 #define GPIO_INPUT      0x0
159 #define GPIO_OUTPUT     0x1
160 #define GPIO_IRQ        0xf
161 #define GPIO_FUNC(x)    (x)
162
163 /* Pull mode */
164 #define GPIO_PULL_NONE  0x0
165 #define GPIO_PULL_DOWN  0x1
166 #define GPIO_PULL_UP    0x2
167
168 /* Drive Strength level */
169 #define GPIO_DRV_1X     0x0
170 #define GPIO_DRV_3X     0x1
171 #define GPIO_DRV_2X     0x2
172 #define GPIO_DRV_4X     0x3
173 #define GPIO_DRV_FAST   0x0
174 #define GPIO_DRV_SLOW   0x1
175
176 #endif