![]() |
|
|||
0001 /* 0002 * Copyright (c) 2006, 2007, 2008, 2009 QLogic Corporation. All rights reserved. 0003 * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved. 0004 * 0005 * This software is available to you under a choice of one of two 0006 * licenses. You may choose to be licensed under the terms of the GNU 0007 * General Public License (GPL) Version 2, available from the file 0008 * COPYING in the main directory of this source tree, or the 0009 * OpenIB.org BSD license below: 0010 * 0011 * Redistribution and use in source and binary forms, with or 0012 * without modification, are permitted provided that the following 0013 * conditions are met: 0014 * 0015 * - Redistributions of source code must retain the above 0016 * copyright notice, this list of conditions and the following 0017 * disclaimer. 0018 * 0019 * - Redistributions in binary form must reproduce the above 0020 * copyright notice, this list of conditions and the following 0021 * disclaimer in the documentation and/or other materials 0022 * provided with the distribution. 0023 * 0024 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 0025 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 0026 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 0027 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 0028 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 0029 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 0030 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 0031 * SOFTWARE. 0032 */ 0033 /* QSFP support common definitions, for ib_qib driver */ 0034 0035 #define QSFP_DEV 0xA0 0036 #define QSFP_PWR_LAG_MSEC 2000 0037 #define QSFP_MODPRS_LAG_MSEC 20 0038 0039 /* 0040 * Below are masks for various QSFP signals, for Port 1. 0041 * Port2 equivalents are shifted by QSFP_GPIO_PORT2_SHIFT. 0042 * _N means asserted low 0043 */ 0044 #define QSFP_GPIO_MOD_SEL_N (4) 0045 #define QSFP_GPIO_MOD_PRS_N (8) 0046 #define QSFP_GPIO_INT_N (0x10) 0047 #define QSFP_GPIO_MOD_RST_N (0x20) 0048 #define QSFP_GPIO_LP_MODE (0x40) 0049 #define QSFP_GPIO_PORT2_SHIFT 5 0050 0051 #define QSFP_PAGESIZE 128 0052 /* Defined fields that QLogic requires of qualified cables */ 0053 /* Byte 0 is Identifier, not checked */ 0054 /* Byte 1 is reserved "status MSB" */ 0055 /* Byte 2 is "status LSB" We only care that D2 "Flat Mem" is set. */ 0056 /* 0057 * Rest of first 128 not used, although 127 is reserved for page select 0058 * if module is not "Flat memory". 0059 */ 0060 /* Byte 128 is Identifier: must be 0x0c for QSFP, or 0x0d for QSFP+ */ 0061 #define QSFP_MOD_ID_OFFS 128 0062 /* 0063 * Byte 129 is "Extended Identifier". We only care about D7,D6: Power class 0064 * 0:1.5W, 1:2.0W, 2:2.5W, 3:3.5W 0065 */ 0066 #define QSFP_MOD_PWR_OFFS 129 0067 /* Byte 130 is Connector type. Not QLogic req'd */ 0068 /* Bytes 131..138 are Transceiver types, bit maps for various tech, none IB */ 0069 /* Byte 139 is encoding. code 0x01 is 8b10b. Not QLogic req'd */ 0070 /* byte 140 is nominal bit-rate, in units of 100Mbits/sec Not QLogic req'd */ 0071 /* Byte 141 is Extended Rate Select. Not QLogic req'd */ 0072 /* Bytes 142..145 are lengths for various fiber types. Not QLogic req'd */ 0073 /* Byte 146 is length for Copper. Units of 1 meter */ 0074 #define QSFP_MOD_LEN_OFFS 146 0075 /* 0076 * Byte 147 is Device technology. D0..3 not Qlogc req'd 0077 * D4..7 select from 15 choices, translated by table: 0078 */ 0079 #define QSFP_MOD_TECH_OFFS 147 0080 extern const char *const qib_qsfp_devtech[16]; 0081 /* Active Equalization includes fiber, copper full EQ, and copper near Eq */ 0082 #define QSFP_IS_ACTIVE(tech) ((0xA2FF >> ((tech) >> 4)) & 1) 0083 /* Active Equalization includes fiber, copper full EQ, and copper far Eq */ 0084 #define QSFP_IS_ACTIVE_FAR(tech) ((0x32FF >> ((tech) >> 4)) & 1) 0085 /* Attenuation should be valid for copper other than full/near Eq */ 0086 #define QSFP_HAS_ATTEN(tech) ((0x4D00 >> ((tech) >> 4)) & 1) 0087 /* Length is only valid if technology is "copper" */ 0088 #define QSFP_IS_CU(tech) ((0xED00 >> ((tech) >> 4)) & 1) 0089 #define QSFP_TECH_1490 9 0090 0091 #define QSFP_OUI(oui) (((unsigned)oui[0] << 16) | ((unsigned)oui[1] << 8) | \ 0092 oui[2]) 0093 #define QSFP_OUI_AMPHENOL 0x415048 0094 #define QSFP_OUI_FINISAR 0x009065 0095 #define QSFP_OUI_GORE 0x002177 0096 0097 /* Bytes 148..163 are Vendor Name, Left-justified Blank-filled */ 0098 #define QSFP_VEND_OFFS 148 0099 #define QSFP_VEND_LEN 16 0100 /* Byte 164 is IB Extended tranceiver codes Bits D0..3 are SDR,DDR,QDR,EDR */ 0101 #define QSFP_IBXCV_OFFS 164 0102 /* Bytes 165..167 are Vendor OUI number */ 0103 #define QSFP_VOUI_OFFS 165 0104 #define QSFP_VOUI_LEN 3 0105 /* Bytes 168..183 are Vendor Part Number, string */ 0106 #define QSFP_PN_OFFS 168 0107 #define QSFP_PN_LEN 16 0108 /* Bytes 184,185 are Vendor Rev. Left Justified, Blank-filled */ 0109 #define QSFP_REV_OFFS 184 0110 #define QSFP_REV_LEN 2 0111 /* 0112 * Bytes 186,187 are Wavelength, if Optical. Not Qlogic req'd 0113 * If copper, they are attenuation in dB: 0114 * Byte 186 is at 2.5Gb/sec (SDR), Byte 187 at 5.0Gb/sec (DDR) 0115 */ 0116 #define QSFP_ATTEN_OFFS 186 0117 #define QSFP_ATTEN_LEN 2 0118 /* Bytes 188,189 are Wavelength tolerance, not QLogic req'd */ 0119 /* Byte 190 is Max Case Temp. Not QLogic req'd */ 0120 /* Byte 191 is LSB of sum of bytes 128..190. Not QLogic req'd */ 0121 #define QSFP_CC_OFFS 191 0122 /* Bytes 192..195 are Options implemented in qsfp. Not Qlogic req'd */ 0123 /* Bytes 196..211 are Serial Number, String */ 0124 #define QSFP_SN_OFFS 196 0125 #define QSFP_SN_LEN 16 0126 /* Bytes 212..219 are date-code YYMMDD (MM==1 for Jan) */ 0127 #define QSFP_DATE_OFFS 212 0128 #define QSFP_DATE_LEN 6 0129 /* Bytes 218,219 are optional lot-code, string */ 0130 #define QSFP_LOT_OFFS 218 0131 #define QSFP_LOT_LEN 2 0132 /* Bytes 220, 221 indicate monitoring options, Not QLogic req'd */ 0133 /* Byte 223 is LSB of sum of bytes 192..222 */ 0134 #define QSFP_CC_EXT_OFFS 223 0135 0136 /* 0137 * struct qib_qsfp_data encapsulates state of QSFP device for one port. 0138 * it will be part of port-chip-specific data if a board supports QSFP. 0139 * 0140 * Since multiple board-types use QSFP, and their pport_data structs 0141 * differ (in the chip-specific section), we need a pointer to its head. 0142 * 0143 * Avoiding premature optimization, we will have one work_struct per port, 0144 * and let the (increasingly inaccurately named) eep_lock arbitrate 0145 * access to common resources. 0146 * 0147 */ 0148 0149 /* 0150 * Hold the parts of the onboard EEPROM that we care about, so we aren't 0151 * coonstantly bit-boffing 0152 */ 0153 struct qib_qsfp_cache { 0154 u8 id; /* must be 0x0C or 0x0D; 0 indicates invalid EEPROM read */ 0155 u8 pwr; /* in D6,7 */ 0156 u8 len; /* in meters, Cu only */ 0157 u8 tech; 0158 char vendor[QSFP_VEND_LEN]; 0159 u8 xt_xcv; /* Ext. tranceiver codes, 4 lsbs are IB speed supported */ 0160 u8 oui[QSFP_VOUI_LEN]; 0161 u8 partnum[QSFP_PN_LEN]; 0162 u8 rev[QSFP_REV_LEN]; 0163 u8 atten[QSFP_ATTEN_LEN]; 0164 u8 cks1; /* Checksum of bytes 128..190 */ 0165 u8 serial[QSFP_SN_LEN]; 0166 u8 date[QSFP_DATE_LEN]; 0167 u8 lot[QSFP_LOT_LEN]; 0168 u8 cks2; /* Checsum of bytes 192..222 */ 0169 }; 0170 0171 #define QSFP_PWR(pbyte) (((pbyte) >> 6) & 3) 0172 #define QSFP_ATTEN_SDR(attenarray) (attenarray[0]) 0173 #define QSFP_ATTEN_DDR(attenarray) (attenarray[1]) 0174 0175 struct qib_qsfp_data { 0176 /* Helps to find our way */ 0177 struct qib_pportdata *ppd; 0178 struct work_struct work; 0179 struct qib_qsfp_cache cache; 0180 unsigned long t_insert; 0181 u8 modpresent; 0182 }; 0183 0184 extern int qib_refresh_qsfp_cache(struct qib_pportdata *ppd, 0185 struct qib_qsfp_cache *cp); 0186 extern int qib_qsfp_mod_present(struct qib_pportdata *ppd); 0187 extern void qib_qsfp_init(struct qib_qsfp_data *qd, 0188 void (*fevent)(struct work_struct *));
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |