2 * File: arch/blackfin/kernel/bfin_gpio.c
4 * Author: Michael Hennerich (hennerich@blackfin.uclinux.org)
7 * Description: GPIO Abstraction Layer
10 * Copyright 2006 Analog Devices Inc.
12 * Bugs: Enter bugs at http://blackfin.uclinux.org/
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.
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.
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
31 * Number BF537/6/4 BF561 BF533/2/1
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
83 #include <linux/module.h>
84 #include <linux/err.h>
85 #include <asm/blackfin.h>
87 #include <linux/irq.h>
90 static struct gpio_port_t
*gpio_bankb
[gpio_bank(MAX_BLACKFIN_GPIOS
)] = {
91 (struct gpio_port_t
*) FIO_FLAG_D
,
96 static struct gpio_port_t
*gpio_bankb
[gpio_bank(MAX_BLACKFIN_GPIOS
)] = {
97 (struct gpio_port_t
*) PORTFIO
,
98 (struct gpio_port_t
*) PORTGIO
,
99 (struct gpio_port_t
*) PORTHIO
,
102 static unsigned short *port_fer
[gpio_bank(MAX_BLACKFIN_GPIOS
)] = {
103 (unsigned short *) PORTF_FER
,
104 (unsigned short *) PORTG_FER
,
105 (unsigned short *) PORTH_FER
,
111 static struct gpio_port_t
*gpio_bankb
[gpio_bank(MAX_BLACKFIN_GPIOS
)] = {
112 (struct gpio_port_t
*) FIO0_FLAG_D
,
113 (struct gpio_port_t
*) FIO1_FLAG_D
,
114 (struct gpio_port_t
*) FIO2_FLAG_D
,
118 static unsigned short reserved_map
[gpio_bank(MAX_BLACKFIN_GPIOS
)];
121 static unsigned short wakeup_map
[gpio_bank(MAX_BLACKFIN_GPIOS
)];
122 static unsigned char wakeup_flags_map
[MAX_BLACKFIN_GPIOS
];
123 static struct gpio_port_s gpio_bank_saved
[gpio_bank(MAX_BLACKFIN_GPIOS
)];
126 static unsigned int sic_iwr_irqs
[gpio_bank(MAX_BLACKFIN_GPIOS
)] = {IRQ_PROG_INTB
};
130 static unsigned int sic_iwr_irqs
[gpio_bank(MAX_BLACKFIN_GPIOS
)] = {IRQ_PROG_INTB
, IRQ_PORTG_INTB
, IRQ_MAC_TX
};
134 static unsigned int sic_iwr_irqs
[gpio_bank(MAX_BLACKFIN_GPIOS
)] = {IRQ_PROG0_INTB
, IRQ_PROG1_INTB
, IRQ_PROG2_INTB
};
137 #endif /* CONFIG_PM */
139 inline int check_gpio(unsigned short gpio
)
141 if (gpio
> MAX_BLACKFIN_GPIOS
)
147 void port_setup(unsigned short gpio
, unsigned short usage
)
149 if (usage
== GPIO_USAGE
) {
150 if (*port_fer
[gpio_bank(gpio
)] & gpio_bit(gpio
))
151 printk(KERN_WARNING
"bfin-gpio: Possible Conflict with Peripheral "
152 "usage and GPIO %d detected!\n", gpio
);
153 *port_fer
[gpio_bank(gpio
)] &= ~gpio_bit(gpio
);
155 *port_fer
[gpio_bank(gpio
)] |= gpio_bit(gpio
);
159 # define port_setup(...) do { } while (0)
163 void default_gpio(unsigned short gpio
)
165 unsigned short bank
,bitmask
;
167 bank
= gpio_bank(gpio
);
168 bitmask
= gpio_bit(gpio
);
170 gpio_bankb
[bank
]->maska_clear
= bitmask
;
171 gpio_bankb
[bank
]->maskb_clear
= bitmask
;
173 gpio_bankb
[bank
]->inen
&= ~bitmask
;
174 gpio_bankb
[bank
]->dir
&= ~bitmask
;
175 gpio_bankb
[bank
]->polar
&= ~bitmask
;
176 gpio_bankb
[bank
]->both
&= ~bitmask
;
177 gpio_bankb
[bank
]->edge
&= ~bitmask
;
181 int __init
bfin_gpio_init(void)
185 printk(KERN_INFO
"Blackfin GPIO Controller\n");
187 for (i
= 0; i
< MAX_BLACKFIN_GPIOS
; i
+=GPIO_BANKSIZE
)
188 reserved_map
[gpio_bank(i
)] = 0;
190 #if defined(BF537_FAMILY) && (defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE))
191 # if defined(CONFIG_BFIN_MAC_RMII)
192 reserved_map
[PORT_H
] = 0xC373;
194 reserved_map
[PORT_H
] = 0xFFFF;
201 arch_initcall(bfin_gpio_init
);
204 /***********************************************************
206 * FUNCTIONS: Blackfin General Purpose Ports Access Functions
209 * gpio - GPIO Number between 0 and MAX_BLACKFIN_GPIOS
212 * DESCRIPTION: These functions abstract direct register access
213 * to Blackfin processor General Purpose
216 * CAUTION: These functions do not belong to the GPIO Driver API
217 *************************************************************
218 * MODIFICATION HISTORY :
219 **************************************************************/
221 /* Set a specific bit */
223 #define SET_GPIO(name) \
224 void set_gpio_ ## name(unsigned short gpio, unsigned short arg) \
226 unsigned long flags; \
227 BUG_ON(!(reserved_map[gpio_bank(gpio)] & gpio_bit(gpio))); \
228 local_irq_save(flags); \
230 gpio_bankb[gpio_bank(gpio)]->name |= gpio_bit(gpio); \
232 gpio_bankb[gpio_bank(gpio)]->name &= ~gpio_bit(gpio); \
233 local_irq_restore(flags); \
235 EXPORT_SYMBOL(set_gpio_ ## name);
244 #define SET_GPIO_SC(name) \
245 void set_gpio_ ## name(unsigned short gpio, unsigned short arg) \
247 BUG_ON(!(reserved_map[gpio_bank(gpio)] & gpio_bit(gpio))); \
249 gpio_bankb[gpio_bank(gpio)]->name ## _set = gpio_bit(gpio); \
251 gpio_bankb[gpio_bank(gpio)]->name ## _clear = gpio_bit(gpio); \
253 EXPORT_SYMBOL(set_gpio_ ## name);
258 #if defined(ANOMALY_05000311)
259 void set_gpio_data(unsigned short gpio
, unsigned short arg
)
262 BUG_ON(!(reserved_map
[gpio_bank(gpio
)] & gpio_bit(gpio
)));
263 local_irq_save(flags
);
265 gpio_bankb
[gpio_bank(gpio
)]->data_set
= gpio_bit(gpio
);
267 gpio_bankb
[gpio_bank(gpio
)]->data_clear
= gpio_bit(gpio
);
269 local_irq_restore(flags
);
271 EXPORT_SYMBOL(set_gpio_data
);
277 #if defined(ANOMALY_05000311)
278 void set_gpio_toggle(unsigned short gpio
)
281 BUG_ON(!(reserved_map
[gpio_bank(gpio
)] & gpio_bit(gpio
)));
282 local_irq_save(flags
);
283 gpio_bankb
[gpio_bank(gpio
)]->toggle
= gpio_bit(gpio
);
285 local_irq_restore(flags
);
288 void set_gpio_toggle(unsigned short gpio
)
290 BUG_ON(!(reserved_map
[gpio_bank(gpio
)] & gpio_bit(gpio
)));
291 gpio_bankb
[gpio_bank(gpio
)]->toggle
= gpio_bit(gpio
);
294 EXPORT_SYMBOL(set_gpio_toggle
);
297 /*Set current PORT date (16-bit word)*/
299 #define SET_GPIO_P(name) \
300 void set_gpiop_ ## name(unsigned short gpio, unsigned short arg) \
302 gpio_bankb[gpio_bank(gpio)]->name = arg; \
304 EXPORT_SYMBOL(set_gpiop_ ## name);
315 #if defined(ANOMALY_05000311)
316 void set_gpiop_data(unsigned short gpio
, unsigned short arg
)
319 local_irq_save(flags
);
320 gpio_bankb
[gpio_bank(gpio
)]->data
= arg
;
322 local_irq_restore(flags
);
324 EXPORT_SYMBOL(set_gpiop_data
);
331 /* Get a specific bit */
333 #define GET_GPIO(name) \
334 unsigned short get_gpio_ ## name(unsigned short gpio) \
336 return (0x01 & (gpio_bankb[gpio_bank(gpio)]->name >> gpio_sub_n(gpio))); \
338 EXPORT_SYMBOL(get_gpio_ ## name);
349 #if defined(ANOMALY_05000311)
350 unsigned short get_gpio_data(unsigned short gpio
)
354 BUG_ON(!(reserved_map
[gpio_bank(gpio
)] & gpio_bit(gpio
)));
355 local_irq_save(flags
);
356 ret
= 0x01 & (gpio_bankb
[gpio_bank(gpio
)]->data
>> gpio_sub_n(gpio
));
358 local_irq_restore(flags
);
361 EXPORT_SYMBOL(get_gpio_data
);
366 /*Get current PORT date (16-bit word)*/
368 #define GET_GPIO_P(name) \
369 unsigned short get_gpiop_ ## name(unsigned short gpio) \
371 return (gpio_bankb[gpio_bank(gpio)]->name);\
373 EXPORT_SYMBOL(get_gpiop_ ## name);
383 #if defined(ANOMALY_05000311)
384 unsigned short get_gpiop_data(unsigned short gpio
)
388 local_irq_save(flags
);
389 ret
= gpio_bankb
[gpio_bank(gpio
)]->data
;
391 local_irq_restore(flags
);
394 EXPORT_SYMBOL(get_gpiop_data
);
400 /***********************************************************
402 * FUNCTIONS: Blackfin PM Setup API
405 * gpio - GPIO Number between 0 and MAX_BLACKFIN_GPIOS
413 * DESCRIPTION: Blackfin PM Driver API
416 *************************************************************
417 * MODIFICATION HISTORY :
418 **************************************************************/
419 int gpio_pm_wakeup_request(unsigned short gpio
, unsigned char type
)
423 if ((check_gpio(gpio
) < 0) || !type
)
426 local_irq_save(flags
);
428 wakeup_map
[gpio_bank(gpio
)] |= gpio_bit(gpio
);
429 wakeup_flags_map
[gpio
] = type
;
430 local_irq_restore(flags
);
434 EXPORT_SYMBOL(gpio_pm_wakeup_request
);
436 void gpio_pm_wakeup_free(unsigned short gpio
)
440 if (check_gpio(gpio
) < 0)
443 local_irq_save(flags
);
445 wakeup_map
[gpio_bank(gpio
)] &= ~gpio_bit(gpio
);
447 local_irq_restore(flags
);
449 EXPORT_SYMBOL(gpio_pm_wakeup_free
);
451 static int bfin_gpio_wakeup_type(unsigned short gpio
, unsigned char type
)
453 port_setup(gpio
, GPIO_USAGE
);
454 set_gpio_dir(gpio
, 0);
455 set_gpio_inen(gpio
, 1);
457 if (type
& (PM_WAKE_RISING
| PM_WAKE_FALLING
))
458 set_gpio_edge(gpio
, 1);
460 set_gpio_edge(gpio
, 0);
462 if ((type
& (PM_WAKE_BOTH_EDGES
)) == (PM_WAKE_BOTH_EDGES
))
463 set_gpio_both(gpio
, 1);
465 set_gpio_both(gpio
, 0);
467 if ((type
& (PM_WAKE_FALLING
| PM_WAKE_LOW
)))
468 set_gpio_polar(gpio
, 1);
470 set_gpio_polar(gpio
, 0);
477 u32
gpio_pm_setup(void)
480 u16 bank
, mask
, i
, gpio
;
482 for (i
= 0; i
< MAX_BLACKFIN_GPIOS
; i
+=GPIO_BANKSIZE
) {
483 mask
= wakeup_map
[gpio_bank(i
)];
486 gpio_bank_saved
[bank
].maskb
= gpio_bankb
[bank
]->maskb
;
487 gpio_bankb
[bank
]->maskb
= 0;
491 gpio_bank_saved
[bank
].fer
= *port_fer
[bank
];
493 gpio_bank_saved
[bank
].inen
= gpio_bankb
[bank
]->inen
;
494 gpio_bank_saved
[bank
].polar
= gpio_bankb
[bank
]->polar
;
495 gpio_bank_saved
[bank
].dir
= gpio_bankb
[bank
]->dir
;
496 gpio_bank_saved
[bank
].edge
= gpio_bankb
[bank
]->edge
;
497 gpio_bank_saved
[bank
].both
= gpio_bankb
[bank
]->both
;
503 bfin_gpio_wakeup_type(gpio
, wakeup_flags_map
[gpio
]);
504 set_gpio_data(gpio
, 0); /*Clear*/
510 sic_iwr
|= 1 << (sic_iwr_irqs
[bank
] - (IRQ_CORETMR
+ 1));
511 gpio_bankb
[bank
]->maskb_set
= wakeup_map
[gpio_bank(i
)];
518 return IWR_ENABLE_ALL
;
522 void gpio_pm_restore(void)
526 for (i
= 0; i
< MAX_BLACKFIN_GPIOS
; i
+=GPIO_BANKSIZE
) {
527 mask
= wakeup_map
[gpio_bank(i
)];
532 *port_fer
[bank
] = gpio_bank_saved
[bank
].fer
;
534 gpio_bankb
[bank
]->inen
= gpio_bank_saved
[bank
].inen
;
535 gpio_bankb
[bank
]->dir
= gpio_bank_saved
[bank
].dir
;
536 gpio_bankb
[bank
]->polar
= gpio_bank_saved
[bank
].polar
;
537 gpio_bankb
[bank
]->edge
= gpio_bank_saved
[bank
].edge
;
538 gpio_bankb
[bank
]->both
= gpio_bank_saved
[bank
].both
;
541 gpio_bankb
[bank
]->maskb
= gpio_bank_saved
[bank
].maskb
;
547 /***********************************************************
549 * FUNCTIONS: Blackfin GPIO Driver
552 * gpio - GPIO Number between 0 and MAX_BLACKFIN_GPIOS
555 * DESCRIPTION: Blackfin GPIO Driver API
558 *************************************************************
559 * MODIFICATION HISTORY :
560 **************************************************************/
562 int gpio_request(unsigned short gpio
, const char *label
)
566 if (check_gpio(gpio
) < 0)
569 local_irq_save(flags
);
571 if (unlikely(reserved_map
[gpio_bank(gpio
)] & gpio_bit(gpio
))) {
572 printk(KERN_ERR
"bfin-gpio: GPIO %d is already reserved!\n", gpio
);
574 local_irq_restore(flags
);
577 reserved_map
[gpio_bank(gpio
)] |= gpio_bit(gpio
);
579 local_irq_restore(flags
);
581 port_setup(gpio
, GPIO_USAGE
);
585 EXPORT_SYMBOL(gpio_request
);
588 void gpio_free(unsigned short gpio
)
592 if (check_gpio(gpio
) < 0)
595 local_irq_save(flags
);
597 if (unlikely(!(reserved_map
[gpio_bank(gpio
)] & gpio_bit(gpio
)))) {
598 printk(KERN_ERR
"bfin-gpio: GPIO %d wasn't reserved!\n", gpio
);
600 local_irq_restore(flags
);
606 reserved_map
[gpio_bank(gpio
)] &= ~gpio_bit(gpio
);
608 local_irq_restore(flags
);
610 EXPORT_SYMBOL(gpio_free
);
613 void gpio_direction_input(unsigned short gpio
)
617 BUG_ON(!(reserved_map
[gpio_bank(gpio
)] & gpio_bit(gpio
)));
619 local_irq_save(flags
);
620 gpio_bankb
[gpio_bank(gpio
)]->dir
&= ~gpio_bit(gpio
);
621 gpio_bankb
[gpio_bank(gpio
)]->inen
|= gpio_bit(gpio
);
622 local_irq_restore(flags
);
624 EXPORT_SYMBOL(gpio_direction_input
);
626 void gpio_direction_output(unsigned short gpio
)
630 BUG_ON(!(reserved_map
[gpio_bank(gpio
)] & gpio_bit(gpio
)));
632 local_irq_save(flags
);
633 gpio_bankb
[gpio_bank(gpio
)]->inen
&= ~gpio_bit(gpio
);
634 gpio_bankb
[gpio_bank(gpio
)]->dir
|= gpio_bit(gpio
);
635 local_irq_restore(flags
);
637 EXPORT_SYMBOL(gpio_direction_output
);