| 
									
										
										
										
											2006-06-25 05:47:02 -07:00
										 |  |  | #include <linux/interrupt.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <asm/irq.h>
 | 
					
						
							|  |  |  | #include <asm/traps.h>
 | 
					
						
							|  |  |  | #include <asm/apollohw.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-25 05:47:02 -07:00
										 |  |  | void dn_process_int(unsigned int irq, struct pt_regs *fp) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-07 14:16:45 +01:00
										 |  |  | 	__m68k_handle_int(irq, fp); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-25 05:47:02 -07:00
										 |  |  | 	*(volatile unsigned char *)(pica)=0x20; | 
					
						
							|  |  |  | 	*(volatile unsigned char *)(picb)=0x20; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-25 05:47:02 -07:00
										 |  |  | int apollo_irq_startup(unsigned int irq) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (irq < 8) | 
					
						
							|  |  |  | 		*(volatile unsigned char *)(pica+1) &= ~(1 << irq); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		*(volatile unsigned char *)(picb+1) &= ~(1 << (irq - 8)); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-25 05:47:02 -07:00
										 |  |  | void apollo_irq_shutdown(unsigned int irq) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (irq < 8) | 
					
						
							|  |  |  | 		*(volatile unsigned char *)(pica+1) |= (1 << irq); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		*(volatile unsigned char *)(picb+1) |= (1 << (irq - 8)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-25 05:47:02 -07:00
										 |  |  | static struct irq_controller apollo_irq_controller = { | 
					
						
							|  |  |  | 	.name           = "apollo", | 
					
						
							| 
									
										
										
										
											2007-05-06 14:50:54 -07:00
										 |  |  | 	.lock           = __SPIN_LOCK_UNLOCKED(apollo_irq_controller.lock), | 
					
						
							| 
									
										
										
										
											2006-06-25 05:47:02 -07:00
										 |  |  | 	.startup        = apollo_irq_startup, | 
					
						
							|  |  |  | 	.shutdown       = apollo_irq_shutdown, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-20 04:33:28 +01:00
										 |  |  | void __init dn_init_IRQ(void) | 
					
						
							| 
									
										
										
										
											2006-06-25 05:47:02 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	m68k_setup_user_interrupt(VEC_USER + 96, 16, dn_process_int); | 
					
						
							|  |  |  | 	m68k_setup_irq_controller(&apollo_irq_controller, IRQ_APOLLO, 16); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } |