bna: remove oper_state_cbfn from struct bna_rxf
[linux/fpc-iii.git] / drivers / gpio / gpio-mb86s7x.c
blobee93c0ab0a597d8d41a0d86c26d2b1ac34ac0e6b
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/module.h>
21 #include <linux/err.h>
22 #include <linux/errno.h>
23 #include <linux/ioport.h>
24 #include <linux/of_device.h>
25 #include <linux/gpio/driver.h>
26 #include <linux/platform_device.h>
27 #include <linux/spinlock.h>
28 #include <linux/slab.h>
31 * Only first 8bits of a register correspond to each pin,
32 * so there are 4 registers for 32 pins.
34 #define PDR(x) (0x0 + x / 8 * 4)
35 #define DDR(x) (0x10 + x / 8 * 4)
36 #define PFR(x) (0x20 + x / 8 * 4)
38 #define OFFSET(x) BIT((x) % 8)
40 struct mb86s70_gpio_chip {
41 struct gpio_chip gc;
42 void __iomem *base;
43 struct clk *clk;
44 spinlock_t lock;
47 static inline struct mb86s70_gpio_chip *chip_to_mb86s70(struct gpio_chip *gc)
49 return container_of(gc, struct mb86s70_gpio_chip, gc);
52 static int mb86s70_gpio_request(struct gpio_chip *gc, unsigned gpio)
54 struct mb86s70_gpio_chip *gchip = chip_to_mb86s70(gc);
55 unsigned long flags;
56 u32 val;
58 spin_lock_irqsave(&gchip->lock, flags);
60 val = readl(gchip->base + PFR(gpio));
61 if (!(val & OFFSET(gpio))) {
62 spin_unlock_irqrestore(&gchip->lock, flags);
63 return -EINVAL;
66 val &= ~OFFSET(gpio);
67 writel(val, gchip->base + PFR(gpio));
69 spin_unlock_irqrestore(&gchip->lock, flags);
71 return 0;
74 static void mb86s70_gpio_free(struct gpio_chip *gc, unsigned gpio)
76 struct mb86s70_gpio_chip *gchip = chip_to_mb86s70(gc);
77 unsigned long flags;
78 u32 val;
80 spin_lock_irqsave(&gchip->lock, flags);
82 val = readl(gchip->base + PFR(gpio));
83 val |= OFFSET(gpio);
84 writel(val, gchip->base + PFR(gpio));
86 spin_unlock_irqrestore(&gchip->lock, flags);
89 static int mb86s70_gpio_direction_input(struct gpio_chip *gc, unsigned gpio)
91 struct mb86s70_gpio_chip *gchip = chip_to_mb86s70(gc);
92 unsigned long flags;
93 unsigned char val;
95 spin_lock_irqsave(&gchip->lock, flags);
97 val = readl(gchip->base + DDR(gpio));
98 val &= ~OFFSET(gpio);
99 writel(val, gchip->base + DDR(gpio));
101 spin_unlock_irqrestore(&gchip->lock, flags);
103 return 0;
106 static int mb86s70_gpio_direction_output(struct gpio_chip *gc,
107 unsigned gpio, int value)
109 struct mb86s70_gpio_chip *gchip = chip_to_mb86s70(gc);
110 unsigned long flags;
111 unsigned char val;
113 spin_lock_irqsave(&gchip->lock, flags);
115 val = readl(gchip->base + PDR(gpio));
116 if (value)
117 val |= OFFSET(gpio);
118 else
119 val &= ~OFFSET(gpio);
120 writel(val, gchip->base + PDR(gpio));
122 val = readl(gchip->base + DDR(gpio));
123 val |= OFFSET(gpio);
124 writel(val, gchip->base + DDR(gpio));
126 spin_unlock_irqrestore(&gchip->lock, flags);
128 return 0;
131 static int mb86s70_gpio_get(struct gpio_chip *gc, unsigned gpio)
133 struct mb86s70_gpio_chip *gchip = chip_to_mb86s70(gc);
135 return !!(readl(gchip->base + PDR(gpio)) & OFFSET(gpio));
138 static void mb86s70_gpio_set(struct gpio_chip *gc, unsigned gpio, int value)
140 struct mb86s70_gpio_chip *gchip = chip_to_mb86s70(gc);
141 unsigned long flags;
142 unsigned char val;
144 spin_lock_irqsave(&gchip->lock, flags);
146 val = readl(gchip->base + PDR(gpio));
147 if (value)
148 val |= OFFSET(gpio);
149 else
150 val &= ~OFFSET(gpio);
151 writel(val, gchip->base + PDR(gpio));
153 spin_unlock_irqrestore(&gchip->lock, flags);
156 static int mb86s70_gpio_probe(struct platform_device *pdev)
158 struct mb86s70_gpio_chip *gchip;
159 struct resource *res;
160 int ret;
162 gchip = devm_kzalloc(&pdev->dev, sizeof(*gchip), GFP_KERNEL);
163 if (gchip == NULL)
164 return -ENOMEM;
166 platform_set_drvdata(pdev, gchip);
168 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
169 gchip->base = devm_ioremap_resource(&pdev->dev, res);
170 if (IS_ERR(gchip->base))
171 return PTR_ERR(gchip->base);
173 gchip->clk = devm_clk_get(&pdev->dev, NULL);
174 if (IS_ERR(gchip->clk))
175 return PTR_ERR(gchip->clk);
177 clk_prepare_enable(gchip->clk);
179 spin_lock_init(&gchip->lock);
181 gchip->gc.direction_output = mb86s70_gpio_direction_output;
182 gchip->gc.direction_input = mb86s70_gpio_direction_input;
183 gchip->gc.request = mb86s70_gpio_request;
184 gchip->gc.free = mb86s70_gpio_free;
185 gchip->gc.get = mb86s70_gpio_get;
186 gchip->gc.set = mb86s70_gpio_set;
187 gchip->gc.label = dev_name(&pdev->dev);
188 gchip->gc.ngpio = 32;
189 gchip->gc.owner = THIS_MODULE;
190 gchip->gc.dev = &pdev->dev;
191 gchip->gc.base = -1;
193 platform_set_drvdata(pdev, gchip);
195 ret = gpiochip_add(&gchip->gc);
196 if (ret) {
197 dev_err(&pdev->dev, "couldn't register gpio driver\n");
198 clk_disable_unprepare(gchip->clk);
201 return ret;
204 static int mb86s70_gpio_remove(struct platform_device *pdev)
206 struct mb86s70_gpio_chip *gchip = platform_get_drvdata(pdev);
208 gpiochip_remove(&gchip->gc);
209 clk_disable_unprepare(gchip->clk);
211 return 0;
214 static const struct of_device_id mb86s70_gpio_dt_ids[] = {
215 { .compatible = "fujitsu,mb86s70-gpio" },
216 { /* sentinel */ }
218 MODULE_DEVICE_TABLE(of, mb86s70_gpio_dt_ids);
220 static struct platform_driver mb86s70_gpio_driver = {
221 .driver = {
222 .name = "mb86s70-gpio",
223 .of_match_table = mb86s70_gpio_dt_ids,
225 .probe = mb86s70_gpio_probe,
226 .remove = mb86s70_gpio_remove,
229 static int __init mb86s70_gpio_init(void)
231 return platform_driver_register(&mb86s70_gpio_driver);
233 module_init(mb86s70_gpio_init);
235 MODULE_DESCRIPTION("MB86S7x GPIO Driver");
236 MODULE_ALIAS("platform:mb86s70-gpio");
237 MODULE_LICENSE("GPL");