blob: e03142895f61ae7d07421aafbb11fc5d4446d1da [file] [log] [blame]
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -05001/*
Scott Branden18f75c0a2017-06-02 11:52:21 -07002 * Copyright (C) 2014-2017 Broadcom
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -05003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation version 2.
7 *
8 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
9 * kind, whether express or implied; without even the implied warranty
10 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
Scott Branden18f75c0a2017-06-02 11:52:21 -070012 */
13
14/*
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -050015 * This file contains the Broadcom Northstar Plus (NSP) GPIO driver that
16 * supports the chipCommonA GPIO controller. Basic PINCONF such as bias,
17 * pull up/down, slew and drive strength are also supported in this driver.
18 *
19 * Pins from the chipCommonA GPIO can be individually muxed to GPIO function,
20 * through the interaction with the NSP IOMUX controller.
21 */
22
Linus Walleij27cc78e2015-12-10 19:02:26 +010023#include <linux/gpio/driver.h>
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -050024#include <linux/interrupt.h>
25#include <linux/io.h>
26#include <linux/ioport.h>
27#include <linux/kernel.h>
28#include <linux/of_address.h>
29#include <linux/of_device.h>
30#include <linux/of_irq.h>
31#include <linux/pinctrl/pinconf.h>
32#include <linux/pinctrl/pinconf-generic.h>
33#include <linux/pinctrl/pinctrl.h>
34#include <linux/slab.h>
35
36#include "../pinctrl-utils.h"
37
38#define NSP_CHIP_A_INT_STATUS 0x00
39#define NSP_CHIP_A_INT_MASK 0x04
40#define NSP_GPIO_DATA_IN 0x40
41#define NSP_GPIO_DATA_OUT 0x44
42#define NSP_GPIO_OUT_EN 0x48
43#define NSP_GPIO_INT_POLARITY 0x50
44#define NSP_GPIO_INT_MASK 0x54
45#define NSP_GPIO_EVENT 0x58
46#define NSP_GPIO_EVENT_INT_MASK 0x5c
47#define NSP_GPIO_EVENT_INT_POLARITY 0x64
48#define NSP_CHIP_A_GPIO_INT_BIT 0x01
49
50/* I/O parameters offset for chipcommon A GPIO */
51#define NSP_GPIO_DRV_CTRL 0x00
52#define NSP_GPIO_HYSTERESIS_EN 0x10
53#define NSP_GPIO_SLEW_RATE_EN 0x14
54#define NSP_PULL_UP_EN 0x18
55#define NSP_PULL_DOWN_EN 0x1c
56#define GPIO_DRV_STRENGTH_BITS 0x03
57
58/*
59 * nsp GPIO core
60 *
61 * @dev: pointer to device
62 * @base: I/O register base for nsp GPIO controller
63 * @io_ctrl: I/O register base for PINCONF support outside the GPIO block
64 * @gc: GPIO chip
65 * @pctl: pointer to pinctrl_dev
66 * @pctldesc: pinctrl descriptor
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -050067 * @lock: lock to protect access to I/O registers
68 */
69struct nsp_gpio {
70 struct device *dev;
71 void __iomem *base;
72 void __iomem *io_ctrl;
Chris Packham8298d182019-11-04 13:18:18 +130073 struct irq_chip irqchip;
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -050074 struct gpio_chip gc;
75 struct pinctrl_dev *pctl;
76 struct pinctrl_desc pctldesc;
Julia Cartwrightcb96a662017-03-09 10:22:03 -060077 raw_spinlock_t lock;
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -050078};
79
80enum base_type {
81 REG,
82 IO_CTRL
83};
84
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -050085/*
86 * Mapping from PINCONF pins to GPIO pins is 1-to-1
87 */
88static inline unsigned nsp_pin_to_gpio(unsigned pin)
89{
90 return pin;
91}
92
93/*
94 * nsp_set_bit - set or clear one bit (corresponding to the GPIO pin) in a
95 * nsp GPIO register
96 *
97 * @nsp_gpio: nsp GPIO device
98 * @base_type: reg base to modify
99 * @reg: register offset
100 * @gpio: GPIO pin
101 * @set: set or clear
102 */
103static inline void nsp_set_bit(struct nsp_gpio *chip, enum base_type address,
104 unsigned int reg, unsigned gpio, bool set)
105{
106 u32 val;
107 void __iomem *base_address;
108
109 if (address == IO_CTRL)
110 base_address = chip->io_ctrl;
111 else
112 base_address = chip->base;
113
114 val = readl(base_address + reg);
115 if (set)
116 val |= BIT(gpio);
117 else
118 val &= ~BIT(gpio);
119
120 writel(val, base_address + reg);
121}
122
123/*
124 * nsp_get_bit - get one bit (corresponding to the GPIO pin) in a
125 * nsp GPIO register
126 */
127static inline bool nsp_get_bit(struct nsp_gpio *chip, enum base_type address,
128 unsigned int reg, unsigned gpio)
129{
130 if (address == IO_CTRL)
131 return !!(readl(chip->io_ctrl + reg) & BIT(gpio));
132 else
133 return !!(readl(chip->base + reg) & BIT(gpio));
134}
135
136static irqreturn_t nsp_gpio_irq_handler(int irq, void *data)
137{
Chris Packham8298d182019-11-04 13:18:18 +1300138 struct gpio_chip *gc = (struct gpio_chip *)data;
139 struct nsp_gpio *chip = gpiochip_get_data(gc);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500140 int bit;
141 unsigned long int_bits = 0;
142 u32 int_status;
143
144 /* go through the entire GPIOs and handle all interrupts */
145 int_status = readl(chip->base + NSP_CHIP_A_INT_STATUS);
146 if (int_status & NSP_CHIP_A_GPIO_INT_BIT) {
147 unsigned int event, level;
148
149 /* Get level and edge interrupts */
150 event = readl(chip->base + NSP_GPIO_EVENT_INT_MASK) &
151 readl(chip->base + NSP_GPIO_EVENT);
152 level = readl(chip->base + NSP_GPIO_DATA_IN) ^
153 readl(chip->base + NSP_GPIO_INT_POLARITY);
154 level &= readl(chip->base + NSP_GPIO_INT_MASK);
155 int_bits = level | event;
156
Mark Tomlinson94c70242020-07-03 13:18:30 +1200157 for_each_set_bit(bit, &int_bits, gc->ngpio)
Marc Zyngiera9cb09b2021-05-04 17:42:18 +0100158 generic_handle_domain_irq(gc->irq.domain, bit);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500159 }
160
161 return int_bits ? IRQ_HANDLED : IRQ_NONE;
162}
163
164static void nsp_gpio_irq_ack(struct irq_data *d)
165{
Chris Packham8298d182019-11-04 13:18:18 +1300166 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
167 struct nsp_gpio *chip = gpiochip_get_data(gc);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500168 unsigned gpio = d->hwirq;
169 u32 val = BIT(gpio);
170 u32 trigger_type;
171
172 trigger_type = irq_get_trigger_type(d->irq);
173 if (trigger_type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
Mark Tomlinson94c70242020-07-03 13:18:30 +1200174 writel(val, chip->base + NSP_GPIO_EVENT);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500175}
176
177/*
178 * nsp_gpio_irq_set_mask - mask/unmask a GPIO interrupt
179 *
180 * @d: IRQ chip data
181 * @unmask: mask/unmask GPIO interrupt
182 */
183static void nsp_gpio_irq_set_mask(struct irq_data *d, bool unmask)
184{
Chris Packham8298d182019-11-04 13:18:18 +1300185 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
186 struct nsp_gpio *chip = gpiochip_get_data(gc);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500187 unsigned gpio = d->hwirq;
188 u32 trigger_type;
189
190 trigger_type = irq_get_trigger_type(d->irq);
191 if (trigger_type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
192 nsp_set_bit(chip, REG, NSP_GPIO_EVENT_INT_MASK, gpio, unmask);
193 else
194 nsp_set_bit(chip, REG, NSP_GPIO_INT_MASK, gpio, unmask);
195}
196
197static void nsp_gpio_irq_mask(struct irq_data *d)
198{
Chris Packham8298d182019-11-04 13:18:18 +1300199 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
200 struct nsp_gpio *chip = gpiochip_get_data(gc);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500201 unsigned long flags;
202
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600203 raw_spin_lock_irqsave(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500204 nsp_gpio_irq_set_mask(d, false);
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600205 raw_spin_unlock_irqrestore(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500206}
207
208static void nsp_gpio_irq_unmask(struct irq_data *d)
209{
Chris Packham8298d182019-11-04 13:18:18 +1300210 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
211 struct nsp_gpio *chip = gpiochip_get_data(gc);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500212 unsigned long flags;
213
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600214 raw_spin_lock_irqsave(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500215 nsp_gpio_irq_set_mask(d, true);
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600216 raw_spin_unlock_irqrestore(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500217}
218
219static int nsp_gpio_irq_set_type(struct irq_data *d, unsigned int type)
220{
Chris Packham8298d182019-11-04 13:18:18 +1300221 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
222 struct nsp_gpio *chip = gpiochip_get_data(gc);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500223 unsigned gpio = d->hwirq;
224 bool level_low;
225 bool falling;
226 unsigned long flags;
227
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600228 raw_spin_lock_irqsave(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500229 falling = nsp_get_bit(chip, REG, NSP_GPIO_EVENT_INT_POLARITY, gpio);
230 level_low = nsp_get_bit(chip, REG, NSP_GPIO_INT_POLARITY, gpio);
231
232 switch (type & IRQ_TYPE_SENSE_MASK) {
233 case IRQ_TYPE_EDGE_RISING:
234 falling = false;
235 break;
236
237 case IRQ_TYPE_EDGE_FALLING:
238 falling = true;
239 break;
240
241 case IRQ_TYPE_LEVEL_HIGH:
242 level_low = false;
243 break;
244
245 case IRQ_TYPE_LEVEL_LOW:
246 level_low = true;
247 break;
248
249 default:
250 dev_err(chip->dev, "invalid GPIO IRQ type 0x%x\n",
251 type);
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600252 raw_spin_unlock_irqrestore(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500253 return -EINVAL;
254 }
255
256 nsp_set_bit(chip, REG, NSP_GPIO_EVENT_INT_POLARITY, gpio, falling);
257 nsp_set_bit(chip, REG, NSP_GPIO_INT_POLARITY, gpio, level_low);
Mark Tomlinson94c70242020-07-03 13:18:30 +1200258
259 if (type & IRQ_TYPE_EDGE_BOTH)
260 irq_set_handler_locked(d, handle_edge_irq);
261 else
262 irq_set_handler_locked(d, handle_level_irq);
263
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600264 raw_spin_unlock_irqrestore(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500265
266 dev_dbg(chip->dev, "gpio:%u level_low:%s falling:%s\n", gpio,
267 level_low ? "true" : "false", falling ? "true" : "false");
268 return 0;
269}
270
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500271static int nsp_gpio_direction_input(struct gpio_chip *gc, unsigned gpio)
272{
Linus Walleij27cc78e2015-12-10 19:02:26 +0100273 struct nsp_gpio *chip = gpiochip_get_data(gc);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500274 unsigned long flags;
275
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600276 raw_spin_lock_irqsave(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500277 nsp_set_bit(chip, REG, NSP_GPIO_OUT_EN, gpio, false);
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600278 raw_spin_unlock_irqrestore(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500279
280 dev_dbg(chip->dev, "gpio:%u set input\n", gpio);
281 return 0;
282}
283
284static int nsp_gpio_direction_output(struct gpio_chip *gc, unsigned gpio,
285 int val)
286{
Linus Walleij27cc78e2015-12-10 19:02:26 +0100287 struct nsp_gpio *chip = gpiochip_get_data(gc);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500288 unsigned long flags;
289
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600290 raw_spin_lock_irqsave(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500291 nsp_set_bit(chip, REG, NSP_GPIO_OUT_EN, gpio, true);
292 nsp_set_bit(chip, REG, NSP_GPIO_DATA_OUT, gpio, !!(val));
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600293 raw_spin_unlock_irqrestore(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500294
295 dev_dbg(chip->dev, "gpio:%u set output, value:%d\n", gpio, val);
296 return 0;
297}
298
Chris Packham574dce82019-11-04 13:18:19 +1300299static int nsp_gpio_get_direction(struct gpio_chip *gc, unsigned gpio)
300{
301 struct nsp_gpio *chip = gpiochip_get_data(gc);
302 unsigned long flags;
303 int val;
304
305 raw_spin_lock_irqsave(&chip->lock, flags);
306 val = nsp_get_bit(chip, REG, NSP_GPIO_OUT_EN, gpio);
307 raw_spin_unlock_irqrestore(&chip->lock, flags);
308
309 return !val;
310}
311
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500312static void nsp_gpio_set(struct gpio_chip *gc, unsigned gpio, int val)
313{
Linus Walleij27cc78e2015-12-10 19:02:26 +0100314 struct nsp_gpio *chip = gpiochip_get_data(gc);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500315 unsigned long flags;
316
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600317 raw_spin_lock_irqsave(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500318 nsp_set_bit(chip, REG, NSP_GPIO_DATA_OUT, gpio, !!(val));
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600319 raw_spin_unlock_irqrestore(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500320
321 dev_dbg(chip->dev, "gpio:%u set, value:%d\n", gpio, val);
322}
323
324static int nsp_gpio_get(struct gpio_chip *gc, unsigned gpio)
325{
Linus Walleij27cc78e2015-12-10 19:02:26 +0100326 struct nsp_gpio *chip = gpiochip_get_data(gc);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500327
328 return !!(readl(chip->base + NSP_GPIO_DATA_IN) & BIT(gpio));
329}
330
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500331static int nsp_get_groups_count(struct pinctrl_dev *pctldev)
332{
333 return 1;
334}
335
336/*
337 * Only one group: "gpio_grp", since this local pinctrl device only performs
338 * GPIO specific PINCONF configurations
339 */
340static const char *nsp_get_group_name(struct pinctrl_dev *pctldev,
341 unsigned selector)
342{
343 return "gpio_grp";
344}
345
346static const struct pinctrl_ops nsp_pctrl_ops = {
347 .get_groups_count = nsp_get_groups_count,
348 .get_group_name = nsp_get_group_name,
349 .dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
Irina Tirdead32f7fd2016-03-31 14:44:42 +0300350 .dt_free_map = pinctrl_utils_free_map,
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500351};
352
Mika Westerberg58957d22017-01-23 15:34:32 +0300353static int nsp_gpio_set_slew(struct nsp_gpio *chip, unsigned gpio, u32 slew)
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500354{
355 if (slew)
356 nsp_set_bit(chip, IO_CTRL, NSP_GPIO_SLEW_RATE_EN, gpio, true);
357 else
358 nsp_set_bit(chip, IO_CTRL, NSP_GPIO_SLEW_RATE_EN, gpio, false);
359
360 return 0;
361}
362
363static int nsp_gpio_set_pull(struct nsp_gpio *chip, unsigned gpio,
364 bool pull_up, bool pull_down)
365{
366 unsigned long flags;
367
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600368 raw_spin_lock_irqsave(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500369 nsp_set_bit(chip, IO_CTRL, NSP_PULL_DOWN_EN, gpio, pull_down);
370 nsp_set_bit(chip, IO_CTRL, NSP_PULL_UP_EN, gpio, pull_up);
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600371 raw_spin_unlock_irqrestore(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500372
373 dev_dbg(chip->dev, "gpio:%u set pullup:%d pulldown: %d\n",
374 gpio, pull_up, pull_down);
375 return 0;
376}
377
378static void nsp_gpio_get_pull(struct nsp_gpio *chip, unsigned gpio,
379 bool *pull_up, bool *pull_down)
380{
381 unsigned long flags;
382
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600383 raw_spin_lock_irqsave(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500384 *pull_up = nsp_get_bit(chip, IO_CTRL, NSP_PULL_UP_EN, gpio);
385 *pull_down = nsp_get_bit(chip, IO_CTRL, NSP_PULL_DOWN_EN, gpio);
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600386 raw_spin_unlock_irqrestore(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500387}
388
389static int nsp_gpio_set_strength(struct nsp_gpio *chip, unsigned gpio,
Mika Westerberg58957d22017-01-23 15:34:32 +0300390 u32 strength)
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500391{
392 u32 offset, shift, i;
393 u32 val;
394 unsigned long flags;
395
396 /* make sure drive strength is supported */
397 if (strength < 2 || strength > 16 || (strength % 2))
398 return -ENOTSUPP;
399
400 shift = gpio;
401 offset = NSP_GPIO_DRV_CTRL;
402 dev_dbg(chip->dev, "gpio:%u set drive strength:%d mA\n", gpio,
403 strength);
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600404 raw_spin_lock_irqsave(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500405 strength = (strength / 2) - 1;
406 for (i = GPIO_DRV_STRENGTH_BITS; i > 0; i--) {
407 val = readl(chip->io_ctrl + offset);
408 val &= ~BIT(shift);
409 val |= ((strength >> (i-1)) & 0x1) << shift;
410 writel(val, chip->io_ctrl + offset);
411 offset += 4;
412 }
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600413 raw_spin_unlock_irqrestore(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500414
415 return 0;
416}
417
418static int nsp_gpio_get_strength(struct nsp_gpio *chip, unsigned gpio,
419 u16 *strength)
420{
Dan Carpenterce6c1cd2015-12-24 10:25:32 +0300421 unsigned int offset, shift;
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500422 u32 val;
423 unsigned long flags;
Dan Carpenterce6c1cd2015-12-24 10:25:32 +0300424 int i;
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500425
426 offset = NSP_GPIO_DRV_CTRL;
427 shift = gpio;
428
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600429 raw_spin_lock_irqsave(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500430 *strength = 0;
431 for (i = (GPIO_DRV_STRENGTH_BITS - 1); i >= 0; i--) {
432 val = readl(chip->io_ctrl + offset) & BIT(shift);
433 val >>= shift;
434 *strength += (val << i);
435 offset += 4;
436 }
437
438 /* convert to mA */
439 *strength = (*strength + 1) * 2;
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600440 raw_spin_unlock_irqrestore(&chip->lock, flags);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500441
442 return 0;
443}
444
Ben Dooksd5e4d7a2016-06-07 17:58:15 +0100445static int nsp_pin_config_group_get(struct pinctrl_dev *pctldev,
446 unsigned selector,
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500447 unsigned long *config)
448{
449 return 0;
450}
451
Ben Dooksd5e4d7a2016-06-07 17:58:15 +0100452static int nsp_pin_config_group_set(struct pinctrl_dev *pctldev,
453 unsigned selector,
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500454 unsigned long *configs, unsigned num_configs)
455{
456 return 0;
457}
458
459static int nsp_pin_config_get(struct pinctrl_dev *pctldev, unsigned pin,
460 unsigned long *config)
461{
462 struct nsp_gpio *chip = pinctrl_dev_get_drvdata(pctldev);
463 enum pin_config_param param = pinconf_to_config_param(*config);
464 unsigned int gpio;
465 u16 arg = 0;
466 bool pull_up, pull_down;
467 int ret;
468
469 gpio = nsp_pin_to_gpio(pin);
470 switch (param) {
471 case PIN_CONFIG_BIAS_DISABLE:
472 nsp_gpio_get_pull(chip, gpio, &pull_up, &pull_down);
473 if ((pull_up == false) && (pull_down == false))
474 return 0;
475 else
476 return -EINVAL;
477
478 case PIN_CONFIG_BIAS_PULL_UP:
479 nsp_gpio_get_pull(chip, gpio, &pull_up, &pull_down);
480 if (pull_up)
481 return 0;
482 else
483 return -EINVAL;
484
485 case PIN_CONFIG_BIAS_PULL_DOWN:
486 nsp_gpio_get_pull(chip, gpio, &pull_up, &pull_down);
487 if (pull_down)
488 return 0;
489 else
490 return -EINVAL;
491
492 case PIN_CONFIG_DRIVE_STRENGTH:
493 ret = nsp_gpio_get_strength(chip, gpio, &arg);
494 if (ret)
495 return ret;
496 *config = pinconf_to_config_packed(param, arg);
497 return 0;
498
499 default:
500 return -ENOTSUPP;
501 }
502}
503
504static int nsp_pin_config_set(struct pinctrl_dev *pctldev, unsigned pin,
505 unsigned long *configs, unsigned num_configs)
506{
507 struct nsp_gpio *chip = pinctrl_dev_get_drvdata(pctldev);
508 enum pin_config_param param;
Mika Westerberg58957d22017-01-23 15:34:32 +0300509 u32 arg;
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500510 unsigned int i, gpio;
511 int ret = -ENOTSUPP;
512
513 gpio = nsp_pin_to_gpio(pin);
514 for (i = 0; i < num_configs; i++) {
515 param = pinconf_to_config_param(configs[i]);
516 arg = pinconf_to_config_argument(configs[i]);
517
518 switch (param) {
519 case PIN_CONFIG_BIAS_DISABLE:
520 ret = nsp_gpio_set_pull(chip, gpio, false, false);
521 if (ret < 0)
522 goto out;
523 break;
524
525 case PIN_CONFIG_BIAS_PULL_UP:
526 ret = nsp_gpio_set_pull(chip, gpio, true, false);
527 if (ret < 0)
528 goto out;
529 break;
530
531 case PIN_CONFIG_BIAS_PULL_DOWN:
532 ret = nsp_gpio_set_pull(chip, gpio, false, true);
533 if (ret < 0)
534 goto out;
535 break;
536
537 case PIN_CONFIG_DRIVE_STRENGTH:
538 ret = nsp_gpio_set_strength(chip, gpio, arg);
539 if (ret < 0)
540 goto out;
541 break;
542
543 case PIN_CONFIG_SLEW_RATE:
544 ret = nsp_gpio_set_slew(chip, gpio, arg);
545 if (ret < 0)
546 goto out;
547 break;
548
549 default:
550 dev_err(chip->dev, "invalid configuration\n");
551 return -ENOTSUPP;
552 }
553 }
554
555out:
556 return ret;
557}
558
559static const struct pinconf_ops nsp_pconf_ops = {
560 .is_generic = true,
561 .pin_config_get = nsp_pin_config_get,
562 .pin_config_set = nsp_pin_config_set,
563 .pin_config_group_get = nsp_pin_config_group_get,
564 .pin_config_group_set = nsp_pin_config_group_set,
565};
566
567/*
568 * NSP GPIO controller supports some PINCONF related configurations such as
569 * pull up, pull down, slew and drive strength, when the pin is configured
570 * to GPIO.
571 *
572 * Here a local pinctrl device is created with simple 1-to-1 pin mapping to the
573 * local GPIO pins
574 */
575static int nsp_gpio_register_pinconf(struct nsp_gpio *chip)
576{
577 struct pinctrl_desc *pctldesc = &chip->pctldesc;
578 struct pinctrl_pin_desc *pins;
579 struct gpio_chip *gc = &chip->gc;
580 int i;
581
582 pins = devm_kcalloc(chip->dev, gc->ngpio, sizeof(*pins), GFP_KERNEL);
583 if (!pins)
584 return -ENOMEM;
585 for (i = 0; i < gc->ngpio; i++) {
586 pins[i].number = i;
587 pins[i].name = devm_kasprintf(chip->dev, GFP_KERNEL,
588 "gpio-%d", i);
589 if (!pins[i].name)
590 return -ENOMEM;
591 }
592 pctldesc->name = dev_name(chip->dev);
593 pctldesc->pctlops = &nsp_pctrl_ops;
594 pctldesc->pins = pins;
595 pctldesc->npins = gc->ngpio;
596 pctldesc->confops = &nsp_pconf_ops;
597
Laxman Dewangan315d1182016-02-24 14:44:07 +0530598 chip->pctl = devm_pinctrl_register(chip->dev, pctldesc, chip);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500599 if (IS_ERR(chip->pctl)) {
600 dev_err(chip->dev, "unable to register pinctrl device\n");
601 return PTR_ERR(chip->pctl);
602 }
603
604 return 0;
605}
606
607static const struct of_device_id nsp_gpio_of_match[] = {
608 {.compatible = "brcm,nsp-gpio-a",},
609 {}
610};
611
612static int nsp_gpio_probe(struct platform_device *pdev)
613{
614 struct device *dev = &pdev->dev;
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500615 struct nsp_gpio *chip;
616 struct gpio_chip *gc;
Chris Packham8298d182019-11-04 13:18:18 +1300617 u32 val;
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500618 int irq, ret;
619
620 if (of_property_read_u32(pdev->dev.of_node, "ngpios", &val)) {
621 dev_err(&pdev->dev, "Missing ngpios OF property\n");
622 return -ENODEV;
623 }
624
625 chip = devm_kzalloc(dev, sizeof(*chip), GFP_KERNEL);
626 if (!chip)
627 return -ENOMEM;
628
629 chip->dev = dev;
630 platform_set_drvdata(pdev, chip);
631
Chris Packham8298d182019-11-04 13:18:18 +1300632 chip->base = devm_platform_ioremap_resource(pdev, 0);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500633 if (IS_ERR(chip->base)) {
634 dev_err(dev, "unable to map I/O memory\n");
635 return PTR_ERR(chip->base);
636 }
637
Chris Packham8298d182019-11-04 13:18:18 +1300638 chip->io_ctrl = devm_platform_ioremap_resource(pdev, 1);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500639 if (IS_ERR(chip->io_ctrl)) {
640 dev_err(dev, "unable to map I/O memory\n");
641 return PTR_ERR(chip->io_ctrl);
642 }
643
Julia Cartwrightcb96a662017-03-09 10:22:03 -0600644 raw_spin_lock_init(&chip->lock);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500645 gc = &chip->gc;
646 gc->base = -1;
647 gc->can_sleep = false;
648 gc->ngpio = val;
649 gc->label = dev_name(dev);
Linus Walleij01821412015-12-10 18:50:51 +0100650 gc->parent = dev;
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500651 gc->of_node = dev->of_node;
Linus Walleij92ddf5f2017-09-22 11:06:00 +0200652 gc->request = gpiochip_generic_request;
653 gc->free = gpiochip_generic_free;
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500654 gc->direction_input = nsp_gpio_direction_input;
655 gc->direction_output = nsp_gpio_direction_output;
Chris Packham574dce82019-11-04 13:18:19 +1300656 gc->get_direction = nsp_gpio_get_direction;
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500657 gc->set = nsp_gpio_set;
658 gc->get = nsp_gpio_get;
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500659
660 /* optional GPIO interrupt support */
661 irq = platform_get_irq(pdev, 0);
662 if (irq > 0) {
Chris Packham8298d182019-11-04 13:18:18 +1300663 struct gpio_irq_chip *girq;
664 struct irq_chip *irqc;
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500665
Chris Packham8298d182019-11-04 13:18:18 +1300666 irqc = &chip->irqchip;
667 irqc->name = "gpio-a";
668 irqc->irq_ack = nsp_gpio_irq_ack;
669 irqc->irq_mask = nsp_gpio_irq_mask;
670 irqc->irq_unmask = nsp_gpio_irq_unmask;
671 irqc->irq_set_type = nsp_gpio_irq_set_type;
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500672
673 val = readl(chip->base + NSP_CHIP_A_INT_MASK);
674 val = val | NSP_CHIP_A_GPIO_INT_BIT;
675 writel(val, (chip->base + NSP_CHIP_A_INT_MASK));
Chris Packham8298d182019-11-04 13:18:18 +1300676
677 /* Install ISR for this GPIO controller. */
678 ret = devm_request_irq(dev, irq, nsp_gpio_irq_handler,
679 IRQF_SHARED, "gpio-a", &chip->gc);
680 if (ret) {
681 dev_err(&pdev->dev, "Unable to request IRQ%d: %d\n",
682 irq, ret);
683 return ret;
684 }
685
686 girq = &chip->gc.irq;
687 girq->chip = irqc;
688 /* This will let us handle the parent IRQ in the driver */
689 girq->parent_handler = NULL;
690 girq->num_parents = 0;
691 girq->parents = NULL;
692 girq->default_type = IRQ_TYPE_NONE;
Mark Tomlinson94c70242020-07-03 13:18:30 +1200693 girq->handler = handle_bad_irq;
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500694 }
695
Chris Packham8298d182019-11-04 13:18:18 +1300696 ret = devm_gpiochip_add_data(dev, gc, chip);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500697 if (ret < 0) {
698 dev_err(dev, "unable to add GPIO chip\n");
699 return ret;
700 }
701
702 ret = nsp_gpio_register_pinconf(chip);
703 if (ret) {
704 dev_err(dev, "unable to register pinconf\n");
Chris Packham8298d182019-11-04 13:18:18 +1300705 return ret;
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500706 }
707
708 return 0;
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500709}
710
711static struct platform_driver nsp_gpio_driver = {
712 .driver = {
713 .name = "nsp-gpio-a",
714 .of_match_table = nsp_gpio_of_match,
715 },
716 .probe = nsp_gpio_probe,
717};
718
719static int __init nsp_gpio_init(void)
720{
Ray Jui091c5312016-10-17 18:41:41 -0700721 return platform_driver_register(&nsp_gpio_driver);
Yendapally Reddy Dhananjaya Reddy8bfcbbb2015-12-04 12:11:42 -0500722}
723arch_initcall_sync(nsp_gpio_init);