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

TOMOYO Linux Cross Reference
Linux/Documentation/PCI/pci-iov-howto.rst

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 /Documentation/PCI/pci-iov-howto.rst (Version linux-6.12-rc7) and /Documentation/PCI/pci-iov-howto.rst (Version unix-v6-master)


  1 .. SPDX-License-Identifier: GPL-2.0               
  2 .. include:: <isonum.txt>                         
  3                                                   
  4 ====================================              
  5 PCI Express I/O Virtualization Howto              
  6 ====================================              
  7                                                   
  8 :Copyright: |copy| 2009 Intel Corporation         
  9 :Authors: - Yu Zhao <yu.zhao@intel.com>            
 10           - Donald Dutile <ddutile@redhat.com>     
 11                                                   
 12 Overview                                          
 13 ========                                          
 14                                                   
 15 What is SR-IOV                                    
 16 --------------                                    
 17                                                   
 18 Single Root I/O Virtualization (SR-IOV) is a P    
 19 capability which makes one physical device app    
 20 devices. The physical device is referred to as    
 21 while the virtual devices are referred to as V    
 22 Allocation of the VF can be dynamically contro    
 23 registers encapsulated in the capability. By d    
 24 not enabled and the PF behaves as traditional     
 25 turned on, each VF's PCI configuration space c    
 26 Bus, Device and Function Number (Routing ID).     
 27 Memory Space, which is used to map its registe    
 28 operates on the register set so it can be func    
 29 real existing PCI device.                         
 30                                                   
 31 User Guide                                        
 32 ==========                                        
 33                                                   
 34 How can I enable SR-IOV capability                
 35 ----------------------------------                
 36                                                   
 37 Multiple methods are available for SR-IOV enab    
 38 In the first method, the device driver (PF dri    
 39 enabling and disabling of the capability via A    
 40 If the hardware has SR-IOV capability, loading    
 41 enable it and all VFs associated with the PF.     
 42 a module parameter to be set to determine the     
 43 In the second method, a write to the sysfs fil    
 44 enable and disable the VFs associated with a P    
 45 enables per-PF, VF enable/disable values versu    
 46 which applies to all PFs of the same device.      
 47 PCI SRIOV core support ensures that enable/dis    
 48 valid to reduce duplication in multiple driver    
 49 checks, e.g., check numvfs == 0 if enabling VF    
 50 numvfs <= totalvfs.                               
 51 The second method is the recommended method fo    
 52                                                   
 53 How can I use the Virtual Functions               
 54 -----------------------------------               
 55                                                   
 56 The VF is treated as hot-plugged PCI devices i    
 57 should be able to work in the same way as real    
 58 requires device driver that is same as a norma    
 59                                                   
 60 Developer Guide                                   
 61 ===============                                   
 62                                                   
 63 SR-IOV API                                        
 64 ----------                                        
 65                                                   
 66 To enable SR-IOV capability:                      
 67                                                   
 68 (a) For the first method, in the driver::         
 69                                                   
 70         int pci_enable_sriov(struct pci_dev *d    
 71                                                   
 72 'nr_virtfn' is number of VFs to be enabled.       
 73                                                   
 74 (b) For the second method, from sysfs::           
 75                                                   
 76         echo 'nr_virtfn' > \                      
 77         /sys/bus/pci/devices/<DOMAIN:BUS:DEVIC    
 78                                                   
 79 To disable SR-IOV capability:                     
 80                                                   
 81 (a) For the first method, in the driver::         
 82                                                   
 83         void pci_disable_sriov(struct pci_dev     
 84                                                   
 85 (b) For the second method, from sysfs::           
 86                                                   
 87         echo  0 > \                               
 88         /sys/bus/pci/devices/<DOMAIN:BUS:DEVIC    
 89                                                   
 90 To enable auto probing VFs by a compatible dri    
 91 command below before enabling SR-IOV capabilit    
 92 default behavior.                                 
 93 ::                                                
 94                                                   
 95         echo 1 > \                                
 96         /sys/bus/pci/devices/<DOMAIN:BUS:DEVIC    
 97                                                   
 98 To disable auto probing VFs by a compatible dr    
 99 command below before enabling SR-IOV capabilit    
100 entry will not affect VFs which are already pr    
101 ::                                                
102                                                   
103         echo  0 > \                               
104         /sys/bus/pci/devices/<DOMAIN:BUS:DEVIC    
105                                                   
106 Usage example                                     
107 -------------                                     
108                                                   
109 Following piece of code illustrates the usage     
110 ::                                                
111                                                   
112         static int dev_probe(struct pci_dev *d    
113         {                                         
114                 pci_enable_sriov(dev, NR_VIRTF    
115                                                   
116                 ...                               
117                                                   
118                 return 0;                         
119         }                                         
120                                                   
121         static void dev_remove(struct pci_dev     
122         {                                         
123                 pci_disable_sriov(dev);           
124                                                   
125                 ...                               
126         }                                         
127                                                   
128         static int dev_suspend(struct device *    
129         {                                         
130                 ...                               
131                                                   
132                 return 0;                         
133         }                                         
134                                                   
135         static int dev_resume(struct device *d    
136         {                                         
137                 ...                               
138                                                   
139                 return 0;                         
140         }                                         
141                                                   
142         static void dev_shutdown(struct pci_de    
143         {                                         
144                 ...                               
145         }                                         
146                                                   
147         static int dev_sriov_configure(struct     
148         {                                         
149                 if (numvfs > 0) {                 
150                         ...                       
151                         pci_enable_sriov(dev,     
152                         ...                       
153                         return numvfs;            
154                 }                                 
155                 if (numvfs == 0) {                
156                         ....                      
157                         pci_disable_sriov(dev)    
158                         ...                       
159                         return 0;                 
160                 }                                 
161         }                                         
162                                                   
163         static struct pci_driver dev_driver =     
164                 .name =         "SR-IOV Physic    
165                 .id_table =     dev_id_table,     
166                 .probe =        dev_probe,        
167                 .remove =       dev_remove,       
168                 .driver.pm =    &dev_pm_ops,      
169                 .shutdown =     dev_shutdown,     
170                 .sriov_configure = dev_sriov_c    
171         };                                        
                                                      

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