Blame view

drivers/gpio/gpio-etraxfs.c 11.2 KB
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
1
2
  #include <linux/kernel.h>
  #include <linux/init.h>
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
3
  #include <linux/gpio/driver.h>
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
4
5
  #include <linux/of_gpio.h>
  #include <linux/io.h>
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
6
  #include <linux/interrupt.h>
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
7
  #include <linux/platform_device.h>
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
8
9
10
11
12
13
14
15
  
  #define ETRAX_FS_rw_pa_dout	0
  #define ETRAX_FS_r_pa_din	4
  #define ETRAX_FS_rw_pa_oe	8
  #define ETRAX_FS_rw_intr_cfg	12
  #define ETRAX_FS_rw_intr_mask	16
  #define ETRAX_FS_rw_ack_intr	20
  #define ETRAX_FS_r_intr		24
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
16
  #define ETRAX_FS_r_masked_intr	28
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
17
18
19
20
21
22
23
24
25
26
27
28
  #define ETRAX_FS_rw_pb_dout	32
  #define ETRAX_FS_r_pb_din	36
  #define ETRAX_FS_rw_pb_oe	40
  #define ETRAX_FS_rw_pc_dout	48
  #define ETRAX_FS_r_pc_din	52
  #define ETRAX_FS_rw_pc_oe	56
  #define ETRAX_FS_rw_pd_dout	64
  #define ETRAX_FS_r_pd_din	68
  #define ETRAX_FS_rw_pd_oe	72
  #define ETRAX_FS_rw_pe_dout	80
  #define ETRAX_FS_r_pe_din	84
  #define ETRAX_FS_rw_pe_oe	88
d705073cd   Rabin Vincent   gpio: etraxfs: ad...
29
30
31
32
33
34
35
36
37
38
  #define ARTPEC3_r_pa_din	0
  #define ARTPEC3_rw_pa_dout	4
  #define ARTPEC3_rw_pa_oe	8
  #define ARTPEC3_r_pb_din	44
  #define ARTPEC3_rw_pb_dout	48
  #define ARTPEC3_rw_pb_oe	52
  #define ARTPEC3_r_pc_din	88
  #define ARTPEC3_rw_pc_dout	92
  #define ARTPEC3_rw_pc_oe	96
  #define ARTPEC3_r_pd_din	116
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
  #define ARTPEC3_rw_intr_cfg	120
  #define ARTPEC3_rw_intr_pins	124
  #define ARTPEC3_rw_intr_mask	128
  #define ARTPEC3_rw_ack_intr	132
  #define ARTPEC3_r_masked_intr	140
  
  #define GIO_CFG_OFF		0
  #define GIO_CFG_HI		1
  #define GIO_CFG_LO		2
  #define GIO_CFG_SET		3
  #define GIO_CFG_POSEDGE		5
  #define GIO_CFG_NEGEDGE		6
  #define GIO_CFG_ANYEDGE		7
  
  struct etraxfs_gpio_info;
  
  struct etraxfs_gpio_block {
  	spinlock_t lock;
  	u32 mask;
  	u32 cfg;
  	u32 pins;
  	unsigned int group[8];
  
  	void __iomem *regs;
  	const struct etraxfs_gpio_info *info;
  };
  
  struct etraxfs_gpio_chip {
0f4630f37   Linus Walleij   gpio: generic: fa...
67
  	struct gpio_chip gc;
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
68
69
  	struct etraxfs_gpio_block *block;
  };
d705073cd   Rabin Vincent   gpio: etraxfs: ad...
70

d342571ef   Rabin Vincent   gpio: add ETRAXFS...
71
72
73
74
75
76
77
78
79
80
81
  struct etraxfs_gpio_port {
  	const char *label;
  	unsigned int oe;
  	unsigned int dout;
  	unsigned int din;
  	unsigned int ngpio;
  };
  
  struct etraxfs_gpio_info {
  	unsigned int num_ports;
  	const struct etraxfs_gpio_port *ports;
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
82
83
84
85
86
87
  
  	unsigned int rw_ack_intr;
  	unsigned int rw_intr_mask;
  	unsigned int rw_intr_cfg;
  	unsigned int rw_intr_pins;
  	unsigned int r_masked_intr;
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
  };
  
  static const struct etraxfs_gpio_port etraxfs_gpio_etraxfs_ports[] = {
  	{
  		.label	= "A",
  		.ngpio	= 8,
  		.oe	= ETRAX_FS_rw_pa_oe,
  		.dout	= ETRAX_FS_rw_pa_dout,
  		.din	= ETRAX_FS_r_pa_din,
  	},
  	{
  		.label	= "B",
  		.ngpio	= 18,
  		.oe	= ETRAX_FS_rw_pb_oe,
  		.dout	= ETRAX_FS_rw_pb_dout,
  		.din	= ETRAX_FS_r_pb_din,
  	},
  	{
  		.label	= "C",
  		.ngpio	= 18,
  		.oe	= ETRAX_FS_rw_pc_oe,
  		.dout	= ETRAX_FS_rw_pc_dout,
  		.din	= ETRAX_FS_r_pc_din,
  	},
  	{
  		.label	= "D",
  		.ngpio	= 18,
  		.oe	= ETRAX_FS_rw_pd_oe,
  		.dout	= ETRAX_FS_rw_pd_dout,
  		.din	= ETRAX_FS_r_pd_din,
  	},
  	{
  		.label	= "E",
  		.ngpio	= 18,
  		.oe	= ETRAX_FS_rw_pe_oe,
  		.dout	= ETRAX_FS_rw_pe_dout,
  		.din	= ETRAX_FS_r_pe_din,
  	},
  };
  
  static const struct etraxfs_gpio_info etraxfs_gpio_etraxfs = {
  	.num_ports = ARRAY_SIZE(etraxfs_gpio_etraxfs_ports),
  	.ports = etraxfs_gpio_etraxfs_ports,
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
131
132
133
134
  	.rw_ack_intr	= ETRAX_FS_rw_ack_intr,
  	.rw_intr_mask	= ETRAX_FS_rw_intr_mask,
  	.rw_intr_cfg	= ETRAX_FS_rw_intr_cfg,
  	.r_masked_intr	= ETRAX_FS_r_masked_intr,
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
135
  };
d705073cd   Rabin Vincent   gpio: etraxfs: ad...
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
  static const struct etraxfs_gpio_port etraxfs_gpio_artpec3_ports[] = {
  	{
  		.label	= "A",
  		.ngpio	= 32,
  		.oe	= ARTPEC3_rw_pa_oe,
  		.dout	= ARTPEC3_rw_pa_dout,
  		.din	= ARTPEC3_r_pa_din,
  	},
  	{
  		.label	= "B",
  		.ngpio	= 32,
  		.oe	= ARTPEC3_rw_pb_oe,
  		.dout	= ARTPEC3_rw_pb_dout,
  		.din	= ARTPEC3_r_pb_din,
  	},
  	{
  		.label	= "C",
  		.ngpio	= 16,
  		.oe	= ARTPEC3_rw_pc_oe,
  		.dout	= ARTPEC3_rw_pc_dout,
  		.din	= ARTPEC3_r_pc_din,
  	},
  	{
  		.label	= "D",
  		.ngpio	= 32,
  		.din	= ARTPEC3_r_pd_din,
  	},
  };
  
  static const struct etraxfs_gpio_info etraxfs_gpio_artpec3 = {
  	.num_ports = ARRAY_SIZE(etraxfs_gpio_artpec3_ports),
  	.ports = etraxfs_gpio_artpec3_ports,
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
168
169
170
171
172
  	.rw_ack_intr	= ARTPEC3_rw_ack_intr,
  	.rw_intr_mask	= ARTPEC3_rw_intr_mask,
  	.rw_intr_cfg	= ARTPEC3_rw_intr_cfg,
  	.r_masked_intr	= ARTPEC3_r_masked_intr,
  	.rw_intr_pins	= ARTPEC3_rw_intr_pins,
d705073cd   Rabin Vincent   gpio: etraxfs: ad...
173
  };
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
174
175
176
177
  static unsigned int etraxfs_gpio_chip_to_port(struct gpio_chip *gc)
  {
  	return gc->label[0] - 'A';
  }
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
178
179
180
181
182
183
184
185
  static int etraxfs_gpio_of_xlate(struct gpio_chip *gc,
  			       const struct of_phandle_args *gpiospec,
  			       u32 *flags)
  {
  	/*
  	 * Port numbers are A to E, and the properties are integers, so we
  	 * specify them as 0xA - 0xE.
  	 */
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
186
  	if (etraxfs_gpio_chip_to_port(gc) + 0xA != gpiospec->args[2])
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
187
188
189
190
191
192
193
194
195
196
  		return -EINVAL;
  
  	return of_gpio_simple_xlate(gc, gpiospec, flags);
  }
  
  static const struct of_device_id etraxfs_gpio_of_table[] = {
  	{
  		.compatible = "axis,etraxfs-gio",
  		.data = &etraxfs_gpio_etraxfs,
  	},
d705073cd   Rabin Vincent   gpio: etraxfs: ad...
197
198
199
200
  	{
  		.compatible = "axis,artpec3-gio",
  		.data = &etraxfs_gpio_artpec3,
  	},
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
201
202
  	{},
  };
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
203
204
205
206
207
208
209
210
  static unsigned int etraxfs_gpio_to_group_irq(unsigned int gpio)
  {
  	return gpio % 8;
  }
  
  static unsigned int etraxfs_gpio_to_group_pin(struct etraxfs_gpio_chip *chip,
  					      unsigned int gpio)
  {
0f4630f37   Linus Walleij   gpio: generic: fa...
211
  	return 4 * etraxfs_gpio_chip_to_port(&chip->gc) + gpio / 8;
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
212
213
214
215
  }
  
  static void etraxfs_gpio_irq_ack(struct irq_data *d)
  {
4843289e6   Linus Walleij   gpio: etraxfs: us...
216
  	struct etraxfs_gpio_chip *chip =
0f4630f37   Linus Walleij   gpio: generic: fa...
217
  		gpiochip_get_data(irq_data_get_irq_chip_data(d));
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
218
219
220
221
222
223
224
225
  	struct etraxfs_gpio_block *block = chip->block;
  	unsigned int grpirq = etraxfs_gpio_to_group_irq(d->hwirq);
  
  	writel(BIT(grpirq), block->regs + block->info->rw_ack_intr);
  }
  
  static void etraxfs_gpio_irq_mask(struct irq_data *d)
  {
4843289e6   Linus Walleij   gpio: etraxfs: us...
226
  	struct etraxfs_gpio_chip *chip =
0f4630f37   Linus Walleij   gpio: generic: fa...
227
  		gpiochip_get_data(irq_data_get_irq_chip_data(d));
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
228
229
230
231
232
233
234
235
236
237
238
  	struct etraxfs_gpio_block *block = chip->block;
  	unsigned int grpirq = etraxfs_gpio_to_group_irq(d->hwirq);
  
  	spin_lock(&block->lock);
  	block->mask &= ~BIT(grpirq);
  	writel(block->mask, block->regs + block->info->rw_intr_mask);
  	spin_unlock(&block->lock);
  }
  
  static void etraxfs_gpio_irq_unmask(struct irq_data *d)
  {
4843289e6   Linus Walleij   gpio: etraxfs: us...
239
  	struct etraxfs_gpio_chip *chip =
0f4630f37   Linus Walleij   gpio: generic: fa...
240
  		gpiochip_get_data(irq_data_get_irq_chip_data(d));
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
241
242
243
244
245
246
247
248
249
250
251
  	struct etraxfs_gpio_block *block = chip->block;
  	unsigned int grpirq = etraxfs_gpio_to_group_irq(d->hwirq);
  
  	spin_lock(&block->lock);
  	block->mask |= BIT(grpirq);
  	writel(block->mask, block->regs + block->info->rw_intr_mask);
  	spin_unlock(&block->lock);
  }
  
  static int etraxfs_gpio_irq_set_type(struct irq_data *d, u32 type)
  {
4843289e6   Linus Walleij   gpio: etraxfs: us...
252
  	struct etraxfs_gpio_chip *chip =
0f4630f37   Linus Walleij   gpio: generic: fa...
253
  		gpiochip_get_data(irq_data_get_irq_chip_data(d));
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
  	struct etraxfs_gpio_block *block = chip->block;
  	unsigned int grpirq = etraxfs_gpio_to_group_irq(d->hwirq);
  	u32 cfg;
  
  	switch (type) {
  	case IRQ_TYPE_EDGE_RISING:
  		cfg = GIO_CFG_POSEDGE;
  		break;
  	case IRQ_TYPE_EDGE_FALLING:
  		cfg = GIO_CFG_NEGEDGE;
  		break;
  	case IRQ_TYPE_EDGE_BOTH:
  		cfg = GIO_CFG_ANYEDGE;
  		break;
  	case IRQ_TYPE_LEVEL_LOW:
  		cfg = GIO_CFG_LO;
  		break;
  	case IRQ_TYPE_LEVEL_HIGH:
  		cfg = GIO_CFG_HI;
  		break;
  	default:
  		return -EINVAL;
  	}
  
  	spin_lock(&block->lock);
  	block->cfg &= ~(0x7 << (grpirq * 3));
  	block->cfg |= (cfg << (grpirq * 3));
  	writel(block->cfg, block->regs + block->info->rw_intr_cfg);
  	spin_unlock(&block->lock);
  
  	return 0;
  }
  
  static int etraxfs_gpio_irq_request_resources(struct irq_data *d)
  {
4843289e6   Linus Walleij   gpio: etraxfs: us...
289
  	struct etraxfs_gpio_chip *chip =
0f4630f37   Linus Walleij   gpio: generic: fa...
290
  		gpiochip_get_data(irq_data_get_irq_chip_data(d));
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
291
292
  	struct etraxfs_gpio_block *block = chip->block;
  	unsigned int grpirq = etraxfs_gpio_to_group_irq(d->hwirq);
01e2dae99   Linus Walleij   Revert "gpio: ext...
293
  	int ret = -EBUSY;
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
294
295
296
297
  
  	spin_lock(&block->lock);
  	if (block->group[grpirq])
  		goto out;
0f4630f37   Linus Walleij   gpio: generic: fa...
298
  	ret = gpiochip_lock_as_irq(&chip->gc, d->hwirq);
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
  	if (ret)
  		goto out;
  
  	block->group[grpirq] = d->irq;
  	if (block->info->rw_intr_pins) {
  		unsigned int pin = etraxfs_gpio_to_group_pin(chip, d->hwirq);
  
  		block->pins &= ~(0xf << (grpirq * 4));
  		block->pins |= (pin << (grpirq * 4));
  
  		writel(block->pins, block->regs + block->info->rw_intr_pins);
  	}
  
  out:
  	spin_unlock(&block->lock);
01e2dae99   Linus Walleij   Revert "gpio: ext...
314
  	return ret;
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
315
316
317
318
  }
  
  static void etraxfs_gpio_irq_release_resources(struct irq_data *d)
  {
4843289e6   Linus Walleij   gpio: etraxfs: us...
319
  	struct etraxfs_gpio_chip *chip =
0f4630f37   Linus Walleij   gpio: generic: fa...
320
  		gpiochip_get_data(irq_data_get_irq_chip_data(d));
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
321
322
323
324
325
  	struct etraxfs_gpio_block *block = chip->block;
  	unsigned int grpirq = etraxfs_gpio_to_group_irq(d->hwirq);
  
  	spin_lock(&block->lock);
  	block->group[grpirq] = 0;
0f4630f37   Linus Walleij   gpio: generic: fa...
326
  	gpiochip_unlock_as_irq(&chip->gc, d->hwirq);
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
  	spin_unlock(&block->lock);
  }
  
  static struct irq_chip etraxfs_gpio_irq_chip = {
  	.name		= "gpio-etraxfs",
  	.irq_ack	= etraxfs_gpio_irq_ack,
  	.irq_mask	= etraxfs_gpio_irq_mask,
  	.irq_unmask	= etraxfs_gpio_irq_unmask,
  	.irq_set_type	= etraxfs_gpio_irq_set_type,
  	.irq_request_resources = etraxfs_gpio_irq_request_resources,
  	.irq_release_resources = etraxfs_gpio_irq_release_resources,
  };
  
  static irqreturn_t etraxfs_gpio_interrupt(int irq, void *dev_id)
  {
  	struct etraxfs_gpio_block *block = dev_id;
  	unsigned long intr = readl(block->regs + block->info->r_masked_intr);
  	int bit;
  
  	for_each_set_bit(bit, &intr, 8)
  		generic_handle_irq(block->group[bit]);
  
  	return IRQ_RETVAL(intr & 0xff);
  }
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
351
352
353
354
355
  static int etraxfs_gpio_probe(struct platform_device *pdev)
  {
  	struct device *dev = &pdev->dev;
  	const struct etraxfs_gpio_info *info;
  	const struct of_device_id *match;
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
356
357
358
359
  	struct etraxfs_gpio_block *block;
  	struct etraxfs_gpio_chip *chips;
  	struct resource *res, *irq;
  	bool allportsirq = false;
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
360
361
362
363
364
365
  	void __iomem *regs;
  	int ret;
  	int i;
  
  	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  	regs = devm_ioremap_resource(dev, res);
015403145   Krzysztof Kozlowski   gpio: etraxfs: Fi...
366
367
  	if (IS_ERR(regs))
  		return PTR_ERR(regs);
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
368
369
370
371
372
373
374
375
376
377
  
  	match = of_match_node(etraxfs_gpio_of_table, dev->of_node);
  	if (!match)
  		return -EINVAL;
  
  	info = match->data;
  
  	chips = devm_kzalloc(dev, sizeof(*chips) * info->num_ports, GFP_KERNEL);
  	if (!chips)
  		return -ENOMEM;
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
  	irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
  	if (!irq)
  		return -EINVAL;
  
  	block = devm_kzalloc(dev, sizeof(*block), GFP_KERNEL);
  	if (!block)
  		return -ENOMEM;
  
  	spin_lock_init(&block->lock);
  
  	block->regs = regs;
  	block->info = info;
  
  	writel(0, block->regs + info->rw_intr_mask);
  	writel(0, block->regs + info->rw_intr_cfg);
  	if (info->rw_intr_pins) {
  		allportsirq = true;
  		writel(0, block->regs + info->rw_intr_pins);
  	}
  
  	ret = devm_request_irq(dev, irq->start, etraxfs_gpio_interrupt,
  			       IRQF_SHARED, dev_name(dev), block);
  	if (ret) {
  		dev_err(dev, "Unable to request irq %d
  ", ret);
  		return ret;
  	}
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
405
  	for (i = 0; i < info->num_ports; i++) {
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
406
  		struct etraxfs_gpio_chip *chip = &chips[i];
0f4630f37   Linus Walleij   gpio: generic: fa...
407
  		struct gpio_chip *gc = &chip->gc;
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
408
  		const struct etraxfs_gpio_port *port = &info->ports[i];
d705073cd   Rabin Vincent   gpio: etraxfs: ad...
409
410
411
412
  		unsigned long flags = BGPIOF_READ_OUTPUT_REG_SET;
  		void __iomem *dat = regs + port->din;
  		void __iomem *set = regs + port->dout;
  		void __iomem *dirout = regs + port->oe;
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
413
  		chip->block = block;
d705073cd   Rabin Vincent   gpio: etraxfs: ad...
414
415
416
417
  		if (dirout == set) {
  			dirout = set = NULL;
  			flags = BGPIOF_NO_OUTPUT;
  		}
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
418

0f4630f37   Linus Walleij   gpio: generic: fa...
419
  		ret = bgpio_init(gc, dev, 4,
d705073cd   Rabin Vincent   gpio: etraxfs: ad...
420
421
  				 dat, set, NULL, dirout, NULL,
  				 flags);
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
422
423
424
425
426
427
  		if (ret) {
  			dev_err(dev, "Unable to init port %s
  ",
  				port->label);
  			continue;
  		}
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
428

0f4630f37   Linus Walleij   gpio: generic: fa...
429
430
  		gc->ngpio = port->ngpio;
  		gc->label = port->label;
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
431

0f4630f37   Linus Walleij   gpio: generic: fa...
432
433
434
  		gc->of_node = dev->of_node;
  		gc->of_gpio_n_cells = 3;
  		gc->of_xlate = etraxfs_gpio_of_xlate;
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
435

0f4630f37   Linus Walleij   gpio: generic: fa...
436
  		ret = gpiochip_add_data(gc, chip);
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
437
  		if (ret) {
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
438
439
  			dev_err(dev, "Unable to register port %s
  ",
0f4630f37   Linus Walleij   gpio: generic: fa...
440
  				gc->label);
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
441
442
443
444
445
  			continue;
  		}
  
  		if (i > 0 && !allportsirq)
  			continue;
0f4630f37   Linus Walleij   gpio: generic: fa...
446
  		ret = gpiochip_irqchip_add(gc, &etraxfs_gpio_irq_chip, 0,
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
447
448
449
450
  					   handle_level_irq, IRQ_TYPE_NONE);
  		if (ret) {
  			dev_err(dev, "Unable to add irqchip to port %s
  ",
0f4630f37   Linus Walleij   gpio: generic: fa...
451
  				gc->label);
29b5357d2   Rabin Vincent   gpio: etraxfs: ad...
452
  		}
d342571ef   Rabin Vincent   gpio: add ETRAXFS...
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
  	}
  
  	return 0;
  }
  
  static struct platform_driver etraxfs_gpio_driver = {
  	.driver = {
  		.name		= "etraxfs-gpio",
  		.of_match_table = of_match_ptr(etraxfs_gpio_of_table),
  	},
  	.probe	= etraxfs_gpio_probe,
  };
  
  static int __init etraxfs_gpio_init(void)
  {
  	return platform_driver_register(&etraxfs_gpio_driver);
  }
  
  device_initcall(etraxfs_gpio_init);