Rabin Vincent | fbf1eadf | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) ST-Ericsson SA 2010 |
| 3 | * |
| 4 | * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson |
| 5 | * License terms: GNU General Public License (GPL), version 2. |
| 6 | */ |
| 7 | |
| 8 | #include <linux/kernel.h> |
| 9 | #include <linux/dma-mapping.h> |
| 10 | #include <linux/err.h> |
| 11 | #include <linux/irq.h> |
| 12 | #include <linux/slab.h> |
| 13 | #include <linux/platform_device.h> |
Linus Walleij | 7cb15e1 | 2012-10-10 14:27:58 +0200 | [diff] [blame] | 14 | #include <linux/platform_data/pinctrl-nomadik.h> |
Rabin Vincent | 01afdd1 | 2010-12-08 11:07:55 +0530 | [diff] [blame] | 15 | |
Rabin Vincent | fbf1eadf | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 16 | #include <mach/hardware.h> |
Linus Walleij | c3b9d1d | 2012-10-18 11:08:05 +0200 | [diff] [blame] | 17 | #include <mach/irqs.h> |
Rabin Vincent | fbf1eadf | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 18 | |
| 19 | #include "devices-common.h" |
| 20 | |
Rabin Vincent | fbf1eadf | 2010-09-29 19:46:32 +0530 | [diff] [blame] | 21 | static struct platform_device * |
Lee Jones | 1840342 | 2012-02-06 11:22:21 -0800 | [diff] [blame] | 22 | dbx500_add_gpio(struct device *parent, int id, resource_size_t addr, int irq, |
Rabin Vincent | 01afdd1 | 2010-12-08 11:07:55 +0530 | [diff] [blame] | 23 | struct nmk_gpio_platform_data *pdata) |
| 24 | { |
| 25 | struct resource resources[] = { |
| 26 | { |
| 27 | .start = addr, |
| 28 | .end = addr + 127, |
| 29 | .flags = IORESOURCE_MEM, |
| 30 | }, |
| 31 | { |
| 32 | .start = irq, |
| 33 | .end = irq, |
| 34 | .flags = IORESOURCE_IRQ, |
| 35 | } |
| 36 | }; |
| 37 | |
Lee Jones | b024a0c | 2012-02-06 11:22:25 -0800 | [diff] [blame] | 38 | return platform_device_register_resndata( |
| 39 | parent, |
| 40 | "gpio", |
| 41 | id, |
| 42 | resources, |
| 43 | ARRAY_SIZE(resources), |
| 44 | pdata, |
| 45 | sizeof(*pdata)); |
Rabin Vincent | 01afdd1 | 2010-12-08 11:07:55 +0530 | [diff] [blame] | 46 | } |
| 47 | |
Lee Jones | 1840342 | 2012-02-06 11:22:21 -0800 | [diff] [blame] | 48 | void dbx500_add_gpios(struct device *parent, resource_size_t *base, int num, |
| 49 | int irq, struct nmk_gpio_platform_data *pdata) |
Rabin Vincent | 01afdd1 | 2010-12-08 11:07:55 +0530 | [diff] [blame] | 50 | { |
| 51 | int first = 0; |
| 52 | int i; |
| 53 | |
| 54 | for (i = 0; i < num; i++, first += 32, irq++) { |
| 55 | pdata->first_gpio = first; |
| 56 | pdata->first_irq = NOMADIK_GPIO_TO_IRQ(first); |
Rabin Vincent | e493e06 | 2010-03-18 12:35:22 +0530 | [diff] [blame] | 57 | pdata->num_gpio = 32; |
Rabin Vincent | 01afdd1 | 2010-12-08 11:07:55 +0530 | [diff] [blame] | 58 | |
Lee Jones | 1840342 | 2012-02-06 11:22:21 -0800 | [diff] [blame] | 59 | dbx500_add_gpio(parent, i, base[i], irq, pdata); |
Rabin Vincent | 01afdd1 | 2010-12-08 11:07:55 +0530 | [diff] [blame] | 60 | } |
| 61 | } |