blob: 72477c252a94b7a31a62dab1eda522634eb4f5b9 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
2 * File: arch/blackfin/kernel/bfin_gpio.c
3 * Based on:
4 * Author: Michael Hennerich (hennerich@blackfin.uclinux.org)
5 *
6 * Created:
7 * Description: GPIO Abstraction Layer
8 *
9 * Modified:
Michael Hennericha2c8cfe2008-01-22 17:20:10 +080010 * Copyright 2008 Analog Devices Inc.
Bryan Wu1394f032007-05-06 14:50:22 -070011 *
12 * Bugs: Enter bugs at http://blackfin.uclinux.org/
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, see the file COPYING, or write
26 * to the Free Software Foundation, Inc.,
27 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28 */
29
30/*
Michael Hennerichd2b11a42007-08-28 16:47:46 +080031* Number BF537/6/4 BF561 BF533/2/1 BF549/8/4/2
Bryan Wu1394f032007-05-06 14:50:22 -070032*
Michael Hennerichd2b11a42007-08-28 16:47:46 +080033* GPIO_0 PF0 PF0 PF0 PA0...PJ13
Bryan Wu1394f032007-05-06 14:50:22 -070034* GPIO_1 PF1 PF1 PF1
35* GPIO_2 PF2 PF2 PF2
36* GPIO_3 PF3 PF3 PF3
37* GPIO_4 PF4 PF4 PF4
38* GPIO_5 PF5 PF5 PF5
39* GPIO_6 PF6 PF6 PF6
40* GPIO_7 PF7 PF7 PF7
41* GPIO_8 PF8 PF8 PF8
42* GPIO_9 PF9 PF9 PF9
43* GPIO_10 PF10 PF10 PF10
44* GPIO_11 PF11 PF11 PF11
45* GPIO_12 PF12 PF12 PF12
46* GPIO_13 PF13 PF13 PF13
47* GPIO_14 PF14 PF14 PF14
48* GPIO_15 PF15 PF15 PF15
49* GPIO_16 PG0 PF16
50* GPIO_17 PG1 PF17
51* GPIO_18 PG2 PF18
52* GPIO_19 PG3 PF19
53* GPIO_20 PG4 PF20
54* GPIO_21 PG5 PF21
55* GPIO_22 PG6 PF22
56* GPIO_23 PG7 PF23
57* GPIO_24 PG8 PF24
58* GPIO_25 PG9 PF25
59* GPIO_26 PG10 PF26
60* GPIO_27 PG11 PF27
61* GPIO_28 PG12 PF28
62* GPIO_29 PG13 PF29
63* GPIO_30 PG14 PF30
64* GPIO_31 PG15 PF31
65* GPIO_32 PH0 PF32
66* GPIO_33 PH1 PF33
67* GPIO_34 PH2 PF34
68* GPIO_35 PH3 PF35
69* GPIO_36 PH4 PF36
70* GPIO_37 PH5 PF37
71* GPIO_38 PH6 PF38
72* GPIO_39 PH7 PF39
73* GPIO_40 PH8 PF40
74* GPIO_41 PH9 PF41
75* GPIO_42 PH10 PF42
76* GPIO_43 PH11 PF43
77* GPIO_44 PH12 PF44
78* GPIO_45 PH13 PF45
79* GPIO_46 PH14 PF46
80* GPIO_47 PH15 PF47
81*/
82
Mike Frysinger168f1212007-10-11 00:22:35 +080083#include <linux/delay.h>
Bryan Wu1394f032007-05-06 14:50:22 -070084#include <linux/module.h>
85#include <linux/err.h>
Mike Frysinger1545a112007-12-24 16:54:48 +080086#include <linux/proc_fs.h>
Bryan Wu1394f032007-05-06 14:50:22 -070087#include <asm/blackfin.h>
88#include <asm/gpio.h>
Michael Hennerichc58c2142007-10-04 00:35:05 +080089#include <asm/portmux.h>
Bryan Wu1394f032007-05-06 14:50:22 -070090#include <linux/irq.h>
91
Michael Hennerich2b393312007-10-10 16:58:49 +080092#if ANOMALY_05000311 || ANOMALY_05000323
93enum {
94 AWA_data = SYSCR,
95 AWA_data_clear = SYSCR,
96 AWA_data_set = SYSCR,
97 AWA_toggle = SYSCR,
Graf Yang6ed83942008-04-24 04:43:14 +080098 AWA_maska = BFIN_UART_SCR,
99 AWA_maska_clear = BFIN_UART_SCR,
100 AWA_maska_set = BFIN_UART_SCR,
101 AWA_maska_toggle = BFIN_UART_SCR,
102 AWA_maskb = BFIN_UART_GCTL,
103 AWA_maskb_clear = BFIN_UART_GCTL,
104 AWA_maskb_set = BFIN_UART_GCTL,
105 AWA_maskb_toggle = BFIN_UART_GCTL,
Michael Hennerich2b393312007-10-10 16:58:49 +0800106 AWA_dir = SPORT1_STAT,
107 AWA_polar = SPORT1_STAT,
108 AWA_edge = SPORT1_STAT,
109 AWA_both = SPORT1_STAT,
110#if ANOMALY_05000311
111 AWA_inen = TIMER_ENABLE,
112#elif ANOMALY_05000323
113 AWA_inen = DMA1_1_CONFIG,
114#endif
115};
116 /* Anomaly Workaround */
117#define AWA_DUMMY_READ(name) bfin_read16(AWA_ ## name)
118#else
119#define AWA_DUMMY_READ(...) do { } while (0)
120#endif
121
Bryan Wu1394f032007-05-06 14:50:22 -0700122#ifdef BF533_FAMILY
123static struct gpio_port_t *gpio_bankb[gpio_bank(MAX_BLACKFIN_GPIOS)] = {
124 (struct gpio_port_t *) FIO_FLAG_D,
125};
126#endif
127
Michael Hennerich59003142007-10-21 16:54:27 +0800128#if defined(BF527_FAMILY) || defined(BF537_FAMILY)
Bryan Wu1394f032007-05-06 14:50:22 -0700129static struct gpio_port_t *gpio_bankb[gpio_bank(MAX_BLACKFIN_GPIOS)] = {
130 (struct gpio_port_t *) PORTFIO,
131 (struct gpio_port_t *) PORTGIO,
132 (struct gpio_port_t *) PORTHIO,
133};
134
135static unsigned short *port_fer[gpio_bank(MAX_BLACKFIN_GPIOS)] = {
136 (unsigned short *) PORTF_FER,
137 (unsigned short *) PORTG_FER,
138 (unsigned short *) PORTH_FER,
139};
Bryan Wu1394f032007-05-06 14:50:22 -0700140#endif
141
Michael Hennerich59003142007-10-21 16:54:27 +0800142#ifdef BF527_FAMILY
143static unsigned short *port_mux[gpio_bank(MAX_BLACKFIN_GPIOS)] = {
144 (unsigned short *) PORTF_MUX,
145 (unsigned short *) PORTG_MUX,
146 (unsigned short *) PORTH_MUX,
147};
148
149static const
150u8 pmux_offset[][16] =
151 {{ 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 4, 6, 8, 8, 10, 10 }, /* PORTF */
152 { 0, 0, 0, 0, 0, 2, 2, 4, 4, 6, 8, 10, 10, 10, 12, 12 }, /* PORTG */
153 { 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 4, 4, 4, 4, 4 }, /* PORTH */
154 };
155#endif
156
Bryan Wu1394f032007-05-06 14:50:22 -0700157#ifdef BF561_FAMILY
158static struct gpio_port_t *gpio_bankb[gpio_bank(MAX_BLACKFIN_GPIOS)] = {
159 (struct gpio_port_t *) FIO0_FLAG_D,
160 (struct gpio_port_t *) FIO1_FLAG_D,
161 (struct gpio_port_t *) FIO2_FLAG_D,
162};
163#endif
164
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800165#ifdef BF548_FAMILY
166static struct gpio_port_t *gpio_array[gpio_bank(MAX_BLACKFIN_GPIOS)] = {
167 (struct gpio_port_t *)PORTA_FER,
168 (struct gpio_port_t *)PORTB_FER,
169 (struct gpio_port_t *)PORTC_FER,
170 (struct gpio_port_t *)PORTD_FER,
171 (struct gpio_port_t *)PORTE_FER,
172 (struct gpio_port_t *)PORTF_FER,
173 (struct gpio_port_t *)PORTG_FER,
174 (struct gpio_port_t *)PORTH_FER,
175 (struct gpio_port_t *)PORTI_FER,
176 (struct gpio_port_t *)PORTJ_FER,
177};
178#endif
179
Michael Hennerichc58c2142007-10-04 00:35:05 +0800180static unsigned short reserved_gpio_map[gpio_bank(MAX_BLACKFIN_GPIOS)];
Michael Hennerichfac3cf42007-12-24 20:07:03 +0800181static unsigned short reserved_peri_map[gpio_bank(MAX_RESOURCES)];
Michael Hennerichc58c2142007-10-04 00:35:05 +0800182
Michael Hennerich8c613622007-08-03 17:48:09 +0800183#define RESOURCE_LABEL_SIZE 16
184
Michael Hennerichfac3cf42007-12-24 20:07:03 +0800185static struct str_ident {
Michael Hennerich8c613622007-08-03 17:48:09 +0800186 char name[RESOURCE_LABEL_SIZE];
Michael Hennerichfac3cf42007-12-24 20:07:03 +0800187} str_ident[MAX_RESOURCES];
Bryan Wu1394f032007-05-06 14:50:22 -0700188
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800189#if defined(CONFIG_PM) && !defined(CONFIG_BF54x)
Bryan Wu1394f032007-05-06 14:50:22 -0700190static unsigned short wakeup_map[gpio_bank(MAX_BLACKFIN_GPIOS)];
191static unsigned char wakeup_flags_map[MAX_BLACKFIN_GPIOS];
192static struct gpio_port_s gpio_bank_saved[gpio_bank(MAX_BLACKFIN_GPIOS)];
193
194#ifdef BF533_FAMILY
195static unsigned int sic_iwr_irqs[gpio_bank(MAX_BLACKFIN_GPIOS)] = {IRQ_PROG_INTB};
196#endif
197
198#ifdef BF537_FAMILY
199static unsigned int sic_iwr_irqs[gpio_bank(MAX_BLACKFIN_GPIOS)] = {IRQ_PROG_INTB, IRQ_PORTG_INTB, IRQ_MAC_TX};
200#endif
201
Michael Hennerich59003142007-10-21 16:54:27 +0800202#ifdef BF527_FAMILY
203static unsigned int sic_iwr_irqs[gpio_bank(MAX_BLACKFIN_GPIOS)] = {IRQ_PORTF_INTB, IRQ_PORTG_INTB, IRQ_PORTH_INTB};
204#endif
205
Bryan Wu1394f032007-05-06 14:50:22 -0700206#ifdef BF561_FAMILY
207static unsigned int sic_iwr_irqs[gpio_bank(MAX_BLACKFIN_GPIOS)] = {IRQ_PROG0_INTB, IRQ_PROG1_INTB, IRQ_PROG2_INTB};
208#endif
209
210#endif /* CONFIG_PM */
211
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800212#if defined(BF548_FAMILY)
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800213inline int check_gpio(unsigned gpio)
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800214{
215 if (gpio == GPIO_PB15 || gpio == GPIO_PC14 || gpio == GPIO_PC15
216 || gpio == GPIO_PH14 || gpio == GPIO_PH15
217 || gpio == GPIO_PJ14 || gpio == GPIO_PJ15
218 || gpio > MAX_BLACKFIN_GPIOS)
219 return -EINVAL;
220 return 0;
221}
222#else
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800223inline int check_gpio(unsigned gpio)
Bryan Wu1394f032007-05-06 14:50:22 -0700224{
Michael Henneriche7613aa2007-06-11 16:37:57 +0800225 if (gpio >= MAX_BLACKFIN_GPIOS)
Bryan Wu1394f032007-05-06 14:50:22 -0700226 return -EINVAL;
227 return 0;
228}
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800229#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700230
Michael Hennerichacbcd262008-01-22 18:36:20 +0800231void gpio_error(unsigned gpio)
232{
233 printk(KERN_ERR "bfin-gpio: GPIO %d wasn't requested!\n", gpio);
234}
235
Michael Hennerichc58c2142007-10-04 00:35:05 +0800236static void set_label(unsigned short ident, const char *label)
237{
Michael Hennerichc58c2142007-10-04 00:35:05 +0800238 if (label && str_ident) {
Michael Hennerich8c613622007-08-03 17:48:09 +0800239 strncpy(str_ident[ident].name, label,
Michael Hennerichc58c2142007-10-04 00:35:05 +0800240 RESOURCE_LABEL_SIZE);
Michael Hennerich8c613622007-08-03 17:48:09 +0800241 str_ident[ident].name[RESOURCE_LABEL_SIZE - 1] = 0;
Michael Hennerichc58c2142007-10-04 00:35:05 +0800242 }
243}
244
245static char *get_label(unsigned short ident)
246{
247 if (!str_ident)
248 return "UNKNOWN";
249
Michael Hennerich8c613622007-08-03 17:48:09 +0800250 return (*str_ident[ident].name ? str_ident[ident].name : "UNKNOWN");
Michael Hennerichc58c2142007-10-04 00:35:05 +0800251}
252
253static int cmp_label(unsigned short ident, const char *label)
254{
Michael Hennerichfac3cf42007-12-24 20:07:03 +0800255 if (label == NULL) {
256 dump_stack();
257 printk(KERN_ERR "Please provide none-null label\n");
258 }
259
Michael Hennerichc58c2142007-10-04 00:35:05 +0800260 if (label && str_ident)
Michael Hennerich8c613622007-08-03 17:48:09 +0800261 return strncmp(str_ident[ident].name,
Michael Hennerichc58c2142007-10-04 00:35:05 +0800262 label, strlen(label));
263 else
264 return -EINVAL;
265}
266
Michael Hennerich59003142007-10-21 16:54:27 +0800267#if defined(BF527_FAMILY) || defined(BF537_FAMILY)
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800268static void port_setup(unsigned gpio, unsigned short usage)
Bryan Wu1394f032007-05-06 14:50:22 -0700269{
Michael Hennerichcda6a202007-10-04 00:36:18 +0800270 if (!check_gpio(gpio)) {
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800271 if (usage == GPIO_USAGE)
Michael Hennerichcda6a202007-10-04 00:36:18 +0800272 *port_fer[gpio_bank(gpio)] &= ~gpio_bit(gpio);
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800273 else
Michael Hennerichcda6a202007-10-04 00:36:18 +0800274 *port_fer[gpio_bank(gpio)] |= gpio_bit(gpio);
275 SSYNC();
276 }
Bryan Wu1394f032007-05-06 14:50:22 -0700277}
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800278#elif defined(BF548_FAMILY)
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800279static void port_setup(unsigned gpio, unsigned short usage)
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800280{
281 if (usage == GPIO_USAGE)
282 gpio_array[gpio_bank(gpio)]->port_fer &= ~gpio_bit(gpio);
283 else
284 gpio_array[gpio_bank(gpio)]->port_fer |= gpio_bit(gpio);
285 SSYNC();
286}
Bryan Wu1394f032007-05-06 14:50:22 -0700287#else
288# define port_setup(...) do { } while (0)
289#endif
290
Michael Hennerichc58c2142007-10-04 00:35:05 +0800291#ifdef BF537_FAMILY
Michael Hennerich8c613622007-08-03 17:48:09 +0800292static struct {
293 unsigned short res;
294 unsigned short offset;
295} port_mux_lut[] = {
296 {.res = P_PPI0_D13, .offset = 11},
297 {.res = P_PPI0_D14, .offset = 11},
298 {.res = P_PPI0_D15, .offset = 11},
299 {.res = P_SPORT1_TFS, .offset = 11},
300 {.res = P_SPORT1_TSCLK, .offset = 11},
301 {.res = P_SPORT1_DTPRI, .offset = 11},
302 {.res = P_PPI0_D10, .offset = 10},
303 {.res = P_PPI0_D11, .offset = 10},
304 {.res = P_PPI0_D12, .offset = 10},
305 {.res = P_SPORT1_RSCLK, .offset = 10},
306 {.res = P_SPORT1_RFS, .offset = 10},
307 {.res = P_SPORT1_DRPRI, .offset = 10},
308 {.res = P_PPI0_D8, .offset = 9},
309 {.res = P_PPI0_D9, .offset = 9},
310 {.res = P_SPORT1_DRSEC, .offset = 9},
311 {.res = P_SPORT1_DTSEC, .offset = 9},
312 {.res = P_TMR2, .offset = 8},
313 {.res = P_PPI0_FS3, .offset = 8},
314 {.res = P_TMR3, .offset = 7},
315 {.res = P_SPI0_SSEL4, .offset = 7},
316 {.res = P_TMR4, .offset = 6},
317 {.res = P_SPI0_SSEL5, .offset = 6},
318 {.res = P_TMR5, .offset = 5},
319 {.res = P_SPI0_SSEL6, .offset = 5},
320 {.res = P_UART1_RX, .offset = 4},
321 {.res = P_UART1_TX, .offset = 4},
322 {.res = P_TMR6, .offset = 4},
323 {.res = P_TMR7, .offset = 4},
324 {.res = P_UART0_RX, .offset = 3},
325 {.res = P_UART0_TX, .offset = 3},
326 {.res = P_DMAR0, .offset = 3},
327 {.res = P_DMAR1, .offset = 3},
328 {.res = P_SPORT0_DTSEC, .offset = 1},
329 {.res = P_SPORT0_DRSEC, .offset = 1},
330 {.res = P_CAN0_RX, .offset = 1},
331 {.res = P_CAN0_TX, .offset = 1},
332 {.res = P_SPI0_SSEL7, .offset = 1},
333 {.res = P_SPORT0_TFS, .offset = 0},
334 {.res = P_SPORT0_DTPRI, .offset = 0},
335 {.res = P_SPI0_SSEL2, .offset = 0},
336 {.res = P_SPI0_SSEL3, .offset = 0},
Michael Hennerichc58c2142007-10-04 00:35:05 +0800337};
338
339static void portmux_setup(unsigned short per, unsigned short function)
340{
Michael Hennerich8c613622007-08-03 17:48:09 +0800341 u16 y, offset, muxreg;
Michael Hennerichc58c2142007-10-04 00:35:05 +0800342
Michael Hennerich8c613622007-08-03 17:48:09 +0800343 for (y = 0; y < ARRAY_SIZE(port_mux_lut); y++) {
344 if (port_mux_lut[y].res == per) {
Michael Hennerichc58c2142007-10-04 00:35:05 +0800345
346 /* SET PORTMUX REG */
347
Michael Hennerich8c613622007-08-03 17:48:09 +0800348 offset = port_mux_lut[y].offset;
Michael Hennerichc58c2142007-10-04 00:35:05 +0800349 muxreg = bfin_read_PORT_MUX();
350
Mike Frysingerd171c232008-03-26 08:35:46 +0800351 if (offset != 1)
Michael Hennerichc58c2142007-10-04 00:35:05 +0800352 muxreg &= ~(1 << offset);
Mike Frysingerd171c232008-03-26 08:35:46 +0800353 else
Michael Hennerichc58c2142007-10-04 00:35:05 +0800354 muxreg &= ~(3 << 1);
Michael Hennerichc58c2142007-10-04 00:35:05 +0800355
356 muxreg |= (function << offset);
357 bfin_write_PORT_MUX(muxreg);
358 }
359 }
360}
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800361#elif defined(BF548_FAMILY)
362inline void portmux_setup(unsigned short portno, unsigned short function)
363{
364 u32 pmux;
Michael Hennerichc58c2142007-10-04 00:35:05 +0800365
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800366 pmux = gpio_array[gpio_bank(portno)]->port_mux;
367
368 pmux &= ~(0x3 << (2 * gpio_sub_n(portno)));
369 pmux |= (function & 0x3) << (2 * gpio_sub_n(portno));
370
371 gpio_array[gpio_bank(portno)]->port_mux = pmux;
372}
373
374inline u16 get_portmux(unsigned short portno)
375{
376 u32 pmux;
377
378 pmux = gpio_array[gpio_bank(portno)]->port_mux;
379
380 return (pmux >> (2 * gpio_sub_n(portno)) & 0x3);
381}
Michael Hennerich59003142007-10-21 16:54:27 +0800382#elif defined(BF527_FAMILY)
383inline void portmux_setup(unsigned short portno, unsigned short function)
384{
385 u16 pmux, ident = P_IDENT(portno);
386 u8 offset = pmux_offset[gpio_bank(ident)][gpio_sub_n(ident)];
387
388 pmux = *port_mux[gpio_bank(ident)];
389 pmux &= ~(3 << offset);
390 pmux |= (function & 3) << offset;
391 *port_mux[gpio_bank(ident)] = pmux;
392 SSYNC();
393}
Michael Hennerichc58c2142007-10-04 00:35:05 +0800394#else
395# define portmux_setup(...) do { } while (0)
396#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700397
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800398#ifndef BF548_FAMILY
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800399static void default_gpio(unsigned gpio)
Bryan Wu1394f032007-05-06 14:50:22 -0700400{
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800401 unsigned short bank, bitmask;
Michael Hennerich2b393312007-10-10 16:58:49 +0800402 unsigned long flags;
Bryan Wu1394f032007-05-06 14:50:22 -0700403
404 bank = gpio_bank(gpio);
405 bitmask = gpio_bit(gpio);
406
Michael Hennerich2b393312007-10-10 16:58:49 +0800407 local_irq_save(flags);
408
Bryan Wu1394f032007-05-06 14:50:22 -0700409 gpio_bankb[bank]->maska_clear = bitmask;
410 gpio_bankb[bank]->maskb_clear = bitmask;
411 SSYNC();
412 gpio_bankb[bank]->inen &= ~bitmask;
413 gpio_bankb[bank]->dir &= ~bitmask;
414 gpio_bankb[bank]->polar &= ~bitmask;
415 gpio_bankb[bank]->both &= ~bitmask;
416 gpio_bankb[bank]->edge &= ~bitmask;
Michael Hennerich2b393312007-10-10 16:58:49 +0800417 AWA_DUMMY_READ(edge);
418 local_irq_restore(flags);
Bryan Wu1394f032007-05-06 14:50:22 -0700419}
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800420#else
421# define default_gpio(...) do { } while (0)
422#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700423
Mike Frysingera161bb02007-05-21 18:09:14 +0800424static int __init bfin_gpio_init(void)
Bryan Wu1394f032007-05-06 14:50:22 -0700425{
Bryan Wu1394f032007-05-06 14:50:22 -0700426 printk(KERN_INFO "Blackfin GPIO Controller\n");
427
Bryan Wu1394f032007-05-06 14:50:22 -0700428 return 0;
429}
Bryan Wu1394f032007-05-06 14:50:22 -0700430arch_initcall(bfin_gpio_init);
431
432
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800433#ifndef BF548_FAMILY
Bryan Wu1394f032007-05-06 14:50:22 -0700434/***********************************************************
435*
436* FUNCTIONS: Blackfin General Purpose Ports Access Functions
437*
438* INPUTS/OUTPUTS:
439* gpio - GPIO Number between 0 and MAX_BLACKFIN_GPIOS
440*
441*
442* DESCRIPTION: These functions abstract direct register access
443* to Blackfin processor General Purpose
444* Ports Regsiters
445*
446* CAUTION: These functions do not belong to the GPIO Driver API
447*************************************************************
448* MODIFICATION HISTORY :
449**************************************************************/
450
451/* Set a specific bit */
452
453#define SET_GPIO(name) \
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800454void set_gpio_ ## name(unsigned gpio, unsigned short arg) \
Bryan Wu1394f032007-05-06 14:50:22 -0700455{ \
456 unsigned long flags; \
Bryan Wu1394f032007-05-06 14:50:22 -0700457 local_irq_save(flags); \
458 if (arg) \
459 gpio_bankb[gpio_bank(gpio)]->name |= gpio_bit(gpio); \
460 else \
461 gpio_bankb[gpio_bank(gpio)]->name &= ~gpio_bit(gpio); \
Michael Hennerich2b393312007-10-10 16:58:49 +0800462 AWA_DUMMY_READ(name); \
Bryan Wu1394f032007-05-06 14:50:22 -0700463 local_irq_restore(flags); \
464} \
465EXPORT_SYMBOL(set_gpio_ ## name);
466
467SET_GPIO(dir)
468SET_GPIO(inen)
469SET_GPIO(polar)
470SET_GPIO(edge)
471SET_GPIO(both)
472
473
Michael Hennerich2b393312007-10-10 16:58:49 +0800474#if ANOMALY_05000311 || ANOMALY_05000323
475#define SET_GPIO_SC(name) \
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800476void set_gpio_ ## name(unsigned gpio, unsigned short arg) \
Michael Hennerich2b393312007-10-10 16:58:49 +0800477{ \
478 unsigned long flags; \
Michael Hennerich2b393312007-10-10 16:58:49 +0800479 local_irq_save(flags); \
480 if (arg) \
481 gpio_bankb[gpio_bank(gpio)]->name ## _set = gpio_bit(gpio); \
482 else \
483 gpio_bankb[gpio_bank(gpio)]->name ## _clear = gpio_bit(gpio); \
484 AWA_DUMMY_READ(name); \
485 local_irq_restore(flags); \
486} \
487EXPORT_SYMBOL(set_gpio_ ## name);
488#else
Bryan Wu1394f032007-05-06 14:50:22 -0700489#define SET_GPIO_SC(name) \
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800490void set_gpio_ ## name(unsigned gpio, unsigned short arg) \
Bryan Wu1394f032007-05-06 14:50:22 -0700491{ \
Bryan Wu1394f032007-05-06 14:50:22 -0700492 if (arg) \
493 gpio_bankb[gpio_bank(gpio)]->name ## _set = gpio_bit(gpio); \
494 else \
495 gpio_bankb[gpio_bank(gpio)]->name ## _clear = gpio_bit(gpio); \
496} \
497EXPORT_SYMBOL(set_gpio_ ## name);
Michael Hennerich2b393312007-10-10 16:58:49 +0800498#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700499
500SET_GPIO_SC(maska)
501SET_GPIO_SC(maskb)
Bryan Wu1394f032007-05-06 14:50:22 -0700502SET_GPIO_SC(data)
Bryan Wu1394f032007-05-06 14:50:22 -0700503
Michael Hennerich2b393312007-10-10 16:58:49 +0800504#if ANOMALY_05000311 || ANOMALY_05000323
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800505void set_gpio_toggle(unsigned gpio)
Bryan Wu1394f032007-05-06 14:50:22 -0700506{
507 unsigned long flags;
Bryan Wu1394f032007-05-06 14:50:22 -0700508 local_irq_save(flags);
509 gpio_bankb[gpio_bank(gpio)]->toggle = gpio_bit(gpio);
Michael Hennerich2b393312007-10-10 16:58:49 +0800510 AWA_DUMMY_READ(toggle);
Bryan Wu1394f032007-05-06 14:50:22 -0700511 local_irq_restore(flags);
512}
513#else
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800514void set_gpio_toggle(unsigned gpio)
Bryan Wu1394f032007-05-06 14:50:22 -0700515{
Bryan Wu1394f032007-05-06 14:50:22 -0700516 gpio_bankb[gpio_bank(gpio)]->toggle = gpio_bit(gpio);
517}
518#endif
519EXPORT_SYMBOL(set_gpio_toggle);
520
521
522/*Set current PORT date (16-bit word)*/
523
Michael Hennerich2b393312007-10-10 16:58:49 +0800524#if ANOMALY_05000311 || ANOMALY_05000323
525#define SET_GPIO_P(name) \
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800526void set_gpiop_ ## name(unsigned gpio, unsigned short arg) \
Michael Hennerich2b393312007-10-10 16:58:49 +0800527{ \
528 unsigned long flags; \
529 local_irq_save(flags); \
530 gpio_bankb[gpio_bank(gpio)]->name = arg; \
531 AWA_DUMMY_READ(name); \
532 local_irq_restore(flags); \
533} \
534EXPORT_SYMBOL(set_gpiop_ ## name);
535#else
Bryan Wu1394f032007-05-06 14:50:22 -0700536#define SET_GPIO_P(name) \
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800537void set_gpiop_ ## name(unsigned gpio, unsigned short arg) \
Bryan Wu1394f032007-05-06 14:50:22 -0700538{ \
539 gpio_bankb[gpio_bank(gpio)]->name = arg; \
540} \
541EXPORT_SYMBOL(set_gpiop_ ## name);
Michael Hennerich2b393312007-10-10 16:58:49 +0800542#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700543
Michael Hennerich2b393312007-10-10 16:58:49 +0800544SET_GPIO_P(data)
Bryan Wu1394f032007-05-06 14:50:22 -0700545SET_GPIO_P(dir)
546SET_GPIO_P(inen)
547SET_GPIO_P(polar)
548SET_GPIO_P(edge)
549SET_GPIO_P(both)
550SET_GPIO_P(maska)
551SET_GPIO_P(maskb)
552
Bryan Wu1394f032007-05-06 14:50:22 -0700553/* Get a specific bit */
Michael Hennerich2b393312007-10-10 16:58:49 +0800554#if ANOMALY_05000311 || ANOMALY_05000323
555#define GET_GPIO(name) \
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800556unsigned short get_gpio_ ## name(unsigned gpio) \
Michael Hennerich2b393312007-10-10 16:58:49 +0800557{ \
558 unsigned long flags; \
559 unsigned short ret; \
560 local_irq_save(flags); \
561 ret = 0x01 & (gpio_bankb[gpio_bank(gpio)]->name >> gpio_sub_n(gpio)); \
562 AWA_DUMMY_READ(name); \
563 local_irq_restore(flags); \
564 return ret; \
565} \
566EXPORT_SYMBOL(get_gpio_ ## name);
567#else
Bryan Wu1394f032007-05-06 14:50:22 -0700568#define GET_GPIO(name) \
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800569unsigned short get_gpio_ ## name(unsigned gpio) \
Bryan Wu1394f032007-05-06 14:50:22 -0700570{ \
571 return (0x01 & (gpio_bankb[gpio_bank(gpio)]->name >> gpio_sub_n(gpio))); \
572} \
573EXPORT_SYMBOL(get_gpio_ ## name);
Michael Hennerich2b393312007-10-10 16:58:49 +0800574#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700575
Michael Hennerich2b393312007-10-10 16:58:49 +0800576GET_GPIO(data)
Bryan Wu1394f032007-05-06 14:50:22 -0700577GET_GPIO(dir)
578GET_GPIO(inen)
579GET_GPIO(polar)
580GET_GPIO(edge)
581GET_GPIO(both)
582GET_GPIO(maska)
583GET_GPIO(maskb)
584
Bryan Wu1394f032007-05-06 14:50:22 -0700585/*Get current PORT date (16-bit word)*/
586
Michael Hennerich2b393312007-10-10 16:58:49 +0800587#if ANOMALY_05000311 || ANOMALY_05000323
588#define GET_GPIO_P(name) \
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800589unsigned short get_gpiop_ ## name(unsigned gpio) \
Michael Hennerich2b393312007-10-10 16:58:49 +0800590{ \
591 unsigned long flags; \
592 unsigned short ret; \
593 local_irq_save(flags); \
594 ret = (gpio_bankb[gpio_bank(gpio)]->name); \
595 AWA_DUMMY_READ(name); \
596 local_irq_restore(flags); \
597 return ret; \
598} \
599EXPORT_SYMBOL(get_gpiop_ ## name);
600#else
Bryan Wu1394f032007-05-06 14:50:22 -0700601#define GET_GPIO_P(name) \
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800602unsigned short get_gpiop_ ## name(unsigned gpio) \
Bryan Wu1394f032007-05-06 14:50:22 -0700603{ \
604 return (gpio_bankb[gpio_bank(gpio)]->name);\
605} \
606EXPORT_SYMBOL(get_gpiop_ ## name);
Michael Hennerich2b393312007-10-10 16:58:49 +0800607#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700608
Michael Hennerich2b393312007-10-10 16:58:49 +0800609GET_GPIO_P(data)
Bryan Wu1394f032007-05-06 14:50:22 -0700610GET_GPIO_P(dir)
611GET_GPIO_P(inen)
612GET_GPIO_P(polar)
613GET_GPIO_P(edge)
614GET_GPIO_P(both)
615GET_GPIO_P(maska)
616GET_GPIO_P(maskb)
617
Bryan Wu1394f032007-05-06 14:50:22 -0700618
619#ifdef CONFIG_PM
620/***********************************************************
621*
622* FUNCTIONS: Blackfin PM Setup API
623*
624* INPUTS/OUTPUTS:
625* gpio - GPIO Number between 0 and MAX_BLACKFIN_GPIOS
626* type -
627* PM_WAKE_RISING
628* PM_WAKE_FALLING
629* PM_WAKE_HIGH
630* PM_WAKE_LOW
631* PM_WAKE_BOTH_EDGES
632*
633* DESCRIPTION: Blackfin PM Driver API
634*
635* CAUTION:
636*************************************************************
637* MODIFICATION HISTORY :
638**************************************************************/
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800639int gpio_pm_wakeup_request(unsigned gpio, unsigned char type)
Bryan Wu1394f032007-05-06 14:50:22 -0700640{
641 unsigned long flags;
642
643 if ((check_gpio(gpio) < 0) || !type)
644 return -EINVAL;
645
646 local_irq_save(flags);
Bryan Wu1394f032007-05-06 14:50:22 -0700647 wakeup_map[gpio_bank(gpio)] |= gpio_bit(gpio);
648 wakeup_flags_map[gpio] = type;
649 local_irq_restore(flags);
650
651 return 0;
652}
653EXPORT_SYMBOL(gpio_pm_wakeup_request);
654
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800655void gpio_pm_wakeup_free(unsigned gpio)
Bryan Wu1394f032007-05-06 14:50:22 -0700656{
657 unsigned long flags;
658
659 if (check_gpio(gpio) < 0)
660 return;
661
662 local_irq_save(flags);
663
664 wakeup_map[gpio_bank(gpio)] &= ~gpio_bit(gpio);
665
666 local_irq_restore(flags);
667}
668EXPORT_SYMBOL(gpio_pm_wakeup_free);
669
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800670static int bfin_gpio_wakeup_type(unsigned gpio, unsigned char type)
Bryan Wu1394f032007-05-06 14:50:22 -0700671{
672 port_setup(gpio, GPIO_USAGE);
673 set_gpio_dir(gpio, 0);
674 set_gpio_inen(gpio, 1);
675
676 if (type & (PM_WAKE_RISING | PM_WAKE_FALLING))
677 set_gpio_edge(gpio, 1);
678 else
679 set_gpio_edge(gpio, 0);
680
681 if ((type & (PM_WAKE_BOTH_EDGES)) == (PM_WAKE_BOTH_EDGES))
682 set_gpio_both(gpio, 1);
683 else
684 set_gpio_both(gpio, 0);
685
686 if ((type & (PM_WAKE_FALLING | PM_WAKE_LOW)))
687 set_gpio_polar(gpio, 1);
688 else
689 set_gpio_polar(gpio, 0);
690
691 SSYNC();
692
693 return 0;
694}
695
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800696u32 bfin_pm_setup(void)
Bryan Wu1394f032007-05-06 14:50:22 -0700697{
Bryan Wu1394f032007-05-06 14:50:22 -0700698 u16 bank, mask, i, gpio;
699
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800700 for (i = 0; i < MAX_BLACKFIN_GPIOS; i += GPIO_BANKSIZE) {
Bryan Wu1394f032007-05-06 14:50:22 -0700701 mask = wakeup_map[gpio_bank(i)];
702 bank = gpio_bank(i);
703
704 gpio_bank_saved[bank].maskb = gpio_bankb[bank]->maskb;
705 gpio_bankb[bank]->maskb = 0;
706
707 if (mask) {
708#ifdef BF537_FAMILY
709 gpio_bank_saved[bank].fer = *port_fer[bank];
710#endif
711 gpio_bank_saved[bank].inen = gpio_bankb[bank]->inen;
712 gpio_bank_saved[bank].polar = gpio_bankb[bank]->polar;
713 gpio_bank_saved[bank].dir = gpio_bankb[bank]->dir;
714 gpio_bank_saved[bank].edge = gpio_bankb[bank]->edge;
715 gpio_bank_saved[bank].both = gpio_bankb[bank]->both;
Michael Hennerichc58c2142007-10-04 00:35:05 +0800716 gpio_bank_saved[bank].reserved =
717 reserved_gpio_map[bank];
Bryan Wu1394f032007-05-06 14:50:22 -0700718
719 gpio = i;
720
721 while (mask) {
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800722 if ((mask & 1) && (wakeup_flags_map[gpio] !=
723 PM_WAKE_IGNORE)) {
Michael Hennerichc58c2142007-10-04 00:35:05 +0800724 reserved_gpio_map[gpio_bank(gpio)] |=
Michael Hennerich581d62a2007-06-14 13:30:23 +0800725 gpio_bit(gpio);
726 bfin_gpio_wakeup_type(gpio,
727 wakeup_flags_map[gpio]);
Bryan Wu1394f032007-05-06 14:50:22 -0700728 set_gpio_data(gpio, 0); /*Clear*/
729 }
730 gpio++;
731 mask >>= 1;
732 }
733
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800734 bfin_internal_set_wake(sic_iwr_irqs[bank], 1);
Bryan Wu1394f032007-05-06 14:50:22 -0700735 gpio_bankb[bank]->maskb_set = wakeup_map[gpio_bank(i)];
736 }
737 }
738
Michael Hennerich2b393312007-10-10 16:58:49 +0800739 AWA_DUMMY_READ(maskb_set);
740
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800741 return 0;
Bryan Wu1394f032007-05-06 14:50:22 -0700742}
743
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800744void bfin_pm_restore(void)
Bryan Wu1394f032007-05-06 14:50:22 -0700745{
746 u16 bank, mask, i;
747
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800748 for (i = 0; i < MAX_BLACKFIN_GPIOS; i += GPIO_BANKSIZE) {
Bryan Wu1394f032007-05-06 14:50:22 -0700749 mask = wakeup_map[gpio_bank(i)];
750 bank = gpio_bank(i);
751
752 if (mask) {
753#ifdef BF537_FAMILY
754 *port_fer[bank] = gpio_bank_saved[bank].fer;
755#endif
756 gpio_bankb[bank]->inen = gpio_bank_saved[bank].inen;
757 gpio_bankb[bank]->dir = gpio_bank_saved[bank].dir;
758 gpio_bankb[bank]->polar = gpio_bank_saved[bank].polar;
759 gpio_bankb[bank]->edge = gpio_bank_saved[bank].edge;
760 gpio_bankb[bank]->both = gpio_bank_saved[bank].both;
Michael Hennerich581d62a2007-06-14 13:30:23 +0800761
Michael Hennerichc58c2142007-10-04 00:35:05 +0800762 reserved_gpio_map[bank] =
763 gpio_bank_saved[bank].reserved;
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800764 bfin_internal_set_wake(sic_iwr_irqs[bank], 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700765 }
766
767 gpio_bankb[bank]->maskb = gpio_bank_saved[bank].maskb;
768 }
Michael Hennerich2b393312007-10-10 16:58:49 +0800769 AWA_DUMMY_READ(maskb);
Bryan Wu1394f032007-05-06 14:50:22 -0700770}
771
772#endif
Michael Hennerichfac3cf42007-12-24 20:07:03 +0800773#else /* BF548_FAMILY */
774
Michael Hennericha2c8cfe2008-01-22 17:20:10 +0800775unsigned short get_gpio_dir(unsigned gpio)
Michael Hennerichfac3cf42007-12-24 20:07:03 +0800776{
777 return (0x01 & (gpio_array[gpio_bank(gpio)]->port_dir_clear >> gpio_sub_n(gpio)));
778}
779EXPORT_SYMBOL(get_gpio_dir);
780
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800781#endif /* BF548_FAMILY */
Bryan Wu1394f032007-05-06 14:50:22 -0700782
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800783/***********************************************************
784*
785* FUNCTIONS: Blackfin Peripheral Resource Allocation
786* and PortMux Setup
787*
788* INPUTS/OUTPUTS:
789* per Peripheral Identifier
790* label String
791*
792* DESCRIPTION: Blackfin Peripheral Resource Allocation and Setup API
793*
794* CAUTION:
795*************************************************************
796* MODIFICATION HISTORY :
797**************************************************************/
Michael Hennerichc58c2142007-10-04 00:35:05 +0800798
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800799#ifdef BF548_FAMILY
800int peripheral_request(unsigned short per, const char *label)
801{
802 unsigned long flags;
803 unsigned short ident = P_IDENT(per);
Michael Hennerichc58c2142007-10-04 00:35:05 +0800804
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800805 /*
806 * Don't cares are pins with only one dedicated function
807 */
808
809 if (per & P_DONTCARE)
810 return 0;
811
812 if (!(per & P_DEFINED))
813 return -ENODEV;
814
815 if (check_gpio(ident) < 0)
816 return -EINVAL;
817
818 local_irq_save(flags);
819
820 if (unlikely(reserved_gpio_map[gpio_bank(ident)] & gpio_bit(ident))) {
Mike Frysingerf85c4ab2008-03-26 08:34:23 +0800821 dump_stack();
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800822 printk(KERN_ERR
823 "%s: Peripheral %d is already reserved as GPIO by %s !\n",
Harvey Harrisonb85d8582008-04-23 09:39:01 +0800824 __func__, ident, get_label(ident));
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800825 local_irq_restore(flags);
826 return -EBUSY;
827 }
828
829 if (unlikely(reserved_peri_map[gpio_bank(ident)] & gpio_bit(ident))) {
830
831 u16 funct = get_portmux(ident);
832
Mike Frysingerd171c232008-03-26 08:35:46 +0800833 /*
834 * Pin functions like AMC address strobes my
835 * be requested and used by several drivers
836 */
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800837
838 if (!((per & P_MAYSHARE) && (funct == P_FUNCT2MUX(per)))) {
839
Mike Frysingerd171c232008-03-26 08:35:46 +0800840 /*
841 * Allow that the identical pin function can
842 * be requested from the same driver twice
843 */
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800844
Mike Frysingerd171c232008-03-26 08:35:46 +0800845 if (cmp_label(ident, label) == 0)
846 goto anyway;
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800847
Mike Frysingerf85c4ab2008-03-26 08:34:23 +0800848 dump_stack();
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800849 printk(KERN_ERR
850 "%s: Peripheral %d function %d is already reserved by %s !\n",
Harvey Harrisonb85d8582008-04-23 09:39:01 +0800851 __func__, ident, P_FUNCT2MUX(per), get_label(ident));
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800852 local_irq_restore(flags);
853 return -EBUSY;
854 }
855 }
856
Mike Frysingerd171c232008-03-26 08:35:46 +0800857 anyway:
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800858 reserved_peri_map[gpio_bank(ident)] |= gpio_bit(ident);
859
860 portmux_setup(ident, P_FUNCT2MUX(per));
861 port_setup(ident, PERIPHERAL_USAGE);
862
863 local_irq_restore(flags);
864 set_label(ident, label);
865
866 return 0;
867}
868EXPORT_SYMBOL(peripheral_request);
869#else
Michael Hennerichc58c2142007-10-04 00:35:05 +0800870
871int peripheral_request(unsigned short per, const char *label)
872{
873 unsigned long flags;
874 unsigned short ident = P_IDENT(per);
875
876 /*
877 * Don't cares are pins with only one dedicated function
878 */
879
880 if (per & P_DONTCARE)
881 return 0;
882
883 if (!(per & P_DEFINED))
884 return -ENODEV;
885
Michael Hennerichc58c2142007-10-04 00:35:05 +0800886 local_irq_save(flags);
887
Michael Hennerichcda6a202007-10-04 00:36:18 +0800888 if (!check_gpio(ident)) {
889
Mike Frysingerd171c232008-03-26 08:35:46 +0800890 if (unlikely(reserved_gpio_map[gpio_bank(ident)] & gpio_bit(ident))) {
891 dump_stack();
892 printk(KERN_ERR
893 "%s: Peripheral %d is already reserved as GPIO by %s !\n",
Harvey Harrisonb85d8582008-04-23 09:39:01 +0800894 __func__, ident, get_label(ident));
Mike Frysingerd171c232008-03-26 08:35:46 +0800895 local_irq_restore(flags);
896 return -EBUSY;
897 }
Michael Hennerichc58c2142007-10-04 00:35:05 +0800898
Michael Hennerichcda6a202007-10-04 00:36:18 +0800899 }
900
Michael Hennerichc58c2142007-10-04 00:35:05 +0800901 if (unlikely(reserved_peri_map[gpio_bank(ident)] & gpio_bit(ident))) {
902
Mike Frysingerd171c232008-03-26 08:35:46 +0800903 /*
904 * Pin functions like AMC address strobes my
905 * be requested and used by several drivers
906 */
Michael Hennerichc58c2142007-10-04 00:35:05 +0800907
Mike Frysingerd171c232008-03-26 08:35:46 +0800908 if (!(per & P_MAYSHARE)) {
Michael Hennerichc58c2142007-10-04 00:35:05 +0800909
Mike Frysingerd171c232008-03-26 08:35:46 +0800910 /*
911 * Allow that the identical pin function can
912 * be requested from the same driver twice
913 */
Michael Hennerichc58c2142007-10-04 00:35:05 +0800914
Mike Frysingerd171c232008-03-26 08:35:46 +0800915 if (cmp_label(ident, label) == 0)
916 goto anyway;
Michael Hennerichc58c2142007-10-04 00:35:05 +0800917
Mike Frysingerf85c4ab2008-03-26 08:34:23 +0800918 dump_stack();
Michael Hennerichc58c2142007-10-04 00:35:05 +0800919 printk(KERN_ERR
920 "%s: Peripheral %d function %d is already"
Michael Hennerich8c613622007-08-03 17:48:09 +0800921 " reserved by %s !\n",
Harvey Harrisonb85d8582008-04-23 09:39:01 +0800922 __func__, ident, P_FUNCT2MUX(per),
Michael Hennerichc58c2142007-10-04 00:35:05 +0800923 get_label(ident));
Michael Hennerichc58c2142007-10-04 00:35:05 +0800924 local_irq_restore(flags);
925 return -EBUSY;
926 }
927
928 }
929
Mike Frysingerd171c232008-03-26 08:35:46 +0800930 anyway:
Michael Hennerichc58c2142007-10-04 00:35:05 +0800931 portmux_setup(per, P_FUNCT2MUX(per));
932
933 port_setup(ident, PERIPHERAL_USAGE);
934
935 reserved_peri_map[gpio_bank(ident)] |= gpio_bit(ident);
936 local_irq_restore(flags);
937 set_label(ident, label);
938
939 return 0;
940}
941EXPORT_SYMBOL(peripheral_request);
Michael Hennerichd2b11a42007-08-28 16:47:46 +0800942#endif
Michael Hennerichc58c2142007-10-04 00:35:05 +0800943
944int peripheral_request_list(unsigned short per[], const char *label)
945{
946 u16 cnt;
947 int ret;
948
949 for (cnt = 0; per[cnt] != 0; cnt++) {
Michael Hennerich314c98d2007-07-24 18:03:45 +0800950
Michael Hennerichc58c2142007-10-04 00:35:05 +0800951 ret = peripheral_request(per[cnt], label);
Michael Hennerich314c98d2007-07-24 18:03:45 +0800952
953 if (ret < 0) {
Mike Frysingerd171c232008-03-26 08:35:46 +0800954 for ( ; cnt > 0; cnt--)
Michael Hennerich314c98d2007-07-24 18:03:45 +0800955 peripheral_free(per[cnt - 1]);
Mike Frysingerd171c232008-03-26 08:35:46 +0800956
957 return ret;
Michael Hennerich314c98d2007-07-24 18:03:45 +0800958 }
Michael Hennerichc58c2142007-10-04 00:35:05 +0800959 }
960
961 return 0;
962}
963EXPORT_SYMBOL(peripheral_request_list);
964
965void peripheral_free(unsigned short per)
966{
967 unsigned long flags;
968 unsigned short ident = P_IDENT(per);
969
970 if (per & P_DONTCARE)
971 return;
972
973 if (!(per & P_DEFINED))
974 return;
975
976 if (check_gpio(ident) < 0)
977 return;
978
979 local_irq_save(flags);
980
Mike Frysingerd171c232008-03-26 08:35:46 +0800981 if (unlikely(!(reserved_peri_map[gpio_bank(ident)] & gpio_bit(ident)))) {
Michael Hennerichc58c2142007-10-04 00:35:05 +0800982 local_irq_restore(flags);
983 return;
984 }
985
Mike Frysingerd171c232008-03-26 08:35:46 +0800986 if (!(per & P_MAYSHARE))
Michael Hennerichc58c2142007-10-04 00:35:05 +0800987 port_setup(ident, GPIO_USAGE);
Michael Hennerichc58c2142007-10-04 00:35:05 +0800988
989 reserved_peri_map[gpio_bank(ident)] &= ~gpio_bit(ident);
990
Michael Hennerich2acde902007-10-11 00:24:40 +0800991 set_label(ident, "free");
992
Michael Hennerichc58c2142007-10-04 00:35:05 +0800993 local_irq_restore(flags);
994}
995EXPORT_SYMBOL(peripheral_free);
996
997void peripheral_free_list(unsigned short per[])
998{
999 u16 cnt;
Mike Frysingerd171c232008-03-26 08:35:46 +08001000 for (cnt = 0; per[cnt] != 0; cnt++)
Michael Hennerichc58c2142007-10-04 00:35:05 +08001001 peripheral_free(per[cnt]);
Michael Hennerichc58c2142007-10-04 00:35:05 +08001002}
1003EXPORT_SYMBOL(peripheral_free_list);
1004
Bryan Wu1394f032007-05-06 14:50:22 -07001005/***********************************************************
1006*
1007* FUNCTIONS: Blackfin GPIO Driver
1008*
1009* INPUTS/OUTPUTS:
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001010* gpio PIO Number between 0 and MAX_BLACKFIN_GPIOS
1011* label String
Bryan Wu1394f032007-05-06 14:50:22 -07001012*
1013* DESCRIPTION: Blackfin GPIO Driver API
1014*
1015* CAUTION:
1016*************************************************************
1017* MODIFICATION HISTORY :
1018**************************************************************/
1019
Michael Hennerichacbcd262008-01-22 18:36:20 +08001020int gpio_request(unsigned gpio, const char *label)
Bryan Wu1394f032007-05-06 14:50:22 -07001021{
1022 unsigned long flags;
1023
1024 if (check_gpio(gpio) < 0)
1025 return -EINVAL;
1026
1027 local_irq_save(flags);
1028
Michael Hennerich2acde902007-10-11 00:24:40 +08001029 /*
1030 * Allow that the identical GPIO can
1031 * be requested from the same driver twice
1032 * Do nothing and return -
1033 */
1034
1035 if (cmp_label(gpio, label) == 0) {
1036 local_irq_restore(flags);
1037 return 0;
1038 }
1039
Michael Hennerichc58c2142007-10-04 00:35:05 +08001040 if (unlikely(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio))) {
Mike Frysingerf85c4ab2008-03-26 08:34:23 +08001041 dump_stack();
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001042 printk(KERN_ERR "bfin-gpio: GPIO %d is already reserved by %s !\n",
1043 gpio, get_label(gpio));
Bryan Wu1394f032007-05-06 14:50:22 -07001044 local_irq_restore(flags);
1045 return -EBUSY;
1046 }
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001047 if (unlikely(reserved_peri_map[gpio_bank(gpio)] & gpio_bit(gpio))) {
Mike Frysingerf85c4ab2008-03-26 08:34:23 +08001048 dump_stack();
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001049 printk(KERN_ERR
1050 "bfin-gpio: GPIO %d is already reserved as Peripheral by %s !\n",
1051 gpio, get_label(gpio));
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001052 local_irq_restore(flags);
1053 return -EBUSY;
1054 }
1055
Michael Hennerichc58c2142007-10-04 00:35:05 +08001056 reserved_gpio_map[gpio_bank(gpio)] |= gpio_bit(gpio);
Bryan Wu1394f032007-05-06 14:50:22 -07001057
1058 local_irq_restore(flags);
1059
1060 port_setup(gpio, GPIO_USAGE);
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001061 set_label(gpio, label);
Bryan Wu1394f032007-05-06 14:50:22 -07001062
1063 return 0;
1064}
1065EXPORT_SYMBOL(gpio_request);
1066
Michael Hennerichacbcd262008-01-22 18:36:20 +08001067void gpio_free(unsigned gpio)
Bryan Wu1394f032007-05-06 14:50:22 -07001068{
1069 unsigned long flags;
1070
1071 if (check_gpio(gpio) < 0)
1072 return;
1073
1074 local_irq_save(flags);
1075
Michael Hennerichc58c2142007-10-04 00:35:05 +08001076 if (unlikely(!(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio)))) {
Bryan Wu1394f032007-05-06 14:50:22 -07001077 dump_stack();
Mike Frysingerf85c4ab2008-03-26 08:34:23 +08001078 gpio_error(gpio);
Bryan Wu1394f032007-05-06 14:50:22 -07001079 local_irq_restore(flags);
1080 return;
1081 }
1082
1083 default_gpio(gpio);
1084
Michael Hennerichc58c2142007-10-04 00:35:05 +08001085 reserved_gpio_map[gpio_bank(gpio)] &= ~gpio_bit(gpio);
Bryan Wu1394f032007-05-06 14:50:22 -07001086
Michael Hennerich2acde902007-10-11 00:24:40 +08001087 set_label(gpio, "free");
1088
Bryan Wu1394f032007-05-06 14:50:22 -07001089 local_irq_restore(flags);
1090}
1091EXPORT_SYMBOL(gpio_free);
1092
Michael Hennerichacbcd262008-01-22 18:36:20 +08001093
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001094#ifdef BF548_FAMILY
Michael Hennerichacbcd262008-01-22 18:36:20 +08001095int gpio_direction_input(unsigned gpio)
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001096{
1097 unsigned long flags;
1098
Michael Hennerichacbcd262008-01-22 18:36:20 +08001099 if (!(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio))) {
1100 gpio_error(gpio);
1101 return -EINVAL;
1102 }
1103
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001104 local_irq_save(flags);
1105 gpio_array[gpio_bank(gpio)]->port_dir_clear = gpio_bit(gpio);
1106 gpio_array[gpio_bank(gpio)]->port_inen |= gpio_bit(gpio);
1107 local_irq_restore(flags);
Michael Hennerichacbcd262008-01-22 18:36:20 +08001108
1109 return 0;
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001110}
1111EXPORT_SYMBOL(gpio_direction_input);
1112
Michael Hennerichacbcd262008-01-22 18:36:20 +08001113int gpio_direction_output(unsigned gpio, int value)
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001114{
1115 unsigned long flags;
1116
Michael Hennerichacbcd262008-01-22 18:36:20 +08001117 if (!(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio))) {
1118 gpio_error(gpio);
1119 return -EINVAL;
1120 }
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001121
1122 local_irq_save(flags);
1123 gpio_array[gpio_bank(gpio)]->port_inen &= ~gpio_bit(gpio);
Michael Hennerichacbcd262008-01-22 18:36:20 +08001124 gpio_set_value(gpio, value);
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001125 gpio_array[gpio_bank(gpio)]->port_dir_set = gpio_bit(gpio);
1126 local_irq_restore(flags);
Michael Hennerichacbcd262008-01-22 18:36:20 +08001127
1128 return 0;
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001129}
1130EXPORT_SYMBOL(gpio_direction_output);
1131
Michael Hennerichacbcd262008-01-22 18:36:20 +08001132void gpio_set_value(unsigned gpio, int arg)
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001133{
1134 if (arg)
1135 gpio_array[gpio_bank(gpio)]->port_set = gpio_bit(gpio);
1136 else
1137 gpio_array[gpio_bank(gpio)]->port_clear = gpio_bit(gpio);
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001138}
1139EXPORT_SYMBOL(gpio_set_value);
1140
Michael Hennerichacbcd262008-01-22 18:36:20 +08001141int gpio_get_value(unsigned gpio)
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001142{
1143 return (1 & (gpio_array[gpio_bank(gpio)]->port_data >> gpio_sub_n(gpio)));
1144}
1145EXPORT_SYMBOL(gpio_get_value);
1146
1147#else
1148
Michael Hennerichacbcd262008-01-22 18:36:20 +08001149int gpio_direction_input(unsigned gpio)
Bryan Wu1394f032007-05-06 14:50:22 -07001150{
1151 unsigned long flags;
1152
Michael Hennerichacbcd262008-01-22 18:36:20 +08001153 if (!(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio))) {
1154 gpio_error(gpio);
1155 return -EINVAL;
1156 }
Bryan Wu1394f032007-05-06 14:50:22 -07001157
1158 local_irq_save(flags);
1159 gpio_bankb[gpio_bank(gpio)]->dir &= ~gpio_bit(gpio);
1160 gpio_bankb[gpio_bank(gpio)]->inen |= gpio_bit(gpio);
Michael Hennerich2b393312007-10-10 16:58:49 +08001161 AWA_DUMMY_READ(inen);
Bryan Wu1394f032007-05-06 14:50:22 -07001162 local_irq_restore(flags);
Michael Hennerichacbcd262008-01-22 18:36:20 +08001163
1164 return 0;
Bryan Wu1394f032007-05-06 14:50:22 -07001165}
1166EXPORT_SYMBOL(gpio_direction_input);
1167
Michael Hennerichacbcd262008-01-22 18:36:20 +08001168int gpio_direction_output(unsigned gpio, int value)
Bryan Wu1394f032007-05-06 14:50:22 -07001169{
1170 unsigned long flags;
1171
Michael Hennerichacbcd262008-01-22 18:36:20 +08001172 if (!(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio))) {
1173 gpio_error(gpio);
1174 return -EINVAL;
1175 }
Bryan Wu1394f032007-05-06 14:50:22 -07001176
1177 local_irq_save(flags);
1178 gpio_bankb[gpio_bank(gpio)]->inen &= ~gpio_bit(gpio);
Michael Hennericha2c8cfe2008-01-22 17:20:10 +08001179
1180 if (value)
1181 gpio_bankb[gpio_bank(gpio)]->data_set = gpio_bit(gpio);
1182 else
1183 gpio_bankb[gpio_bank(gpio)]->data_clear = gpio_bit(gpio);
1184
Bryan Wu1394f032007-05-06 14:50:22 -07001185 gpio_bankb[gpio_bank(gpio)]->dir |= gpio_bit(gpio);
Michael Hennerich2b393312007-10-10 16:58:49 +08001186 AWA_DUMMY_READ(dir);
Bryan Wu1394f032007-05-06 14:50:22 -07001187 local_irq_restore(flags);
Michael Hennerichacbcd262008-01-22 18:36:20 +08001188
1189 return 0;
Bryan Wu1394f032007-05-06 14:50:22 -07001190}
1191EXPORT_SYMBOL(gpio_direction_output);
Mike Frysinger168f1212007-10-11 00:22:35 +08001192
1193/* If we are booting from SPI and our board lacks a strong enough pull up,
1194 * the core can reset and execute the bootrom faster than the resistor can
1195 * pull the signal logically high. To work around this (common) error in
1196 * board design, we explicitly set the pin back to GPIO mode, force /CS
1197 * high, and wait for the electrons to do their thing.
1198 *
1199 * This function only makes sense to be called from reset code, but it
1200 * lives here as we need to force all the GPIO states w/out going through
1201 * BUG() checks and such.
1202 */
1203void bfin_gpio_reset_spi0_ssel1(void)
1204{
Michael Hennerich4d5f4ed2007-08-27 16:46:17 +08001205 u16 gpio = P_IDENT(P_SPI0_SSEL1);
1206
1207 port_setup(gpio, GPIO_USAGE);
1208 gpio_bankb[gpio_bank(gpio)]->data_set = gpio_bit(gpio);
Michael Hennericha2c8cfe2008-01-22 17:20:10 +08001209 AWA_DUMMY_READ(data_set);
Mike Frysinger168f1212007-10-11 00:22:35 +08001210 udelay(1);
1211}
Michael Hennerichd2b11a42007-08-28 16:47:46 +08001212
1213#endif /*BF548_FAMILY */
Mike Frysinger1545a112007-12-24 16:54:48 +08001214
1215#if defined(CONFIG_PROC_FS)
1216static int gpio_proc_read(char *buf, char **start, off_t offset,
1217 int len, int *unused_i, void *unused_v)
1218{
1219 int c, outlen = 0;
1220
1221 for (c = 0; c < MAX_RESOURCES; c++) {
1222 if (!check_gpio(c) && (reserved_gpio_map[gpio_bank(c)] & gpio_bit(c)))
Michael Hennerichfac3cf42007-12-24 20:07:03 +08001223 len = sprintf(buf, "GPIO_%d: %s \t\tGPIO %s\n", c,
Mike Frysinger1545a112007-12-24 16:54:48 +08001224 get_label(c), get_gpio_dir(c) ? "OUTPUT" : "INPUT");
1225 else if (reserved_peri_map[gpio_bank(c)] & gpio_bit(c))
Michael Hennerichfac3cf42007-12-24 20:07:03 +08001226 len = sprintf(buf, "GPIO_%d: %s \t\tPeripheral\n", c, get_label(c));
Mike Frysinger1545a112007-12-24 16:54:48 +08001227 else
1228 continue;
1229 buf += len;
1230 outlen += len;
1231 }
1232 return outlen;
1233}
1234
1235static __init int gpio_register_proc(void)
1236{
1237 struct proc_dir_entry *proc_gpio;
1238
1239 proc_gpio = create_proc_entry("gpio", S_IRUGO, NULL);
1240 if (proc_gpio)
1241 proc_gpio->read_proc = gpio_proc_read;
1242 return proc_gpio != NULL;
1243}
Mike Frysinger1545a112007-12-24 16:54:48 +08001244__initcall(gpio_register_proc);
1245#endif