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

TOMOYO Linux Cross Reference
Linux/arch/x86/pci/ce4100.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/x86/pci/ce4100.c (Version linux-6.12-rc7) and /arch/i386/pci/ce4100.c (Version linux-4.20.17)


  1 // SPDX-License-Identifier: GPL-2.0-only            1 
  2 /*                                                
  3  *  Copyright(c) 2010 Intel Corporation. All r    
  4  *                                                
  5  *  Contact Information:                          
  6  *    Intel Corporation                           
  7  *    2200 Mission College Blvd.                  
  8  *    Santa Clara, CA  97052                      
  9  *                                                
 10  * This provides access methods for PCI regist    
 11  * the CE4100. Each register can be assigned a    
 12  * write routine. The exception to this is the    
 13  * bridge device is the only device on bus zer    
 14  * fixup so it is a special case ATM              
 15  */                                               
 16                                                   
 17 #include <linux/kernel.h>                         
 18 #include <linux/pci.h>                            
 19 #include <linux/init.h>                           
 20                                                   
 21 #include <asm/ce4100.h>                           
 22 #include <asm/pci_x86.h>                          
 23                                                   
 24 struct sim_reg {                                  
 25         u32 value;                                
 26         u32 mask;                                 
 27 };                                                
 28                                                   
 29 struct sim_dev_reg {                              
 30         int dev_func;                             
 31         int reg;                                  
 32         void (*init)(struct sim_dev_reg *reg);    
 33         void (*read)(struct sim_dev_reg *reg,     
 34         void (*write)(struct sim_dev_reg *reg,    
 35         struct sim_reg sim_reg;                   
 36 };                                                
 37                                                   
 38 #define MB (1024 * 1024)                          
 39 #define KB (1024)                                 
 40 #define SIZE_TO_MASK(size) (~(size - 1))          
 41                                                   
 42 #define DEFINE_REG(device, func, offset, size,    
 43 { PCI_DEVFN(device, func), offset, init_op, re    
 44         {0, SIZE_TO_MASK(size)} },                
 45                                                   
 46 /*                                                
 47  * All read/write functions are called with pc    
 48  */                                               
 49 static void reg_init(struct sim_dev_reg *reg)     
 50 {                                                 
 51         pci_direct_conf1.read(0, 1, reg->dev_f    
 52                               &reg->sim_reg.va    
 53 }                                                 
 54                                                   
 55 static void reg_read(struct sim_dev_reg *reg,     
 56 {                                                 
 57         *value = reg->sim_reg.value;              
 58 }                                                 
 59                                                   
 60 static void reg_write(struct sim_dev_reg *reg,    
 61 {                                                 
 62         reg->sim_reg.value = (value & reg->sim    
 63                 (reg->sim_reg.value & ~reg->si    
 64 }                                                 
 65                                                   
 66 static void sata_reg_init(struct sim_dev_reg *    
 67 {                                                 
 68         pci_direct_conf1.read(0, 1, PCI_DEVFN(    
 69                               &reg->sim_reg.va    
 70         reg->sim_reg.value += 0x400;              
 71 }                                                 
 72                                                   
 73 static void ehci_reg_read(struct sim_dev_reg *    
 74 {                                                 
 75         reg_read(reg, value);                     
 76         if (*value != reg->sim_reg.mask)          
 77                 *value |= 0x100;                  
 78 }                                                 
 79                                                   
 80 static void sata_revid_init(struct sim_dev_reg    
 81 {                                                 
 82         reg->sim_reg.value = 0x01060100;          
 83         reg->sim_reg.mask = 0;                    
 84 }                                                 
 85                                                   
 86 static void sata_revid_read(struct sim_dev_reg    
 87 {                                                 
 88         reg_read(reg, value);                     
 89 }                                                 
 90                                                   
 91 static void reg_noirq_read(struct sim_dev_reg     
 92 {                                                 
 93         /* force interrupt pin value to 0 */      
 94         *value = reg->sim_reg.value & 0xfff00f    
 95 }                                                 
 96                                                   
 97 static struct sim_dev_reg bus1_fixups[] = {       
 98         DEFINE_REG(2, 0, 0x10, (16*MB), reg_in    
 99         DEFINE_REG(2, 0, 0x14, (256), reg_init    
100         DEFINE_REG(2, 1, 0x10, (64*KB), reg_in    
101         DEFINE_REG(3, 0, 0x10, (64*KB), reg_in    
102         DEFINE_REG(4, 0, 0x10, (128*KB), reg_i    
103         DEFINE_REG(4, 1, 0x10, (128*KB), reg_i    
104         DEFINE_REG(6, 0, 0x10, (512*KB), reg_i    
105         DEFINE_REG(6, 1, 0x10, (512*KB), reg_i    
106         DEFINE_REG(6, 2, 0x10, (64*KB), reg_in    
107         DEFINE_REG(8, 0, 0x10, (1*MB), reg_ini    
108         DEFINE_REG(8, 1, 0x10, (64*KB), reg_in    
109         DEFINE_REG(8, 2, 0x10, (64*KB), reg_in    
110         DEFINE_REG(9, 0, 0x10 , (1*MB), reg_in    
111         DEFINE_REG(9, 0, 0x14, (64*KB), reg_in    
112         DEFINE_REG(10, 0, 0x10, (256), reg_ini    
113         DEFINE_REG(10, 0, 0x14, (256*MB), reg_    
114         DEFINE_REG(11, 0, 0x10, (256), reg_ini    
115         DEFINE_REG(11, 0, 0x14, (256), reg_ini    
116         DEFINE_REG(11, 1, 0x10, (256), reg_ini    
117         DEFINE_REG(11, 2, 0x10, (256), reg_ini    
118         DEFINE_REG(11, 2, 0x14, (256), reg_ini    
119         DEFINE_REG(11, 2, 0x18, (256), reg_ini    
120         DEFINE_REG(11, 3, 0x10, (256), reg_ini    
121         DEFINE_REG(11, 3, 0x14, (256), reg_ini    
122         DEFINE_REG(11, 4, 0x10, (256), reg_ini    
123         DEFINE_REG(11, 5, 0x10, (64*KB), reg_i    
124         DEFINE_REG(11, 6, 0x10, (256), reg_ini    
125         DEFINE_REG(11, 7, 0x10, (64*KB), reg_i    
126         DEFINE_REG(11, 7, 0x3c, 256, reg_init,    
127         DEFINE_REG(12, 0, 0x10, (128*KB), reg_    
128         DEFINE_REG(12, 0, 0x14, (256), reg_ini    
129         DEFINE_REG(12, 1, 0x10, (1024), reg_in    
130         DEFINE_REG(13, 0, 0x10, (32*KB), reg_i    
131         DEFINE_REG(13, 1, 0x10, (32*KB), reg_i    
132         DEFINE_REG(14, 0, 0x8,  0, sata_revid_    
133         DEFINE_REG(14, 0, 0x10, 0, reg_init, r    
134         DEFINE_REG(14, 0, 0x14, 0, reg_init, r    
135         DEFINE_REG(14, 0, 0x18, 0, reg_init, r    
136         DEFINE_REG(14, 0, 0x1C, 0, reg_init, r    
137         DEFINE_REG(14, 0, 0x20, 0, reg_init, r    
138         DEFINE_REG(14, 0, 0x24, (0x200), sata_    
139         DEFINE_REG(15, 0, 0x10, (64*KB), reg_i    
140         DEFINE_REG(15, 0, 0x14, (64*KB), reg_i    
141         DEFINE_REG(16, 0, 0x10, (64*KB), reg_i    
142         DEFINE_REG(16, 0, 0x14, (64*MB), reg_i    
143         DEFINE_REG(16, 0, 0x18, (64*MB), reg_i    
144         DEFINE_REG(16, 0, 0x3c, 256, reg_init,    
145         DEFINE_REG(17, 0, 0x10, (128*KB), reg_    
146         DEFINE_REG(18, 0, 0x10, (1*KB), reg_in    
147         DEFINE_REG(18, 0, 0x3c, 256, reg_init,    
148 };                                                
149                                                   
150 static void __init init_sim_regs(void)            
151 {                                                 
152         int i;                                    
153                                                   
154         for (i = 0; i < ARRAY_SIZE(bus1_fixups    
155                 if (bus1_fixups[i].init)          
156                         bus1_fixups[i].init(&b    
157         }                                         
158 }                                                 
159                                                   
160 static inline void extract_bytes(u32 *value, i    
161 {                                                 
162         uint32_t mask;                            
163                                                   
164         *value >>= ((reg & 3) * 8);               
165         mask = 0xFFFFFFFF >> ((4 - len) * 8);     
166         *value &= mask;                           
167 }                                                 
168                                                   
169 static int bridge_read(unsigned int devfn, int    
170 {                                                 
171         u32 av_bridge_base, av_bridge_limit;      
172         int retval = 0;                           
173                                                   
174         switch (reg) {                            
175         /* Make BARs appear to not request any    
176         case PCI_BASE_ADDRESS_0:                  
177         case PCI_BASE_ADDRESS_0 + 1:              
178         case PCI_BASE_ADDRESS_0 + 2:              
179         case PCI_BASE_ADDRESS_0 + 3:              
180                 *value = 0;                       
181                 break;                            
182                                                   
183                 /* Since subordinate bus numbe    
184                  * to zero and read only, so d    
185                  */                               
186         case PCI_PRIMARY_BUS:                     
187                 if (len == 4)                     
188                         *value = 0x00010100;      
189                 break;                            
190                                                   
191         case PCI_SUBORDINATE_BUS:                 
192                 *value = 1;                       
193                 break;                            
194                                                   
195         case PCI_MEMORY_BASE:                     
196         case PCI_MEMORY_LIMIT:                    
197                 /* Get the A/V bridge base add    
198                 pci_direct_conf1.read(0, 0, de    
199                                 PCI_BASE_ADDRE    
200                                                   
201                 av_bridge_limit = av_bridge_ba    
202                 av_bridge_limit >>= 16;           
203                 av_bridge_limit &= 0xFFF0;        
204                                                   
205                 av_bridge_base >>= 16;            
206                 av_bridge_base &= 0xFFF0;         
207                                                   
208                 if (reg == PCI_MEMORY_LIMIT)      
209                         *value = av_bridge_lim    
210                 else if (len == 2)                
211                         *value = av_bridge_bas    
212                 else                              
213                         *value = (av_bridge_li    
214                 break;                            
215                 /* Make prefetchable memory li    
216                  * memory base, so not claim p    
217                  */                               
218         case PCI_PREF_MEMORY_BASE:                
219                 *value = 0xFFF0;                  
220                 break;                            
221         case PCI_PREF_MEMORY_LIMIT:               
222                 *value = 0x0;                     
223                 break;                            
224                 /* Make IO limit smaller than     
225         case PCI_IO_BASE:                         
226                 *value = 0xF0;                    
227                 break;                            
228         case PCI_IO_LIMIT:                        
229                 *value = 0;                       
230                 break;                            
231         default:                                  
232                 retval = 1;                       
233         }                                         
234         return retval;                            
235 }                                                 
236                                                   
237 static int ce4100_bus1_read(unsigned int devfn    
238 {                                                 
239         unsigned long flags;                      
240         int i;                                    
241                                                   
242         for (i = 0; i < ARRAY_SIZE(bus1_fixups    
243                 if (bus1_fixups[i].dev_func ==    
244                     bus1_fixups[i].reg == (reg    
245                     bus1_fixups[i].read) {        
246                                                   
247                         raw_spin_lock_irqsave(    
248                         bus1_fixups[i].read(&(    
249                         raw_spin_unlock_irqres    
250                         extract_bytes(value, r    
251                         return 0;                 
252                 }                                 
253         }                                         
254         return -1;                                
255 }                                                 
256                                                   
257 static int ce4100_conf_read(unsigned int seg,     
258                             unsigned int devfn    
259 {                                                 
260         WARN_ON(seg);                             
261                                                   
262         if (bus == 1 && !ce4100_bus1_read(devf    
263                 return 0;                         
264                                                   
265         if (bus == 0 && (PCI_DEVFN(1, 0) == de    
266             !bridge_read(devfn, reg, len, valu    
267                 return 0;                         
268                                                   
269         return pci_direct_conf1.read(seg, bus,    
270 }                                                 
271                                                   
272 static int ce4100_bus1_write(unsigned int devf    
273 {                                                 
274         unsigned long flags;                      
275         int i;                                    
276                                                   
277         for (i = 0; i < ARRAY_SIZE(bus1_fixups    
278                 if (bus1_fixups[i].dev_func ==    
279                     bus1_fixups[i].reg == (reg    
280                     bus1_fixups[i].write) {       
281                                                   
282                         raw_spin_lock_irqsave(    
283                         bus1_fixups[i].write(&    
284                         raw_spin_unlock_irqres    
285                         return 0;                 
286                 }                                 
287         }                                         
288         return -1;                                
289 }                                                 
290                                                   
291 static int ce4100_conf_write(unsigned int seg,    
292                              unsigned int devf    
293 {                                                 
294         WARN_ON(seg);                             
295                                                   
296         if (bus == 1 && !ce4100_bus1_write(dev    
297                 return 0;                         
298                                                   
299         /* Discard writes to A/V bridge BAR. *    
300         if (bus == 0 && PCI_DEVFN(1, 0) == dev    
301             ((reg & ~3) == PCI_BASE_ADDRESS_0)    
302                 return 0;                         
303                                                   
304         return pci_direct_conf1.write(seg, bus    
305 }                                                 
306                                                   
307 static const struct pci_raw_ops ce4100_pci_con    
308         .read   = ce4100_conf_read,               
309         .write  = ce4100_conf_write,              
310 };                                                
311                                                   
312 int __init ce4100_pci_init(void)                  
313 {                                                 
314         init_sim_regs();                          
315         raw_pci_ops = &ce4100_pci_conf;           
316         /* Indicate caller that it should invo    
317         return 1;                                 
318 }                                                 
319                                                   

~ [ 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