Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 1 | /* |
| 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 Patard | 63f385c | 2008-07-08 23:07:48 +0100 | [diff] [blame] | 14 | #include <linux/init.h> |
| 15 | #include <linux/types.h> |
| 16 | #include <linux/errno.h> |
| 17 | #include <linux/gpio.h> |
Paul Gortmaker | dc28094 | 2011-07-31 16:17:29 -0400 | [diff] [blame] | 18 | #include <linux/export.h> |
Linus Walleij | 7b85b86 | 2013-09-09 16:39:51 +0200 | [diff] [blame] | 19 | #include <linux/platform_device.h> |
Linus Walleij | e3f94b3 | 2013-09-09 16:54:32 +0200 | [diff] [blame] | 20 | #include <linux/bitops.h> |
| 21 | #include <linux/io.h> |
Linus Walleij | f6ffa5e | 2013-09-09 15:00:40 +0200 | [diff] [blame] | 22 | |
| 23 | #define IOP3XX_N_GPIOS 8 |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 24 | |
Linus Walleij | 7b85b86 | 2013-09-09 16:39:51 +0200 | [diff] [blame] | 25 | #define GPIO_IN 0 |
| 26 | #define GPIO_OUT 1 |
| 27 | #define GPIO_LOW 0 |
| 28 | #define GPIO_HIGH 1 |
| 29 | |
| 30 | /* Memory base offset */ |
| 31 | static void __iomem *base; |
| 32 | |
| 33 | #define IOP3XX_GPIO_REG(reg) (base + (reg)) |
Linus Walleij | e3f94b3 | 2013-09-09 16:54:32 +0200 | [diff] [blame] | 34 | #define IOP3XX_GPOE IOP3XX_GPIO_REG(0x0000) |
| 35 | #define IOP3XX_GPID IOP3XX_GPIO_REG(0x0004) |
| 36 | #define IOP3XX_GPOD IOP3XX_GPIO_REG(0x0008) |
Linus Walleij | 7b85b86 | 2013-09-09 16:39:51 +0200 | [diff] [blame] | 37 | |
Linus Walleij | 51a97d8 | 2013-09-09 16:07:42 +0200 | [diff] [blame] | 38 | static void gpio_line_config(int line, int direction) |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 39 | { |
| 40 | unsigned long flags; |
Linus Walleij | e3f94b3 | 2013-09-09 16:54:32 +0200 | [diff] [blame] | 41 | u32 val; |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 42 | |
| 43 | local_irq_save(flags); |
Linus Walleij | e3f94b3 | 2013-09-09 16:54:32 +0200 | [diff] [blame] | 44 | val = readl(IOP3XX_GPOE); |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 45 | if (direction == GPIO_IN) { |
Linus Walleij | e3f94b3 | 2013-09-09 16:54:32 +0200 | [diff] [blame] | 46 | val |= BIT(line); |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 47 | } else if (direction == GPIO_OUT) { |
Linus Walleij | e3f94b3 | 2013-09-09 16:54:32 +0200 | [diff] [blame] | 48 | val &= ~BIT(line); |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 49 | } |
Linus Walleij | e3f94b3 | 2013-09-09 16:54:32 +0200 | [diff] [blame] | 50 | writel(val, IOP3XX_GPOE); |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 51 | local_irq_restore(flags); |
| 52 | } |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 53 | |
Linus Walleij | 51a97d8 | 2013-09-09 16:07:42 +0200 | [diff] [blame] | 54 | static int gpio_line_get(int line) |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 55 | { |
Linus Walleij | e3f94b3 | 2013-09-09 16:54:32 +0200 | [diff] [blame] | 56 | return !!(readl(IOP3XX_GPID) & BIT(line)); |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 57 | } |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 58 | |
Linus Walleij | 51a97d8 | 2013-09-09 16:07:42 +0200 | [diff] [blame] | 59 | static void gpio_line_set(int line, int value) |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 60 | { |
| 61 | unsigned long flags; |
Linus Walleij | e3f94b3 | 2013-09-09 16:54:32 +0200 | [diff] [blame] | 62 | u32 val; |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 63 | |
| 64 | local_irq_save(flags); |
Linus Walleij | e3f94b3 | 2013-09-09 16:54:32 +0200 | [diff] [blame] | 65 | val = readl(IOP3XX_GPOD); |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 66 | if (value == GPIO_LOW) { |
Linus Walleij | e3f94b3 | 2013-09-09 16:54:32 +0200 | [diff] [blame] | 67 | val &= ~BIT(line); |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 68 | } else if (value == GPIO_HIGH) { |
Linus Walleij | e3f94b3 | 2013-09-09 16:54:32 +0200 | [diff] [blame] | 69 | val |= BIT(line); |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 70 | } |
Linus Walleij | e3f94b3 | 2013-09-09 16:54:32 +0200 | [diff] [blame] | 71 | writel(val, IOP3XX_GPOD); |
Lennert Buytenhek | 72edd84 | 2006-09-18 23:23:07 +0100 | [diff] [blame] | 72 | local_irq_restore(flags); |
| 73 | } |
Arnaud Patard | 63f385c | 2008-07-08 23:07:48 +0100 | [diff] [blame] | 74 | |
| 75 | static int iop3xx_gpio_direction_input(struct gpio_chip *chip, unsigned gpio) |
| 76 | { |
| 77 | gpio_line_config(gpio, GPIO_IN); |
| 78 | return 0; |
| 79 | } |
| 80 | |
| 81 | static int iop3xx_gpio_direction_output(struct gpio_chip *chip, unsigned gpio, int level) |
| 82 | { |
| 83 | gpio_line_set(gpio, level); |
| 84 | gpio_line_config(gpio, GPIO_OUT); |
| 85 | return 0; |
| 86 | } |
| 87 | |
| 88 | static int iop3xx_gpio_get_value(struct gpio_chip *chip, unsigned gpio) |
| 89 | { |
| 90 | return gpio_line_get(gpio); |
| 91 | } |
| 92 | |
| 93 | static void iop3xx_gpio_set_value(struct gpio_chip *chip, unsigned gpio, int value) |
| 94 | { |
| 95 | gpio_line_set(gpio, value); |
| 96 | } |
| 97 | |
| 98 | static struct gpio_chip iop3xx_chip = { |
| 99 | .label = "iop3xx", |
| 100 | .direction_input = iop3xx_gpio_direction_input, |
| 101 | .get = iop3xx_gpio_get_value, |
| 102 | .direction_output = iop3xx_gpio_direction_output, |
| 103 | .set = iop3xx_gpio_set_value, |
| 104 | .base = 0, |
| 105 | .ngpio = IOP3XX_N_GPIOS, |
| 106 | }; |
| 107 | |
Linus Walleij | 7b85b86 | 2013-09-09 16:39:51 +0200 | [diff] [blame] | 108 | static int iop3xx_gpio_probe(struct platform_device *pdev) |
Arnaud Patard | 63f385c | 2008-07-08 23:07:48 +0100 | [diff] [blame] | 109 | { |
Linus Walleij | 7b85b86 | 2013-09-09 16:39:51 +0200 | [diff] [blame] | 110 | struct resource *res; |
| 111 | |
| 112 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Linus Walleij | e34ca9d | 2013-09-09 16:59:54 +0200 | [diff] [blame] | 113 | base = devm_ioremap_resource(&pdev->dev, res); |
Bartlomiej Zolnierkiewicz | 138d876 | 2014-03-18 10:58:33 +0100 | [diff] [blame] | 114 | if (IS_ERR(base)) |
| 115 | return PTR_ERR(base); |
Linus Walleij | 7b85b86 | 2013-09-09 16:39:51 +0200 | [diff] [blame] | 116 | |
Laxman Dewangan | 0c63875 | 2016-02-22 17:43:28 +0530 | [diff] [blame] | 117 | return devm_gpiochip_add_data(&pdev->dev, &iop3xx_chip, NULL); |
Arnaud Patard | 63f385c | 2008-07-08 23:07:48 +0100 | [diff] [blame] | 118 | } |
Linus Walleij | 7b85b86 | 2013-09-09 16:39:51 +0200 | [diff] [blame] | 119 | |
| 120 | static struct platform_driver iop3xx_gpio_driver = { |
| 121 | .driver = { |
| 122 | .name = "gpio-iop", |
Linus Walleij | 7b85b86 | 2013-09-09 16:39:51 +0200 | [diff] [blame] | 123 | }, |
| 124 | .probe = iop3xx_gpio_probe, |
| 125 | }; |
| 126 | |
| 127 | static int __init iop3xx_gpio_init(void) |
| 128 | { |
| 129 | return platform_driver_register(&iop3xx_gpio_driver); |
| 130 | } |
| 131 | arch_initcall(iop3xx_gpio_init); |