Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/rump/dev/lib/libpci_if_wm Add a rump kernel component th...



details:   https://anonhg.NetBSD.org/src/rev/26e61428f59f
branches:  trunk
changeset: 795229:26e61428f59f
user:      pooka <pooka%NetBSD.org@localhost>
date:      Fri Apr 04 14:49:09 2014 +0000

description:
Add a rump kernel component that can attach if_wm @ pci

diffstat:

 sys/rump/dev/lib/libpci_if_wm/Makefile         |  19 ++++++++++
 sys/rump/dev/lib/libpci_if_wm/PCI_IF_WM.ioconf |  12 ++++++
 sys/rump/dev/lib/libpci_if_wm/shlib_version    |   2 +
 sys/rump/dev/lib/libpci_if_wm/wm_at_pci.c      |  45 ++++++++++++++++++++++++++
 4 files changed, 78 insertions(+), 0 deletions(-)

diffs (94 lines):

diff -r 12a461606b22 -r 26e61428f59f sys/rump/dev/lib/libpci_if_wm/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/rump/dev/lib/libpci_if_wm/Makefile    Fri Apr 04 14:49:09 2014 +0000
@@ -0,0 +1,19 @@
+#      $NetBSD: Makefile,v 1.1 2014/04/04 14:49:09 pooka Exp $
+#
+
+RUMPTOP=${TOPRUMP}
+
+.PATH: ${RUMPTOP}/../dev/pci
+
+LIB=   rumpdev_pci_if_wm
+IOCONF=        PCI_IF_WM.ioconf
+
+SRCS=  wm_at_pci.c
+
+SRCS+= if_wm.c
+
+CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern
+   
+.include "${RUMPTOP}/Makefile.rump"
+.include <bsd.lib.mk>
+.include <bsd.klinks.mk>
diff -r 12a461606b22 -r 26e61428f59f sys/rump/dev/lib/libpci_if_wm/PCI_IF_WM.ioconf
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/rump/dev/lib/libpci_if_wm/PCI_IF_WM.ioconf    Fri Apr 04 14:49:09 2014 +0000
@@ -0,0 +1,12 @@
+#      $NetBSD: PCI_IF_WM.ioconf,v 1.1 2014/04/04 14:49:09 pooka Exp $
+#
+
+ioconf pci_if_wm
+
+include "conf/files"
+include "dev/pci/files.pci"
+include "rump/dev/files.rump"
+
+pseudo-root pci*
+
+wm*     at pci? dev ? function ?        # Intel gigabit
diff -r 12a461606b22 -r 26e61428f59f sys/rump/dev/lib/libpci_if_wm/shlib_version
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/rump/dev/lib/libpci_if_wm/shlib_version       Fri Apr 04 14:49:09 2014 +0000
@@ -0,0 +1,2 @@
+major=0
+minor=0
diff -r 12a461606b22 -r 26e61428f59f sys/rump/dev/lib/libpci_if_wm/wm_at_pci.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/rump/dev/lib/libpci_if_wm/wm_at_pci.c Fri Apr 04 14:49:09 2014 +0000
@@ -0,0 +1,45 @@
+/*     $NetBSD: wm_at_pci.c,v 1.1 2014/04/04 14:49:09 pooka Exp $      */
+
+/*
+ * Copyright (c) 2010 Antti Kantee.  All Rights Reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
+ * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */
+
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: wm_at_pci.c,v 1.1 2014/04/04 14:49:09 pooka Exp $");
+
+#include <sys/param.h>
+#include <sys/conf.h>
+#include <sys/device.h>
+#include <sys/bus.h>
+
+#include "rump_private.h"
+
+#include "ioconf.c"
+
+RUMP_COMPONENT(RUMP_COMPONENT_DEV)
+{
+
+       config_init_component(cfdriver_ioconf_pci_if_wm,
+           cfattach_ioconf_pci_if_wm, cfdata_ioconf_pci_if_wm);
+}



Home | Main Index | Thread Index | Old Index