xref: /onnv-gate/usr/src/uts/sun/io/qfe.c (revision 4943:f73f303e6a06)
1*4943Sgd78059 /*
2*4943Sgd78059  * CDDL HEADER START
3*4943Sgd78059  *
4*4943Sgd78059  * The contents of this file are subject to the terms of the
5*4943Sgd78059  * Common Development and Distribution License (the "License").
6*4943Sgd78059  * You may not use this file except in compliance with the License.
7*4943Sgd78059  *
8*4943Sgd78059  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*4943Sgd78059  * or http://www.opensolaris.org/os/licensing.
10*4943Sgd78059  * See the License for the specific language governing permissions
11*4943Sgd78059  * and limitations under the License.
12*4943Sgd78059  *
13*4943Sgd78059  * When distributing Covered Code, include this CDDL HEADER in each
14*4943Sgd78059  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*4943Sgd78059  * If applicable, add the following below this CDDL HEADER, with the
16*4943Sgd78059  * fields enclosed by brackets "[]" replaced with your own identifying
17*4943Sgd78059  * information: Portions Copyright [yyyy] [name of copyright owner]
18*4943Sgd78059  *
19*4943Sgd78059  * CDDL HEADER END
20*4943Sgd78059  */
21*4943Sgd78059 /*
22*4943Sgd78059  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23*4943Sgd78059  * Use is subject to license terms.
24*4943Sgd78059  */
25*4943Sgd78059 
26*4943Sgd78059 #pragma ident	"%Z%%M%	%I%	%E% SMI"
27*4943Sgd78059 
28*4943Sgd78059 /*
29*4943Sgd78059  * SunOS MT QFE Device Driver (layered above FEPS/Cheerio)
30*4943Sgd78059  */
31*4943Sgd78059 
32*4943Sgd78059 #include	<sys/types.h>
33*4943Sgd78059 #include	<sys/debug.h>
34*4943Sgd78059 #include	<sys/stream.h>
35*4943Sgd78059 #include	<sys/cmn_err.h>
36*4943Sgd78059 #include	<sys/kmem.h>
37*4943Sgd78059 #include	<sys/modctl.h>
38*4943Sgd78059 #include	<sys/conf.h>
39*4943Sgd78059 #include	<sys/mac.h>
40*4943Sgd78059 #include	<sys/mac_ether.h>
41*4943Sgd78059 #include	<sys/ddi.h>
42*4943Sgd78059 #include	<sys/sunddi.h>
43*4943Sgd78059 
44*4943Sgd78059 /*
45*4943Sgd78059  * Function prototypes.
46*4943Sgd78059  */
47*4943Sgd78059 extern int hmeattach(dev_info_t *, ddi_attach_cmd_t);
48*4943Sgd78059 extern int hmedetach(dev_info_t *, ddi_detach_cmd_t);
49*4943Sgd78059 
50*4943Sgd78059 DDI_DEFINE_STREAM_OPS(qfe_dev_ops, nulldev, nulldev, hmeattach, hmedetach,
51*4943Sgd78059     nodev, NULL, D_MP, NULL);
52*4943Sgd78059 
53*4943Sgd78059 /*
54*4943Sgd78059  * Module linkage information for the kernel.
55*4943Sgd78059  */
56*4943Sgd78059 static struct modldrv modldrv = {
57*4943Sgd78059 	&mod_driverops,	/* Type of module.  This one is a driver */
58*4943Sgd78059 	"Sun QFE 10/100 Mb Ethernet",
59*4943Sgd78059 	&qfe_dev_ops,	/* driver ops */
60*4943Sgd78059 };
61*4943Sgd78059 
62*4943Sgd78059 static struct modlinkage modlinkage = {
63*4943Sgd78059 	MODREV_1, &modldrv, NULL
64*4943Sgd78059 };
65*4943Sgd78059 
66*4943Sgd78059 /* <<<<<<<<<<<<<<<<<<<<<<<<<<<  LOADABLE ENTRIES  >>>>>>>>>>>>>>>>>>>>>>> */
67*4943Sgd78059 
68*4943Sgd78059 int
69*4943Sgd78059 _init(void)
70*4943Sgd78059 {
71*4943Sgd78059 	int	status;
72*4943Sgd78059 
73*4943Sgd78059 	mac_init_ops(&qfe_dev_ops, "qfe");
74*4943Sgd78059 	if ((status = mod_install(&modlinkage)) != 0) {
75*4943Sgd78059 		mac_fini_ops(&qfe_dev_ops);
76*4943Sgd78059 	}
77*4943Sgd78059 	return (status);
78*4943Sgd78059 }
79*4943Sgd78059 
80*4943Sgd78059 int
81*4943Sgd78059 _fini(void)
82*4943Sgd78059 {
83*4943Sgd78059 	int	status;
84*4943Sgd78059 
85*4943Sgd78059 	if ((status = mod_remove(&modlinkage)) == 0) {
86*4943Sgd78059 		mac_fini_ops(&qfe_dev_ops);
87*4943Sgd78059 	}
88*4943Sgd78059 	return (status);
89*4943Sgd78059 }
90*4943Sgd78059 
91*4943Sgd78059 int
92*4943Sgd78059 _info(struct modinfo *modinfop)
93*4943Sgd78059 {
94*4943Sgd78059 	return (mod_info(&modlinkage, modinfop));
95*4943Sgd78059 }
96