1*4882a593Smuzhiyun /* 2*4882a593Smuzhiyun * Copyright (c) 2006, 2007, 2008, 2009 QLogic Corporation. All rights reserved. 3*4882a593Smuzhiyun * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved. 4*4882a593Smuzhiyun * 5*4882a593Smuzhiyun * This software is available to you under a choice of one of two 6*4882a593Smuzhiyun * licenses. You may choose to be licensed under the terms of the GNU 7*4882a593Smuzhiyun * General Public License (GPL) Version 2, available from the file 8*4882a593Smuzhiyun * COPYING in the main directory of this source tree, or the 9*4882a593Smuzhiyun * OpenIB.org BSD license below: 10*4882a593Smuzhiyun * 11*4882a593Smuzhiyun * Redistribution and use in source and binary forms, with or 12*4882a593Smuzhiyun * without modification, are permitted provided that the following 13*4882a593Smuzhiyun * conditions are met: 14*4882a593Smuzhiyun * 15*4882a593Smuzhiyun * - Redistributions of source code must retain the above 16*4882a593Smuzhiyun * copyright notice, this list of conditions and the following 17*4882a593Smuzhiyun * disclaimer. 18*4882a593Smuzhiyun * 19*4882a593Smuzhiyun * - Redistributions in binary form must reproduce the above 20*4882a593Smuzhiyun * copyright notice, this list of conditions and the following 21*4882a593Smuzhiyun * disclaimer in the documentation and/or other materials 22*4882a593Smuzhiyun * provided with the distribution. 23*4882a593Smuzhiyun * 24*4882a593Smuzhiyun * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 25*4882a593Smuzhiyun * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 26*4882a593Smuzhiyun * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 27*4882a593Smuzhiyun * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 28*4882a593Smuzhiyun * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 29*4882a593Smuzhiyun * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 30*4882a593Smuzhiyun * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 31*4882a593Smuzhiyun * SOFTWARE. 32*4882a593Smuzhiyun */ 33*4882a593Smuzhiyun /* QSFP support common definitions, for ib_qib driver */ 34*4882a593Smuzhiyun 35*4882a593Smuzhiyun #define QSFP_DEV 0xA0 36*4882a593Smuzhiyun #define QSFP_PWR_LAG_MSEC 2000 37*4882a593Smuzhiyun #define QSFP_MODPRS_LAG_MSEC 20 38*4882a593Smuzhiyun 39*4882a593Smuzhiyun /* 40*4882a593Smuzhiyun * Below are masks for various QSFP signals, for Port 1. 41*4882a593Smuzhiyun * Port2 equivalents are shifted by QSFP_GPIO_PORT2_SHIFT. 42*4882a593Smuzhiyun * _N means asserted low 43*4882a593Smuzhiyun */ 44*4882a593Smuzhiyun #define QSFP_GPIO_MOD_SEL_N (4) 45*4882a593Smuzhiyun #define QSFP_GPIO_MOD_PRS_N (8) 46*4882a593Smuzhiyun #define QSFP_GPIO_INT_N (0x10) 47*4882a593Smuzhiyun #define QSFP_GPIO_MOD_RST_N (0x20) 48*4882a593Smuzhiyun #define QSFP_GPIO_LP_MODE (0x40) 49*4882a593Smuzhiyun #define QSFP_GPIO_PORT2_SHIFT 5 50*4882a593Smuzhiyun 51*4882a593Smuzhiyun #define QSFP_PAGESIZE 128 52*4882a593Smuzhiyun /* Defined fields that QLogic requires of qualified cables */ 53*4882a593Smuzhiyun /* Byte 0 is Identifier, not checked */ 54*4882a593Smuzhiyun /* Byte 1 is reserved "status MSB" */ 55*4882a593Smuzhiyun /* Byte 2 is "status LSB" We only care that D2 "Flat Mem" is set. */ 56*4882a593Smuzhiyun /* 57*4882a593Smuzhiyun * Rest of first 128 not used, although 127 is reserved for page select 58*4882a593Smuzhiyun * if module is not "Flat memory". 59*4882a593Smuzhiyun */ 60*4882a593Smuzhiyun /* Byte 128 is Identifier: must be 0x0c for QSFP, or 0x0d for QSFP+ */ 61*4882a593Smuzhiyun #define QSFP_MOD_ID_OFFS 128 62*4882a593Smuzhiyun /* 63*4882a593Smuzhiyun * Byte 129 is "Extended Identifier". We only care about D7,D6: Power class 64*4882a593Smuzhiyun * 0:1.5W, 1:2.0W, 2:2.5W, 3:3.5W 65*4882a593Smuzhiyun */ 66*4882a593Smuzhiyun #define QSFP_MOD_PWR_OFFS 129 67*4882a593Smuzhiyun /* Byte 130 is Connector type. Not QLogic req'd */ 68*4882a593Smuzhiyun /* Bytes 131..138 are Transceiver types, bit maps for various tech, none IB */ 69*4882a593Smuzhiyun /* Byte 139 is encoding. code 0x01 is 8b10b. Not QLogic req'd */ 70*4882a593Smuzhiyun /* byte 140 is nominal bit-rate, in units of 100Mbits/sec Not QLogic req'd */ 71*4882a593Smuzhiyun /* Byte 141 is Extended Rate Select. Not QLogic req'd */ 72*4882a593Smuzhiyun /* Bytes 142..145 are lengths for various fiber types. Not QLogic req'd */ 73*4882a593Smuzhiyun /* Byte 146 is length for Copper. Units of 1 meter */ 74*4882a593Smuzhiyun #define QSFP_MOD_LEN_OFFS 146 75*4882a593Smuzhiyun /* 76*4882a593Smuzhiyun * Byte 147 is Device technology. D0..3 not Qlogc req'd 77*4882a593Smuzhiyun * D4..7 select from 15 choices, translated by table: 78*4882a593Smuzhiyun */ 79*4882a593Smuzhiyun #define QSFP_MOD_TECH_OFFS 147 80*4882a593Smuzhiyun extern const char *const qib_qsfp_devtech[16]; 81*4882a593Smuzhiyun /* Active Equalization includes fiber, copper full EQ, and copper near Eq */ 82*4882a593Smuzhiyun #define QSFP_IS_ACTIVE(tech) ((0xA2FF >> ((tech) >> 4)) & 1) 83*4882a593Smuzhiyun /* Active Equalization includes fiber, copper full EQ, and copper far Eq */ 84*4882a593Smuzhiyun #define QSFP_IS_ACTIVE_FAR(tech) ((0x32FF >> ((tech) >> 4)) & 1) 85*4882a593Smuzhiyun /* Attenuation should be valid for copper other than full/near Eq */ 86*4882a593Smuzhiyun #define QSFP_HAS_ATTEN(tech) ((0x4D00 >> ((tech) >> 4)) & 1) 87*4882a593Smuzhiyun /* Length is only valid if technology is "copper" */ 88*4882a593Smuzhiyun #define QSFP_IS_CU(tech) ((0xED00 >> ((tech) >> 4)) & 1) 89*4882a593Smuzhiyun #define QSFP_TECH_1490 9 90*4882a593Smuzhiyun 91*4882a593Smuzhiyun #define QSFP_OUI(oui) (((unsigned)oui[0] << 16) | ((unsigned)oui[1] << 8) | \ 92*4882a593Smuzhiyun oui[2]) 93*4882a593Smuzhiyun #define QSFP_OUI_AMPHENOL 0x415048 94*4882a593Smuzhiyun #define QSFP_OUI_FINISAR 0x009065 95*4882a593Smuzhiyun #define QSFP_OUI_GORE 0x002177 96*4882a593Smuzhiyun 97*4882a593Smuzhiyun /* Bytes 148..163 are Vendor Name, Left-justified Blank-filled */ 98*4882a593Smuzhiyun #define QSFP_VEND_OFFS 148 99*4882a593Smuzhiyun #define QSFP_VEND_LEN 16 100*4882a593Smuzhiyun /* Byte 164 is IB Extended tranceiver codes Bits D0..3 are SDR,DDR,QDR,EDR */ 101*4882a593Smuzhiyun #define QSFP_IBXCV_OFFS 164 102*4882a593Smuzhiyun /* Bytes 165..167 are Vendor OUI number */ 103*4882a593Smuzhiyun #define QSFP_VOUI_OFFS 165 104*4882a593Smuzhiyun #define QSFP_VOUI_LEN 3 105*4882a593Smuzhiyun /* Bytes 168..183 are Vendor Part Number, string */ 106*4882a593Smuzhiyun #define QSFP_PN_OFFS 168 107*4882a593Smuzhiyun #define QSFP_PN_LEN 16 108*4882a593Smuzhiyun /* Bytes 184,185 are Vendor Rev. Left Justified, Blank-filled */ 109*4882a593Smuzhiyun #define QSFP_REV_OFFS 184 110*4882a593Smuzhiyun #define QSFP_REV_LEN 2 111*4882a593Smuzhiyun /* 112*4882a593Smuzhiyun * Bytes 186,187 are Wavelength, if Optical. Not Qlogic req'd 113*4882a593Smuzhiyun * If copper, they are attenuation in dB: 114*4882a593Smuzhiyun * Byte 186 is at 2.5Gb/sec (SDR), Byte 187 at 5.0Gb/sec (DDR) 115*4882a593Smuzhiyun */ 116*4882a593Smuzhiyun #define QSFP_ATTEN_OFFS 186 117*4882a593Smuzhiyun #define QSFP_ATTEN_LEN 2 118*4882a593Smuzhiyun /* Bytes 188,189 are Wavelength tolerance, not QLogic req'd */ 119*4882a593Smuzhiyun /* Byte 190 is Max Case Temp. Not QLogic req'd */ 120*4882a593Smuzhiyun /* Byte 191 is LSB of sum of bytes 128..190. Not QLogic req'd */ 121*4882a593Smuzhiyun #define QSFP_CC_OFFS 191 122*4882a593Smuzhiyun /* Bytes 192..195 are Options implemented in qsfp. Not Qlogic req'd */ 123*4882a593Smuzhiyun /* Bytes 196..211 are Serial Number, String */ 124*4882a593Smuzhiyun #define QSFP_SN_OFFS 196 125*4882a593Smuzhiyun #define QSFP_SN_LEN 16 126*4882a593Smuzhiyun /* Bytes 212..219 are date-code YYMMDD (MM==1 for Jan) */ 127*4882a593Smuzhiyun #define QSFP_DATE_OFFS 212 128*4882a593Smuzhiyun #define QSFP_DATE_LEN 6 129*4882a593Smuzhiyun /* Bytes 218,219 are optional lot-code, string */ 130*4882a593Smuzhiyun #define QSFP_LOT_OFFS 218 131*4882a593Smuzhiyun #define QSFP_LOT_LEN 2 132*4882a593Smuzhiyun /* Bytes 220, 221 indicate monitoring options, Not QLogic req'd */ 133*4882a593Smuzhiyun /* Byte 223 is LSB of sum of bytes 192..222 */ 134*4882a593Smuzhiyun #define QSFP_CC_EXT_OFFS 223 135*4882a593Smuzhiyun 136*4882a593Smuzhiyun /* 137*4882a593Smuzhiyun * struct qib_qsfp_data encapsulates state of QSFP device for one port. 138*4882a593Smuzhiyun * it will be part of port-chip-specific data if a board supports QSFP. 139*4882a593Smuzhiyun * 140*4882a593Smuzhiyun * Since multiple board-types use QSFP, and their pport_data structs 141*4882a593Smuzhiyun * differ (in the chip-specific section), we need a pointer to its head. 142*4882a593Smuzhiyun * 143*4882a593Smuzhiyun * Avoiding premature optimization, we will have one work_struct per port, 144*4882a593Smuzhiyun * and let the (increasingly inaccurately named) eep_lock arbitrate 145*4882a593Smuzhiyun * access to common resources. 146*4882a593Smuzhiyun * 147*4882a593Smuzhiyun */ 148*4882a593Smuzhiyun 149*4882a593Smuzhiyun /* 150*4882a593Smuzhiyun * Hold the parts of the onboard EEPROM that we care about, so we aren't 151*4882a593Smuzhiyun * coonstantly bit-boffing 152*4882a593Smuzhiyun */ 153*4882a593Smuzhiyun struct qib_qsfp_cache { 154*4882a593Smuzhiyun u8 id; /* must be 0x0C or 0x0D; 0 indicates invalid EEPROM read */ 155*4882a593Smuzhiyun u8 pwr; /* in D6,7 */ 156*4882a593Smuzhiyun u8 len; /* in meters, Cu only */ 157*4882a593Smuzhiyun u8 tech; 158*4882a593Smuzhiyun char vendor[QSFP_VEND_LEN]; 159*4882a593Smuzhiyun u8 xt_xcv; /* Ext. tranceiver codes, 4 lsbs are IB speed supported */ 160*4882a593Smuzhiyun u8 oui[QSFP_VOUI_LEN]; 161*4882a593Smuzhiyun u8 partnum[QSFP_PN_LEN]; 162*4882a593Smuzhiyun u8 rev[QSFP_REV_LEN]; 163*4882a593Smuzhiyun u8 atten[QSFP_ATTEN_LEN]; 164*4882a593Smuzhiyun u8 cks1; /* Checksum of bytes 128..190 */ 165*4882a593Smuzhiyun u8 serial[QSFP_SN_LEN]; 166*4882a593Smuzhiyun u8 date[QSFP_DATE_LEN]; 167*4882a593Smuzhiyun u8 lot[QSFP_LOT_LEN]; 168*4882a593Smuzhiyun u8 cks2; /* Checsum of bytes 192..222 */ 169*4882a593Smuzhiyun }; 170*4882a593Smuzhiyun 171*4882a593Smuzhiyun #define QSFP_PWR(pbyte) (((pbyte) >> 6) & 3) 172*4882a593Smuzhiyun #define QSFP_ATTEN_SDR(attenarray) (attenarray[0]) 173*4882a593Smuzhiyun #define QSFP_ATTEN_DDR(attenarray) (attenarray[1]) 174*4882a593Smuzhiyun 175*4882a593Smuzhiyun struct qib_qsfp_data { 176*4882a593Smuzhiyun /* Helps to find our way */ 177*4882a593Smuzhiyun struct qib_pportdata *ppd; 178*4882a593Smuzhiyun struct work_struct work; 179*4882a593Smuzhiyun struct qib_qsfp_cache cache; 180*4882a593Smuzhiyun unsigned long t_insert; 181*4882a593Smuzhiyun u8 modpresent; 182*4882a593Smuzhiyun }; 183*4882a593Smuzhiyun 184*4882a593Smuzhiyun extern int qib_refresh_qsfp_cache(struct qib_pportdata *ppd, 185*4882a593Smuzhiyun struct qib_qsfp_cache *cp); 186*4882a593Smuzhiyun extern int qib_qsfp_mod_present(struct qib_pportdata *ppd); 187*4882a593Smuzhiyun extern void qib_qsfp_init(struct qib_qsfp_data *qd, 188*4882a593Smuzhiyun void (*fevent)(struct work_struct *)); 189