Skip to content

Commit

Permalink
Merge tag 'ntb-4.5' of git://github.com/jonmason/ntb
Browse files Browse the repository at this point in the history
Pull NTB updates from Jon Mason:
 "A new driver to support AMD NTB, a NTB performance test driver, NTB
  bugs fixes, and the ability to recover from running out of DMA
  descriptors"

* tag 'ntb-4.5' of git://github.com/jonmason/ntb:
  NTB: Fix macro parameter conflict with field name
  NTB: Add support for AMD PCI-Express Non-Transparent Bridge
  ntb: ntb perf tool
  NTB: Address out of DMA descriptor issue with NTB
  NTB: Clear property bits in BAR value
  NTB: ntb_process_tx error path bug
  • Loading branch information
torvalds committed Jan 24, 2016
2 parents cc67375 + 03beaec commit b3e27d5
Show file tree
Hide file tree
Showing 13 changed files with 2,183 additions and 12 deletions.
6 changes: 6 additions & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -7702,6 +7702,12 @@ W: https://github.com/jonmason/ntb/wiki
T: git git://github.com/jonmason/ntb.git
F: drivers/ntb/hw/intel/

NTB AMD DRIVER
M: Xiangliang Yu <[email protected]>
L: [email protected]
S: Supported
F: drivers/ntb/hw/amd/

NTFS FILESYSTEM
M: Anton Altaparmakov <[email protected]>
L: [email protected]
Expand Down
1 change: 1 addition & 0 deletions drivers/ntb/hw/Kconfig
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
source "drivers/ntb/hw/amd/Kconfig"
source "drivers/ntb/hw/intel/Kconfig"
1 change: 1 addition & 0 deletions drivers/ntb/hw/Makefile
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
obj-$(CONFIG_NTB_AMD) += amd/
obj-$(CONFIG_NTB_INTEL) += intel/
7 changes: 7 additions & 0 deletions drivers/ntb/hw/amd/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
config NTB_AMD
tristate "AMD Non-Transparent Bridge support"
depends on X86_64
help
This driver supports AMD NTB on capable Zeppelin hardware.

If unsure, say N.
1 change: 1 addition & 0 deletions drivers/ntb/hw/amd/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
obj-$(CONFIG_NTB_AMD) += ntb_hw_amd.o
Loading

0 comments on commit b3e27d5

Please sign in to comment.