blob: 17cc7010cd04388540ce9eeff720dbc2bcc286fe [file] [log] [blame]
Lennert Buytenhek72edd842006-09-18 23:23:07 +01001/*
2 * arch/arm/plat-iop/gpio.c
3 * GPIO handling for Intel IOP3xx processors.
4 *
5 * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or (at
10 * your option) any later version.
11 */
12
13#include <linux/device.h>
Arnaud Patard63f385c2008-07-08 23:07:48 +010014#include <linux/init.h>
15#include <linux/types.h>
16#include <linux/errno.h>
17#include <linux/gpio.h>
Paul Gortmakerdc280942011-07-31 16:17:29 -040018#include <linux/export.h>
Linus Walleijf6ffa5e2013-09-09 15:00:40 +020019
20#define IOP3XX_N_GPIOS 8
Lennert Buytenhek72edd842006-09-18 23:23:07 +010021
Linus Walleij51a97d82013-09-09 16:07:42 +020022static void gpio_line_config(int line, int direction)
Lennert Buytenhek72edd842006-09-18 23:23:07 +010023{
24 unsigned long flags;
25
26 local_irq_save(flags);
27 if (direction == GPIO_IN) {
28 *IOP3XX_GPOE |= 1 << line;
29 } else if (direction == GPIO_OUT) {
30 *IOP3XX_GPOE &= ~(1 << line);
31 }
32 local_irq_restore(flags);
33}
Lennert Buytenhek72edd842006-09-18 23:23:07 +010034
Linus Walleij51a97d82013-09-09 16:07:42 +020035static int gpio_line_get(int line)
Lennert Buytenhek72edd842006-09-18 23:23:07 +010036{
37 return !!(*IOP3XX_GPID & (1 << line));
38}
Lennert Buytenhek72edd842006-09-18 23:23:07 +010039
Linus Walleij51a97d82013-09-09 16:07:42 +020040static void gpio_line_set(int line, int value)
Lennert Buytenhek72edd842006-09-18 23:23:07 +010041{
42 unsigned long flags;
43
44 local_irq_save(flags);
45 if (value == GPIO_LOW) {
46 *IOP3XX_GPOD &= ~(1 << line);
47 } else if (value == GPIO_HIGH) {
48 *IOP3XX_GPOD |= 1 << line;
49 }
50 local_irq_restore(flags);
51}
Arnaud Patard63f385c2008-07-08 23:07:48 +010052
53static int iop3xx_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
54{
55 gpio_line_config(gpio, GPIO_IN);
56 return 0;
57}
58
59static int iop3xx_gpio_direction_output(struct gpio_chip *chip, unsigned gpio, int level)
60{
61 gpio_line_set(gpio, level);
62 gpio_line_config(gpio, GPIO_OUT);
63 return 0;
64}
65
66static int iop3xx_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
67{
68 return gpio_line_get(gpio);
69}
70
71static void iop3xx_gpio_set_value(struct gpio_chip *chip, unsigned gpio, int value)
72{
73 gpio_line_set(gpio, value);
74}
75
76static struct gpio_chip iop3xx_chip = {
77 .label = "iop3xx",
78 .direction_input = iop3xx_gpio_direction_input,
79 .get = iop3xx_gpio_get_value,
80 .direction_output = iop3xx_gpio_direction_output,
81 .set = iop3xx_gpio_set_value,
82 .base = 0,
83 .ngpio = IOP3XX_N_GPIOS,
84};
85
86static int __init iop3xx_gpio_setup(void)
87{
88 return gpiochip_add(&iop3xx_chip);
89}
90arch_initcall(iop3xx_gpio_setup);