Skip to content

Commit ddbcb22

Browse files
emuslndavem330
authored andcommitted
pds_core: Kconfig and pds_core.rst
Remaining documentation and Kconfig hook for building the driver. Signed-off-by: Shannon Nelson <shannon.nelson@amd.com> Acked-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent d24c282 commit ddbcb22

4 files changed

Lines changed: 38 additions & 0 deletions

File tree

Documentation/networking/device_drivers/ethernet/amd/pds_core.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,22 @@ The driver supports a devlink health reporter for FW status::
114114
# devlink health diagnose pci/0000:2b:00.0 reporter fw
115115
Status: healthy State: 1 Generation: 0 Recoveries: 0
116116

117+
Enabling the driver
118+
===================
119+
120+
The driver is enabled via the standard kernel configuration system,
121+
using the make command::
122+
123+
make oldconfig/menuconfig/etc.
124+
125+
The driver is located in the menu structure at:
126+
127+
-> Device Drivers
128+
-> Network device support (NETDEVICES [=y])
129+
-> Ethernet driver support
130+
-> AMD devices
131+
-> AMD/Pensando Ethernet PDS_CORE Support
132+
117133
Support
118134
=======
119135

MAINTAINERS

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1041,6 +1041,15 @@ F: drivers/gpu/drm/amd/include/vi_structs.h
10411041
F: include/uapi/linux/kfd_ioctl.h
10421042
F: include/uapi/linux/kfd_sysfs.h
10431043

1044+
AMD PDS CORE DRIVER
1045+
M: Shannon Nelson <shannon.nelson@amd.com>
1046+
M: Brett Creeley <brett.creeley@amd.com>
1047+
L: netdev@vger.kernel.org
1048+
S: Supported
1049+
F: Documentation/networking/device_drivers/ethernet/amd/pds_core.rst
1050+
F: drivers/net/ethernet/amd/pds_core/
1051+
F: include/linux/pds/
1052+
10441053
AMD SPI DRIVER
10451054
M: Sanjay R Mehta <sanju.mehta@amd.com>
10461055
S: Maintained

drivers/net/ethernet/amd/Kconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,4 +186,16 @@ config AMD_XGBE_HAVE_ECC
186186
bool
187187
default n
188188

189+
config PDS_CORE
190+
tristate "AMD/Pensando Data Systems Core Device Support"
191+
depends on 64BIT && PCI
192+
help
193+
This enables the support for the AMD/Pensando Core device family of
194+
adapters. More specific information on this driver can be
195+
found in
196+
<file:Documentation/networking/device_drivers/ethernet/amd/pds_core.rst>.
197+
198+
To compile this driver as a module, choose M here. The module
199+
will be called pds_core.
200+
189201
endif # NET_VENDOR_AMD

drivers/net/ethernet/amd/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ obj-$(CONFIG_PCNET32) += pcnet32.o
1717
obj-$(CONFIG_SUN3LANCE) += sun3lance.o
1818
obj-$(CONFIG_SUNLANCE) += sunlance.o
1919
obj-$(CONFIG_AMD_XGBE) += xgbe/
20+
obj-$(CONFIG_PDS_CORE) += pds_core/

0 commit comments

Comments
 (0)