irq-gpioint.c 6.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* 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>
20
#include <linux/slab.h>
21 22 23 24 25

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

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

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

33 34 35 36 37 38 39 40 41 42
struct s5p_gpioint_bank {
	struct list_head	list;
	int			start;
	int			nr_groups;
	int			irq;
	struct s3c_gpio_chip	**chips;
	void			(*handler)(unsigned int, struct irq_desc *);
};

LIST_HEAD(banks);
43

44
static int s5p_gpioint_get_offset(struct irq_data *data)
45
{
T
Thomas Gleixner 已提交
46
	struct s3c_gpio_chip *chip = irq_data_get_irq_handler_data(data);
47
	return data->irq - chip->irq_base;
48 49
}

50
static void s5p_gpioint_ack(struct irq_data *data)
51
{
T
Thomas Gleixner 已提交
52
	struct s3c_gpio_chip *chip = irq_data_get_irq_handler_data(data);
53 54 55
	int group, offset, pend_offset;
	unsigned int value;

56
	group = chip->group;
57
	offset = s5p_gpioint_get_offset(data);
58
	pend_offset = REG_OFFSET(group);
59

60 61 62
	value = __raw_readl(GPIO_BASE(chip) + PEND_OFFSET + pend_offset);
	value |= BIT(offset);
	__raw_writel(value, GPIO_BASE(chip) + PEND_OFFSET + pend_offset);
63 64
}

65
static void s5p_gpioint_mask(struct irq_data *data)
66
{
T
Thomas Gleixner 已提交
67
	struct s3c_gpio_chip *chip = irq_data_get_irq_handler_data(data);
68 69 70
	int group, offset, mask_offset;
	unsigned int value;

71
	group = chip->group;
72
	offset = s5p_gpioint_get_offset(data);
73
	mask_offset = REG_OFFSET(group);
74

75 76 77
	value = __raw_readl(GPIO_BASE(chip) + MASK_OFFSET + mask_offset);
	value |= BIT(offset);
	__raw_writel(value, GPIO_BASE(chip) + MASK_OFFSET + mask_offset);
78 79
}

80
static void s5p_gpioint_unmask(struct irq_data *data)
81
{
T
Thomas Gleixner 已提交
82
	struct s3c_gpio_chip *chip = irq_data_get_irq_handler_data(data);
83 84 85
	int group, offset, mask_offset;
	unsigned int value;

86
	group = chip->group;
87
	offset = s5p_gpioint_get_offset(data);
88
	mask_offset = REG_OFFSET(group);
89

90 91 92
	value = __raw_readl(GPIO_BASE(chip) + MASK_OFFSET + mask_offset);
	value &= ~BIT(offset);
	__raw_writel(value, GPIO_BASE(chip) + MASK_OFFSET + mask_offset);
93 94
}

95
static void s5p_gpioint_mask_ack(struct irq_data *data)
96
{
97 98
	s5p_gpioint_mask(data);
	s5p_gpioint_ack(data);
99 100
}

101
static int s5p_gpioint_set_type(struct irq_data *data, unsigned int type)
102
{
T
Thomas Gleixner 已提交
103
	struct s3c_gpio_chip *chip = irq_data_get_irq_handler_data(data);
104 105 106
	int group, offset, con_offset;
	unsigned int value;

107
	group = chip->group;
108
	offset = s5p_gpioint_get_offset(data);
109
	con_offset = REG_OFFSET(group);
110 111 112

	switch (type) {
	case IRQ_TYPE_EDGE_RISING:
113
		type = S5P_IRQ_TYPE_EDGE_RISING;
114 115
		break;
	case IRQ_TYPE_EDGE_FALLING:
116
		type = S5P_IRQ_TYPE_EDGE_FALLING;
117 118
		break;
	case IRQ_TYPE_EDGE_BOTH:
119
		type = S5P_IRQ_TYPE_EDGE_BOTH;
120 121
		break;
	case IRQ_TYPE_LEVEL_HIGH:
122
		type = S5P_IRQ_TYPE_LEVEL_HIGH;
123 124
		break;
	case IRQ_TYPE_LEVEL_LOW:
125
		type = S5P_IRQ_TYPE_LEVEL_LOW;
126 127 128 129 130 131 132
		break;
	case IRQ_TYPE_NONE:
	default:
		printk(KERN_WARNING "No irq type\n");
		return -EINVAL;
	}

133
	value = __raw_readl(GPIO_BASE(chip) + CON_OFFSET + con_offset);
134 135
	value &= ~(0x7 << (offset * 0x4));
	value |= (type << (offset * 0x4));
136
	__raw_writel(value, GPIO_BASE(chip) + CON_OFFSET + con_offset);
137 138 139 140

	return 0;
}

141
static struct irq_chip s5p_gpioint = {
142
	.name		= "s5p_gpioint",
143 144 145 146 147
	.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,
148 149 150 151
};

static void s5p_gpioint_handler(unsigned int irq, struct irq_desc *desc)
{
T
Thomas Gleixner 已提交
152
	struct s5p_gpioint_bank *bank = irq_get_handler_data(irq);
153
	int group, pend_offset, mask_offset;
154 155
	unsigned int pend, mask;

156 157
	for (group = 0; group < bank->nr_groups; group++) {
		struct s3c_gpio_chip *chip = bank->chips[group];
158 159 160 161 162
		if (!chip)
			continue;

		pend_offset = REG_OFFSET(group);
		pend = __raw_readl(GPIO_BASE(chip) + PEND_OFFSET + pend_offset);
163 164 165
		if (!pend)
			continue;

166 167
		mask_offset = REG_OFFSET(group);
		mask = __raw_readl(GPIO_BASE(chip) + MASK_OFFSET + mask_offset);
168 169
		pend &= ~mask;

170 171 172 173 174
		while (pend) {
			int offset = fls(pend) - 1;
			int real_irq = chip->irq_base + offset;
			generic_handle_irq(real_irq);
			pend &= ~BIT(offset);
175 176 177 178 179 180 181 182 183
		}
	}
}

static __init int s5p_gpioint_add(struct s3c_gpio_chip *chip)
{
	static int used_gpioint_groups = 0;
	int irq, group = chip->group;
	int i;
184
	struct s5p_gpioint_bank *bank = NULL;
185 186 187 188

	if (used_gpioint_groups >= S5P_GPIOINT_GROUP_COUNT)
		return -ENOMEM;

189 190 191 192 193 194 195 196 197 198 199 200 201 202
	list_for_each_entry(bank, &banks, list) {
		if (group >= bank->start &&
		    group < bank->start + bank->nr_groups)
			break;
	}
	if (!bank)
		return -EINVAL;

	if (!bank->handler) {
		bank->chips = kzalloc(sizeof(struct s3c_gpio_chip *) *
				      bank->nr_groups, GFP_KERNEL);
		if (!bank->chips)
			return -ENOMEM;

T
Thomas Gleixner 已提交
203 204
		irq_set_chained_handler(bank->irq, s5p_gpioint_handler);
		irq_set_handler_data(bank->irq, bank);
205 206 207 208 209 210 211 212 213 214
		bank->handler = s5p_gpioint_handler;
		printk(KERN_INFO "Registered chained gpio int handler for interrupt %d.\n",
		       bank->irq);
	}

	/*
	 * chained GPIO irq has been sucessfully registered, allocate new gpio
	 * int group and assign irq nubmers
	 */

215 216 217 218
	chip->irq_base = S5P_GPIOINT_BASE +
			 used_gpioint_groups * S5P_GPIOINT_GROUP_SIZE;
	used_gpioint_groups++;

219
	bank->chips[group - bank->start] = chip;
220 221
	for (i = 0; i < chip->chip.ngpio; i++) {
		irq = chip->irq_base + i;
T
Thomas Gleixner 已提交
222 223 224
		irq_set_chip(irq, &s5p_gpioint);
		irq_set_handler_data(irq, chip);
		irq_set_handler(irq, handle_level_irq);
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
		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) {
249
		my_chip->chip.to_irq = samsung_gpiolib_to_irq;
250 251 252 253 254 255
		printk(KERN_INFO "Registered interrupt support for gpio group %d.\n",
		       group);
		return my_chip->irq_base + offset;
	}
	return ret;
}
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271

int __init s5p_register_gpioint_bank(int chain_irq, int start, int nr_groups)
{
	struct s5p_gpioint_bank *bank;

	bank = kzalloc(sizeof(*bank), GFP_KERNEL);
	if (!bank)
		return -ENOMEM;

	bank->start = start;
	bank->nr_groups = nr_groups;
	bank->irq = chain_irq;

	list_add_tail(&bank->list, &banks);
	return 0;
}