powerpc/mm: Drop the unnecessary region check
[linux-2.6-block.git] / drivers / gpio / gpio-aspeed.c
CommitLineData
361b7911
JS
1/*
2 * Copyright 2015 IBM Corp.
3 *
4 * Joel Stanley <joel@jms.id.au>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
5ae4cb94
AJ
12#include <asm/div64.h>
13#include <linux/clk.h>
14#include <linux/gpio/driver.h>
a7ca1382 15#include <linux/gpio/aspeed.h>
5ae4cb94 16#include <linux/hashtable.h>
361b7911
JS
17#include <linux/init.h>
18#include <linux/io.h>
5ae4cb94
AJ
19#include <linux/kernel.h>
20#include <linux/module.h>
361b7911 21#include <linux/pinctrl/consumer.h>
5ae4cb94
AJ
22#include <linux/platform_device.h>
23#include <linux/spinlock.h>
24#include <linux/string.h>
361b7911 25
a7ca1382
BH
26/*
27 * These two headers aren't meant to be used by GPIO drivers. We need
28 * them in order to access gpio_chip_hwgpio() which we need to implement
29 * the aspeed specific API which allows the coprocessor to request
30 * access to some GPIOs and to arbitrate between coprocessor and ARM.
31 */
32#include <linux/gpio/consumer.h>
33#include "gpiolib.h"
34
1736f75d
AJ
35struct aspeed_bank_props {
36 unsigned int bank;
37 u32 input;
38 u32 output;
39};
40
41struct aspeed_gpio_config {
42 unsigned int nr_gpios;
43 const struct aspeed_bank_props *props;
44};
45
5ae4cb94
AJ
46/*
47 * @offset_timer: Maps an offset to an @timer_users index, or zero if disabled
48 * @timer_users: Tracks the number of users for each timer
49 *
50 * The @timer_users has four elements but the first element is unused. This is
51 * to simplify accounting and indexing, as a zero value in @offset_timer
52 * represents disabled debouncing for the GPIO. Any other value for an element
53 * of @offset_timer is used as an index into @timer_users. This behaviour of
54 * the zero value aligns with the behaviour of zero built from the timer
55 * configuration registers (i.e. debouncing is disabled).
56 */
361b7911
JS
57struct aspeed_gpio {
58 struct gpio_chip chip;
59 spinlock_t lock;
60 void __iomem *base;
61 int irq;
1736f75d 62 const struct aspeed_gpio_config *config;
5ae4cb94
AJ
63
64 u8 *offset_timer;
65 unsigned int timer_users[4];
66 struct clk *clk;
ed5cab43
BH
67
68 u32 *dcache;
a7ca1382 69 u8 *cf_copro_bankmap;
361b7911
JS
70};
71
72struct aspeed_gpio_bank {
c67dda88
BH
73 uint16_t val_regs; /* +0: Rd: read input value, Wr: set write latch
74 * +4: Rd/Wr: Direction (0=in, 1=out)
75 */
76 uint16_t rdata_reg; /* Rd: read write latch, Wr: <none> */
361b7911 77 uint16_t irq_regs;
5ae4cb94 78 uint16_t debounce_regs;
1b43d269 79 uint16_t tolerance_regs;
0f1e03c2 80 uint16_t cmdsrc_regs;
7153f8ef 81 const char names[4][3];
361b7911
JS
82};
83
c67dda88
BH
84/*
85 * Note: The "value" register returns the input value sampled on the
86 * line even when the GPIO is configured as an output. Since
87 * that input goes through synchronizers, writing, then reading
88 * back may not return the written value right away.
89 *
90 * The "rdata" register returns the content of the write latch
91 * and thus can be used to read back what was last written
92 * reliably.
93 */
94
5ae4cb94
AJ
95static const int debounce_timers[4] = { 0x00, 0x50, 0x54, 0x58 };
96
a7ca1382
BH
97static const struct aspeed_gpio_copro_ops *copro_ops;
98static void *copro_data;
99
361b7911
JS
100static const struct aspeed_gpio_bank aspeed_gpio_banks[] = {
101 {
102 .val_regs = 0x0000,
c67dda88 103 .rdata_reg = 0x00c0,
361b7911 104 .irq_regs = 0x0008,
5ae4cb94 105 .debounce_regs = 0x0040,
1b43d269 106 .tolerance_regs = 0x001c,
0f1e03c2 107 .cmdsrc_regs = 0x0060,
7153f8ef 108 .names = { "A", "B", "C", "D" },
361b7911
JS
109 },
110 {
111 .val_regs = 0x0020,
c67dda88 112 .rdata_reg = 0x00c4,
361b7911 113 .irq_regs = 0x0028,
5ae4cb94 114 .debounce_regs = 0x0048,
1b43d269 115 .tolerance_regs = 0x003c,
0f1e03c2 116 .cmdsrc_regs = 0x0068,
7153f8ef 117 .names = { "E", "F", "G", "H" },
361b7911
JS
118 },
119 {
120 .val_regs = 0x0070,
c67dda88 121 .rdata_reg = 0x00c8,
361b7911 122 .irq_regs = 0x0098,
5ae4cb94 123 .debounce_regs = 0x00b0,
1b43d269 124 .tolerance_regs = 0x00ac,
0f1e03c2 125 .cmdsrc_regs = 0x0090,
7153f8ef 126 .names = { "I", "J", "K", "L" },
361b7911
JS
127 },
128 {
129 .val_regs = 0x0078,
c67dda88 130 .rdata_reg = 0x00cc,
361b7911 131 .irq_regs = 0x00e8,
5ae4cb94 132 .debounce_regs = 0x0100,
1b43d269 133 .tolerance_regs = 0x00fc,
0f1e03c2 134 .cmdsrc_regs = 0x00e0,
7153f8ef 135 .names = { "M", "N", "O", "P" },
361b7911
JS
136 },
137 {
138 .val_regs = 0x0080,
c67dda88 139 .rdata_reg = 0x00d0,
361b7911 140 .irq_regs = 0x0118,
5ae4cb94 141 .debounce_regs = 0x0130,
1b43d269 142 .tolerance_regs = 0x012c,
0f1e03c2 143 .cmdsrc_regs = 0x0110,
7153f8ef 144 .names = { "Q", "R", "S", "T" },
361b7911
JS
145 },
146 {
147 .val_regs = 0x0088,
c67dda88 148 .rdata_reg = 0x00d4,
361b7911 149 .irq_regs = 0x0148,
5ae4cb94 150 .debounce_regs = 0x0160,
1b43d269 151 .tolerance_regs = 0x015c,
0f1e03c2 152 .cmdsrc_regs = 0x0140,
7153f8ef 153 .names = { "U", "V", "W", "X" },
361b7911 154 },
1736f75d
AJ
155 {
156 .val_regs = 0x01E0,
c67dda88 157 .rdata_reg = 0x00d8,
1736f75d 158 .irq_regs = 0x0178,
5ae4cb94 159 .debounce_regs = 0x0190,
1b43d269 160 .tolerance_regs = 0x018c,
0f1e03c2 161 .cmdsrc_regs = 0x0170,
1736f75d
AJ
162 .names = { "Y", "Z", "AA", "AB" },
163 },
164 {
1b43d269 165 .val_regs = 0x01e8,
c67dda88 166 .rdata_reg = 0x00dc,
1b43d269 167 .irq_regs = 0x01a8,
5ae4cb94 168 .debounce_regs = 0x01c0,
1b43d269 169 .tolerance_regs = 0x01bc,
0f1e03c2 170 .cmdsrc_regs = 0x01a0,
1736f75d
AJ
171 .names = { "AC", "", "", "" },
172 },
361b7911
JS
173};
174
44ddf559
BH
175enum aspeed_gpio_reg {
176 reg_val,
c67dda88 177 reg_rdata,
44ddf559
BH
178 reg_dir,
179 reg_irq_enable,
180 reg_irq_type0,
181 reg_irq_type1,
182 reg_irq_type2,
183 reg_irq_status,
184 reg_debounce_sel1,
185 reg_debounce_sel2,
186 reg_tolerance,
0f1e03c2
BH
187 reg_cmdsrc0,
188 reg_cmdsrc1,
44ddf559 189};
361b7911 190
44ddf559
BH
191#define GPIO_VAL_VALUE 0x00
192#define GPIO_VAL_DIR 0x04
361b7911
JS
193
194#define GPIO_IRQ_ENABLE 0x00
195#define GPIO_IRQ_TYPE0 0x04
196#define GPIO_IRQ_TYPE1 0x08
197#define GPIO_IRQ_TYPE2 0x0c
198#define GPIO_IRQ_STATUS 0x10
199
5ae4cb94
AJ
200#define GPIO_DEBOUNCE_SEL1 0x00
201#define GPIO_DEBOUNCE_SEL2 0x04
202
0f1e03c2
BH
203#define GPIO_CMDSRC_0 0x00
204#define GPIO_CMDSRC_1 0x04
205#define GPIO_CMDSRC_ARM 0
206#define GPIO_CMDSRC_LPC 1
207#define GPIO_CMDSRC_COLDFIRE 2
208#define GPIO_CMDSRC_RESERVED 3
209
44ddf559
BH
210/* This will be resolved at compile time */
211static inline void __iomem *bank_reg(struct aspeed_gpio *gpio,
212 const struct aspeed_gpio_bank *bank,
213 const enum aspeed_gpio_reg reg)
214{
215 switch (reg) {
216 case reg_val:
217 return gpio->base + bank->val_regs + GPIO_VAL_VALUE;
c67dda88
BH
218 case reg_rdata:
219 return gpio->base + bank->rdata_reg;
44ddf559
BH
220 case reg_dir:
221 return gpio->base + bank->val_regs + GPIO_VAL_DIR;
222 case reg_irq_enable:
223 return gpio->base + bank->irq_regs + GPIO_IRQ_ENABLE;
224 case reg_irq_type0:
225 return gpio->base + bank->irq_regs + GPIO_IRQ_TYPE0;
226 case reg_irq_type1:
227 return gpio->base + bank->irq_regs + GPIO_IRQ_TYPE1;
228 case reg_irq_type2:
229 return gpio->base + bank->irq_regs + GPIO_IRQ_TYPE2;
230 case reg_irq_status:
231 return gpio->base + bank->irq_regs + GPIO_IRQ_STATUS;
232 case reg_debounce_sel1:
233 return gpio->base + bank->debounce_regs + GPIO_DEBOUNCE_SEL1;
234 case reg_debounce_sel2:
235 return gpio->base + bank->debounce_regs + GPIO_DEBOUNCE_SEL2;
236 case reg_tolerance:
237 return gpio->base + bank->tolerance_regs;
0f1e03c2
BH
238 case reg_cmdsrc0:
239 return gpio->base + bank->cmdsrc_regs + GPIO_CMDSRC_0;
240 case reg_cmdsrc1:
241 return gpio->base + bank->cmdsrc_regs + GPIO_CMDSRC_1;
44ddf559 242 }
c2967731 243 BUG();
44ddf559
BH
244}
245
246#define GPIO_BANK(x) ((x) >> 5)
247#define GPIO_OFFSET(x) ((x) & 0x1f)
248#define GPIO_BIT(x) BIT(GPIO_OFFSET(x))
249
5ae4cb94
AJ
250#define _GPIO_SET_DEBOUNCE(t, o, i) ((!!((t) & BIT(i))) << GPIO_OFFSET(o))
251#define GPIO_SET_DEBOUNCE1(t, o) _GPIO_SET_DEBOUNCE(t, o, 1)
252#define GPIO_SET_DEBOUNCE2(t, o) _GPIO_SET_DEBOUNCE(t, o, 0)
253
361b7911
JS
254static const struct aspeed_gpio_bank *to_bank(unsigned int offset)
255{
256 unsigned int bank = GPIO_BANK(offset);
257
fe13862c 258 WARN_ON(bank >= ARRAY_SIZE(aspeed_gpio_banks));
361b7911
JS
259 return &aspeed_gpio_banks[bank];
260}
261
1736f75d
AJ
262static inline bool is_bank_props_sentinel(const struct aspeed_bank_props *props)
263{
264 return !(props->input || props->output);
265}
266
267static inline const struct aspeed_bank_props *find_bank_props(
268 struct aspeed_gpio *gpio, unsigned int offset)
269{
270 const struct aspeed_bank_props *props = gpio->config->props;
271
272 while (!is_bank_props_sentinel(props)) {
273 if (props->bank == GPIO_BANK(offset))
274 return props;
275 props++;
276 }
277
278 return NULL;
279}
280
281static inline bool have_gpio(struct aspeed_gpio *gpio, unsigned int offset)
282{
283 const struct aspeed_bank_props *props = find_bank_props(gpio, offset);
284 const struct aspeed_gpio_bank *bank = to_bank(offset);
285 unsigned int group = GPIO_OFFSET(offset) / 8;
286
287 return bank->names[group][0] != '\0' &&
288 (!props || ((props->input | props->output) & GPIO_BIT(offset)));
289}
290
291static inline bool have_input(struct aspeed_gpio *gpio, unsigned int offset)
292{
293 const struct aspeed_bank_props *props = find_bank_props(gpio, offset);
294
295 return !props || (props->input & GPIO_BIT(offset));
296}
297
298#define have_irq(g, o) have_input((g), (o))
5ae4cb94 299#define have_debounce(g, o) have_input((g), (o))
1736f75d
AJ
300
301static inline bool have_output(struct aspeed_gpio *gpio, unsigned int offset)
302{
303 const struct aspeed_bank_props *props = find_bank_props(gpio, offset);
304
305 return !props || (props->output & GPIO_BIT(offset));
306}
307
0f1e03c2
BH
308static void aspeed_gpio_change_cmd_source(struct aspeed_gpio *gpio,
309 const struct aspeed_gpio_bank *bank,
310 int bindex, int cmdsrc)
311{
312 void __iomem *c0 = bank_reg(gpio, bank, reg_cmdsrc0);
313 void __iomem *c1 = bank_reg(gpio, bank, reg_cmdsrc1);
314 u32 bit, reg;
315
316 /*
317 * Each register controls 4 banks, so take the bottom 2
318 * bits of the bank index, and use them to select the
319 * right control bit (0, 8, 16 or 24).
320 */
321 bit = BIT((bindex & 3) << 3);
322
323 /* Source 1 first to avoid illegal 11 combination */
324 reg = ioread32(c1);
325 if (cmdsrc & 2)
326 reg |= bit;
327 else
328 reg &= ~bit;
329 iowrite32(reg, c1);
330
331 /* Then Source 0 */
332 reg = ioread32(c0);
333 if (cmdsrc & 1)
334 reg |= bit;
335 else
336 reg &= ~bit;
337 iowrite32(reg, c0);
338}
339
a7ca1382
BH
340static bool aspeed_gpio_copro_request(struct aspeed_gpio *gpio,
341 unsigned int offset)
342{
343 const struct aspeed_gpio_bank *bank = to_bank(offset);
344
345 if (!copro_ops || !gpio->cf_copro_bankmap)
346 return false;
347 if (!gpio->cf_copro_bankmap[offset >> 3])
348 return false;
349 if (!copro_ops->request_access)
350 return false;
351
352 /* Pause the coprocessor */
353 copro_ops->request_access(copro_data);
354
355 /* Change command source back to ARM */
356 aspeed_gpio_change_cmd_source(gpio, bank, offset >> 3, GPIO_CMDSRC_ARM);
357
358 /* Update cache */
359 gpio->dcache[GPIO_BANK(offset)] = ioread32(bank_reg(gpio, bank, reg_rdata));
360
361 return true;
362}
363
364static void aspeed_gpio_copro_release(struct aspeed_gpio *gpio,
365 unsigned int offset)
366{
367 const struct aspeed_gpio_bank *bank = to_bank(offset);
368
369 if (!copro_ops || !gpio->cf_copro_bankmap)
370 return;
371 if (!gpio->cf_copro_bankmap[offset >> 3])
372 return;
373 if (!copro_ops->release_access)
374 return;
375
376 /* Change command source back to ColdFire */
377 aspeed_gpio_change_cmd_source(gpio, bank, offset >> 3,
378 GPIO_CMDSRC_COLDFIRE);
379
380 /* Restart the coprocessor */
381 copro_ops->release_access(copro_data);
382}
383
361b7911
JS
384static int aspeed_gpio_get(struct gpio_chip *gc, unsigned int offset)
385{
386 struct aspeed_gpio *gpio = gpiochip_get_data(gc);
387 const struct aspeed_gpio_bank *bank = to_bank(offset);
388
44ddf559 389 return !!(ioread32(bank_reg(gpio, bank, reg_val)) & GPIO_BIT(offset));
361b7911
JS
390}
391
392static void __aspeed_gpio_set(struct gpio_chip *gc, unsigned int offset,
393 int val)
394{
395 struct aspeed_gpio *gpio = gpiochip_get_data(gc);
396 const struct aspeed_gpio_bank *bank = to_bank(offset);
397 void __iomem *addr;
398 u32 reg;
399
44ddf559 400 addr = bank_reg(gpio, bank, reg_val);
ed5cab43 401 reg = gpio->dcache[GPIO_BANK(offset)];
361b7911
JS
402
403 if (val)
404 reg |= GPIO_BIT(offset);
405 else
406 reg &= ~GPIO_BIT(offset);
ed5cab43 407 gpio->dcache[GPIO_BANK(offset)] = reg;
361b7911
JS
408
409 iowrite32(reg, addr);
410}
411
412static void aspeed_gpio_set(struct gpio_chip *gc, unsigned int offset,
413 int val)
414{
415 struct aspeed_gpio *gpio = gpiochip_get_data(gc);
416 unsigned long flags;
a7ca1382 417 bool copro;
361b7911
JS
418
419 spin_lock_irqsave(&gpio->lock, flags);
a7ca1382 420 copro = aspeed_gpio_copro_request(gpio, offset);
361b7911
JS
421
422 __aspeed_gpio_set(gc, offset, val);
423
a7ca1382
BH
424 if (copro)
425 aspeed_gpio_copro_release(gpio, offset);
361b7911
JS
426 spin_unlock_irqrestore(&gpio->lock, flags);
427}
428
429static int aspeed_gpio_dir_in(struct gpio_chip *gc, unsigned int offset)
430{
431 struct aspeed_gpio *gpio = gpiochip_get_data(gc);
432 const struct aspeed_gpio_bank *bank = to_bank(offset);
a7ca1382 433 void __iomem *addr = bank_reg(gpio, bank, reg_dir);
361b7911 434 unsigned long flags;
a7ca1382 435 bool copro;
361b7911
JS
436 u32 reg;
437
1736f75d
AJ
438 if (!have_input(gpio, offset))
439 return -ENOTSUPP;
440
361b7911
JS
441 spin_lock_irqsave(&gpio->lock, flags);
442
a7ca1382
BH
443 reg = ioread32(addr);
444 reg &= ~GPIO_BIT(offset);
445
446 copro = aspeed_gpio_copro_request(gpio, offset);
447 iowrite32(reg, addr);
448 if (copro)
449 aspeed_gpio_copro_release(gpio, offset);
361b7911
JS
450
451 spin_unlock_irqrestore(&gpio->lock, flags);
452
453 return 0;
454}
455
456static int aspeed_gpio_dir_out(struct gpio_chip *gc,
457 unsigned int offset, int val)
458{
459 struct aspeed_gpio *gpio = gpiochip_get_data(gc);
460 const struct aspeed_gpio_bank *bank = to_bank(offset);
a7ca1382 461 void __iomem *addr = bank_reg(gpio, bank, reg_dir);
361b7911 462 unsigned long flags;
a7ca1382 463 bool copro;
361b7911
JS
464 u32 reg;
465
1736f75d
AJ
466 if (!have_output(gpio, offset))
467 return -ENOTSUPP;
468
361b7911
JS
469 spin_lock_irqsave(&gpio->lock, flags);
470
a7ca1382
BH
471 reg = ioread32(addr);
472 reg |= GPIO_BIT(offset);
473
474 copro = aspeed_gpio_copro_request(gpio, offset);
af794928 475 __aspeed_gpio_set(gc, offset, val);
a7ca1382 476 iowrite32(reg, addr);
361b7911 477
a7ca1382
BH
478 if (copro)
479 aspeed_gpio_copro_release(gpio, offset);
361b7911
JS
480 spin_unlock_irqrestore(&gpio->lock, flags);
481
482 return 0;
483}
484
485static int aspeed_gpio_get_direction(struct gpio_chip *gc, unsigned int offset)
486{
487 struct aspeed_gpio *gpio = gpiochip_get_data(gc);
488 const struct aspeed_gpio_bank *bank = to_bank(offset);
489 unsigned long flags;
490 u32 val;
491
1736f75d 492 if (!have_input(gpio, offset))
619e96f4 493 return 0;
1736f75d
AJ
494
495 if (!have_output(gpio, offset))
619e96f4 496 return 1;
1736f75d 497
361b7911
JS
498 spin_lock_irqsave(&gpio->lock, flags);
499
44ddf559 500 val = ioread32(bank_reg(gpio, bank, reg_dir)) & GPIO_BIT(offset);
361b7911
JS
501
502 spin_unlock_irqrestore(&gpio->lock, flags);
503
504 return !val;
505
506}
507
508static inline int irqd_to_aspeed_gpio_data(struct irq_data *d,
a7ca1382
BH
509 struct aspeed_gpio **gpio,
510 const struct aspeed_gpio_bank **bank,
511 u32 *bit, int *offset)
361b7911 512{
1736f75d 513 struct aspeed_gpio *internal;
361b7911 514
a7ca1382 515 *offset = irqd_to_hwirq(d);
361b7911 516
1736f75d
AJ
517 internal = irq_data_get_irq_chip_data(d);
518
519 /* This might be a bit of a questionable place to check */
a7ca1382 520 if (!have_irq(internal, *offset))
1736f75d
AJ
521 return -ENOTSUPP;
522
523 *gpio = internal;
a7ca1382
BH
524 *bank = to_bank(*offset);
525 *bit = GPIO_BIT(*offset);
361b7911
JS
526
527 return 0;
528}
529
530static void aspeed_gpio_irq_ack(struct irq_data *d)
531{
532 const struct aspeed_gpio_bank *bank;
533 struct aspeed_gpio *gpio;
534 unsigned long flags;
535 void __iomem *status_addr;
a7ca1382
BH
536 int rc, offset;
537 bool copro;
361b7911 538 u32 bit;
361b7911 539
a7ca1382 540 rc = irqd_to_aspeed_gpio_data(d, &gpio, &bank, &bit, &offset);
361b7911
JS
541 if (rc)
542 return;
543
44ddf559 544 status_addr = bank_reg(gpio, bank, reg_irq_status);
361b7911
JS
545
546 spin_lock_irqsave(&gpio->lock, flags);
a7ca1382
BH
547 copro = aspeed_gpio_copro_request(gpio, offset);
548
361b7911 549 iowrite32(bit, status_addr);
a7ca1382
BH
550
551 if (copro)
552 aspeed_gpio_copro_release(gpio, offset);
361b7911
JS
553 spin_unlock_irqrestore(&gpio->lock, flags);
554}
555
556static void aspeed_gpio_irq_set_mask(struct irq_data *d, bool set)
557{
558 const struct aspeed_gpio_bank *bank;
559 struct aspeed_gpio *gpio;
560 unsigned long flags;
561 u32 reg, bit;
562 void __iomem *addr;
a7ca1382
BH
563 int rc, offset;
564 bool copro;
361b7911 565
a7ca1382 566 rc = irqd_to_aspeed_gpio_data(d, &gpio, &bank, &bit, &offset);
361b7911
JS
567 if (rc)
568 return;
569
44ddf559 570 addr = bank_reg(gpio, bank, reg_irq_enable);
361b7911
JS
571
572 spin_lock_irqsave(&gpio->lock, flags);
a7ca1382 573 copro = aspeed_gpio_copro_request(gpio, offset);
361b7911
JS
574
575 reg = ioread32(addr);
576 if (set)
577 reg |= bit;
578 else
f241632f 579 reg &= ~bit;
361b7911
JS
580 iowrite32(reg, addr);
581
a7ca1382
BH
582 if (copro)
583 aspeed_gpio_copro_release(gpio, offset);
361b7911
JS
584 spin_unlock_irqrestore(&gpio->lock, flags);
585}
586
587static void aspeed_gpio_irq_mask(struct irq_data *d)
588{
589 aspeed_gpio_irq_set_mask(d, false);
590}
591
592static void aspeed_gpio_irq_unmask(struct irq_data *d)
593{
594 aspeed_gpio_irq_set_mask(d, true);
595}
596
597static int aspeed_gpio_set_type(struct irq_data *d, unsigned int type)
598{
599 u32 type0 = 0;
600 u32 type1 = 0;
601 u32 type2 = 0;
602 u32 bit, reg;
603 const struct aspeed_gpio_bank *bank;
604 irq_flow_handler_t handler;
605 struct aspeed_gpio *gpio;
606 unsigned long flags;
607 void __iomem *addr;
a7ca1382
BH
608 int rc, offset;
609 bool copro;
361b7911 610
a7ca1382 611 rc = irqd_to_aspeed_gpio_data(d, &gpio, &bank, &bit, &offset);
361b7911
JS
612 if (rc)
613 return -EINVAL;
614
615 switch (type & IRQ_TYPE_SENSE_MASK) {
616 case IRQ_TYPE_EDGE_BOTH:
617 type2 |= bit;
e80df7b8 618 /* fall through */
361b7911
JS
619 case IRQ_TYPE_EDGE_RISING:
620 type0 |= bit;
e80df7b8 621 /* fall through */
361b7911
JS
622 case IRQ_TYPE_EDGE_FALLING:
623 handler = handle_edge_irq;
624 break;
625 case IRQ_TYPE_LEVEL_HIGH:
626 type0 |= bit;
e80df7b8 627 /* fall through */
361b7911
JS
628 case IRQ_TYPE_LEVEL_LOW:
629 type1 |= bit;
630 handler = handle_level_irq;
631 break;
632 default:
633 return -EINVAL;
634 }
635
636 spin_lock_irqsave(&gpio->lock, flags);
a7ca1382 637 copro = aspeed_gpio_copro_request(gpio, offset);
361b7911 638
44ddf559 639 addr = bank_reg(gpio, bank, reg_irq_type0);
361b7911
JS
640 reg = ioread32(addr);
641 reg = (reg & ~bit) | type0;
642 iowrite32(reg, addr);
643
44ddf559 644 addr = bank_reg(gpio, bank, reg_irq_type1);
361b7911
JS
645 reg = ioread32(addr);
646 reg = (reg & ~bit) | type1;
647 iowrite32(reg, addr);
648
44ddf559 649 addr = bank_reg(gpio, bank, reg_irq_type2);
361b7911
JS
650 reg = ioread32(addr);
651 reg = (reg & ~bit) | type2;
652 iowrite32(reg, addr);
653
a7ca1382
BH
654 if (copro)
655 aspeed_gpio_copro_release(gpio, offset);
361b7911
JS
656 spin_unlock_irqrestore(&gpio->lock, flags);
657
658 irq_set_handler_locked(d, handler);
659
660 return 0;
661}
662
663static void aspeed_gpio_irq_handler(struct irq_desc *desc)
664{
665 struct gpio_chip *gc = irq_desc_get_handler_data(desc);
666 struct irq_chip *ic = irq_desc_get_chip(desc);
667 struct aspeed_gpio *data = gpiochip_get_data(gc);
668 unsigned int i, p, girq;
669 unsigned long reg;
670
671 chained_irq_enter(ic, desc);
672
673 for (i = 0; i < ARRAY_SIZE(aspeed_gpio_banks); i++) {
674 const struct aspeed_gpio_bank *bank = &aspeed_gpio_banks[i];
675
44ddf559 676 reg = ioread32(bank_reg(data, bank, reg_irq_status));
361b7911
JS
677
678 for_each_set_bit(p, &reg, 32) {
f0fbe7bc 679 girq = irq_find_mapping(gc->irq.domain, i * 32 + p);
361b7911
JS
680 generic_handle_irq(girq);
681 }
682
683 }
684
685 chained_irq_exit(ic, desc);
686}
687
688static struct irq_chip aspeed_gpio_irqchip = {
689 .name = "aspeed-gpio",
690 .irq_ack = aspeed_gpio_irq_ack,
691 .irq_mask = aspeed_gpio_irq_mask,
692 .irq_unmask = aspeed_gpio_irq_unmask,
693 .irq_set_type = aspeed_gpio_set_type,
694};
695
1736f75d
AJ
696static void set_irq_valid_mask(struct aspeed_gpio *gpio)
697{
698 const struct aspeed_bank_props *props = gpio->config->props;
699
700 while (!is_bank_props_sentinel(props)) {
701 unsigned int offset;
702 const unsigned long int input = props->input;
703
704 /* Pretty crummy approach, but similar to GPIO core */
705 for_each_clear_bit(offset, &input, 32) {
706 unsigned int i = props->bank * 32 + offset;
707
708 if (i >= gpio->config->nr_gpios)
709 break;
710
dc7b0387 711 clear_bit(i, gpio->chip.irq.valid_mask);
1736f75d
AJ
712 }
713
714 props++;
715 }
716}
717
361b7911
JS
718static int aspeed_gpio_setup_irqs(struct aspeed_gpio *gpio,
719 struct platform_device *pdev)
720{
721 int rc;
722
723 rc = platform_get_irq(pdev, 0);
724 if (rc < 0)
725 return rc;
726
727 gpio->irq = rc;
728
1736f75d
AJ
729 set_irq_valid_mask(gpio);
730
361b7911
JS
731 rc = gpiochip_irqchip_add(&gpio->chip, &aspeed_gpio_irqchip,
732 0, handle_bad_irq, IRQ_TYPE_NONE);
733 if (rc) {
734 dev_info(&pdev->dev, "Could not add irqchip\n");
735 return rc;
736 }
737
738 gpiochip_set_chained_irqchip(&gpio->chip, &aspeed_gpio_irqchip,
739 gpio->irq, aspeed_gpio_irq_handler);
740
741 return 0;
742}
743
1b43d269
AJ
744static int aspeed_gpio_reset_tolerance(struct gpio_chip *chip,
745 unsigned int offset, bool enable)
746{
747 struct aspeed_gpio *gpio = gpiochip_get_data(chip);
1b43d269 748 unsigned long flags;
44ddf559 749 void __iomem *treg;
a7ca1382 750 bool copro;
1b43d269
AJ
751 u32 val;
752
44ddf559 753 treg = bank_reg(gpio, to_bank(offset), reg_tolerance);
1b43d269
AJ
754
755 spin_lock_irqsave(&gpio->lock, flags);
a7ca1382
BH
756 copro = aspeed_gpio_copro_request(gpio, offset);
757
44ddf559 758 val = readl(treg);
1b43d269
AJ
759
760 if (enable)
761 val |= GPIO_BIT(offset);
762 else
763 val &= ~GPIO_BIT(offset);
764
44ddf559 765 writel(val, treg);
a7ca1382
BH
766
767 if (copro)
768 aspeed_gpio_copro_release(gpio, offset);
1b43d269
AJ
769 spin_unlock_irqrestore(&gpio->lock, flags);
770
771 return 0;
772}
773
361b7911
JS
774static int aspeed_gpio_request(struct gpio_chip *chip, unsigned int offset)
775{
1736f75d
AJ
776 if (!have_gpio(gpiochip_get_data(chip), offset))
777 return -ENODEV;
778
a9a1d2a7 779 return pinctrl_gpio_request(chip->base + offset);
361b7911
JS
780}
781
782static void aspeed_gpio_free(struct gpio_chip *chip, unsigned int offset)
783{
a9a1d2a7 784 pinctrl_gpio_free(chip->base + offset);
361b7911
JS
785}
786
5ae4cb94
AJ
787static int usecs_to_cycles(struct aspeed_gpio *gpio, unsigned long usecs,
788 u32 *cycles)
789{
790 u64 rate;
791 u64 n;
792 u32 r;
793
794 rate = clk_get_rate(gpio->clk);
795 if (!rate)
796 return -ENOTSUPP;
797
798 n = rate * usecs;
799 r = do_div(n, 1000000);
800
801 if (n >= U32_MAX)
802 return -ERANGE;
803
804 /* At least as long as the requested time */
805 *cycles = n + (!!r);
806
807 return 0;
808}
809
810/* Call under gpio->lock */
811static int register_allocated_timer(struct aspeed_gpio *gpio,
812 unsigned int offset, unsigned int timer)
813{
814 if (WARN(gpio->offset_timer[offset] != 0,
815 "Offset %d already allocated timer %d\n",
816 offset, gpio->offset_timer[offset]))
817 return -EINVAL;
818
819 if (WARN(gpio->timer_users[timer] == UINT_MAX,
820 "Timer user count would overflow\n"))
821 return -EPERM;
822
823 gpio->offset_timer[offset] = timer;
824 gpio->timer_users[timer]++;
825
826 return 0;
827}
828
829/* Call under gpio->lock */
830static int unregister_allocated_timer(struct aspeed_gpio *gpio,
831 unsigned int offset)
832{
833 if (WARN(gpio->offset_timer[offset] == 0,
834 "No timer allocated to offset %d\n", offset))
835 return -EINVAL;
836
837 if (WARN(gpio->timer_users[gpio->offset_timer[offset]] == 0,
838 "No users recorded for timer %d\n",
839 gpio->offset_timer[offset]))
840 return -EINVAL;
841
842 gpio->timer_users[gpio->offset_timer[offset]]--;
843 gpio->offset_timer[offset] = 0;
844
845 return 0;
846}
847
848/* Call under gpio->lock */
849static inline bool timer_allocation_registered(struct aspeed_gpio *gpio,
850 unsigned int offset)
851{
852 return gpio->offset_timer[offset] > 0;
853}
854
855/* Call under gpio->lock */
856static void configure_timer(struct aspeed_gpio *gpio, unsigned int offset,
857 unsigned int timer)
858{
859 const struct aspeed_gpio_bank *bank = to_bank(offset);
860 const u32 mask = GPIO_BIT(offset);
861 void __iomem *addr;
862 u32 val;
863
a7ca1382
BH
864 /* Note: Debounce timer isn't under control of the command
865 * source registers, so no need to sync with the coprocessor
866 */
44ddf559 867 addr = bank_reg(gpio, bank, reg_debounce_sel1);
5ae4cb94
AJ
868 val = ioread32(addr);
869 iowrite32((val & ~mask) | GPIO_SET_DEBOUNCE1(timer, offset), addr);
870
44ddf559 871 addr = bank_reg(gpio, bank, reg_debounce_sel2);
5ae4cb94
AJ
872 val = ioread32(addr);
873 iowrite32((val & ~mask) | GPIO_SET_DEBOUNCE2(timer, offset), addr);
874}
875
876static int enable_debounce(struct gpio_chip *chip, unsigned int offset,
877 unsigned long usecs)
878{
879 struct aspeed_gpio *gpio = gpiochip_get_data(chip);
880 u32 requested_cycles;
881 unsigned long flags;
882 int rc;
883 int i;
884
df563c85
JS
885 if (!gpio->clk)
886 return -EINVAL;
887
5ae4cb94
AJ
888 rc = usecs_to_cycles(gpio, usecs, &requested_cycles);
889 if (rc < 0) {
890 dev_warn(chip->parent, "Failed to convert %luus to cycles at %luHz: %d\n",
891 usecs, clk_get_rate(gpio->clk), rc);
892 return rc;
893 }
894
895 spin_lock_irqsave(&gpio->lock, flags);
896
897 if (timer_allocation_registered(gpio, offset)) {
898 rc = unregister_allocated_timer(gpio, offset);
899 if (rc < 0)
900 goto out;
901 }
902
903 /* Try to find a timer already configured for the debounce period */
904 for (i = 1; i < ARRAY_SIZE(debounce_timers); i++) {
905 u32 cycles;
906
907 cycles = ioread32(gpio->base + debounce_timers[i]);
908 if (requested_cycles == cycles)
909 break;
910 }
911
912 if (i == ARRAY_SIZE(debounce_timers)) {
913 int j;
914
915 /*
916 * As there are no timers configured for the requested debounce
917 * period, find an unused timer instead
918 */
919 for (j = 1; j < ARRAY_SIZE(gpio->timer_users); j++) {
920 if (gpio->timer_users[j] == 0)
921 break;
922 }
923
924 if (j == ARRAY_SIZE(gpio->timer_users)) {
925 dev_warn(chip->parent,
926 "Debounce timers exhausted, cannot debounce for period %luus\n",
927 usecs);
928
929 rc = -EPERM;
930
931 /*
932 * We already adjusted the accounting to remove @offset
933 * as a user of its previous timer, so also configure
934 * the hardware so @offset has timers disabled for
935 * consistency.
936 */
937 configure_timer(gpio, offset, 0);
938 goto out;
939 }
940
941 i = j;
942
943 iowrite32(requested_cycles, gpio->base + debounce_timers[i]);
944 }
945
946 if (WARN(i == 0, "Cannot register index of disabled timer\n")) {
947 rc = -EINVAL;
948 goto out;
949 }
950
951 register_allocated_timer(gpio, offset, i);
952 configure_timer(gpio, offset, i);
953
954out:
955 spin_unlock_irqrestore(&gpio->lock, flags);
956
957 return rc;
958}
959
960static int disable_debounce(struct gpio_chip *chip, unsigned int offset)
961{
962 struct aspeed_gpio *gpio = gpiochip_get_data(chip);
963 unsigned long flags;
964 int rc;
965
966 spin_lock_irqsave(&gpio->lock, flags);
967
968 rc = unregister_allocated_timer(gpio, offset);
969 if (!rc)
970 configure_timer(gpio, offset, 0);
971
972 spin_unlock_irqrestore(&gpio->lock, flags);
973
974 return rc;
975}
976
977static int set_debounce(struct gpio_chip *chip, unsigned int offset,
978 unsigned long usecs)
979{
980 struct aspeed_gpio *gpio = gpiochip_get_data(chip);
981
982 if (!have_debounce(gpio, offset))
983 return -ENOTSUPP;
984
985 if (usecs)
986 return enable_debounce(chip, offset, usecs);
987
988 return disable_debounce(chip, offset);
989}
990
991static int aspeed_gpio_set_config(struct gpio_chip *chip, unsigned int offset,
992 unsigned long config)
993{
994 unsigned long param = pinconf_to_config_param(config);
995 u32 arg = pinconf_to_config_argument(config);
996
997 if (param == PIN_CONFIG_INPUT_DEBOUNCE)
998 return set_debounce(chip, offset, arg);
999 else if (param == PIN_CONFIG_BIAS_DISABLE ||
1000 param == PIN_CONFIG_BIAS_PULL_DOWN ||
1001 param == PIN_CONFIG_DRIVE_STRENGTH)
1002 return pinctrl_gpio_set_config(offset, config);
c3bafe01
AJ
1003 else if (param == PIN_CONFIG_DRIVE_OPEN_DRAIN ||
1004 param == PIN_CONFIG_DRIVE_OPEN_SOURCE)
1005 /* Return -ENOTSUPP to trigger emulation, as per datasheet */
1006 return -ENOTSUPP;
1b43d269
AJ
1007 else if (param == PIN_CONFIG_PERSIST_STATE)
1008 return aspeed_gpio_reset_tolerance(chip, offset, arg);
5ae4cb94
AJ
1009
1010 return -ENOTSUPP;
1011}
1012
a7ca1382
BH
1013/**
1014 * aspeed_gpio_copro_set_ops - Sets the callbacks used for handhsaking with
1015 * the coprocessor for shared GPIO banks
1016 * @ops: The callbacks
1017 * @data: Pointer passed back to the callbacks
1018 */
1019int aspeed_gpio_copro_set_ops(const struct aspeed_gpio_copro_ops *ops, void *data)
1020{
1021 copro_data = data;
1022 copro_ops = ops;
1023
1024 return 0;
1025}
1026EXPORT_SYMBOL_GPL(aspeed_gpio_copro_set_ops);
1027
1028/**
1029 * aspeed_gpio_copro_grab_gpio - Mark a GPIO used by the coprocessor. The entire
1030 * bank gets marked and any access from the ARM will
1031 * result in handshaking via callbacks.
1032 * @desc: The GPIO to be marked
1033 * @vreg_offset: If non-NULL, returns the value register offset in the GPIO space
1034 * @dreg_offset: If non-NULL, returns the data latch register offset in the GPIO space
1035 * @bit: If non-NULL, returns the bit number of the GPIO in the registers
1036 */
1037int aspeed_gpio_copro_grab_gpio(struct gpio_desc *desc,
1038 u16 *vreg_offset, u16 *dreg_offset, u8 *bit)
1039{
1040 struct gpio_chip *chip = gpiod_to_chip(desc);
1041 struct aspeed_gpio *gpio = gpiochip_get_data(chip);
1042 int rc = 0, bindex, offset = gpio_chip_hwgpio(desc);
1043 const struct aspeed_gpio_bank *bank = to_bank(offset);
1044 unsigned long flags;
1045
1046 if (!gpio->cf_copro_bankmap)
1047 gpio->cf_copro_bankmap = kzalloc(gpio->config->nr_gpios >> 3, GFP_KERNEL);
1048 if (!gpio->cf_copro_bankmap)
1049 return -ENOMEM;
1050 if (offset < 0 || offset > gpio->config->nr_gpios)
1051 return -EINVAL;
1052 bindex = offset >> 3;
1053
1054 spin_lock_irqsave(&gpio->lock, flags);
1055
1056 /* Sanity check, this shouldn't happen */
1057 if (gpio->cf_copro_bankmap[bindex] == 0xff) {
1058 rc = -EIO;
1059 goto bail;
1060 }
1061 gpio->cf_copro_bankmap[bindex]++;
1062
1063 /* Switch command source */
1064 if (gpio->cf_copro_bankmap[bindex] == 1)
1065 aspeed_gpio_change_cmd_source(gpio, bank, bindex,
1066 GPIO_CMDSRC_COLDFIRE);
1067
1068 if (vreg_offset)
1069 *vreg_offset = bank->val_regs;
1070 if (dreg_offset)
1071 *dreg_offset = bank->rdata_reg;
1072 if (bit)
1073 *bit = GPIO_OFFSET(offset);
1074 bail:
1075 spin_unlock_irqrestore(&gpio->lock, flags);
1076 return rc;
1077}
1078EXPORT_SYMBOL_GPL(aspeed_gpio_copro_grab_gpio);
1079
1080/**
1081 * aspeed_gpio_copro_release_gpio - Unmark a GPIO used by the coprocessor.
1082 * @desc: The GPIO to be marked
1083 */
1084int aspeed_gpio_copro_release_gpio(struct gpio_desc *desc)
1085{
1086 struct gpio_chip *chip = gpiod_to_chip(desc);
1087 struct aspeed_gpio *gpio = gpiochip_get_data(chip);
1088 int rc = 0, bindex, offset = gpio_chip_hwgpio(desc);
1089 const struct aspeed_gpio_bank *bank = to_bank(offset);
1090 unsigned long flags;
1091
1092 if (!gpio->cf_copro_bankmap)
1093 return -ENXIO;
1094
1095 if (offset < 0 || offset > gpio->config->nr_gpios)
1096 return -EINVAL;
1097 bindex = offset >> 3;
1098
1099 spin_lock_irqsave(&gpio->lock, flags);
1100
1101 /* Sanity check, this shouldn't happen */
1102 if (gpio->cf_copro_bankmap[bindex] == 0) {
1103 rc = -EIO;
1104 goto bail;
1105 }
1106 gpio->cf_copro_bankmap[bindex]--;
1107
1108 /* Switch command source */
1109 if (gpio->cf_copro_bankmap[bindex] == 0)
1110 aspeed_gpio_change_cmd_source(gpio, bank, bindex,
1111 GPIO_CMDSRC_ARM);
1112 bail:
1113 spin_unlock_irqrestore(&gpio->lock, flags);
1114 return rc;
1115}
1116EXPORT_SYMBOL_GPL(aspeed_gpio_copro_release_gpio);
1117
1736f75d
AJ
1118/*
1119 * Any banks not specified in a struct aspeed_bank_props array are assumed to
1120 * have the properties:
1121 *
1122 * { .input = 0xffffffff, .output = 0xffffffff }
1123 */
1124
1125static const struct aspeed_bank_props ast2400_bank_props[] = {
1126 /* input output */
1127 { 5, 0xffffffff, 0x0000ffff }, /* U/V/W/X */
1128 { 6, 0x0000000f, 0x0fffff0f }, /* Y/Z/AA/AB, two 4-GPIO holes */
1129 { },
1130};
1131
1132static const struct aspeed_gpio_config ast2400_config =
1133 /* 220 for simplicity, really 216 with two 4-GPIO holes, four at end */
1134 { .nr_gpios = 220, .props = ast2400_bank_props, };
1135
1136static const struct aspeed_bank_props ast2500_bank_props[] = {
1137 /* input output */
1138 { 5, 0xffffffff, 0x0000ffff }, /* U/V/W/X */
1139 { 6, 0x0fffffff, 0x0fffffff }, /* Y/Z/AA/AB, 4-GPIO hole */
1140 { 7, 0x000000ff, 0x000000ff }, /* AC */
1141 { },
1142};
1143
1144static const struct aspeed_gpio_config ast2500_config =
1145 /* 232 for simplicity, actual number is 228 (4-GPIO hole in GPIOAB) */
1146 { .nr_gpios = 232, .props = ast2500_bank_props, };
1147
1148static const struct of_device_id aspeed_gpio_of_table[] = {
1149 { .compatible = "aspeed,ast2400-gpio", .data = &ast2400_config, },
1150 { .compatible = "aspeed,ast2500-gpio", .data = &ast2500_config, },
1151 {}
1152};
1153MODULE_DEVICE_TABLE(of, aspeed_gpio_of_table);
1154
361b7911
JS
1155static int __init aspeed_gpio_probe(struct platform_device *pdev)
1156{
1736f75d 1157 const struct of_device_id *gpio_id;
361b7911
JS
1158 struct aspeed_gpio *gpio;
1159 struct resource *res;
ed5cab43 1160 int rc, i, banks;
361b7911
JS
1161
1162 gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL);
1163 if (!gpio)
1164 return -ENOMEM;
1165
1166 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
361b7911 1167 gpio->base = devm_ioremap_resource(&pdev->dev, res);
7f8b9657
WY
1168 if (IS_ERR(gpio->base))
1169 return PTR_ERR(gpio->base);
361b7911
JS
1170
1171 spin_lock_init(&gpio->lock);
1172
1736f75d
AJ
1173 gpio_id = of_match_node(aspeed_gpio_of_table, pdev->dev.of_node);
1174 if (!gpio_id)
1175 return -EINVAL;
1176
5ae4cb94
AJ
1177 gpio->clk = of_clk_get(pdev->dev.of_node, 0);
1178 if (IS_ERR(gpio->clk)) {
1179 dev_warn(&pdev->dev,
754c0458 1180 "Failed to get clock from devicetree, debouncing disabled\n");
5ae4cb94
AJ
1181 gpio->clk = NULL;
1182 }
1183
1736f75d 1184 gpio->config = gpio_id->data;
361b7911 1185
5ae4cb94 1186 gpio->chip.parent = &pdev->dev;
1736f75d 1187 gpio->chip.ngpio = gpio->config->nr_gpios;
361b7911
JS
1188 gpio->chip.direction_input = aspeed_gpio_dir_in;
1189 gpio->chip.direction_output = aspeed_gpio_dir_out;
1190 gpio->chip.get_direction = aspeed_gpio_get_direction;
1191 gpio->chip.request = aspeed_gpio_request;
1192 gpio->chip.free = aspeed_gpio_free;
1193 gpio->chip.get = aspeed_gpio_get;
1194 gpio->chip.set = aspeed_gpio_set;
5ae4cb94 1195 gpio->chip.set_config = aspeed_gpio_set_config;
361b7911
JS
1196 gpio->chip.label = dev_name(&pdev->dev);
1197 gpio->chip.base = -1;
dc7b0387 1198 gpio->chip.irq.need_valid_mask = true;
361b7911 1199
ed5cab43
BH
1200 /* Allocate a cache of the output registers */
1201 banks = gpio->config->nr_gpios >> 5;
a86854d0
KC
1202 gpio->dcache = devm_kcalloc(&pdev->dev,
1203 banks, sizeof(u32), GFP_KERNEL);
ed5cab43
BH
1204 if (!gpio->dcache)
1205 return -ENOMEM;
1206
a7ca1382
BH
1207 /*
1208 * Populate it with initial values read from the HW and switch
1209 * all command sources to the ARM by default
1210 */
ed5cab43 1211 for (i = 0; i < banks; i++) {
a7ca1382
BH
1212 const struct aspeed_gpio_bank *bank = &aspeed_gpio_banks[i];
1213 void __iomem *addr = bank_reg(gpio, bank, reg_rdata);
44ddf559 1214 gpio->dcache[i] = ioread32(addr);
a7ca1382
BH
1215 aspeed_gpio_change_cmd_source(gpio, bank, 0, GPIO_CMDSRC_ARM);
1216 aspeed_gpio_change_cmd_source(gpio, bank, 1, GPIO_CMDSRC_ARM);
1217 aspeed_gpio_change_cmd_source(gpio, bank, 2, GPIO_CMDSRC_ARM);
1218 aspeed_gpio_change_cmd_source(gpio, bank, 3, GPIO_CMDSRC_ARM);
ed5cab43
BH
1219 }
1220
361b7911
JS
1221 rc = devm_gpiochip_add_data(&pdev->dev, &gpio->chip, gpio);
1222 if (rc < 0)
1223 return rc;
1224
5ae4cb94
AJ
1225 gpio->offset_timer =
1226 devm_kzalloc(&pdev->dev, gpio->chip.ngpio, GFP_KERNEL);
6cf4511e
KL
1227 if (!gpio->offset_timer)
1228 return -ENOMEM;
5ae4cb94 1229
361b7911
JS
1230 return aspeed_gpio_setup_irqs(gpio, pdev);
1231}
1232
361b7911
JS
1233static struct platform_driver aspeed_gpio_driver = {
1234 .driver = {
1235 .name = KBUILD_MODNAME,
1236 .of_match_table = aspeed_gpio_of_table,
1237 },
1238};
1239
1240module_platform_driver_probe(aspeed_gpio_driver, aspeed_gpio_probe);
1241
1242MODULE_DESCRIPTION("Aspeed GPIO Driver");
e50237c7 1243MODULE_LICENSE("GPL");