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.
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
{
46 static int mb86s70_gpio_request(struct gpio_chip
*gc
, unsigned gpio
)
48 struct mb86s70_gpio_chip
*gchip
= gpiochip_get_data(gc
);
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
);
61 writel(val
, gchip
->base
+ PFR(gpio
));
63 spin_unlock_irqrestore(&gchip
->lock
, flags
);
68 static void mb86s70_gpio_free(struct gpio_chip
*gc
, unsigned gpio
)
70 struct mb86s70_gpio_chip
*gchip
= gpiochip_get_data(gc
);
74 spin_lock_irqsave(&gchip
->lock
, flags
);
76 val
= readl(gchip
->base
+ PFR(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
);
89 spin_lock_irqsave(&gchip
->lock
, flags
);
91 val
= readl(gchip
->base
+ DDR(gpio
));
93 writel(val
, gchip
->base
+ DDR(gpio
));
95 spin_unlock_irqrestore(&gchip
->lock
, flags
);
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
);
107 spin_lock_irqsave(&gchip
->lock
, flags
);
109 val
= readl(gchip
->base
+ PDR(gpio
));
113 val
&= ~OFFSET(gpio
);
114 writel(val
, gchip
->base
+ PDR(gpio
));
116 val
= readl(gchip
->base
+ DDR(gpio
));
118 writel(val
, gchip
->base
+ DDR(gpio
));
120 spin_unlock_irqrestore(&gchip
->lock
, flags
);
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
);
138 spin_lock_irqsave(&gchip
->lock
, flags
);
140 val
= readl(gchip
->base
+ PDR(gpio
));
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
;
156 gchip
= devm_kzalloc(&pdev
->dev
, sizeof(*gchip
), GFP_KERNEL
);
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
;
187 ret
= gpiochip_add_data(&gchip
->gc
, gchip
);
189 dev_err(&pdev
->dev
, "couldn't register gpio driver\n");
190 clk_disable_unprepare(gchip
->clk
);
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
);
206 static const struct of_device_id mb86s70_gpio_dt_ids
[] = {
207 { .compatible
= "fujitsu,mb86s70-gpio" },
211 static struct platform_driver mb86s70_gpio_driver
= {
213 .name
= "mb86s70-gpio",
214 .of_match_table
= mb86s70_gpio_dt_ids
,
216 .probe
= mb86s70_gpio_probe
,
217 .remove
= mb86s70_gpio_remove
,
220 static int __init
mb86s70_gpio_init(void)
222 return platform_driver_register(&mb86s70_gpio_driver
);
224 device_initcall(mb86s70_gpio_init
);