Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Shannon Nelson and committed by
David S. Miller
ddbcb220 d24c2827

+38
+16
Documentation/networking/device_drivers/ethernet/amd/pds_core.rst
··· 114 114 # devlink health diagnose pci/0000:2b:00.0 reporter fw 115 115 Status: healthy State: 1 Generation: 0 Recoveries: 0 116 116 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 + 117 133 Support 118 134 ======= 119 135
+9
MAINTAINERS
··· 1041 1041 F: include/uapi/linux/kfd_ioctl.h 1042 1042 F: include/uapi/linux/kfd_sysfs.h 1043 1043 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 + 1044 1053 AMD SPI DRIVER 1045 1054 M: Sanjay R Mehta <sanju.mehta@amd.com> 1046 1055 S: Maintained
+12
drivers/net/ethernet/amd/Kconfig
··· 186 186 bool 187 187 default n 188 188 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 + 189 201 endif # NET_VENDOR_AMD
+1
drivers/net/ethernet/amd/Makefile
··· 17 17 obj-$(CONFIG_SUN3LANCE) += sun3lance.o 18 18 obj-$(CONFIG_SUNLANCE) += sunlance.o 19 19 obj-$(CONFIG_AMD_XGBE) += xgbe/ 20 + obj-$(CONFIG_PDS_CORE) += pds_core/