devices-common.c 1.3 KB
Newer Older
R
Rabin Vincent 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Copyright (C) ST-Ericsson SA 2010
 *
 * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
 * License terms: GNU General Public License (GPL), version 2.
 */

#include <linux/kernel.h>
#include <linux/dma-mapping.h>
#include <linux/err.h>
#include <linux/irq.h>
#include <linux/slab.h>
#include <linux/platform_device.h>
14
#include <linux/platform_data/pinctrl-nomadik.h>
R
Rabin Vincent 已提交
15

R
Rabin Vincent 已提交
16 17 18 19
#include <mach/hardware.h>

#include "devices-common.h"

R
Rabin Vincent 已提交
20
static struct platform_device *
21
dbx500_add_gpio(struct device *parent, int id, resource_size_t addr, int irq,
R
Rabin Vincent 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
		struct nmk_gpio_platform_data *pdata)
{
	struct resource resources[] = {
		{
			.start	= addr,
			.end	= addr + 127,
			.flags	= IORESOURCE_MEM,
		},
		{
			.start	= irq,
			.end	= irq,
			.flags	= IORESOURCE_IRQ,
		}
	};

37 38 39 40 41 42 43 44
	return platform_device_register_resndata(
		parent,
		"gpio",
		id,
		resources,
		ARRAY_SIZE(resources),
		pdata,
		sizeof(*pdata));
R
Rabin Vincent 已提交
45 46
}

47 48
void dbx500_add_gpios(struct device *parent, resource_size_t *base, int num,
		      int irq, struct nmk_gpio_platform_data *pdata)
R
Rabin Vincent 已提交
49 50 51 52 53 54 55
{
	int first = 0;
	int i;

	for (i = 0; i < num; i++, first += 32, irq++) {
		pdata->first_gpio = first;
		pdata->first_irq = NOMADIK_GPIO_TO_IRQ(first);
56
		pdata->num_gpio = 32;
R
Rabin Vincent 已提交
57

58
		dbx500_add_gpio(parent, i, base[i], irq, pdata);
R
Rabin Vincent 已提交
59 60
	}
}