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/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
{
47 static int mb86s70_gpio_request(struct gpio_chip
*gc
, unsigned gpio
)
49 struct mb86s70_gpio_chip
*gchip
= gpiochip_get_data(gc
);
53 spin_lock_irqsave(&gchip
->lock
, flags
);
55 val
= readl(gchip
->base
+ PFR(gpio
));
57 writel(val
, gchip
->base
+ PFR(gpio
));
59 spin_unlock_irqrestore(&gchip
->lock
, flags
);
64 static void mb86s70_gpio_free(struct gpio_chip
*gc
, unsigned gpio
)
66 struct mb86s70_gpio_chip
*gchip
= gpiochip_get_data(gc
);
70 spin_lock_irqsave(&gchip
->lock
, flags
);
72 val
= readl(gchip
->base
+ PFR(gpio
));
74 writel(val
, gchip
->base
+ PFR(gpio
));
76 spin_unlock_irqrestore(&gchip
->lock
, flags
);
79 static int mb86s70_gpio_direction_input(struct gpio_chip
*gc
, unsigned gpio
)
81 struct mb86s70_gpio_chip
*gchip
= gpiochip_get_data(gc
);
85 spin_lock_irqsave(&gchip
->lock
, flags
);
87 val
= readl(gchip
->base
+ DDR(gpio
));
89 writel(val
, gchip
->base
+ DDR(gpio
));
91 spin_unlock_irqrestore(&gchip
->lock
, flags
);
96 static int mb86s70_gpio_direction_output(struct gpio_chip
*gc
,
97 unsigned gpio
, int value
)
99 struct mb86s70_gpio_chip
*gchip
= gpiochip_get_data(gc
);
103 spin_lock_irqsave(&gchip
->lock
, flags
);
105 val
= readl(gchip
->base
+ PDR(gpio
));
109 val
&= ~OFFSET(gpio
);
110 writel(val
, gchip
->base
+ PDR(gpio
));
112 val
= readl(gchip
->base
+ DDR(gpio
));
114 writel(val
, gchip
->base
+ DDR(gpio
));
116 spin_unlock_irqrestore(&gchip
->lock
, flags
);
121 static int mb86s70_gpio_get(struct gpio_chip
*gc
, unsigned gpio
)
123 struct mb86s70_gpio_chip
*gchip
= gpiochip_get_data(gc
);
125 return !!(readl(gchip
->base
+ PDR(gpio
)) & OFFSET(gpio
));
128 static void mb86s70_gpio_set(struct gpio_chip
*gc
, unsigned gpio
, int value
)
130 struct mb86s70_gpio_chip
*gchip
= gpiochip_get_data(gc
);
134 spin_lock_irqsave(&gchip
->lock
, flags
);
136 val
= readl(gchip
->base
+ PDR(gpio
));
140 val
&= ~OFFSET(gpio
);
141 writel(val
, gchip
->base
+ PDR(gpio
));
143 spin_unlock_irqrestore(&gchip
->lock
, flags
);
146 static int mb86s70_gpio_probe(struct platform_device
*pdev
)
148 struct mb86s70_gpio_chip
*gchip
;
149 struct resource
*res
;
152 gchip
= devm_kzalloc(&pdev
->dev
, sizeof(*gchip
), GFP_KERNEL
);
156 platform_set_drvdata(pdev
, gchip
);
158 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
159 gchip
->base
= devm_ioremap_resource(&pdev
->dev
, res
);
160 if (IS_ERR(gchip
->base
))
161 return PTR_ERR(gchip
->base
);
163 gchip
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
164 if (IS_ERR(gchip
->clk
))
165 return PTR_ERR(gchip
->clk
);
167 ret
= clk_prepare_enable(gchip
->clk
);
171 spin_lock_init(&gchip
->lock
);
173 gchip
->gc
.direction_output
= mb86s70_gpio_direction_output
;
174 gchip
->gc
.direction_input
= mb86s70_gpio_direction_input
;
175 gchip
->gc
.request
= mb86s70_gpio_request
;
176 gchip
->gc
.free
= mb86s70_gpio_free
;
177 gchip
->gc
.get
= mb86s70_gpio_get
;
178 gchip
->gc
.set
= mb86s70_gpio_set
;
179 gchip
->gc
.label
= dev_name(&pdev
->dev
);
180 gchip
->gc
.ngpio
= 32;
181 gchip
->gc
.owner
= THIS_MODULE
;
182 gchip
->gc
.parent
= &pdev
->dev
;
185 ret
= gpiochip_add_data(&gchip
->gc
, gchip
);
187 dev_err(&pdev
->dev
, "couldn't register gpio driver\n");
188 clk_disable_unprepare(gchip
->clk
);
194 static int mb86s70_gpio_remove(struct platform_device
*pdev
)
196 struct mb86s70_gpio_chip
*gchip
= platform_get_drvdata(pdev
);
198 gpiochip_remove(&gchip
->gc
);
199 clk_disable_unprepare(gchip
->clk
);
204 static const struct of_device_id mb86s70_gpio_dt_ids
[] = {
205 { .compatible
= "fujitsu,mb86s70-gpio" },
208 MODULE_DEVICE_TABLE(of
, mb86s70_gpio_dt_ids
);
210 static struct platform_driver mb86s70_gpio_driver
= {
212 .name
= "mb86s70-gpio",
213 .of_match_table
= mb86s70_gpio_dt_ids
,
215 .probe
= mb86s70_gpio_probe
,
216 .remove
= mb86s70_gpio_remove
,
218 module_platform_driver(mb86s70_gpio_driver
);
220 MODULE_DESCRIPTION("MB86S7x GPIO Driver");
221 MODULE_ALIAS("platform:mb86s70-gpio");
222 MODULE_LICENSE("GPL");