blob: 9fe07803797bb9c2211decdd76e63717ad2fc258 [file] [log] [blame]
Roman Zippel0aa78102006-06-25 05:47:02 -07001#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#include <asm/irq.h>
4#include <asm/traps.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <asm/apollohw.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
Roman Zippel0aa78102006-06-25 05:47:02 -07007void dn_process_int(unsigned int irq, struct pt_regs *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008{
Roman Zippel0aa78102006-06-25 05:47:02 -07009 m68k_handle_int(irq, fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Roman Zippel0aa78102006-06-25 05:47:02 -070011 *(volatile unsigned char *)(pica)=0x20;
12 *(volatile unsigned char *)(picb)=0x20;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013}
14
Roman Zippel0aa78102006-06-25 05:47:02 -070015int apollo_irq_startup(unsigned int irq)
16{
17 if (irq < 8)
18 *(volatile unsigned char *)(pica+1) &= ~(1 << irq);
19 else
20 *(volatile unsigned char *)(picb+1) &= ~(1 << (irq - 8));
21 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022}
23
Roman Zippel0aa78102006-06-25 05:47:02 -070024void apollo_irq_shutdown(unsigned int irq)
25{
26 if (irq < 8)
27 *(volatile unsigned char *)(pica+1) |= (1 << irq);
28 else
29 *(volatile unsigned char *)(picb+1) |= (1 << (irq - 8));
Linus Torvalds1da177e2005-04-16 15:20:36 -070030}
31
Roman Zippel0aa78102006-06-25 05:47:02 -070032static struct irq_controller apollo_irq_controller = {
33 .name = "apollo",
34 .lock = SPIN_LOCK_UNLOCKED,
35 .startup = apollo_irq_startup,
36 .shutdown = apollo_irq_shutdown,
37};
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Roman Zippel0aa78102006-06-25 05:47:02 -070040void dn_init_IRQ(void)
41{
42 m68k_setup_user_interrupt(VEC_USER + 96, 16, dn_process_int);
43 m68k_setup_irq_controller(&apollo_irq_controller, IRQ_APOLLO, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044}