Blame view

Documentation/PCI/MSI-HOWTO.txt 15.3 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
  		The MSI Driver Guide HOWTO
  	Tom L Nguyen tom.l.nguyen@intel.com
  			10/03/2003
  	Revised Feb 12, 2004 by Martine Silbermann
  		email: Martine.Silbermann@hp.com
  	Revised Jun 25, 2004 by Tom L Nguyen
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
7
8
  	Revised Jul  9, 2008 by Matthew Wilcox <willy@linux.intel.com>
  		Copyright 2003, 2008 Intel Corporation
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
10
  
  1. About this guide
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  This guide describes the basics of Message Signaled Interrupts (MSIs),
  the advantages of using MSI over traditional interrupt mechanisms, how
  to change your driver to use MSI or MSI-X and some basic diagnostics to
  try if a device doesn't support MSIs.
  
  
  2. What are MSIs?
  
  A Message Signaled Interrupt is a write from the device to a special
  address which causes an interrupt to be received by the CPU.
  
  The MSI capability was first specified in PCI 2.2 and was later enhanced
  in PCI 3.0 to allow each interrupt to be masked individually.  The MSI-X
  capability was also introduced with PCI 3.0.  It supports more interrupts
  per device than MSI and allows interrupts to be independently configured.
  
  Devices may support both MSI and MSI-X, but only one can be enabled at
  a time.
  
  
  3. Why use MSIs?
  
  There are three reasons why using MSIs can give an advantage over
  traditional pin-based interrupts.
  
  Pin-based PCI interrupts are often shared amongst several devices.
  To support this, the kernel must call each interrupt handler associated
  with an interrupt, which leads to reduced performance for the system as
  a whole.  MSIs are never shared, so this problem cannot arise.
  
  When a device writes data to memory, then raises a pin-based interrupt,
  it is possible that the interrupt may arrive before all the data has
  arrived in memory (this becomes more likely with devices behind PCI-PCI
  bridges).  In order to ensure that all the data has arrived in memory,
  the interrupt handler must read a register on the device which raised
  the interrupt.  PCI transaction ordering rules require that all the data
891f69253   Michael Witten   Docs: MSI-HOWTO: ...
47
  arrive in memory before the value may be returned from the register.
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
  Using MSIs avoids this problem as the interrupt-generating write cannot
  pass the data writes, so by the time the interrupt is raised, the driver
  knows that all the data has arrived in memory.
  
  PCI devices can only support a single pin-based interrupt per function.
  Often drivers have to query the device to find out what event has
  occurred, slowing down interrupt handling for the common case.  With
  MSIs, a device can support more interrupts, allowing each interrupt
  to be specialised to a different purpose.  One possible design gives
  infrequent conditions (such as errors) their own interrupt which allows
  the driver to handle the normal interrupt handling path more efficiently.
  Other possible designs include giving one interrupt to each packet queue
  in a network card or each port in a storage controller.
  
  
  4. How to use MSIs
  
  PCI devices are initialised to use pin-based interrupts.  The device
  driver has to set up the device to use MSI or MSI-X.  Not all machines
  support MSIs correctly, and for those machines, the APIs described below
  will simply fail and the device will continue to use pin-based interrupts.
  
  4.1 Include kernel support for MSIs
  
  To support MSI or MSI-X, the kernel must be built with the CONFIG_PCI_MSI
  option enabled.  This option is only available on some architectures,
  and it may depend on some other options also being set.  For example,
  on x86, you must also enable X86_UP_APIC or SMP in order to see the
  CONFIG_PCI_MSI option.
  
  4.2 Using MSI
  
  Most of the hard work is done for the driver in the PCI layer.  It simply
  has to request that the PCI layer set up the MSI capability for this
  device.
  
  4.2.1 pci_enable_msi
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
85
86
  
  int pci_enable_msi(struct pci_dev *dev)
4979de6ef   Michael Witten   Docs: MSI-HOWTO: ...
87
88
  A successful call allocates ONE interrupt to the device, regardless
  of how many MSIs the device supports.  The device is switched from
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
89
  pin-based interrupt mode to MSI mode.  The dev->irq number is changed
4979de6ef   Michael Witten   Docs: MSI-HOWTO: ...
90
91
92
93
  to a new number which represents the message signaled interrupt;
  consequently, this function should be called before the driver calls
  request_irq(), because an MSI is delivered via a vector that is
  different from the vector of a pin-based interrupt.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
94

1c8d7b0a5   Matthew Wilcox   PCI MSI: Add supp...
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
  4.2.2 pci_enable_msi_block
  
  int pci_enable_msi_block(struct pci_dev *dev, int count)
  
  This variation on the above call allows a device driver to request multiple
  MSIs.  The MSI specification only allows interrupts to be allocated in
  powers of two, up to a maximum of 2^5 (32).
  
  If this function returns 0, it has succeeded in allocating at least as many
  interrupts as the driver requested (it may have allocated more in order
  to satisfy the power-of-two requirement).  In this case, the function
  enables MSI on this device and updates dev->irq to be the lowest of
  the new interrupts assigned to it.  The other interrupts assigned to
  the device are in the range dev->irq to dev->irq + count - 1.
  
  If this function returns a negative number, it indicates an error and
  the driver should not attempt to request any more MSI interrupts for
4979de6ef   Michael Witten   Docs: MSI-HOWTO: ...
112
113
114
115
  this device.  If this function returns a positive number, it is
  less than 'count' and indicates the number of interrupts that could have
  been allocated.  In neither case is the irq value updated or the device
  switched into MSI mode.
1c8d7b0a5   Matthew Wilcox   PCI MSI: Add supp...
116
117
  
  The device driver must decide what action to take if
a2d4d5012   Michael Witten   Docs: MSI-HOWTO: ...
118
  pci_enable_msi_block() returns a value less than the number requested.
1d15afcc7   Michael Witten   Docs: MSI-HOWTO: ...
119
120
  For instance, the driver could still make use of fewer interrupts;
  in this case the driver should call pci_enable_msi_block()
1c8d7b0a5   Matthew Wilcox   PCI MSI: Add supp...
121
122
123
124
  again.  Note that it is not guaranteed to succeed, even when the
  'count' has been reduced to the value returned from a previous call to
  pci_enable_msi_block().  This is because there are multiple constraints
  on the number of vectors that can be allocated; pci_enable_msi_block()
4979de6ef   Michael Witten   Docs: MSI-HOWTO: ...
125
  returns as soon as it finds any constraint that doesn't allow the
1c8d7b0a5   Matthew Wilcox   PCI MSI: Add supp...
126
127
128
  call to succeed.
  
  4.2.3 pci_disable_msi
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
129
130
  
  void pci_disable_msi(struct pci_dev *dev)
1c8d7b0a5   Matthew Wilcox   PCI MSI: Add supp...
131
132
133
134
135
  This function should be used to undo the effect of pci_enable_msi() or
  pci_enable_msi_block().  Calling it restores dev->irq to the pin-based
  interrupt number and frees the previously allocated message signaled
  interrupt(s).  The interrupt may subsequently be assigned to another
  device, so drivers should not cache the value of dev->irq.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
136

263d8d57b   Michael Witten   Docs: MSI-HOWTO: ...
137
138
  Before calling this function, a device driver must always call free_irq()
  on any interrupt for which it previously called request_irq().
4979de6ef   Michael Witten   Docs: MSI-HOWTO: ...
139
140
  Failure to do so results in a BUG_ON(), leaving the device with
  MSI enabled and thus leaking its vector.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
141

c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
142
  4.3 Using MSI-X
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
143

c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
144
145
146
147
  The MSI-X capability is much more flexible than the MSI capability.
  It supports up to 2048 interrupts, each of which can be controlled
  independently.  To support this flexibility, drivers must use an array of
  `struct msix_entry':
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
148
149
150
151
152
  
  struct msix_entry {
  	u16 	vector; /* kernel uses to write alloc vector */
  	u16	entry; /* driver uses to specify entry */
  };
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
153
  This allows for the device to use these interrupts in a sparse fashion;
e4439236e   Michael Witten   Docs: MSI-HOWTO: ...
154
  for example, it could use interrupts 3 and 1027 and yet allocate only a
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
155
  two-element array.  The driver is expected to fill in the 'entry' value
e4439236e   Michael Witten   Docs: MSI-HOWTO: ...
156
157
  in each element of the array to indicate for which entries the kernel
  should assign interrupts; it is invalid to fill in two entries with the
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
158
159
160
161
162
163
164
165
166
  same number.
  
  4.3.1 pci_enable_msix
  
  int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
  
  Calling this function asks the PCI subsystem to allocate 'nvec' MSIs.
  The 'entries' argument is a pointer to an array of msix_entry structs
  which should be at least 'nvec' entries in size.  On success, the
4979de6ef   Michael Witten   Docs: MSI-HOWTO: ...
167
168
169
  device is switched into MSI-X mode and the function returns 0.
  The 'vector' member in each entry is populated with the interrupt number;
  the driver should then call request_irq() for each 'vector' that it
6457d9b35   Michael Witten   Docs: MSI-HOWTO: ...
170
171
  decides to use.  The device driver is responsible for keeping track of the
  interrupts assigned to the MSI-X vectors so it can free them again later.
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
172
173
174
175
  
  If this function returns a negative number, it indicates an error and
  the driver should not attempt to allocate any more MSI-X interrupts for
  this device.  If it returns a positive number, it indicates the maximum
fafad5bf0   Michael Ellerman   PCI MSI: Add exam...
176
177
  number of interrupt vectors that could have been allocated. See example
  below.
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
178
179
180
  
  This function, in contrast with pci_enable_msi(), does not adjust
  dev->irq.  The device will not generate interrupts for this interrupt
6457d9b35   Michael Witten   Docs: MSI-HOWTO: ...
181
  number once MSI-X is enabled.
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
182
183
184
  
  Device drivers should normally call this function once per device
  during the initialization phase.
5a84fc316   Michael Witten   Docs: MSI-HOWTO: ...
185
  It is ideal if drivers can cope with a variable number of MSI-X interrupts;
fafad5bf0   Michael Ellerman   PCI MSI: Add exam...
186
  there are many reasons why the platform may not be able to provide the
ed737c188   Michael Witten   Docs: MSI-HOWTO: ...
187
  exact number that a driver asks for.
fafad5bf0   Michael Ellerman   PCI MSI: Add exam...
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
  
  A request loop to achieve that might look like:
  
  static int foo_driver_enable_msix(struct foo_adapter *adapter, int nvec)
  {
  	while (nvec >= FOO_DRIVER_MINIMUM_NVEC) {
  		rc = pci_enable_msix(adapter->pdev,
  				     adapter->msix_entries, nvec);
  		if (rc > 0)
  			nvec = rc;
  		else
  			return rc;
  	}
  
  	return -ENOSPC;
  }
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
204
  4.3.2 pci_disable_msix
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
205
206
  
  void pci_disable_msix(struct pci_dev *dev)
e6ffceb0d   Michael Witten   Docs: MSI-HOWTO: ...
207
  This function should be used to undo the effect of pci_enable_msix().  It frees
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
208
209
210
  the previously allocated message signaled interrupts.  The interrupts may
  subsequently be assigned to another device, so drivers should not cache
  the value of the 'vector' elements over a call to pci_disable_msix().
263d8d57b   Michael Witten   Docs: MSI-HOWTO: ...
211
212
  Before calling this function, a device driver must always call free_irq()
  on any interrupt for which it previously called request_irq().
4979de6ef   Michael Witten   Docs: MSI-HOWTO: ...
213
214
  Failure to do so results in a BUG_ON(), leaving the device with
  MSI-X enabled and thus leaking its vector.
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
215
216
217
218
219
220
221
222
223
224
225
  
  4.3.3 The MSI-X Table
  
  The MSI-X capability specifies a BAR and offset within that BAR for the
  MSI-X Table.  This address is mapped by the PCI subsystem, and should not
  be accessed directly by the device driver.  If the driver wishes to
  mask or unmask an interrupt, it should call disable_irq() / enable_irq().
  
  4.4 Handling devices implementing both MSI and MSI-X capabilities
  
  If a device implements both MSI and MSI-X capabilities, it can
e14bd7e61   Michael Witten   Docs: MSI-HOWTO: ...
226
  run in either MSI mode or MSI-X mode, but not both simultaneously.
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
227
228
  This is a requirement of the PCI spec, and it is enforced by the
  PCI layer.  Calling pci_enable_msi() when MSI-X is already enabled or
4979de6ef   Michael Witten   Docs: MSI-HOWTO: ...
229
  pci_enable_msix() when MSI is already enabled results in an error.
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
  If a device driver wishes to switch between MSI and MSI-X at runtime,
  it must first quiesce the device, then switch it back to pin-interrupt
  mode, before calling pci_enable_msi() or pci_enable_msix() and resuming
  operation.  This is not expected to be a common operation but may be
  useful for debugging or testing during development.
  
  4.5 Considerations when using MSIs
  
  4.5.1 Choosing between MSI-X and MSI
  
  If your device supports both MSI-X and MSI capabilities, you should use
  the MSI-X facilities in preference to the MSI facilities.  As mentioned
  above, MSI-X supports any number of interrupts between 1 and 2048.
  In constrast, MSI is restricted to a maximum of 32 interrupts (and
  must be a power of two).  In addition, the MSI interrupt vectors must
952df55b5   Michael Witten   Docs: MSI-HOWTO: ...
245
  be allocated consecutively, so the system might not be able to allocate
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
246
  as many vectors for MSI as it could for MSI-X.  On some platforms, MSI
25985edce   Lucas De Marchi   Fix common misspe...
247
248
  interrupts must all be targeted at the same set of CPUs whereas MSI-X
  interrupts can all be targeted at different CPUs.
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
  
  4.5.2 Spinlocks
  
  Most device drivers have a per-device spinlock which is taken in the
  interrupt handler.  With pin-based interrupts or a single MSI, it is not
  necessary to disable interrupts (Linux guarantees the same interrupt will
  not be re-entered).  If a device uses multiple interrupts, the driver
  must disable interrupts while the lock is held.  If the device sends
  a different interrupt, the driver will deadlock trying to recursively
  acquire the spinlock.
  
  There are two solutions.  The first is to take the lock with
  spin_lock_irqsave() or spin_lock_irq() (see
  Documentation/DocBook/kernel-locking).  The second is to specify
  IRQF_DISABLED to request_irq() so that the kernel runs the entire
  interrupt routine with interrupts disabled.
  
  If your MSI interrupt routine does not hold the lock for the whole time
  it is running, the first solution may be best.  The second solution is
  normally preferred as it avoids making two transitions from interrupt
  disabled to enabled and back again.
  
  4.6 How to tell whether MSI/MSI-X is enabled on a device
  
  Using 'lspci -v' (as root) may show some devices with "MSI", "Message
  Signalled Interrupts" or "MSI-X" capabilities.  Each of these capabilities
4979de6ef   Michael Witten   Docs: MSI-HOWTO: ...
275
  has an 'Enable' flag which is followed with either "+" (enabled)
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
  or "-" (disabled).
  
  
  5. MSI quirks
  
  Several PCI chipsets or devices are known not to support MSIs.
  The PCI stack provides three ways to disable MSIs:
  
  1. globally
  2. on all devices behind a specific bridge
  3. on a single device
  
  5.1. Disabling MSIs globally
  
  Some host chipsets simply don't support MSIs properly.  If we're
  lucky, the manufacturer knows this and has indicated it in the ACPI
4979de6ef   Michael Witten   Docs: MSI-HOWTO: ...
292
  FADT table.  In this case, Linux automatically disables MSIs.
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
  Some boards don't include this information in the table and so we have
  to detect them ourselves.  The complete list of these is found near the
  quirk_disable_all_msi() function in drivers/pci/quirks.c.
  
  If you have a board which has problems with MSIs, you can pass pci=nomsi
  on the kernel command line to disable MSIs on all devices.  It would be
  in your best interests to report the problem to linux-pci@vger.kernel.org
  including a full 'lspci -v' so we can add the quirks to the kernel.
  
  5.2. Disabling MSIs below a bridge
  
  Some PCI bridges are not able to route MSIs between busses properly.
  In this case, MSIs must be disabled on all devices behind the bridge.
  
  Some bridges allow you to enable MSIs by changing some bits in their
  PCI configuration space (especially the Hypertransport chipsets such
  as the nVidia nForce and Serverworks HT2000).  As with host chipsets,
  Linux mostly knows about them and automatically enables MSIs if it can.
e6b85a1f8   Michael Witten   Docs: MSI-HOWTO: ...
311
  If you have a bridge unknown to Linux, you can enable
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
312
313
314
315
316
317
318
319
320
  MSIs in configuration space using whatever method you know works, then
  enable MSIs on that bridge by doing:
  
         echo 1 > /sys/bus/pci/devices/$bridge/msi_bus
  
  where $bridge is the PCI address of the bridge you've enabled (eg
  0000:00:0e.0).
  
  To disable MSIs, echo 0 instead of 1.  Changing this value should be
1b8386f61   Michael Witten   Docs: MSI-HOWTO: ...
321
  done with caution as it could break interrupt handling for all devices
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
322
323
324
325
326
327
328
329
  below this bridge.
  
  Again, please notify linux-pci@vger.kernel.org of any bridges that need
  special handling.
  
  5.3. Disabling MSIs on a single device
  
  Some devices are known to have faulty MSI implementations.  Usually this
c2b65e181   Michael Witten   Docs: MSI-HOWTO: ...
330
  is handled in the individual device driver, but occasionally it's necessary
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
331
332
333
334
335
336
337
338
339
340
341
342
343
  to handle this with a quirk.  Some drivers have an option to disable use
  of MSI.  While this is a convenient workaround for the driver author,
  it is not good practise, and should not be emulated.
  
  5.4. Finding why MSIs are disabled on a device
  
  From the above three sections, you can see that there are many reasons
  why MSIs may not be enabled for a given device.  Your first step should
  be to examine your dmesg carefully to determine whether MSIs are enabled
  for your machine.  You should also check your .config to be sure you
  have enabled CONFIG_PCI_MSI.
  
  Then, 'lspci -t' gives the list of bridges above a device.  Reading
798c794df   Michael Witten   Docs: MSI-HOWTO: ...
344
  /sys/bus/pci/devices/*/msi_bus will tell you whether MSIs are enabled (1)
c41ade2ee   Matthew Wilcox   Rewrite MSI-HOWTO
345
346
347
348
349
350
  or disabled (0).  If 0 is found in any of the msi_bus files belonging
  to bridges between the PCI root and the device, MSIs are disabled.
  
  It is also worth checking the device driver to see whether it supports MSIs.
  For example, it may contain calls to pci_enable_msi(), pci_enable_msix() or
  pci_enable_msi_block().