~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/alpha/kernel/sys_eiger.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/alpha/kernel/sys_eiger.c (Version linux-6.12-rc7) and /arch/i386/kernel/sys_eiger.c (Version linux-6.6.60)


  1 // SPDX-License-Identifier: GPL-2.0                 1 
  2 /*                                                
  3  *      linux/arch/alpha/kernel/sys_eiger.c       
  4  *                                                
  5  *      Copyright (C) 1995 David A Rusling        
  6  *      Copyright (C) 1996, 1999 Jay A Estabro    
  7  *      Copyright (C) 1998, 1999 Richard Hende    
  8  *      Copyright (C) 1999 Iain Grant             
  9  *                                                
 10  * Code supporting the EIGER (EV6+TSUNAMI).       
 11  */                                               
 12                                                   
 13 #include <linux/kernel.h>                         
 14 #include <linux/types.h>                          
 15 #include <linux/mm.h>                             
 16 #include <linux/sched.h>                          
 17 #include <linux/pci.h>                            
 18 #include <linux/init.h>                           
 19 #include <linux/bitops.h>                         
 20                                                   
 21 #include <asm/ptrace.h>                           
 22 #include <asm/dma.h>                              
 23 #include <asm/irq.h>                              
 24 #include <asm/mmu_context.h>                      
 25 #include <asm/io.h>                               
 26 #include <asm/core_tsunami.h>                     
 27 #include <asm/hwrpb.h>                            
 28 #include <asm/tlbflush.h>                         
 29                                                   
 30 #include "proto.h"                                
 31 #include "irq_impl.h"                             
 32 #include "pci_impl.h"                             
 33 #include "machvec_impl.h"                         
 34                                                   
 35                                                   
 36 /* Note that this interrupt code is identical     
 37                                                   
 38 /* Note mask bit is true for DISABLED irqs.  *    
 39 static unsigned long cached_irq_mask[2] = { -1    
 40                                                   
 41 static inline void                                
 42 eiger_update_irq_hw(unsigned long irq, unsigne    
 43 {                                                 
 44         int regaddr;                              
 45                                                   
 46         mask = (irq >= 64 ? mask << 16 : mask     
 47         regaddr = 0x510 + (((irq - 16) >> 2) &    
 48         outl(mask & 0xffff0000UL, regaddr);       
 49 }                                                 
 50                                                   
 51 static inline void                                
 52 eiger_enable_irq(struct irq_data *d)              
 53 {                                                 
 54         unsigned int irq = d->irq;                
 55         unsigned long mask;                       
 56         mask = (cached_irq_mask[irq >= 64] &=     
 57         eiger_update_irq_hw(irq, mask);           
 58 }                                                 
 59                                                   
 60 static void                                       
 61 eiger_disable_irq(struct irq_data *d)             
 62 {                                                 
 63         unsigned int irq = d->irq;                
 64         unsigned long mask;                       
 65         mask = (cached_irq_mask[irq >= 64] |=     
 66         eiger_update_irq_hw(irq, mask);           
 67 }                                                 
 68                                                   
 69 static struct irq_chip eiger_irq_type = {         
 70         .name           = "EIGER",                
 71         .irq_unmask     = eiger_enable_irq,       
 72         .irq_mask       = eiger_disable_irq,      
 73         .irq_mask_ack   = eiger_disable_irq,      
 74 };                                                
 75                                                   
 76 static void                                       
 77 eiger_device_interrupt(unsigned long vector)      
 78 {                                                 
 79         unsigned intstatus;                       
 80                                                   
 81         /*                                        
 82          * The PALcode will have passed us vec    
 83          * which are fairly arbitrary values a    
 84          * us whether an interrupt has come in    
 85          * it's IRQ1 it's a PCI interrupt; if     
 86          * probably ISA, but PCI interrupts ca    
 87          * as well if the interrupt controller    
 88          * mode.                                  
 89          *                                        
 90          * OTOH, the accelerator thing doesn't    
 91          * overly well, so what we'll do inste    
 92          * examining the Master Interrupt Regi    
 93          * PCI interrupt, and if _not_ then we    
 94          * ISA handler.                           
 95          */                                       
 96                                                   
 97         intstatus = inw(0x500) & 15;              
 98         if (intstatus) {                          
 99                 /*                                
100                  * This is a PCI interrupt. Ch    
101                  * despatch an interrupt if it    
102                  */                               
103                                                   
104                 if (intstatus & 8) handle_irq(    
105                 if (intstatus & 4) handle_irq(    
106                 if (intstatus & 2) handle_irq(    
107                 if (intstatus & 1) handle_irq(    
108         } else {                                  
109                 isa_device_interrupt(vector);     
110         }                                         
111 }                                                 
112                                                   
113 static void                                       
114 eiger_srm_device_interrupt(unsigned long vecto    
115 {                                                 
116         int irq = (vector - 0x800) >> 4;          
117         handle_irq(irq);                          
118 }                                                 
119                                                   
120 static void __init                                
121 eiger_init_irq(void)                              
122 {                                                 
123         long i;                                   
124                                                   
125         outb(0, DMA1_RESET_REG);                  
126         outb(0, DMA2_RESET_REG);                  
127         outb(DMA_MODE_CASCADE, DMA2_MODE_REG);    
128         outb(0, DMA2_MASK_REG);                   
129                                                   
130         if (alpha_using_srm)                      
131                 alpha_mv.device_interrupt = ei    
132                                                   
133         for (i = 16; i < 128; i += 16)            
134                 eiger_update_irq_hw(i, -1);       
135                                                   
136         init_i8259a_irqs();                       
137                                                   
138         for (i = 16; i < 128; ++i) {              
139                 irq_set_chip_and_handler(i, &e    
140                 irq_set_status_flags(i, IRQ_LE    
141         }                                         
142 }                                                 
143                                                   
144 static int                                        
145 eiger_map_irq(const struct pci_dev *dev, u8 sl    
146 {                                                 
147         u8 irq_orig;                              
148                                                   
149         /* The SRM console has already calcula    
150            option cards. As this works lets ju    
151            set and change it to a useable valu    
152                                                   
153            All the IRQ values generated by the    
154            so we subtract 80 because it is (90    
155                                                   
156         pci_read_config_byte(dev, PCI_INTERRUP    
157                                                   
158         return irq_orig - 0x80;                   
159 }                                                 
160                                                   
161 static u8                                         
162 eiger_swizzle(struct pci_dev *dev, u8 *pinp)      
163 {                                                 
164         struct pci_controller *hose = dev->sys    
165         int slot, pin = *pinp;                    
166         int bridge_count = 0;                     
167                                                   
168         /* Find the number of backplane bridge    
169         int backplane = inw(0x502) & 0x0f;        
170                                                   
171         switch (backplane)                        
172         {                                         
173            case 0x00: bridge_count = 0; break;    
174            case 0x01: bridge_count = 1; break;    
175            case 0x03: bridge_count = 2; break;    
176            case 0x07: bridge_count = 3; break;    
177            case 0x0f: bridge_count = 4; break;    
178         }                                         
179                                                   
180         slot = PCI_SLOT(dev->devfn);              
181         while (dev->bus->self) {                  
182                 /* Check for built-in bridges     
183                 if (hose->index == 0              
184                     && (PCI_SLOT(dev->bus->sel    
185                         > 20 - bridge_count))     
186                         slot = PCI_SLOT(dev->d    
187                         break;                    
188                 }                                 
189                 /* Must be a card-based bridge    
190                 pin = pci_swizzle_interrupt_pi    
191                                                   
192                 /* Move up the chain of bridge    
193                 dev = dev->bus->self;             
194         }                                         
195         *pinp = pin;                              
196         return slot;                              
197 }                                                 
198                                                   
199 /*                                                
200  * The System Vectors                             
201  */                                               
202                                                   
203 struct alpha_machine_vector eiger_mv __initmv     
204         .vector_name            = "Eiger",        
205         DO_EV6_MMU,                               
206         DO_DEFAULT_RTC,                           
207         DO_TSUNAMI_IO,                            
208         .machine_check          = tsunami_mach    
209         .max_isa_dma_address    = ALPHA_MAX_IS    
210         .min_io_address         = DEFAULT_IO_B    
211         .min_mem_address        = DEFAULT_MEM_    
212         .pci_dac_offset         = TSUNAMI_DAC_    
213                                                   
214         .nr_irqs                = 128,            
215         .device_interrupt       = eiger_device    
216                                                   
217         .init_arch              = tsunami_init    
218         .init_irq               = eiger_init_i    
219         .init_rtc               = common_init_    
220         .init_pci               = common_init_    
221         .kill_arch              = tsunami_kill    
222         .pci_map_irq            = eiger_map_ir    
223         .pci_swizzle            = eiger_swizzl    
224 };                                                
225 ALIAS_MV(eiger)                                   
226                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php