irq-gpioint.c 5.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/* linux/arch/arm/plat-s5p/irq-gpioint.c
 *
 * Copyright (c) 2010 Samsung Electronics Co., Ltd.
 * Author: Kyungmin Park <kyungmin.park@samsung.com>
 * Author: Joonyoung Shim <jy0922.shim@samsung.com>
 * Author: Marek Szyprowski <m.szyprowski@samsung.com>
 *
 *  This program is free software; you can redistribute  it and/or modify it
 *  under  the terms of  the GNU General  Public License as published by the
 *  Free Software Foundation;  either version 2 of the  License, or (at your
 *  option) any later version.
 *
 */

#include <linux/kernel.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/io.h>
#include <linux/gpio.h>

#include <mach/map.h>
#include <plat/gpio-core.h>
#include <plat/gpio-cfg.h>

25
#define GPIO_BASE(chip)		(((unsigned long)(chip)->base) & 0xFFFFF000u)
26

27 28 29 30
#define CON_OFFSET		0x700
#define MASK_OFFSET		0x900
#define PEND_OFFSET		0xA00
#define REG_OFFSET(x)		((x) << 2)
31 32 33

static struct s3c_gpio_chip *irq_chips[S5P_GPIOINT_GROUP_MAXNR];

34
static int s5p_gpioint_get_offset(struct irq_data *data)
35
{
36 37
	struct s3c_gpio_chip *chip = irq_data_get_irq_data(data);
	return data->irq - chip->irq_base;
38 39
}

40
static void s5p_gpioint_ack(struct irq_data *data)
41
{
42
	struct s3c_gpio_chip *chip = irq_data_get_irq_data(data);
43 44 45
	int group, offset, pend_offset;
	unsigned int value;

46
	group = chip->group;
47
	offset = s5p_gpioint_get_offset(data);
48
	pend_offset = REG_OFFSET(group);
49

50 51 52
	value = __raw_readl(GPIO_BASE(chip) + PEND_OFFSET + pend_offset);
	value |= BIT(offset);
	__raw_writel(value, GPIO_BASE(chip) + PEND_OFFSET + pend_offset);
53 54
}

55
static void s5p_gpioint_mask(struct irq_data *data)
56
{
57
	struct s3c_gpio_chip *chip = irq_data_get_irq_data(data);
58 59 60
	int group, offset, mask_offset;
	unsigned int value;

61
	group = chip->group;
62
	offset = s5p_gpioint_get_offset(data);
63
	mask_offset = REG_OFFSET(group);
64

65 66 67
	value = __raw_readl(GPIO_BASE(chip) + MASK_OFFSET + mask_offset);
	value |= BIT(offset);
	__raw_writel(value, GPIO_BASE(chip) + MASK_OFFSET + mask_offset);
68 69
}

70
static void s5p_gpioint_unmask(struct irq_data *data)
71
{
72
	struct s3c_gpio_chip *chip = irq_data_get_irq_data(data);
73 74 75
	int group, offset, mask_offset;
	unsigned int value;

76
	group = chip->group;
77
	offset = s5p_gpioint_get_offset(data);
78
	mask_offset = REG_OFFSET(group);
79

80 81 82
	value = __raw_readl(GPIO_BASE(chip) + MASK_OFFSET + mask_offset);
	value &= ~BIT(offset);
	__raw_writel(value, GPIO_BASE(chip) + MASK_OFFSET + mask_offset);
83 84
}

85
static void s5p_gpioint_mask_ack(struct irq_data *data)
86
{
87 88
	s5p_gpioint_mask(data);
	s5p_gpioint_ack(data);
89 90
}

91
static int s5p_gpioint_set_type(struct irq_data *data, unsigned int type)
92
{
93
	struct s3c_gpio_chip *chip = irq_data_get_irq_data(data);
94 95 96
	int group, offset, con_offset;
	unsigned int value;

97
	group = chip->group;
98
	offset = s5p_gpioint_get_offset(data);
99
	con_offset = REG_OFFSET(group);
100 101 102

	switch (type) {
	case IRQ_TYPE_EDGE_RISING:
103
		type = S5P_IRQ_TYPE_EDGE_RISING;
104 105
		break;
	case IRQ_TYPE_EDGE_FALLING:
106
		type = S5P_IRQ_TYPE_EDGE_FALLING;
107 108
		break;
	case IRQ_TYPE_EDGE_BOTH:
109
		type = S5P_IRQ_TYPE_EDGE_BOTH;
110 111
		break;
	case IRQ_TYPE_LEVEL_HIGH:
112
		type = S5P_IRQ_TYPE_LEVEL_HIGH;
113 114
		break;
	case IRQ_TYPE_LEVEL_LOW:
115
		type = S5P_IRQ_TYPE_LEVEL_LOW;
116 117 118 119 120 121 122
		break;
	case IRQ_TYPE_NONE:
	default:
		printk(KERN_WARNING "No irq type\n");
		return -EINVAL;
	}

123
	value = __raw_readl(GPIO_BASE(chip) + CON_OFFSET + con_offset);
124 125
	value &= ~(0x7 << (offset * 0x4));
	value |= (type << (offset * 0x4));
126
	__raw_writel(value, GPIO_BASE(chip) + CON_OFFSET + con_offset);
127 128 129 130

	return 0;
}

131
static struct irq_chip s5p_gpioint = {
132
	.name		= "s5p_gpioint",
133 134 135 136 137
	.irq_ack	= s5p_gpioint_ack,
	.irq_mask	= s5p_gpioint_mask,
	.irq_mask_ack	= s5p_gpioint_mask_ack,
	.irq_unmask	= s5p_gpioint_unmask,
	.irq_set_type	= s5p_gpioint_set_type,
138 139 140 141
};

static void s5p_gpioint_handler(unsigned int irq, struct irq_desc *desc)
{
142
	int group, pend_offset, mask_offset;
143 144 145
	unsigned int pend, mask;

	for (group = 0; group < S5P_GPIOINT_GROUP_MAXNR; group++) {
146 147 148 149 150 151
		struct s3c_gpio_chip *chip = irq_chips[group];
		if (!chip)
			continue;

		pend_offset = REG_OFFSET(group);
		pend = __raw_readl(GPIO_BASE(chip) + PEND_OFFSET + pend_offset);
152 153 154
		if (!pend)
			continue;

155 156
		mask_offset = REG_OFFSET(group);
		mask = __raw_readl(GPIO_BASE(chip) + MASK_OFFSET + mask_offset);
157 158
		pend &= ~mask;

159 160 161 162 163
		while (pend) {
			int offset = fls(pend) - 1;
			int real_irq = chip->irq_base + offset;
			generic_handle_irq(real_irq);
			pend &= ~BIT(offset);
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
		}
	}
}

static __init int s5p_gpioint_add(struct s3c_gpio_chip *chip)
{
	static int used_gpioint_groups = 0;
	static bool handler_registered = 0;
	int irq, group = chip->group;
	int i;

	if (used_gpioint_groups >= S5P_GPIOINT_GROUP_COUNT)
		return -ENOMEM;

	chip->irq_base = S5P_GPIOINT_BASE +
			 used_gpioint_groups * S5P_GPIOINT_GROUP_SIZE;
	used_gpioint_groups++;

	if (!handler_registered) {
		set_irq_chained_handler(IRQ_GPIOINT, s5p_gpioint_handler);
		handler_registered = 1;
	}

	irq_chips[group] = chip;
	for (i = 0; i < chip->chip.ngpio; i++) {
		irq = chip->irq_base + i;
		set_irq_chip(irq, &s5p_gpioint);
191
		set_irq_data(irq, chip);
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
		set_irq_handler(irq, handle_level_irq);
		set_irq_flags(irq, IRQF_VALID);
	}
	return 0;
}

int __init s5p_register_gpio_interrupt(int pin)
{
	struct s3c_gpio_chip *my_chip = s3c_gpiolib_getchip(pin);
	int offset, group;
	int ret;

	if (!my_chip)
		return -EINVAL;

	offset = pin - my_chip->chip.base;
	group = my_chip->group;

	/* check if the group has been already registered */
	if (my_chip->irq_base)
		return my_chip->irq_base + offset;

	/* register gpio group */
	ret = s5p_gpioint_add(my_chip);
	if (ret == 0) {
217
		my_chip->chip.to_irq = samsung_gpiolib_to_irq;
218 219 220 221 222 223
		printk(KERN_INFO "Registered interrupt support for gpio group %d.\n",
		       group);
		return my_chip->irq_base + offset;
	}
	return ret;
}