2 * gpio-crystalcove.c - Intel Crystal Cove GPIO Driver
4 * Copyright (C) 2012, 2014 Intel Corporation. All rights reserved.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * Author: Yang, Bin <bin.yang@intel.com>
18 #include <linux/interrupt.h>
19 #include <linux/module.h>
20 #include <linux/platform_device.h>
21 #include <linux/gpio.h>
22 #include <linux/seq_file.h>
23 #include <linux/bitops.h>
24 #include <linux/regmap.h>
25 #include <linux/mfd/intel_soc_pmic.h>
27 #define CRYSTALCOVE_GPIO_NUM 16
28 #define CRYSTALCOVE_VGPIO_NUM 95
30 #define UPDATE_IRQ_TYPE BIT(0)
31 #define UPDATE_IRQ_MASK BIT(1)
35 #define MGPIO0IRQS0 0x19
36 #define MGPIO1IRQS0 0x1a
37 #define MGPIO0IRQSX 0x1b
38 #define MGPIO1IRQSX 0x1c
39 #define GPIO0P0CTLO 0x2b
40 #define GPIO0P0CTLI 0x33
41 #define GPIO1P0CTLO 0x3b
42 #define GPIO1P0CTLI 0x43
43 #define GPIOPANELCTL 0x52
45 #define CTLI_INTCNT_DIS (0)
46 #define CTLI_INTCNT_NE (1 << 1)
47 #define CTLI_INTCNT_PE (2 << 1)
48 #define CTLI_INTCNT_BE (3 << 1)
50 #define CTLO_DIR_IN (0)
51 #define CTLO_DIR_OUT (1 << 5)
53 #define CTLO_DRV_CMOS (0)
54 #define CTLO_DRV_OD (1 << 4)
56 #define CTLO_DRV_REN (1 << 3)
58 #define CTLO_RVAL_2KDW (0)
59 #define CTLO_RVAL_2KUP (1 << 1)
60 #define CTLO_RVAL_50KDW (2 << 1)
61 #define CTLO_RVAL_50KUP (3 << 1)
63 #define CTLO_INPUT_SET (CTLO_DRV_CMOS | CTLO_DRV_REN | CTLO_RVAL_2KUP)
64 #define CTLO_OUTPUT_SET (CTLO_DIR_OUT | CTLO_INPUT_SET)
72 * struct crystalcove_gpio - Crystal Cove GPIO controller
73 * @buslock: for bus lock/sync and unlock.
74 * @chip: the abstract gpio_chip structure.
75 * @regmap: the regmap from the parent device.
76 * @update: pending IRQ setting update, to be written to the chip upon unlock.
77 * @intcnt_value: the Interrupt Detect value to be written.
78 * @set_irq_mask: true if the IRQ mask needs to be set, false to clear.
80 struct crystalcove_gpio
{
81 struct mutex buslock
; /* irq_bus_lock */
82 struct gpio_chip chip
;
83 struct regmap
*regmap
;
89 static inline int to_reg(int gpio
, enum ctrl_register reg_type
)
96 if (reg_type
== CTRL_IN
) {
108 return reg
+ gpio
% 8;
111 static void crystalcove_update_irq_mask(struct crystalcove_gpio
*cg
,
114 u8 mirqs0
= gpio
< 8 ? MGPIO0IRQS0
: MGPIO1IRQS0
;
115 int mask
= BIT(gpio
% 8);
117 if (cg
->set_irq_mask
)
118 regmap_update_bits(cg
->regmap
, mirqs0
, mask
, mask
);
120 regmap_update_bits(cg
->regmap
, mirqs0
, mask
, 0);
123 static void crystalcove_update_irq_ctrl(struct crystalcove_gpio
*cg
, int gpio
)
125 int reg
= to_reg(gpio
, CTRL_IN
);
127 regmap_update_bits(cg
->regmap
, reg
, CTLI_INTCNT_BE
, cg
->intcnt_value
);
130 static int crystalcove_gpio_dir_in(struct gpio_chip
*chip
, unsigned gpio
)
132 struct crystalcove_gpio
*cg
= gpiochip_get_data(chip
);
134 if (gpio
> CRYSTALCOVE_VGPIO_NUM
)
137 return regmap_write(cg
->regmap
, to_reg(gpio
, CTRL_OUT
),
141 static int crystalcove_gpio_dir_out(struct gpio_chip
*chip
, unsigned gpio
,
144 struct crystalcove_gpio
*cg
= gpiochip_get_data(chip
);
146 if (gpio
> CRYSTALCOVE_VGPIO_NUM
)
149 return regmap_write(cg
->regmap
, to_reg(gpio
, CTRL_OUT
),
150 CTLO_OUTPUT_SET
| value
);
153 static int crystalcove_gpio_get(struct gpio_chip
*chip
, unsigned gpio
)
155 struct crystalcove_gpio
*cg
= gpiochip_get_data(chip
);
159 if (gpio
> CRYSTALCOVE_VGPIO_NUM
)
162 ret
= regmap_read(cg
->regmap
, to_reg(gpio
, CTRL_IN
), &val
);
169 static void crystalcove_gpio_set(struct gpio_chip
*chip
,
170 unsigned gpio
, int value
)
172 struct crystalcove_gpio
*cg
= gpiochip_get_data(chip
);
174 if (gpio
> CRYSTALCOVE_VGPIO_NUM
)
178 regmap_update_bits(cg
->regmap
, to_reg(gpio
, CTRL_OUT
), 1, 1);
180 regmap_update_bits(cg
->regmap
, to_reg(gpio
, CTRL_OUT
), 1, 0);
183 static int crystalcove_irq_type(struct irq_data
*data
, unsigned type
)
185 struct crystalcove_gpio
*cg
=
186 gpiochip_get_data(irq_data_get_irq_chip_data(data
));
190 cg
->intcnt_value
= CTLI_INTCNT_DIS
;
192 case IRQ_TYPE_EDGE_BOTH
:
193 cg
->intcnt_value
= CTLI_INTCNT_BE
;
195 case IRQ_TYPE_EDGE_RISING
:
196 cg
->intcnt_value
= CTLI_INTCNT_PE
;
198 case IRQ_TYPE_EDGE_FALLING
:
199 cg
->intcnt_value
= CTLI_INTCNT_NE
;
205 cg
->update
|= UPDATE_IRQ_TYPE
;
210 static void crystalcove_bus_lock(struct irq_data
*data
)
212 struct crystalcove_gpio
*cg
=
213 gpiochip_get_data(irq_data_get_irq_chip_data(data
));
215 mutex_lock(&cg
->buslock
);
218 static void crystalcove_bus_sync_unlock(struct irq_data
*data
)
220 struct crystalcove_gpio
*cg
=
221 gpiochip_get_data(irq_data_get_irq_chip_data(data
));
222 int gpio
= data
->hwirq
;
224 if (cg
->update
& UPDATE_IRQ_TYPE
)
225 crystalcove_update_irq_ctrl(cg
, gpio
);
226 if (cg
->update
& UPDATE_IRQ_MASK
)
227 crystalcove_update_irq_mask(cg
, gpio
);
230 mutex_unlock(&cg
->buslock
);
233 static void crystalcove_irq_unmask(struct irq_data
*data
)
235 struct crystalcove_gpio
*cg
=
236 gpiochip_get_data(irq_data_get_irq_chip_data(data
));
238 cg
->set_irq_mask
= false;
239 cg
->update
|= UPDATE_IRQ_MASK
;
242 static void crystalcove_irq_mask(struct irq_data
*data
)
244 struct crystalcove_gpio
*cg
=
245 gpiochip_get_data(irq_data_get_irq_chip_data(data
));
247 cg
->set_irq_mask
= true;
248 cg
->update
|= UPDATE_IRQ_MASK
;
251 static struct irq_chip crystalcove_irqchip
= {
252 .name
= "Crystal Cove",
253 .irq_mask
= crystalcove_irq_mask
,
254 .irq_unmask
= crystalcove_irq_unmask
,
255 .irq_set_type
= crystalcove_irq_type
,
256 .irq_bus_lock
= crystalcove_bus_lock
,
257 .irq_bus_sync_unlock
= crystalcove_bus_sync_unlock
,
258 .flags
= IRQCHIP_SKIP_SET_WAKE
,
261 static irqreturn_t
crystalcove_gpio_irq_handler(int irq
, void *data
)
263 struct crystalcove_gpio
*cg
= data
;
269 if (regmap_read(cg
->regmap
, GPIO0IRQ
, &p0
) ||
270 regmap_read(cg
->regmap
, GPIO1IRQ
, &p1
))
273 regmap_write(cg
->regmap
, GPIO0IRQ
, p0
);
274 regmap_write(cg
->regmap
, GPIO1IRQ
, p1
);
276 pending
= p0
| p1
<< 8;
278 for (gpio
= 0; gpio
< CRYSTALCOVE_GPIO_NUM
; gpio
++) {
279 if (pending
& BIT(gpio
)) {
280 virq
= irq_find_mapping(cg
->chip
.irqdomain
, gpio
);
281 handle_nested_irq(virq
);
288 static void crystalcove_gpio_dbg_show(struct seq_file
*s
,
289 struct gpio_chip
*chip
)
291 struct crystalcove_gpio
*cg
= gpiochip_get_data(chip
);
293 unsigned int ctlo
, ctli
, mirqs0
, mirqsx
, irq
;
295 for (gpio
= 0; gpio
< CRYSTALCOVE_GPIO_NUM
; gpio
++) {
296 regmap_read(cg
->regmap
, to_reg(gpio
, CTRL_OUT
), &ctlo
);
297 regmap_read(cg
->regmap
, to_reg(gpio
, CTRL_IN
), &ctli
);
298 regmap_read(cg
->regmap
, gpio
< 8 ? MGPIO0IRQS0
: MGPIO1IRQS0
,
300 regmap_read(cg
->regmap
, gpio
< 8 ? MGPIO0IRQSX
: MGPIO1IRQSX
,
302 regmap_read(cg
->regmap
, gpio
< 8 ? GPIO0IRQ
: GPIO1IRQ
,
306 seq_printf(s
, " gpio-%-2d %s %s %s %s ctlo=%2x,%s %s %s\n",
307 gpio
, ctlo
& CTLO_DIR_OUT
? "out" : "in ",
308 ctli
& 0x1 ? "hi" : "lo",
309 ctli
& CTLI_INTCNT_NE
? "fall" : " ",
310 ctli
& CTLI_INTCNT_PE
? "rise" : " ",
312 mirqs0
& BIT(offset
) ? "s0 mask " : "s0 unmask",
313 mirqsx
& BIT(offset
) ? "sx mask " : "sx unmask",
314 irq
& BIT(offset
) ? "pending" : " ");
318 static int crystalcove_gpio_probe(struct platform_device
*pdev
)
320 int irq
= platform_get_irq(pdev
, 0);
321 struct crystalcove_gpio
*cg
;
323 struct device
*dev
= pdev
->dev
.parent
;
324 struct intel_soc_pmic
*pmic
= dev_get_drvdata(dev
);
329 cg
= devm_kzalloc(&pdev
->dev
, sizeof(*cg
), GFP_KERNEL
);
333 platform_set_drvdata(pdev
, cg
);
335 mutex_init(&cg
->buslock
);
336 cg
->chip
.label
= KBUILD_MODNAME
;
337 cg
->chip
.direction_input
= crystalcove_gpio_dir_in
;
338 cg
->chip
.direction_output
= crystalcove_gpio_dir_out
;
339 cg
->chip
.get
= crystalcove_gpio_get
;
340 cg
->chip
.set
= crystalcove_gpio_set
;
342 cg
->chip
.ngpio
= CRYSTALCOVE_VGPIO_NUM
;
343 cg
->chip
.can_sleep
= true;
344 cg
->chip
.parent
= dev
;
345 cg
->chip
.dbg_show
= crystalcove_gpio_dbg_show
;
346 cg
->regmap
= pmic
->regmap
;
348 retval
= devm_gpiochip_add_data(&pdev
->dev
, &cg
->chip
, cg
);
350 dev_warn(&pdev
->dev
, "add gpio chip error: %d\n", retval
);
354 gpiochip_irqchip_add(&cg
->chip
, &crystalcove_irqchip
, 0,
355 handle_simple_irq
, IRQ_TYPE_NONE
);
357 retval
= request_threaded_irq(irq
, NULL
, crystalcove_gpio_irq_handler
,
358 IRQF_ONESHOT
, KBUILD_MODNAME
, cg
);
361 dev_warn(&pdev
->dev
, "request irq failed: %d\n", retval
);
368 static int crystalcove_gpio_remove(struct platform_device
*pdev
)
370 struct crystalcove_gpio
*cg
= platform_get_drvdata(pdev
);
371 int irq
= platform_get_irq(pdev
, 0);
378 static struct platform_driver crystalcove_gpio_driver
= {
379 .probe
= crystalcove_gpio_probe
,
380 .remove
= crystalcove_gpio_remove
,
382 .name
= "crystal_cove_gpio",
386 module_platform_driver(crystalcove_gpio_driver
);
388 MODULE_AUTHOR("Yang, Bin <bin.yang@intel.com>");
389 MODULE_DESCRIPTION("Intel Crystal Cove GPIO Driver");
390 MODULE_LICENSE("GPL v2");