lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 17 Mar 2011 11:40:59 +0000
From:	Daniel Trautmann <dtrautmann@...softec-sps.de>
To:	"gregkh@...e.de" <gregkh@...e.de>,
	"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
CC:	"Hans J. Koch" <hjk@...sjkoch.de>,
	Manuel Traut <manut@...utronix.de>
Subject: [PATCH] uio_netx: Add support for netPLC cards

This patch adds support for Hilscher / IBHsoftec netPLC cards to uio_netx userspace IO driver.

Signed-off-by: Daniel Trautmann <dtrautmann@...softec-sps.de>
---
 drivers/uio/uio_netx.c |   19 +++++++++++++++++++
 1 files changed, 19 insertions(+), 0 deletions(-)

diff --git a/drivers/uio/uio_netx.c b/drivers/uio/uio_netx.c
index 5ffdb48..7921190 100644
--- a/drivers/uio/uio_netx.c
+++ b/drivers/uio/uio_netx.c
@@ -18,6 +18,9 @@
 
 #define PCI_VENDOR_ID_HILSCHER         0x15CF
 #define PCI_DEVICE_ID_HILSCHER_NETX    0x0000
+#define PCI_DEVICE_ID_HILSCHER_NETPLC  0x0010
+#define PCI_SUBDEVICE_ID_NETPLC_RAM    0x0000
+#define PCI_SUBDEVICE_ID_NETPLC_FLASH  0x0001
 #define PCI_SUBDEVICE_ID_NXSB_PCA      0x3235
 #define PCI_SUBDEVICE_ID_NXPCA         0x3335
 
@@ -66,6 +69,10 @@ static int __devinit netx_pci_probe(struct pci_dev *dev,
                bar = 0;
                info->name = "netx";
                break;
+       case PCI_DEVICE_ID_HILSCHER_NETPLC:
+               bar = 0;
+               info->name = "netplc";
+               break;
        default:
                bar = 2;
                info->name = "netx_plx";
@@ -133,6 +140,18 @@ static struct pci_device_id netx_pci_ids[] = {
                .subvendor =    0,
                .subdevice =    0,
        },
+        {
+                .vendor =       PCI_VENDOR_ID_HILSCHER,
+                .device =       PCI_DEVICE_ID_HILSCHER_NETPLC,
+                .subvendor =    PCI_VENDOR_ID_HILSCHER,
+                .subdevice =    PCI_SUBDEVICE_ID_NETPLC_RAM,
+        },
+        {
+                .vendor =       PCI_VENDOR_ID_HILSCHER,
+                .device =       PCI_DEVICE_ID_HILSCHER_NETPLC,
+                .subvendor =    PCI_VENDOR_ID_HILSCHER,
+                .subdevice =    PCI_SUBDEVICE_ID_NETPLC_FLASH,
+        },
        {
                .vendor =       PCI_VENDOR_ID_PLX,
                .device =       PCI_DEVICE_ID_PLX_9030,
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ