| 
					
				 | 
			
			
				@@ -0,0 +1,39 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/* 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ *	linux/arch/alpha/kernel/sys_dp264.c 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ *	Copyright (C) 1995 David A Rusling 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ *	Copyright (C) 1996, 1999 Jay A Estabrook 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ *	Copyright (C) 1998, 1999 Richard Henderson 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ *	Modified by Christopher C. Chimelis, 2001 to 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ *	add support for the addition of Shark to the 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ *	Tsunami family. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * Code supporting the DP264 (EV6+TSUNAMI). 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include <linux/kernel.h> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include <linux/types.h> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include <linux/mm.h> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include <linux/sched.h> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include <linux/pci.h> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include <linux/init.h> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include <linux/bitops.h> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include <asm/ptrace.h> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include <asm/dma.h> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include <asm/irq.h> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include <asm/mmu_context.h> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include <asm/io.h> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include <asm/pgtable.h> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include <asm/core_tsunami.h> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include <asm/hwrpb.h> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include <asm/tlbflush.h> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include "proto.h" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include "irq_impl.h" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include "pci_impl.h" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#include "machvec_impl.h" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/* Note mask bit is true for ENABLED irqs.  */ 
			 |