forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NTB: Add support for AMD PCI-Express Non-Transparent Bridge
This adds support for AMD's PCI-Express Non-Transparent Bridge (NTB) device on the Zeppelin platform. The driver connnects to the standard NTB sub-system interface, with modification to add hooks for power management in a separate patch. The AMD NTB device has 3 memory windows, 16 doorbell, 16 scratch-pad registers, and supports up to 16 PCIe lanes running a Gen3 speeds. Signed-off-by: Xiangliang Yu <[email protected]> Reviewed-by: Allen Hubbe <[email protected]> Signed-off-by: Jon Mason <[email protected]>
- Loading branch information
Showing
7 changed files
with
1,376 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7586,6 +7586,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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
obj-$(CONFIG_NTB_AMD) += amd/ | ||
obj-$(CONFIG_NTB_INTEL) += intel/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
obj-$(CONFIG_NTB_AMD) += ntb_hw_amd.o |
Oops, something went wrong.