Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F153369512
D20873.id59540.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D20873.id59540.diff
View Options
Index: sys/dev/pci/pci.c
===================================================================
--- sys/dev/pci/pci.c
+++ sys/dev/pci/pci.c
@@ -1671,10 +1671,12 @@
KASSERT(msix->msix_msgnum > index, ("bogus index"));
offset = msix->msix_table_offset + index * 16 + 12;
val = bus_read_4(msix->msix_table_res, offset);
- if (!(val & PCIM_MSIX_VCTRL_MASK)) {
- val |= PCIM_MSIX_VCTRL_MASK;
- bus_write_4(msix->msix_table_res, offset, val);
- }
+ val |= PCIM_MSIX_VCTRL_MASK;
+ /*
+ * Some devices (eg Samsung PM961) cannot handle RMW on this register for
+ * all its vectors, so write the values we need directly.
+ */
+ bus_write_4(msix->msix_table_res, offset, PCIM_MSIX_VCTRL_MASK);
}
void
@@ -1687,10 +1689,12 @@
KASSERT(msix->msix_table_len > index, ("bogus index"));
offset = msix->msix_table_offset + index * 16 + 12;
val = bus_read_4(msix->msix_table_res, offset);
- if (val & PCIM_MSIX_VCTRL_MASK) {
- val &= ~PCIM_MSIX_VCTRL_MASK;
- bus_write_4(msix->msix_table_res, offset, val);
- }
+ val &= ~PCIM_MSIX_VCTRL_MASK;
+ /*
+ * Some devices (eg Samsung PM961) cannot handle RMW on this register for
+ * all its vectors, so write the values we need directly.
+ */
+ bus_write_4(msix->msix_table_res, offset, 0);
}
int
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Apr 21, 6:32 PM (5 h, 19 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
31925922
Default Alt Text
D20873.id59540.diff (1 KB)
Attached To
Mode
D20873: Program the MSI-X vector control field for MSI-X table entries without loading the previous content of the vector control word.
Attached
Detach File
Event Timeline
Log In to Comment