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 * Copyright 2008 NetXen, Inc. All rights reserved. 23 * Use is subject to license terms. 24 */ 25 #ifndef _driver_info_h_ 26 #define _driver_info_h_ 27 28 static const unm_brdinfo_t unm_boards[] = { 29 {UNM_BRDTYPE_P2_SB31_10G_CX4, 1, NX_P2_MN_TYPE_ROMIMAGE, 30 "XGb CX4"}, 31 {UNM_BRDTYPE_P2_SB31_10G_HMEZ, 2, NX_P2_MN_TYPE_ROMIMAGE, 32 "XGb HMEZ"}, 33 {UNM_BRDTYPE_P2_SB31_10G_IMEZ, 2, NX_P2_MN_TYPE_ROMIMAGE, 34 "XGb IMEZ"}, 35 {UNM_BRDTYPE_P2_SB31_10G, 1, NX_P2_MN_TYPE_ROMIMAGE, 36 "XGb XFP"}, 37 {UNM_BRDTYPE_P2_SB35_4G, 4, NX_P2_MN_TYPE_ROMIMAGE, 38 "Quad Gb"}, 39 {UNM_BRDTYPE_P2_SB31_2G, 2, NX_P2_MN_TYPE_ROMIMAGE, 40 "Dual Gb"}, 41 {UNM_BRDTYPE_P3_REF_QG, 4, NX_P3_MN_TYPE_ROMIMAGE, 42 "Reference card - Quad Gig "}, 43 {UNM_BRDTYPE_P3_HMEZ, 2, NX_P3_CT_TYPE_ROMIMAGE, 44 "Dual XGb HMEZ"}, 45 {UNM_BRDTYPE_P3_10G_CX4_LP, 2, NX_P3_CT_TYPE_ROMIMAGE, 46 "Dual XGb CX4 LP"}, 47 {UNM_BRDTYPE_P3_4_GB, 4, NX_P3_CT_TYPE_ROMIMAGE, 48 "Quad Gig LP"}, 49 {UNM_BRDTYPE_P3_IMEZ, 2, NX_P3_CT_TYPE_ROMIMAGE, 50 "Dual XGb IMEZ"}, 51 {UNM_BRDTYPE_P3_10G_SFP_PLUS, 2, NX_P3_CT_TYPE_ROMIMAGE, 52 "Dual XGb SFP+ LP"}, 53 {UNM_BRDTYPE_P3_10000_BASE_T, 1, NX_P3_CT_TYPE_ROMIMAGE, 54 "XGB 10G BaseT LP"}, 55 {UNM_BRDTYPE_P3_XG_LOM, 2, NX_P3_CT_TYPE_ROMIMAGE, 56 "Dual XGb LOM"}, 57 {UNM_BRDTYPE_P3_4_GB_MM, 4, NX_P3_CT_TYPE_ROMIMAGE, 58 "NX3031 with Gigabit Ethernet"}, 59 {UNM_BRDTYPE_P3_10G_CX4, 2, NX_P3_CT_TYPE_ROMIMAGE, 60 "Reference card - Dual CX4 Option"}, 61 {UNM_BRDTYPE_P3_10G_XFP, 1, NX_P3_CT_TYPE_ROMIMAGE, 62 "Reference card - Single XFP Option"}, 63 {UNM_BRDTYPE_P3_10G_TRP, 2, NX_P3_CT_TYPE_ROMIMAGE, 64 "NX3031 with 1/10 Gigabit Ethernet"}, 65 }; 66 67 #endif /* !_driver_info_h_ */ 68