1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  * Copyright 2008 NetXen, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #ifndef _DRIVER_INFO_H_
28 #define	_DRIVER_INFO_H_
29 
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33 
34 static const unm_brdinfo_t unm_boards[] = {
35 	{UNM_BRDTYPE_P2_SB31_10G_CX4,	1, NX_P2_MN_TYPE_ROMIMAGE,
36 			"XGb CX4"},
37 	{UNM_BRDTYPE_P2_SB31_10G_HMEZ,	2, NX_P2_MN_TYPE_ROMIMAGE,
38 			"XGb HMEZ"},
39 	{UNM_BRDTYPE_P2_SB31_10G_IMEZ,	2, NX_P2_MN_TYPE_ROMIMAGE,
40 			"XGb IMEZ"},
41 	{UNM_BRDTYPE_P2_SB31_10G,		1, NX_P2_MN_TYPE_ROMIMAGE,
42 			"XGb XFP"},
43 	{UNM_BRDTYPE_P2_SB35_4G,		4, NX_P2_MN_TYPE_ROMIMAGE,
44 		    "Quad Gb"},
45 	{UNM_BRDTYPE_P2_SB31_2G,		2, NX_P2_MN_TYPE_ROMIMAGE,
46 			"Dual Gb"},
47 	{UNM_BRDTYPE_P3_REF_QG,			4, NX_P3_MN_TYPE_ROMIMAGE,
48 			"Reference card - Quad Gig "},
49 	{UNM_BRDTYPE_P3_HMEZ,			2, NX_P3_CT_TYPE_ROMIMAGE,
50 			"Dual XGb HMEZ"},
51 	{UNM_BRDTYPE_P3_10G_CX4_LP,    2, NX_P3_CT_TYPE_ROMIMAGE,
52 			"Dual XGb CX4 LP"},
53 	{UNM_BRDTYPE_P3_4_GB,			4, NX_P3_CT_TYPE_ROMIMAGE,
54 			"Quad Gig LP"},
55 	{UNM_BRDTYPE_P3_IMEZ,			2, NX_P3_CT_TYPE_ROMIMAGE,
56 			"Dual XGb IMEZ"},
57 	{UNM_BRDTYPE_P3_10G_SFP_PLUS,	2, NX_P3_CT_TYPE_ROMIMAGE,
58 			"Dual XGb SFP+ LP"},
59 	{UNM_BRDTYPE_P3_10000_BASE_T,	2, NX_P3_CT_TYPE_ROMIMAGE,
60 			"XGB 10G BaseT LP"},
61 	{UNM_BRDTYPE_P3_XG_LOM,			2, NX_P3_CT_TYPE_ROMIMAGE,
62 			"Dual XGb LOM"},
63 	{UNM_BRDTYPE_P3_4_GB_MM,		4, NX_P3_CT_TYPE_ROMIMAGE,
64 			"NX3031 with Gigabit Ethernet"},
65 	{UNM_BRDTYPE_P3_10G_CX4,		2, NX_P3_CT_TYPE_ROMIMAGE,
66 			"Reference card - Dual CX4 Option"},
67 	{UNM_BRDTYPE_P3_10G_XFP,		1, NX_P3_CT_TYPE_ROMIMAGE,
68 			"Reference card - Single XFP Option"},
69 	{UNM_BRDTYPE_P3_10G_TRP,		2, NX_P3_CT_TYPE_ROMIMAGE,
70 			"NX3031 with 1/10 Gigabit Ethernet"},
71 };
72 
73 #ifdef __cplusplus
74 }
75 #endif
76 
77 #endif /* !_DRIVER_INFO_H_ */
78