intc.c 21.3 KB
Newer Older
1 2 3
/*
 * Shared interrupt handling code for IPR and INTC2 types of IRQs.
 *
M
Magnus Damm 已提交
4
 * Copyright (C) 2007, 2008 Magnus Damm
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 * Based on intc2.c and ipr.c
 *
 * Copyright (C) 1999  Niibe Yutaka & Takeshi Yaegashi
 * Copyright (C) 2000  Kazumoto Kojima
 * Copyright (C) 2001  David J. Mckay (david.mckay@st.com)
 * Copyright (C) 2003  Takashi Kusuda <kusuda-takashi@hitachi-ul.co.jp>
 * Copyright (C) 2005, 2006  Paul Mundt
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 */
#include <linux/init.h>
#include <linux/irq.h>
#include <linux/module.h>
#include <linux/io.h>
#include <linux/interrupt.h>
23
#include <linux/sh_intc.h>
M
Magnus Damm 已提交
24 25
#include <linux/sysdev.h>
#include <linux/list.h>
P
Paul Mundt 已提交
26
#include <linux/topology.h>
M
Magnus Damm 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42

#define _INTC_MK(fn, mode, addr_e, addr_d, width, shift) \
	((shift) | ((width) << 5) | ((fn) << 9) | ((mode) << 13) | \
	 ((addr_e) << 16) | ((addr_d << 24)))

#define _INTC_SHIFT(h) (h & 0x1f)
#define _INTC_WIDTH(h) ((h >> 5) & 0xf)
#define _INTC_FN(h) ((h >> 9) & 0xf)
#define _INTC_MODE(h) ((h >> 13) & 0x7)
#define _INTC_ADDR_E(h) ((h >> 16) & 0xff)
#define _INTC_ADDR_D(h) ((h >> 24) & 0xff)

struct intc_handle_int {
	unsigned int irq;
	unsigned long handle;
};
43

M
Magnus Damm 已提交
44
struct intc_desc_int {
M
Magnus Damm 已提交
45 46
	struct list_head list;
	struct sys_device sysdev;
47
	pm_message_t state;
M
Magnus Damm 已提交
48
	unsigned long *reg;
M
Magnus Damm 已提交
49 50 51
#ifdef CONFIG_SMP
	unsigned long *smp;
#endif
M
Magnus Damm 已提交
52 53 54 55 56 57 58
	unsigned int nr_reg;
	struct intc_handle_int *prio;
	unsigned int nr_prio;
	struct intc_handle_int *sense;
	unsigned int nr_sense;
	struct irq_chip chip;
};
59

M
Magnus Damm 已提交
60 61
static LIST_HEAD(intc_list);

M
Magnus Damm 已提交
62 63 64 65 66 67 68 69 70 71
#ifdef CONFIG_SMP
#define IS_SMP(x) x.smp
#define INTC_REG(d, x, c) (d->reg[(x)] + ((d->smp[(x)] & 0xff) * c))
#define SMP_NR(d, x) ((d->smp[(x)] >> 8) ? (d->smp[(x)] >> 8) : 1)
#else
#define IS_SMP(x) 0
#define INTC_REG(d, x, c) (d->reg[(x)])
#define SMP_NR(d, x) 1
#endif

M
Magnus Damm 已提交
72
static unsigned int intc_prio_level[NR_IRQS]; /* for now */
73
#if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A)
M
Magnus Damm 已提交
74 75
static unsigned long ack_handle[NR_IRQS];
#endif
76

M
Magnus Damm 已提交
77
static inline struct intc_desc_int *get_intc_desc(unsigned int irq)
78 79
{
	struct irq_chip *chip = get_irq_chip(irq);
80
	return container_of(chip, struct intc_desc_int, chip);
81 82 83 84
}

static inline unsigned int set_field(unsigned int value,
				     unsigned int field_value,
M
Magnus Damm 已提交
85
				     unsigned int handle)
86
{
M
Magnus Damm 已提交
87 88 89
	unsigned int width = _INTC_WIDTH(handle);
	unsigned int shift = _INTC_SHIFT(handle);

90 91 92 93 94
	value &= ~(((1 << width) - 1) << shift);
	value |= field_value << shift;
	return value;
}

M
Magnus Damm 已提交
95
static void write_8(unsigned long addr, unsigned long h, unsigned long data)
96
{
97
	__raw_writeb(set_field(0, data, h), addr);
98
	(void)__raw_readb(addr);	/* Defeat write posting */
99 100
}

M
Magnus Damm 已提交
101
static void write_16(unsigned long addr, unsigned long h, unsigned long data)
102
{
103
	__raw_writew(set_field(0, data, h), addr);
104
	(void)__raw_readw(addr);	/* Defeat write posting */
105 106
}

M
Magnus Damm 已提交
107
static void write_32(unsigned long addr, unsigned long h, unsigned long data)
108
{
109
	__raw_writel(set_field(0, data, h), addr);
110
	(void)__raw_readl(addr);	/* Defeat write posting */
111 112
}

M
Magnus Damm 已提交
113
static void modify_8(unsigned long addr, unsigned long h, unsigned long data)
114
{
M
Magnus Damm 已提交
115 116
	unsigned long flags;
	local_irq_save(flags);
117
	__raw_writeb(set_field(__raw_readb(addr), data, h), addr);
118
	(void)__raw_readb(addr);	/* Defeat write posting */
M
Magnus Damm 已提交
119
	local_irq_restore(flags);
120 121
}

M
Magnus Damm 已提交
122
static void modify_16(unsigned long addr, unsigned long h, unsigned long data)
123
{
M
Magnus Damm 已提交
124 125
	unsigned long flags;
	local_irq_save(flags);
126
	__raw_writew(set_field(__raw_readw(addr), data, h), addr);
127
	(void)__raw_readw(addr);	/* Defeat write posting */
M
Magnus Damm 已提交
128
	local_irq_restore(flags);
129 130
}

M
Magnus Damm 已提交
131
static void modify_32(unsigned long addr, unsigned long h, unsigned long data)
132
{
M
Magnus Damm 已提交
133 134
	unsigned long flags;
	local_irq_save(flags);
135
	__raw_writel(set_field(__raw_readl(addr), data, h), addr);
136
	(void)__raw_readl(addr);	/* Defeat write posting */
M
Magnus Damm 已提交
137
	local_irq_restore(flags);
138 139
}

M
Magnus Damm 已提交
140 141 142 143 144 145 146 147 148 149 150 151
enum {	REG_FN_ERR = 0, REG_FN_WRITE_BASE = 1, REG_FN_MODIFY_BASE = 5 };

static void (*intc_reg_fns[])(unsigned long addr,
			      unsigned long h,
			      unsigned long data) = {
	[REG_FN_WRITE_BASE + 0] = write_8,
	[REG_FN_WRITE_BASE + 1] = write_16,
	[REG_FN_WRITE_BASE + 3] = write_32,
	[REG_FN_MODIFY_BASE + 0] = modify_8,
	[REG_FN_MODIFY_BASE + 1] = modify_16,
	[REG_FN_MODIFY_BASE + 3] = modify_32,
};
152

M
Magnus Damm 已提交
153 154 155 156 157 158
enum {	MODE_ENABLE_REG = 0, /* Bit(s) set -> interrupt enabled */
	MODE_MASK_REG,       /* Bit(s) set -> interrupt disabled */
	MODE_DUAL_REG,       /* Two registers, set bit to enable / disable */
	MODE_PRIO_REG,       /* Priority value written to enable interrupt */
	MODE_PCLR_REG,       /* Above plus all bits set to disable interrupt */
};
159

M
Magnus Damm 已提交
160 161 162 163 164 165
static void intc_mode_field(unsigned long addr,
			    unsigned long handle,
			    void (*fn)(unsigned long,
				       unsigned long,
				       unsigned long),
			    unsigned int irq)
166
{
M
Magnus Damm 已提交
167
	fn(addr, handle, ((1 << _INTC_WIDTH(handle)) - 1));
168 169
}

M
Magnus Damm 已提交
170 171 172 173 174 175
static void intc_mode_zero(unsigned long addr,
			   unsigned long handle,
			   void (*fn)(unsigned long,
				       unsigned long,
				       unsigned long),
			   unsigned int irq)
176
{
M
Magnus Damm 已提交
177
	fn(addr, handle, 0);
178 179
}

M
Magnus Damm 已提交
180 181 182 183 184 185
static void intc_mode_prio(unsigned long addr,
			   unsigned long handle,
			   void (*fn)(unsigned long,
				       unsigned long,
				       unsigned long),
			   unsigned int irq)
186
{
M
Magnus Damm 已提交
187
	fn(addr, handle, intc_prio_level[irq]);
188 189
}

M
Magnus Damm 已提交
190 191 192 193 194 195 196 197 198 199 200 201
static void (*intc_enable_fns[])(unsigned long addr,
				 unsigned long handle,
				 void (*fn)(unsigned long,
					    unsigned long,
					    unsigned long),
				 unsigned int irq) = {
	[MODE_ENABLE_REG] = intc_mode_field,
	[MODE_MASK_REG] = intc_mode_zero,
	[MODE_DUAL_REG] = intc_mode_field,
	[MODE_PRIO_REG] = intc_mode_prio,
	[MODE_PCLR_REG] = intc_mode_prio,
};
202

M
Magnus Damm 已提交
203 204 205 206 207 208 209 210 211 212 213 214
static void (*intc_disable_fns[])(unsigned long addr,
				  unsigned long handle,
				  void (*fn)(unsigned long,
					     unsigned long,
					     unsigned long),
				  unsigned int irq) = {
	[MODE_ENABLE_REG] = intc_mode_zero,
	[MODE_MASK_REG] = intc_mode_field,
	[MODE_DUAL_REG] = intc_mode_field,
	[MODE_PRIO_REG] = intc_mode_zero,
	[MODE_PCLR_REG] = intc_mode_field,
};
215

M
Magnus Damm 已提交
216
static inline void _intc_enable(unsigned int irq, unsigned long handle)
217
{
M
Magnus Damm 已提交
218
	struct intc_desc_int *d = get_intc_desc(irq);
M
Magnus Damm 已提交
219 220
	unsigned long addr;
	unsigned int cpu;
221

M
Magnus Damm 已提交
222 223 224 225 226
	for (cpu = 0; cpu < SMP_NR(d, _INTC_ADDR_E(handle)); cpu++) {
		addr = INTC_REG(d, _INTC_ADDR_E(handle), cpu);
		intc_enable_fns[_INTC_MODE(handle)](addr, handle, intc_reg_fns\
						    [_INTC_FN(handle)], irq);
	}
227 228
}

229 230
static void intc_enable(unsigned int irq)
{
M
Magnus Damm 已提交
231
	_intc_enable(irq, (unsigned long)get_irq_chip_data(irq));
232 233 234 235
}

static void intc_disable(unsigned int irq)
{
M
Magnus Damm 已提交
236
	struct intc_desc_int *d = get_intc_desc(irq);
M
Magnus Damm 已提交
237
	unsigned long handle = (unsigned long) get_irq_chip_data(irq);
M
Magnus Damm 已提交
238 239
	unsigned long addr;
	unsigned int cpu;
240

M
Magnus Damm 已提交
241 242 243 244 245
	for (cpu = 0; cpu < SMP_NR(d, _INTC_ADDR_D(handle)); cpu++) {
		addr = INTC_REG(d, _INTC_ADDR_D(handle), cpu);
		intc_disable_fns[_INTC_MODE(handle)](addr, handle,intc_reg_fns\
						     [_INTC_FN(handle)], irq);
	}
246 247
}

M
Magnus Damm 已提交
248 249 250 251 252
static int intc_set_wake(unsigned int irq, unsigned int on)
{
	return 0; /* allow wakeup, but setup hardware in intc_suspend() */
}

253
#if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A)
M
Magnus Damm 已提交
254 255 256 257 258 259 260 261 262 263 264 265
static void intc_mask_ack(unsigned int irq)
{
	struct intc_desc_int *d = get_intc_desc(irq);
	unsigned long handle = ack_handle[irq];
	unsigned long addr;

	intc_disable(irq);

	/* read register and write zero only to the assocaited bit */

	if (handle) {
		addr = INTC_REG(d, _INTC_ADDR_D(handle), 0);
266 267
		switch (_INTC_FN(handle)) {
		case REG_FN_MODIFY_BASE + 0:	/* 8bit */
268 269
			__raw_readb(addr);
			__raw_writeb(0xff ^ set_field(0, 1, handle), addr);
270 271
			break;
		case REG_FN_MODIFY_BASE + 1:	/* 16bit */
272 273
			__raw_readw(addr);
			__raw_writew(0xffff ^ set_field(0, 1, handle), addr);
274 275
			break;
		case REG_FN_MODIFY_BASE + 3:	/* 32bit */
276 277
			__raw_readl(addr);
			__raw_writel(0xffffffff ^ set_field(0, 1, handle), addr);
278 279 280 281 282
			break;
		default:
			BUG();
			break;
		}
M
Magnus Damm 已提交
283 284 285 286
	}
}
#endif

M
Magnus Damm 已提交
287 288 289
static struct intc_handle_int *intc_find_irq(struct intc_handle_int *hp,
					     unsigned int nr_hp,
					     unsigned int irq)
290
{
M
Magnus Damm 已提交
291 292
	int i;

293 294 295 296 297 298 299 300 301 302 303 304
	/* this doesn't scale well, but...
	 *
	 * this function should only be used for cerain uncommon
	 * operations such as intc_set_priority() and intc_set_sense()
	 * and in those rare cases performance doesn't matter that much.
	 * keeping the memory footprint low is more important.
	 *
	 * one rather simple way to speed this up and still keep the
	 * memory footprint down is to make sure the array is sorted
	 * and then perform a bisect to lookup the irq.
	 */

M
Magnus Damm 已提交
305 306 307 308 309 310
	for (i = 0; i < nr_hp; i++) {
		if ((hp + i)->irq != irq)
			continue;

		return hp + i;
	}
311

M
Magnus Damm 已提交
312
	return NULL;
313 314
}

M
Magnus Damm 已提交
315
int intc_set_priority(unsigned int irq, unsigned int prio)
316
{
M
Magnus Damm 已提交
317 318 319 320 321 322 323 324
	struct intc_desc_int *d = get_intc_desc(irq);
	struct intc_handle_int *ihp;

	if (!intc_prio_level[irq] || prio <= 1)
		return -EINVAL;

	ihp = intc_find_irq(d->prio, d->nr_prio, irq);
	if (ihp) {
325
		if (prio >= (1 << _INTC_WIDTH(ihp->handle)))
M
Magnus Damm 已提交
326
			return -EINVAL;
327

M
Magnus Damm 已提交
328 329 330 331 332 333 334 335
		intc_prio_level[irq] = prio;

		/*
		 * only set secondary masking method directly
		 * primary masking method is using intc_prio_level[irq]
		 * priority level will be set during next enable()
		 */

336
		if (_INTC_FN(ihp->handle) != REG_FN_ERR)
M
Magnus Damm 已提交
337 338 339
			_intc_enable(irq, ihp->handle);
	}
	return 0;
340 341 342 343 344 345 346 347
}

#define VALID(x) (x | 0x80)

static unsigned char intc_irq_sense_table[IRQ_TYPE_SENSE_MASK + 1] = {
	[IRQ_TYPE_EDGE_FALLING] = VALID(0),
	[IRQ_TYPE_EDGE_RISING] = VALID(1),
	[IRQ_TYPE_LEVEL_LOW] = VALID(2),
348 349 350 351
	/* SH7706, SH7707 and SH7709 do not support high level triggered */
#if !defined(CONFIG_CPU_SUBTYPE_SH7706) && \
    !defined(CONFIG_CPU_SUBTYPE_SH7707) && \
    !defined(CONFIG_CPU_SUBTYPE_SH7709)
352
	[IRQ_TYPE_LEVEL_HIGH] = VALID(3),
353
#endif
354 355 356 357
};

static int intc_set_sense(unsigned int irq, unsigned int type)
{
M
Magnus Damm 已提交
358
	struct intc_desc_int *d = get_intc_desc(irq);
359
	unsigned char value = intc_irq_sense_table[type & IRQ_TYPE_SENSE_MASK];
M
Magnus Damm 已提交
360 361
	struct intc_handle_int *ihp;
	unsigned long addr;
362

M
Magnus Damm 已提交
363
	if (!value)
364 365
		return -EINVAL;

M
Magnus Damm 已提交
366 367
	ihp = intc_find_irq(d->sense, d->nr_sense, irq);
	if (ihp) {
M
Magnus Damm 已提交
368
		addr = INTC_REG(d, _INTC_ADDR_E(ihp->handle), 0);
M
Magnus Damm 已提交
369
		intc_reg_fns[_INTC_FN(ihp->handle)](addr, ihp->handle, value);
370
	}
M
Magnus Damm 已提交
371
	return 0;
372 373
}

M
Magnus Damm 已提交
374 375
static unsigned int __init intc_get_reg(struct intc_desc_int *d,
				 unsigned long address)
376
{
M
Magnus Damm 已提交
377
	unsigned int k;
378

M
Magnus Damm 已提交
379 380 381
	for (k = 0; k < d->nr_reg; k++) {
		if (d->reg[k] == address)
			return k;
382 383 384
	}

	BUG();
M
Magnus Damm 已提交
385
	return 0;
386 387
}

M
Magnus Damm 已提交
388 389
static intc_enum __init intc_grp_id(struct intc_desc *desc,
				    intc_enum enum_id)
M
Magnus Damm 已提交
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
{
	struct intc_group *g = desc->groups;
	unsigned int i, j;

	for (i = 0; g && enum_id && i < desc->nr_groups; i++) {
		g = desc->groups + i;

		for (j = 0; g->enum_ids[j]; j++) {
			if (g->enum_ids[j] != enum_id)
				continue;

			return g->enum_id;
		}
	}

	return 0;
}

408
static unsigned int __init intc_mask_data(struct intc_desc *desc,
M
Magnus Damm 已提交
409
					  struct intc_desc_int *d,
M
Magnus Damm 已提交
410
					  intc_enum enum_id, int do_grps)
411
{
M
Magnus Damm 已提交
412
	struct intc_mask_reg *mr = desc->mask_regs;
M
Magnus Damm 已提交
413 414
	unsigned int i, j, fn, mode;
	unsigned long reg_e, reg_d;
415

M
Magnus Damm 已提交
416 417
	for (i = 0; mr && enum_id && i < desc->nr_mask_regs; i++) {
		mr = desc->mask_regs + i;
418 419 420 421 422

		for (j = 0; j < ARRAY_SIZE(mr->enum_ids); j++) {
			if (mr->enum_ids[j] != enum_id)
				continue;

M
Magnus Damm 已提交
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
			if (mr->set_reg && mr->clr_reg) {
				fn = REG_FN_WRITE_BASE;
				mode = MODE_DUAL_REG;
				reg_e = mr->clr_reg;
				reg_d = mr->set_reg;
			} else {
				fn = REG_FN_MODIFY_BASE;
				if (mr->set_reg) {
					mode = MODE_ENABLE_REG;
					reg_e = mr->set_reg;
					reg_d = mr->set_reg;
				} else {
					mode = MODE_MASK_REG;
					reg_e = mr->clr_reg;
					reg_d = mr->clr_reg;
				}
439 440
			}

M
Magnus Damm 已提交
441 442 443 444 445 446
			fn += (mr->reg_width >> 3) - 1;
			return _INTC_MK(fn, mode,
					intc_get_reg(d, reg_e),
					intc_get_reg(d, reg_d),
					1,
					(mr->reg_width - 1) - j);
447 448 449
		}
	}

M
Magnus Damm 已提交
450
	if (do_grps)
M
Magnus Damm 已提交
451
		return intc_mask_data(desc, d, intc_grp_id(desc, enum_id), 0);
M
Magnus Damm 已提交
452

453 454 455 456
	return 0;
}

static unsigned int __init intc_prio_data(struct intc_desc *desc,
M
Magnus Damm 已提交
457
					  struct intc_desc_int *d,
M
Magnus Damm 已提交
458
					  intc_enum enum_id, int do_grps)
459
{
M
Magnus Damm 已提交
460
	struct intc_prio_reg *pr = desc->prio_regs;
M
Magnus Damm 已提交
461 462
	unsigned int i, j, fn, mode, bit;
	unsigned long reg_e, reg_d;
463

M
Magnus Damm 已提交
464 465
	for (i = 0; pr && enum_id && i < desc->nr_prio_regs; i++) {
		pr = desc->prio_regs + i;
466 467 468 469 470

		for (j = 0; j < ARRAY_SIZE(pr->enum_ids); j++) {
			if (pr->enum_ids[j] != enum_id)
				continue;

M
Magnus Damm 已提交
471 472 473 474 475 476 477 478 479 480 481 482 483
			if (pr->set_reg && pr->clr_reg) {
				fn = REG_FN_WRITE_BASE;
				mode = MODE_PCLR_REG;
				reg_e = pr->set_reg;
				reg_d = pr->clr_reg;
			} else {
				fn = REG_FN_MODIFY_BASE;
				mode = MODE_PRIO_REG;
				if (!pr->set_reg)
					BUG();
				reg_e = pr->set_reg;
				reg_d = pr->set_reg;
			}
484

M
Magnus Damm 已提交
485
			fn += (pr->reg_width >> 3) - 1;
486

487 488 489
			BUG_ON((j + 1) * pr->field_width > pr->reg_width);

			bit = pr->reg_width - ((j + 1) * pr->field_width);
490

M
Magnus Damm 已提交
491 492 493 494
			return _INTC_MK(fn, mode,
					intc_get_reg(d, reg_e),
					intc_get_reg(d, reg_d),
					pr->field_width, bit);
495 496 497
		}
	}

M
Magnus Damm 已提交
498
	if (do_grps)
M
Magnus Damm 已提交
499 500 501 502 503
		return intc_prio_data(desc, d, intc_grp_id(desc, enum_id), 0);

	return 0;
}

504
#if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A)
M
Magnus Damm 已提交
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
static unsigned int __init intc_ack_data(struct intc_desc *desc,
					  struct intc_desc_int *d,
					  intc_enum enum_id)
{
	struct intc_mask_reg *mr = desc->ack_regs;
	unsigned int i, j, fn, mode;
	unsigned long reg_e, reg_d;

	for (i = 0; mr && enum_id && i < desc->nr_ack_regs; i++) {
		mr = desc->ack_regs + i;

		for (j = 0; j < ARRAY_SIZE(mr->enum_ids); j++) {
			if (mr->enum_ids[j] != enum_id)
				continue;

			fn = REG_FN_MODIFY_BASE;
			mode = MODE_ENABLE_REG;
			reg_e = mr->set_reg;
			reg_d = mr->set_reg;

			fn += (mr->reg_width >> 3) - 1;
			return _INTC_MK(fn, mode,
					intc_get_reg(d, reg_e),
					intc_get_reg(d, reg_d),
					1,
					(mr->reg_width - 1) - j);
		}
	}

	return 0;
}
#endif

M
Magnus Damm 已提交
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
static unsigned int __init intc_sense_data(struct intc_desc *desc,
					   struct intc_desc_int *d,
					   intc_enum enum_id)
{
	struct intc_sense_reg *sr = desc->sense_regs;
	unsigned int i, j, fn, bit;

	for (i = 0; sr && enum_id && i < desc->nr_sense_regs; i++) {
		sr = desc->sense_regs + i;

		for (j = 0; j < ARRAY_SIZE(sr->enum_ids); j++) {
			if (sr->enum_ids[j] != enum_id)
				continue;

			fn = REG_FN_MODIFY_BASE;
			fn += (sr->reg_width >> 3) - 1;

555 556 557
			BUG_ON((j + 1) * sr->field_width > sr->reg_width);

			bit = sr->reg_width - ((j + 1) * sr->field_width);
M
Magnus Damm 已提交
558 559 560 561 562

			return _INTC_MK(fn, 0, intc_get_reg(d, sr->reg),
					0, sr->field_width, bit);
		}
	}
M
Magnus Damm 已提交
563

564 565 566
	return 0;
}

M
Magnus Damm 已提交
567 568 569
static void __init intc_register_irq(struct intc_desc *desc,
				     struct intc_desc_int *d,
				     intc_enum enum_id,
570 571
				     unsigned int irq)
{
572
	struct intc_handle_int *hp;
M
Magnus Damm 已提交
573 574 575 576 577 578 579 580
	unsigned int data[2], primary;

	/* Prefer single interrupt source bitmap over other combinations:
	 * 1. bitmap, single interrupt source
	 * 2. priority, single interrupt source
	 * 3. bitmap, multiple interrupt sources (groups)
	 * 4. priority, multiple interrupt sources (groups)
	 */
581

M
Magnus Damm 已提交
582 583
	data[0] = intc_mask_data(desc, d, enum_id, 0);
	data[1] = intc_prio_data(desc, d, enum_id, 0);
M
Magnus Damm 已提交
584 585 586 587 588

	primary = 0;
	if (!data[0] && data[1])
		primary = 1;

589
	if (!data[0] && !data[1])
590 591
		pr_warning("intc: missing unique irq mask for "
			   "irq %d (vect 0x%04x)\n", irq, irq2evt(irq));
592

M
Magnus Damm 已提交
593 594
	data[0] = data[0] ? data[0] : intc_mask_data(desc, d, enum_id, 1);
	data[1] = data[1] ? data[1] : intc_prio_data(desc, d, enum_id, 1);
M
Magnus Damm 已提交
595 596 597 598 599

	if (!data[primary])
		primary ^= 1;

	BUG_ON(!data[primary]); /* must have primary masking method */
600 601

	disable_irq_nosync(irq);
M
Magnus Damm 已提交
602
	set_irq_chip_and_handler_name(irq, &d->chip,
603
				      handle_level_irq, "level");
M
Magnus Damm 已提交
604
	set_irq_chip_data(irq, (void *)data[primary]);
605

606 607 608 609
	/* set priority level
	 * - this needs to be at least 2 for 5-bit priorities on 7780
	 */
	intc_prio_level[irq] = 2;
M
Magnus Damm 已提交
610

M
Magnus Damm 已提交
611 612
	/* enable secondary masking method if present */
	if (data[!primary])
M
Magnus Damm 已提交
613 614 615 616
		_intc_enable(irq, data[!primary]);

	/* add irq to d->prio list if priority is available */
	if (data[1]) {
617 618 619 620 621 622 623 624 625 626 627 628 629
		hp = d->prio + d->nr_prio;
		hp->irq = irq;
		hp->handle = data[1];

		if (primary) {
			/*
			 * only secondary priority should access registers, so
			 * set _INTC_FN(h) = REG_FN_ERR for intc_set_priority()
			 */

			hp->handle &= ~_INTC_MK(0x0f, 0, 0, 0, 0, 0);
			hp->handle |= _INTC_MK(REG_FN_ERR, 0, 0, 0, 0, 0);
		}
M
Magnus Damm 已提交
630 631 632 633 634 635 636 637 638 639
		d->nr_prio++;
	}

	/* add irq to d->sense list if sense is available */
	data[0] = intc_sense_data(desc, d, enum_id);
	if (data[0]) {
		(d->sense + d->nr_sense)->irq = irq;
		(d->sense + d->nr_sense)->handle = data[0];
		d->nr_sense++;
	}
640 641

	/* irq should be disabled by default */
M
Magnus Damm 已提交
642
	d->chip.mask(irq);
M
Magnus Damm 已提交
643

644
#if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A)
M
Magnus Damm 已提交
645 646 647
	if (desc->ack_regs)
		ack_handle[irq] = intc_ack_data(desc, d, enum_id);
#endif
648 649
}

M
Magnus Damm 已提交
650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665
static unsigned int __init save_reg(struct intc_desc_int *d,
				    unsigned int cnt,
				    unsigned long value,
				    unsigned int smp)
{
	if (value) {
		d->reg[cnt] = value;
#ifdef CONFIG_SMP
		d->smp[cnt] = smp;
#endif
		return 1;
	}

	return 0;
}

666 667 668 669 670 671 672 673 674 675 676
static unsigned char *intc_evt2irq_table;

unsigned int intc_evt2irq(unsigned int vector)
{
	unsigned int irq = evt2irq(vector);

	if (intc_evt2irq_table && intc_evt2irq_table[irq])
		irq = intc_evt2irq_table[irq];

	return irq;
}
M
Magnus Damm 已提交
677

678 679
void __init register_intc_controller(struct intc_desc *desc)
{
P
Paul Mundt 已提交
680
	unsigned int i, k, smp;
M
Magnus Damm 已提交
681 682
	struct intc_desc_int *d;

683
	d = kzalloc(sizeof(*d), GFP_NOWAIT);
M
Magnus Damm 已提交
684

M
Magnus Damm 已提交
685 686 687
	INIT_LIST_HEAD(&d->list);
	list_add(&d->list, &intc_list);

M
Magnus Damm 已提交
688 689 690 691
	d->nr_reg = desc->mask_regs ? desc->nr_mask_regs * 2 : 0;
	d->nr_reg += desc->prio_regs ? desc->nr_prio_regs * 2 : 0;
	d->nr_reg += desc->sense_regs ? desc->nr_sense_regs : 0;

692
#if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A)
M
Magnus Damm 已提交
693 694
	d->nr_reg += desc->ack_regs ? desc->nr_ack_regs : 0;
#endif
695
	d->reg = kzalloc(d->nr_reg * sizeof(*d->reg), GFP_NOWAIT);
M
Magnus Damm 已提交
696
#ifdef CONFIG_SMP
697
	d->smp = kzalloc(d->nr_reg * sizeof(*d->smp), GFP_NOWAIT);
M
Magnus Damm 已提交
698
#endif
M
Magnus Damm 已提交
699 700 701 702
	k = 0;

	if (desc->mask_regs) {
		for (i = 0; i < desc->nr_mask_regs; i++) {
M
Magnus Damm 已提交
703 704 705
			smp = IS_SMP(desc->mask_regs[i]);
			k += save_reg(d, k, desc->mask_regs[i].set_reg, smp);
			k += save_reg(d, k, desc->mask_regs[i].clr_reg, smp);
M
Magnus Damm 已提交
706 707 708 709
		}
	}

	if (desc->prio_regs) {
710
		d->prio = kzalloc(desc->nr_vectors * sizeof(*d->prio), GFP_NOWAIT);
M
Magnus Damm 已提交
711 712

		for (i = 0; i < desc->nr_prio_regs; i++) {
M
Magnus Damm 已提交
713 714 715
			smp = IS_SMP(desc->prio_regs[i]);
			k += save_reg(d, k, desc->prio_regs[i].set_reg, smp);
			k += save_reg(d, k, desc->prio_regs[i].clr_reg, smp);
M
Magnus Damm 已提交
716 717 718 719
		}
	}

	if (desc->sense_regs) {
720
		d->sense = kzalloc(desc->nr_vectors * sizeof(*d->sense), GFP_NOWAIT);
M
Magnus Damm 已提交
721 722

		for (i = 0; i < desc->nr_sense_regs; i++) {
M
Magnus Damm 已提交
723
			k += save_reg(d, k, desc->sense_regs[i].reg, 0);
M
Magnus Damm 已提交
724 725 726 727 728 729 730
		}
	}

	d->chip.name = desc->name;
	d->chip.mask = intc_disable;
	d->chip.unmask = intc_enable;
	d->chip.mask_ack = intc_disable;
731 732 733
	d->chip.enable = intc_enable;
	d->chip.disable = intc_disable;
	d->chip.shutdown = intc_disable;
M
Magnus Damm 已提交
734
	d->chip.set_type = intc_set_sense;
M
Magnus Damm 已提交
735
	d->chip.set_wake = intc_set_wake;
736

737
#if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A)
M
Magnus Damm 已提交
738 739 740 741 742 743 744 745 746 747
	if (desc->ack_regs) {
		for (i = 0; i < desc->nr_ack_regs; i++)
			k += save_reg(d, k, desc->ack_regs[i].set_reg, 0);

		d->chip.mask_ack = intc_mask_ack;
	}
#endif

	BUG_ON(k > 256); /* _INTC_ADDR_E() and _INTC_ADDR_D() are 8 bits */

748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764
	/* keep the first vector only if same enum is used multiple times */
	for (i = 0; i < desc->nr_vectors; i++) {
		struct intc_vect *vect = desc->vectors + i;
		int first_irq = evt2irq(vect->vect);

		if (!vect->enum_id)
			continue;

		for (k = i + 1; k < desc->nr_vectors; k++) {
			struct intc_vect *vect2 = desc->vectors + k;

			if (vect->enum_id != vect2->enum_id)
				continue;

			vect2->enum_id = 0;

			if (!intc_evt2irq_table)
765
				intc_evt2irq_table = kzalloc(NR_IRQS, GFP_NOWAIT);
766 767 768 769 770 771 772 773 774 775 776

			if (!intc_evt2irq_table) {
				pr_warning("intc: cannot allocate evt2irq!\n");
				continue;
			}

			intc_evt2irq_table[evt2irq(vect2->vect)] = first_irq;
		}
	}

	/* register the vectors one by one */
777 778
	for (i = 0; i < desc->nr_vectors; i++) {
		struct intc_vect *vect = desc->vectors + i;
779 780
		unsigned int irq = evt2irq(vect->vect);
		struct irq_desc *irq_desc;
P
Paul Mundt 已提交
781

782 783 784
		if (!vect->enum_id)
			continue;

P
Paul Mundt 已提交
785
		irq_desc = irq_to_desc_alloc_node(irq, numa_node_id());
786 787 788 789 790 791
		if (unlikely(!irq_desc)) {
			printk(KERN_INFO "can not get irq_desc for %d\n", irq);
			continue;
		}

		intc_register_irq(desc, d, vect->enum_id, irq);
792 793
	}
}
M
Magnus Damm 已提交
794 795 796 797 798 799 800 801 802 803

static int intc_suspend(struct sys_device *dev, pm_message_t state)
{
	struct intc_desc_int *d;
	struct irq_desc *desc;
	int irq;

	/* get intc controller associated with this sysdev */
	d = container_of(dev, struct intc_desc_int, sysdev);

804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826
	switch (state.event) {
	case PM_EVENT_ON:
		if (d->state.event != PM_EVENT_FREEZE)
			break;
		for_each_irq_desc(irq, desc) {
			if (desc->chip != &d->chip)
				continue;
			if (desc->status & IRQ_DISABLED)
				intc_disable(irq);
			else
				intc_enable(irq);
		}
		break;
	case PM_EVENT_FREEZE:
		/* nothing has to be done */
		break;
	case PM_EVENT_SUSPEND:
		/* enable wakeup irqs belonging to this intc controller */
		for_each_irq_desc(irq, desc) {
			if ((desc->status & IRQ_WAKEUP) && (desc->chip == &d->chip))
				intc_enable(irq);
		}
		break;
M
Magnus Damm 已提交
827
	}
828
	d->state = state;
M
Magnus Damm 已提交
829 830 831 832

	return 0;
}

833 834 835 836 837
static int intc_resume(struct sys_device *dev)
{
	return intc_suspend(dev, PMSG_ON);
}

M
Magnus Damm 已提交
838 839 840
static struct sysdev_class intc_sysdev_class = {
	.name = "intc",
	.suspend = intc_suspend,
841
	.resume = intc_resume,
M
Magnus Damm 已提交
842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869
};

/* register this intc as sysdev to allow suspend/resume */
static int __init register_intc_sysdevs(void)
{
	struct intc_desc_int *d;
	int error;
	int id = 0;

	error = sysdev_class_register(&intc_sysdev_class);
	if (!error) {
		list_for_each_entry(d, &intc_list, list) {
			d->sysdev.id = id;
			d->sysdev.cls = &intc_sysdev_class;
			error = sysdev_register(&d->sysdev);
			if (error)
				break;
			id++;
		}
	}

	if (error)
		pr_warning("intc: sysdev registration error\n");

	return error;
}

device_initcall(register_intc_sysdevs);