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

TOMOYO Linux Cross Reference
Linux/arch/x86/pci/mmconfig_32.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/mmconfig_32.c (Architecture m68k) and /arch/i386/pci/mmconfig_32.c (Architecture i386)


  1 // SPDX-License-Identifier: GPL-2.0-only            1 
  2 /*                                                
  3  * Copyright (C) 2004 Matthew Wilcox <matthew@    
  4  * Copyright (C) 2004 Intel Corp.                 
  5  */                                               
  6                                                   
  7 /*                                                
  8  * mmconfig.c - Low-level direct PCI config sp    
  9  */                                               
 10                                                   
 11 #include <linux/pci.h>                            
 12 #include <linux/init.h>                           
 13 #include <linux/rcupdate.h>                       
 14 #include <asm/e820/api.h>                         
 15 #include <asm/pci_x86.h>                          
 16                                                   
 17 /* Assume systems with more busses have correc    
 18 #define mmcfg_virt_addr ((void __iomem *) fix_    
 19                                                   
 20 /* The base address of the last MMCONFIG devic    
 21 static u32 mmcfg_last_accessed_device;            
 22 static int mmcfg_last_accessed_cpu;               
 23                                                   
 24 /*                                                
 25  * Functions for accessing PCI configuration s    
 26  */                                               
 27 static u32 get_base_addr(unsigned int seg, int    
 28 {                                                 
 29         struct pci_mmcfg_region *cfg = pci_mmc    
 30                                                   
 31         if (cfg)                                  
 32                 return cfg->address;              
 33         return 0;                                 
 34 }                                                 
 35                                                   
 36 /*                                                
 37  * This is always called under pci_config_lock    
 38  */                                               
 39 static void pci_exp_set_dev_base(unsigned int     
 40 {                                                 
 41         u32 dev_base = base | PCI_MMCFG_BUS_OF    
 42         int cpu = smp_processor_id();             
 43         if (dev_base != mmcfg_last_accessed_de    
 44             cpu != mmcfg_last_accessed_cpu) {     
 45                 mmcfg_last_accessed_device = d    
 46                 mmcfg_last_accessed_cpu = cpu;    
 47                 set_fixmap_nocache(FIX_PCIE_MC    
 48         }                                         
 49 }                                                 
 50                                                   
 51 static int pci_mmcfg_read(unsigned int seg, un    
 52                           unsigned int devfn,     
 53 {                                                 
 54         unsigned long flags;                      
 55         u32 base;                                 
 56                                                   
 57         if ((bus > 255) || (devfn > 255) || (r    
 58 err:            *value = -1;                      
 59                 return -EINVAL;                   
 60         }                                         
 61                                                   
 62         rcu_read_lock();                          
 63         base = get_base_addr(seg, bus, devfn);    
 64         if (!base) {                              
 65                 rcu_read_unlock();                
 66                 goto err;                         
 67         }                                         
 68                                                   
 69         raw_spin_lock_irqsave(&pci_config_lock    
 70                                                   
 71         pci_exp_set_dev_base(base, bus, devfn)    
 72                                                   
 73         switch (len) {                            
 74         case 1:                                   
 75                 *value = mmio_config_readb(mmc    
 76                 break;                            
 77         case 2:                                   
 78                 *value = mmio_config_readw(mmc    
 79                 break;                            
 80         case 4:                                   
 81                 *value = mmio_config_readl(mmc    
 82                 break;                            
 83         }                                         
 84         raw_spin_unlock_irqrestore(&pci_config    
 85         rcu_read_unlock();                        
 86                                                   
 87         return 0;                                 
 88 }                                                 
 89                                                   
 90 static int pci_mmcfg_write(unsigned int seg, u    
 91                            unsigned int devfn,    
 92 {                                                 
 93         unsigned long flags;                      
 94         u32 base;                                 
 95                                                   
 96         if ((bus > 255) || (devfn > 255) || (r    
 97                 return -EINVAL;                   
 98                                                   
 99         rcu_read_lock();                          
100         base = get_base_addr(seg, bus, devfn);    
101         if (!base) {                              
102                 rcu_read_unlock();                
103                 return -EINVAL;                   
104         }                                         
105                                                   
106         raw_spin_lock_irqsave(&pci_config_lock    
107                                                   
108         pci_exp_set_dev_base(base, bus, devfn)    
109                                                   
110         switch (len) {                            
111         case 1:                                   
112                 mmio_config_writeb(mmcfg_virt_    
113                 break;                            
114         case 2:                                   
115                 mmio_config_writew(mmcfg_virt_    
116                 break;                            
117         case 4:                                   
118                 mmio_config_writel(mmcfg_virt_    
119                 break;                            
120         }                                         
121         raw_spin_unlock_irqrestore(&pci_config    
122         rcu_read_unlock();                        
123                                                   
124         return 0;                                 
125 }                                                 
126                                                   
127 const struct pci_raw_ops pci_mmcfg = {            
128         .read =         pci_mmcfg_read,           
129         .write =        pci_mmcfg_write,          
130 };                                                
131                                                   
132 int __init pci_mmcfg_arch_init(void)              
133 {                                                 
134         printk(KERN_INFO "PCI: Using ECAM for     
135         raw_pci_ext_ops = &pci_mmcfg;             
136         return 1;                                 
137 }                                                 
138                                                   
139 void __init pci_mmcfg_arch_free(void)             
140 {                                                 
141 }                                                 
142                                                   
143 int pci_mmcfg_arch_map(struct pci_mmcfg_region    
144 {                                                 
145         return 0;                                 
146 }                                                 
147                                                   
148 void pci_mmcfg_arch_unmap(struct pci_mmcfg_reg    
149 {                                                 
150         unsigned long flags;                      
151                                                   
152         /* Invalidate the cached mmcfg map ent    
153         raw_spin_lock_irqsave(&pci_config_lock    
154         mmcfg_last_accessed_device = 0;           
155         raw_spin_unlock_irqrestore(&pci_config    
156 }                                                 
157                                                   

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