Merge tag 'mlx5-fixes-2017-07-09' of https://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6/btrfs-unstable.git] / drivers / gpio / gpio-mb86s7x.c
blobffb73f688ae13062595b3f83a8730086e800ab03
1 /*
2 * linux/drivers/gpio/gpio-mb86s7x.c
4 * Copyright (C) 2015 Fujitsu Semiconductor Limited
5 * Copyright (C) 2015 Linaro Ltd.
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, version 2 of the License.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include <linux/io.h>
18 #include <linux/init.h>
19 #include <linux/clk.h>
20 #include <linux/err.h>
21 #include <linux/errno.h>
22 #include <linux/ioport.h>
23 #include <linux/of_device.h>
24 #include <linux/gpio/driver.h>
25 #include <linux/platform_device.h>
26 #include <linux/spinlock.h>
27 #include <linux/slab.h>
30 * Only first 8bits of a register correspond to each pin,
31 * so there are 4 registers for 32 pins.
33 #define PDR(x) (0x0 + x / 8 * 4)
34 #define DDR(x) (0x10 + x / 8 * 4)
35 #define PFR(x) (0x20 + x / 8 * 4)
37 #define OFFSET(x) BIT((x) % 8)
39 struct mb86s70_gpio_chip {
40 struct gpio_chip gc;
41 void __iomem *base;
42 struct clk *clk;
43 spinlock_t lock;
46 static int mb86s70_gpio_request(struct gpio_chip *gc, unsigned gpio)
48 struct mb86s70_gpio_chip *gchip = gpiochip_get_data(gc);
49 unsigned long flags;
50 u32 val;
52 spin_lock_irqsave(&gchip->lock, flags);
54 val = readl(gchip->base + PFR(gpio));
55 if (!(val & OFFSET(gpio))) {
56 spin_unlock_irqrestore(&gchip->lock, flags);
57 return -EINVAL;
60 val &= ~OFFSET(gpio);
61 writel(val, gchip->base + PFR(gpio));
63 spin_unlock_irqrestore(&gchip->lock, flags);
65 return 0;
68 static void mb86s70_gpio_free(struct gpio_chip *gc, unsigned gpio)
70 struct mb86s70_gpio_chip *gchip = gpiochip_get_data(gc);
71 unsigned long flags;
72 u32 val;
74 spin_lock_irqsave(&gchip->lock, flags);
76 val = readl(gchip->base + PFR(gpio));
77 val |= OFFSET(gpio);
78 writel(val, gchip->base + PFR(gpio));
80 spin_unlock_irqrestore(&gchip->lock, flags);
83 static int mb86s70_gpio_direction_input(struct gpio_chip *gc, unsigned gpio)
85 struct mb86s70_gpio_chip *gchip = gpiochip_get_data(gc);
86 unsigned long flags;
87 unsigned char val;
89 spin_lock_irqsave(&gchip->lock, flags);
91 val = readl(gchip->base + DDR(gpio));
92 val &= ~OFFSET(gpio);
93 writel(val, gchip->base + DDR(gpio));
95 spin_unlock_irqrestore(&gchip->lock, flags);
97 return 0;
100 static int mb86s70_gpio_direction_output(struct gpio_chip *gc,
101 unsigned gpio, int value)
103 struct mb86s70_gpio_chip *gchip = gpiochip_get_data(gc);
104 unsigned long flags;
105 unsigned char val;
107 spin_lock_irqsave(&gchip->lock, flags);
109 val = readl(gchip->base + PDR(gpio));
110 if (value)
111 val |= OFFSET(gpio);
112 else
113 val &= ~OFFSET(gpio);
114 writel(val, gchip->base + PDR(gpio));
116 val = readl(gchip->base + DDR(gpio));
117 val |= OFFSET(gpio);
118 writel(val, gchip->base + DDR(gpio));
120 spin_unlock_irqrestore(&gchip->lock, flags);
122 return 0;
125 static int mb86s70_gpio_get(struct gpio_chip *gc, unsigned gpio)
127 struct mb86s70_gpio_chip *gchip = gpiochip_get_data(gc);
129 return !!(readl(gchip->base + PDR(gpio)) & OFFSET(gpio));
132 static void mb86s70_gpio_set(struct gpio_chip *gc, unsigned gpio, int value)
134 struct mb86s70_gpio_chip *gchip = gpiochip_get_data(gc);
135 unsigned long flags;
136 unsigned char val;
138 spin_lock_irqsave(&gchip->lock, flags);
140 val = readl(gchip->base + PDR(gpio));
141 if (value)
142 val |= OFFSET(gpio);
143 else
144 val &= ~OFFSET(gpio);
145 writel(val, gchip->base + PDR(gpio));
147 spin_unlock_irqrestore(&gchip->lock, flags);
150 static int mb86s70_gpio_probe(struct platform_device *pdev)
152 struct mb86s70_gpio_chip *gchip;
153 struct resource *res;
154 int ret;
156 gchip = devm_kzalloc(&pdev->dev, sizeof(*gchip), GFP_KERNEL);
157 if (gchip == NULL)
158 return -ENOMEM;
160 platform_set_drvdata(pdev, gchip);
162 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
163 gchip->base = devm_ioremap_resource(&pdev->dev, res);
164 if (IS_ERR(gchip->base))
165 return PTR_ERR(gchip->base);
167 gchip->clk = devm_clk_get(&pdev->dev, NULL);
168 if (IS_ERR(gchip->clk))
169 return PTR_ERR(gchip->clk);
171 clk_prepare_enable(gchip->clk);
173 spin_lock_init(&gchip->lock);
175 gchip->gc.direction_output = mb86s70_gpio_direction_output;
176 gchip->gc.direction_input = mb86s70_gpio_direction_input;
177 gchip->gc.request = mb86s70_gpio_request;
178 gchip->gc.free = mb86s70_gpio_free;
179 gchip->gc.get = mb86s70_gpio_get;
180 gchip->gc.set = mb86s70_gpio_set;
181 gchip->gc.label = dev_name(&pdev->dev);
182 gchip->gc.ngpio = 32;
183 gchip->gc.owner = THIS_MODULE;
184 gchip->gc.parent = &pdev->dev;
185 gchip->gc.base = -1;
187 ret = gpiochip_add_data(&gchip->gc, gchip);
188 if (ret) {
189 dev_err(&pdev->dev, "couldn't register gpio driver\n");
190 clk_disable_unprepare(gchip->clk);
193 return ret;
196 static int mb86s70_gpio_remove(struct platform_device *pdev)
198 struct mb86s70_gpio_chip *gchip = platform_get_drvdata(pdev);
200 gpiochip_remove(&gchip->gc);
201 clk_disable_unprepare(gchip->clk);
203 return 0;
206 static const struct of_device_id mb86s70_gpio_dt_ids[] = {
207 { .compatible = "fujitsu,mb86s70-gpio" },
208 { /* sentinel */ }
211 static struct platform_driver mb86s70_gpio_driver = {
212 .driver = {
213 .name = "mb86s70-gpio",
214 .of_match_table = mb86s70_gpio_dt_ids,
216 .probe = mb86s70_gpio_probe,
217 .remove = mb86s70_gpio_remove,
220 builtin_platform_driver(mb86s70_gpio_driver);