2 * gpio-reg: single register individually fixed-direction GPIOs
4 * Copyright (C) 2016 Russell King
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
10 #include <linux/gpio/driver.h>
11 #include <linux/gpio/gpio-reg.h>
13 #include <linux/slab.h>
14 #include <linux/spinlock.h>
22 struct irq_domain *irqdomain;
26 #define to_gpio_reg(x) container_of(x, struct gpio_reg, gc)
28 static int gpio_reg_get_direction(struct gpio_chip *gc, unsigned offset)
30 struct gpio_reg *r = to_gpio_reg(gc);
32 return r->direction & BIT(offset) ? 1 : 0;
35 static int gpio_reg_direction_output(struct gpio_chip *gc, unsigned offset,
38 struct gpio_reg *r = to_gpio_reg(gc);
40 if (r->direction & BIT(offset))
43 gc->set(gc, offset, value);
47 static int gpio_reg_direction_input(struct gpio_chip *gc, unsigned offset)
49 struct gpio_reg *r = to_gpio_reg(gc);
51 return r->direction & BIT(offset) ? 0 : -ENOTSUPP;
54 static void gpio_reg_set(struct gpio_chip *gc, unsigned offset, int value)
56 struct gpio_reg *r = to_gpio_reg(gc);
58 u32 val, mask = BIT(offset);
60 spin_lock_irqsave(&r->lock, flags);
67 writel_relaxed(val, r->reg);
68 spin_unlock_irqrestore(&r->lock, flags);
71 static int gpio_reg_get(struct gpio_chip *gc, unsigned offset)
73 struct gpio_reg *r = to_gpio_reg(gc);
74 u32 val, mask = BIT(offset);
76 if (r->direction & mask) {
78 * double-read the value, some registers latch after the
81 readl_relaxed(r->reg);
82 val = readl_relaxed(r->reg);
86 return !!(val & mask);
89 static void gpio_reg_set_multiple(struct gpio_chip *gc, unsigned long *mask,
92 struct gpio_reg *r = to_gpio_reg(gc);
95 spin_lock_irqsave(&r->lock, flags);
96 r->out = (r->out & ~*mask) | (*bits & *mask);
97 writel_relaxed(r->out, r->reg);
98 spin_unlock_irqrestore(&r->lock, flags);
101 static int gpio_reg_to_irq(struct gpio_chip *gc, unsigned offset)
103 struct gpio_reg *r = to_gpio_reg(gc);
104 int irq = r->irqs[offset];
106 if (irq >= 0 && r->irqdomain)
107 irq = irq_find_mapping(r->irqdomain, irq);
113 * gpio_reg_init - add a fixed in/out register as gpio
114 * @dev: optional struct device associated with this register
115 * @base: start gpio number, or -1 to allocate
116 * @num: number of GPIOs, maximum 32
117 * @label: GPIO chip label
118 * @direction: bitmask of fixed direction, one per GPIO signal, 1 = in
119 * @def_out: initial GPIO output value
120 * @names: array of %num strings describing each GPIO signal or %NULL
121 * @irqdom: irq domain or %NULL
122 * @irqs: array of %num ints describing the interrupt mapping for each
123 * GPIO signal, or %NULL. If @irqdom is %NULL, then this
124 * describes the Linux interrupt number, otherwise it describes
125 * the hardware interrupt number in the specified irq domain.
127 * Add a single-register GPIO device containing up to 32 GPIO signals,
128 * where each GPIO has a fixed input or output configuration. Only
129 * input GPIOs are assumed to be readable from the register, and only
130 * then after a double-read. Output values are assumed not to be
133 struct gpio_chip *gpio_reg_init(struct device *dev, void __iomem *reg,
134 int base, int num, const char *label, u32 direction, u32 def_out,
135 const char *const *names, struct irq_domain *irqdom, const int *irqs)
141 r = devm_kzalloc(dev, sizeof(*r), GFP_KERNEL);
143 r = kzalloc(sizeof(*r), GFP_KERNEL);
146 return ERR_PTR(-ENOMEM);
148 spin_lock_init(&r->lock);
151 r->gc.get_direction = gpio_reg_get_direction;
152 r->gc.direction_input = gpio_reg_direction_input;
153 r->gc.direction_output = gpio_reg_direction_output;
154 r->gc.set = gpio_reg_set;
155 r->gc.get = gpio_reg_get;
156 r->gc.set_multiple = gpio_reg_set_multiple;
158 r->gc.to_irq = gpio_reg_to_irq;
162 r->direction = direction;
168 ret = devm_gpiochip_add_data(dev, &r->gc, r);
170 ret = gpiochip_add_data(&r->gc, r);
172 return ret ? ERR_PTR(ret) : &r->gc;
175 int gpio_reg_resume(struct gpio_chip *gc)
177 struct gpio_reg *r = to_gpio_reg(gc);
180 spin_lock_irqsave(&r->lock, flags);
181 writel_relaxed(r->out, r->reg);
182 spin_unlock_irqrestore(&r->lock, flags);