18c2ecf20Sopenharmony_ci/*
28c2ecf20Sopenharmony_ci * Copyright(c) 2015, 2016 Intel Corporation.
38c2ecf20Sopenharmony_ci *
48c2ecf20Sopenharmony_ci * This file is provided under a dual BSD/GPLv2 license.  When using or
58c2ecf20Sopenharmony_ci * redistributing this file, you may do so under either license.
68c2ecf20Sopenharmony_ci *
78c2ecf20Sopenharmony_ci * GPL LICENSE SUMMARY
88c2ecf20Sopenharmony_ci *
98c2ecf20Sopenharmony_ci * This program is free software; you can redistribute it and/or modify
108c2ecf20Sopenharmony_ci * it under the terms of version 2 of the GNU General Public License as
118c2ecf20Sopenharmony_ci * published by the Free Software Foundation.
128c2ecf20Sopenharmony_ci *
138c2ecf20Sopenharmony_ci * This program is distributed in the hope that it will be useful, but
148c2ecf20Sopenharmony_ci * WITHOUT ANY WARRANTY; without even the implied warranty of
158c2ecf20Sopenharmony_ci * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
168c2ecf20Sopenharmony_ci * General Public License for more details.
178c2ecf20Sopenharmony_ci *
188c2ecf20Sopenharmony_ci * BSD LICENSE
198c2ecf20Sopenharmony_ci *
208c2ecf20Sopenharmony_ci * Redistribution and use in source and binary forms, with or without
218c2ecf20Sopenharmony_ci * modification, are permitted provided that the following conditions
228c2ecf20Sopenharmony_ci * are met:
238c2ecf20Sopenharmony_ci *
248c2ecf20Sopenharmony_ci *  - Redistributions of source code must retain the above copyright
258c2ecf20Sopenharmony_ci *    notice, this list of conditions and the following disclaimer.
268c2ecf20Sopenharmony_ci *  - Redistributions in binary form must reproduce the above copyright
278c2ecf20Sopenharmony_ci *    notice, this list of conditions and the following disclaimer in
288c2ecf20Sopenharmony_ci *    the documentation and/or other materials provided with the
298c2ecf20Sopenharmony_ci *    distribution.
308c2ecf20Sopenharmony_ci *  - Neither the name of Intel Corporation nor the names of its
318c2ecf20Sopenharmony_ci *    contributors may be used to endorse or promote products derived
328c2ecf20Sopenharmony_ci *    from this software without specific prior written permission.
338c2ecf20Sopenharmony_ci *
348c2ecf20Sopenharmony_ci * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
358c2ecf20Sopenharmony_ci * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
368c2ecf20Sopenharmony_ci * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
378c2ecf20Sopenharmony_ci * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
388c2ecf20Sopenharmony_ci * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
398c2ecf20Sopenharmony_ci * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
408c2ecf20Sopenharmony_ci * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
418c2ecf20Sopenharmony_ci * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
428c2ecf20Sopenharmony_ci * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
438c2ecf20Sopenharmony_ci * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
448c2ecf20Sopenharmony_ci * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
458c2ecf20Sopenharmony_ci *
468c2ecf20Sopenharmony_ci */
478c2ecf20Sopenharmony_ci/* QSFP support common definitions, for hfi driver */
488c2ecf20Sopenharmony_ci
498c2ecf20Sopenharmony_ci#define QSFP_DEV 0xA0
508c2ecf20Sopenharmony_ci#define QSFP_PWR_LAG_MSEC 2000
518c2ecf20Sopenharmony_ci#define QSFP_MODPRS_LAG_MSEC 20
528c2ecf20Sopenharmony_ci/* 128 byte pages, per SFF 8636 rev 2.4 */
538c2ecf20Sopenharmony_ci#define QSFP_MAX_NUM_PAGES	5
548c2ecf20Sopenharmony_ci
558c2ecf20Sopenharmony_ci/*
568c2ecf20Sopenharmony_ci * Below are masks for QSFP pins.  Pins are the same for HFI0 and HFI1.
578c2ecf20Sopenharmony_ci * _N means asserted low
588c2ecf20Sopenharmony_ci */
598c2ecf20Sopenharmony_ci#define QSFP_HFI0_I2CCLK    BIT(0)
608c2ecf20Sopenharmony_ci#define QSFP_HFI0_I2CDAT    BIT(1)
618c2ecf20Sopenharmony_ci#define QSFP_HFI0_RESET_N   BIT(2)
628c2ecf20Sopenharmony_ci#define QSFP_HFI0_INT_N	    BIT(3)
638c2ecf20Sopenharmony_ci#define QSFP_HFI0_MODPRST_N BIT(4)
648c2ecf20Sopenharmony_ci
658c2ecf20Sopenharmony_ci/* QSFP is paged at 256 bytes */
668c2ecf20Sopenharmony_ci#define QSFP_PAGESIZE 256
678c2ecf20Sopenharmony_ci/* Reads/writes cannot cross 128 byte boundaries */
688c2ecf20Sopenharmony_ci#define QSFP_RW_BOUNDARY 128
698c2ecf20Sopenharmony_ci
708c2ecf20Sopenharmony_ci/* number of bytes in i2c offset for QSFP devices */
718c2ecf20Sopenharmony_ci#define __QSFP_OFFSET_SIZE 1                           /* num address bytes */
728c2ecf20Sopenharmony_ci#define QSFP_OFFSET_SIZE (__QSFP_OFFSET_SIZE << 8)     /* shifted value */
738c2ecf20Sopenharmony_ci
748c2ecf20Sopenharmony_ci/* Defined fields that Intel requires of qualified cables */
758c2ecf20Sopenharmony_ci/* Byte 0 is Identifier, not checked */
768c2ecf20Sopenharmony_ci/* Byte 1 is reserved "status MSB" */
778c2ecf20Sopenharmony_ci#define QSFP_MONITOR_VAL_START 22
788c2ecf20Sopenharmony_ci#define QSFP_MONITOR_VAL_END 81
798c2ecf20Sopenharmony_ci#define QSFP_MONITOR_RANGE (QSFP_MONITOR_VAL_END - QSFP_MONITOR_VAL_START + 1)
808c2ecf20Sopenharmony_ci#define QSFP_TX_CTRL_BYTE_OFFS 86
818c2ecf20Sopenharmony_ci#define QSFP_PWR_CTRL_BYTE_OFFS 93
828c2ecf20Sopenharmony_ci#define QSFP_CDR_CTRL_BYTE_OFFS 98
838c2ecf20Sopenharmony_ci
848c2ecf20Sopenharmony_ci#define QSFP_PAGE_SELECT_BYTE_OFFS 127
858c2ecf20Sopenharmony_ci/* Byte 128 is Identifier: must be 0x0c for QSFP, or 0x0d for QSFP+ */
868c2ecf20Sopenharmony_ci#define QSFP_MOD_ID_OFFS 128
878c2ecf20Sopenharmony_ci/*
888c2ecf20Sopenharmony_ci * Byte 129 is "Extended Identifier".
898c2ecf20Sopenharmony_ci * For bits [7:6]: 0:1.5W, 1:2.0W, 2:2.5W, 3:3.5W
908c2ecf20Sopenharmony_ci * For bits [1:0]: 0:Unused, 1:4W, 2:4.5W, 3:5W
918c2ecf20Sopenharmony_ci */
928c2ecf20Sopenharmony_ci#define QSFP_MOD_PWR_OFFS 129
938c2ecf20Sopenharmony_ci/* Byte 130 is Connector type. Not Intel req'd */
948c2ecf20Sopenharmony_ci/* Bytes 131..138 are Transceiver types, bit maps for various tech, none IB */
958c2ecf20Sopenharmony_ci/* Byte 139 is encoding. code 0x01 is 8b10b. Not Intel req'd */
968c2ecf20Sopenharmony_ci/* byte 140 is nominal bit-rate, in units of 100Mbits/sec */
978c2ecf20Sopenharmony_ci#define QSFP_NOM_BIT_RATE_100_OFFS 140
988c2ecf20Sopenharmony_ci/* Byte 141 is Extended Rate Select. Not Intel req'd */
998c2ecf20Sopenharmony_ci/* Bytes 142..145 are lengths for various fiber types. Not Intel req'd */
1008c2ecf20Sopenharmony_ci/* Byte 146 is length for Copper. Units of 1 meter */
1018c2ecf20Sopenharmony_ci#define QSFP_MOD_LEN_OFFS 146
1028c2ecf20Sopenharmony_ci/*
1038c2ecf20Sopenharmony_ci * Byte 147 is Device technology. D0..3 not Intel req'd
1048c2ecf20Sopenharmony_ci * D4..7 select from 15 choices, translated by table:
1058c2ecf20Sopenharmony_ci */
1068c2ecf20Sopenharmony_ci#define QSFP_MOD_TECH_OFFS 147
1078c2ecf20Sopenharmony_ciextern const char *const hfi1_qsfp_devtech[16];
1088c2ecf20Sopenharmony_ci/* Active Equalization includes fiber, copper full EQ, and copper near Eq */
1098c2ecf20Sopenharmony_ci#define QSFP_IS_ACTIVE(tech) ((0xA2FF >> ((tech) >> 4)) & 1)
1108c2ecf20Sopenharmony_ci/* Active Equalization includes fiber, copper full EQ, and copper far Eq */
1118c2ecf20Sopenharmony_ci#define QSFP_IS_ACTIVE_FAR(tech) ((0x32FF >> ((tech) >> 4)) & 1)
1128c2ecf20Sopenharmony_ci/* Attenuation should be valid for copper other than full/near Eq */
1138c2ecf20Sopenharmony_ci#define QSFP_HAS_ATTEN(tech) ((0x4D00 >> ((tech) >> 4)) & 1)
1148c2ecf20Sopenharmony_ci/* Length is only valid if technology is "copper" */
1158c2ecf20Sopenharmony_ci#define QSFP_IS_CU(tech) ((0xED00 >> ((tech) >> 4)) & 1)
1168c2ecf20Sopenharmony_ci#define QSFP_TECH_1490 9
1178c2ecf20Sopenharmony_ci
1188c2ecf20Sopenharmony_ci#define QSFP_OUI(oui) (((unsigned)oui[0] << 16) | ((unsigned)oui[1] << 8) | \
1198c2ecf20Sopenharmony_ci			oui[2])
1208c2ecf20Sopenharmony_ci#define QSFP_OUI_AMPHENOL 0x415048
1218c2ecf20Sopenharmony_ci#define QSFP_OUI_FINISAR  0x009065
1228c2ecf20Sopenharmony_ci#define QSFP_OUI_GORE     0x002177
1238c2ecf20Sopenharmony_ci
1248c2ecf20Sopenharmony_ci/* Bytes 148..163 are Vendor Name, Left-justified Blank-filled */
1258c2ecf20Sopenharmony_ci#define QSFP_VEND_OFFS 148
1268c2ecf20Sopenharmony_ci#define QSFP_VEND_LEN 16
1278c2ecf20Sopenharmony_ci/* Byte 164 is IB Extended transceiver codes Bits D0..3 are SDR,DDR,QDR,EDR */
1288c2ecf20Sopenharmony_ci#define QSFP_IBXCV_OFFS 164
1298c2ecf20Sopenharmony_ci/* Bytes 165..167 are Vendor OUI number */
1308c2ecf20Sopenharmony_ci#define QSFP_VOUI_OFFS 165
1318c2ecf20Sopenharmony_ci#define QSFP_VOUI_LEN 3
1328c2ecf20Sopenharmony_ci/* Bytes 168..183 are Vendor Part Number, string */
1338c2ecf20Sopenharmony_ci#define QSFP_PN_OFFS 168
1348c2ecf20Sopenharmony_ci#define QSFP_PN_LEN 16
1358c2ecf20Sopenharmony_ci/* Bytes 184,185 are Vendor Rev. Left Justified, Blank-filled */
1368c2ecf20Sopenharmony_ci#define QSFP_REV_OFFS 184
1378c2ecf20Sopenharmony_ci#define QSFP_REV_LEN 2
1388c2ecf20Sopenharmony_ci/*
1398c2ecf20Sopenharmony_ci * Bytes 186,187 are Wavelength, if Optical. Not Intel req'd
1408c2ecf20Sopenharmony_ci *  If copper, they are attenuation in dB:
1418c2ecf20Sopenharmony_ci * Byte 186 is at 2.5Gb/sec (SDR), Byte 187 at 5.0Gb/sec (DDR)
1428c2ecf20Sopenharmony_ci */
1438c2ecf20Sopenharmony_ci#define QSFP_ATTEN_OFFS 186
1448c2ecf20Sopenharmony_ci#define QSFP_ATTEN_LEN 2
1458c2ecf20Sopenharmony_ci/*
1468c2ecf20Sopenharmony_ci * Bytes 188,189 are Wavelength tolerance, if optical
1478c2ecf20Sopenharmony_ci * If copper, they are attenuation in dB:
1488c2ecf20Sopenharmony_ci * Byte 188 is at 12.5 Gb/s, Byte 189 at 25 Gb/s
1498c2ecf20Sopenharmony_ci */
1508c2ecf20Sopenharmony_ci#define QSFP_CU_ATTEN_7G_OFFS 188
1518c2ecf20Sopenharmony_ci#define QSFP_CU_ATTEN_12G_OFFS 189
1528c2ecf20Sopenharmony_ci/* Byte 190 is Max Case Temp. Not Intel req'd */
1538c2ecf20Sopenharmony_ci/* Byte 191 is LSB of sum of bytes 128..190. Not Intel req'd */
1548c2ecf20Sopenharmony_ci#define QSFP_CC_OFFS 191
1558c2ecf20Sopenharmony_ci#define QSFP_EQ_INFO_OFFS 193
1568c2ecf20Sopenharmony_ci#define QSFP_CDR_INFO_OFFS 194
1578c2ecf20Sopenharmony_ci/* Bytes 196..211 are Serial Number, String */
1588c2ecf20Sopenharmony_ci#define QSFP_SN_OFFS 196
1598c2ecf20Sopenharmony_ci#define QSFP_SN_LEN 16
1608c2ecf20Sopenharmony_ci/* Bytes 212..219 are date-code YYMMDD (MM==1 for Jan) */
1618c2ecf20Sopenharmony_ci#define QSFP_DATE_OFFS 212
1628c2ecf20Sopenharmony_ci#define QSFP_DATE_LEN 6
1638c2ecf20Sopenharmony_ci/* Bytes 218,219 are optional lot-code, string */
1648c2ecf20Sopenharmony_ci#define QSFP_LOT_OFFS 218
1658c2ecf20Sopenharmony_ci#define QSFP_LOT_LEN 2
1668c2ecf20Sopenharmony_ci/* Bytes 220, 221 indicate monitoring options, Not Intel req'd */
1678c2ecf20Sopenharmony_ci/* Byte 222 indicates nominal bitrate in units of 250Mbits/sec */
1688c2ecf20Sopenharmony_ci#define QSFP_NOM_BIT_RATE_250_OFFS 222
1698c2ecf20Sopenharmony_ci/* Byte 223 is LSB of sum of bytes 192..222 */
1708c2ecf20Sopenharmony_ci#define QSFP_CC_EXT_OFFS 223
1718c2ecf20Sopenharmony_ci
1728c2ecf20Sopenharmony_ci/*
1738c2ecf20Sopenharmony_ci * Interrupt flag masks
1748c2ecf20Sopenharmony_ci */
1758c2ecf20Sopenharmony_ci#define QSFP_DATA_NOT_READY		0x01
1768c2ecf20Sopenharmony_ci
1778c2ecf20Sopenharmony_ci#define QSFP_HIGH_TEMP_ALARM		0x80
1788c2ecf20Sopenharmony_ci#define QSFP_LOW_TEMP_ALARM		0x40
1798c2ecf20Sopenharmony_ci#define QSFP_HIGH_TEMP_WARNING		0x20
1808c2ecf20Sopenharmony_ci#define QSFP_LOW_TEMP_WARNING		0x10
1818c2ecf20Sopenharmony_ci
1828c2ecf20Sopenharmony_ci#define QSFP_HIGH_VCC_ALARM		0x80
1838c2ecf20Sopenharmony_ci#define QSFP_LOW_VCC_ALARM		0x40
1848c2ecf20Sopenharmony_ci#define QSFP_HIGH_VCC_WARNING		0x20
1858c2ecf20Sopenharmony_ci#define QSFP_LOW_VCC_WARNING		0x10
1868c2ecf20Sopenharmony_ci
1878c2ecf20Sopenharmony_ci#define QSFP_HIGH_POWER_ALARM		0x88
1888c2ecf20Sopenharmony_ci#define QSFP_LOW_POWER_ALARM		0x44
1898c2ecf20Sopenharmony_ci#define QSFP_HIGH_POWER_WARNING		0x22
1908c2ecf20Sopenharmony_ci#define QSFP_LOW_POWER_WARNING		0x11
1918c2ecf20Sopenharmony_ci
1928c2ecf20Sopenharmony_ci#define QSFP_HIGH_BIAS_ALARM		0x88
1938c2ecf20Sopenharmony_ci#define QSFP_LOW_BIAS_ALARM		0x44
1948c2ecf20Sopenharmony_ci#define QSFP_HIGH_BIAS_WARNING		0x22
1958c2ecf20Sopenharmony_ci#define QSFP_LOW_BIAS_WARNING		0x11
1968c2ecf20Sopenharmony_ci
1978c2ecf20Sopenharmony_ci#define QSFP_ATTEN_SDR(attenarray) (attenarray[0])
1988c2ecf20Sopenharmony_ci#define QSFP_ATTEN_DDR(attenarray) (attenarray[1])
1998c2ecf20Sopenharmony_ci
2008c2ecf20Sopenharmony_ci/*
2018c2ecf20Sopenharmony_ci * struct qsfp_data encapsulates state of QSFP device for one port.
2028c2ecf20Sopenharmony_ci * it will be part of port-specific data if a board supports QSFP.
2038c2ecf20Sopenharmony_ci *
2048c2ecf20Sopenharmony_ci * Since multiple board-types use QSFP, and their pport_data structs
2058c2ecf20Sopenharmony_ci * differ (in the chip-specific section), we need a pointer to its head.
2068c2ecf20Sopenharmony_ci *
2078c2ecf20Sopenharmony_ci * Avoiding premature optimization, we will have one work_struct per port,
2088c2ecf20Sopenharmony_ci * and let the qsfp_lock arbitrate access to common resources.
2098c2ecf20Sopenharmony_ci *
2108c2ecf20Sopenharmony_ci */
2118c2ecf20Sopenharmony_cistruct qsfp_data {
2128c2ecf20Sopenharmony_ci	/* Helps to find our way */
2138c2ecf20Sopenharmony_ci	struct hfi1_pportdata *ppd;
2148c2ecf20Sopenharmony_ci	struct work_struct qsfp_work;
2158c2ecf20Sopenharmony_ci	u8 cache[QSFP_MAX_NUM_PAGES * 128];
2168c2ecf20Sopenharmony_ci	/* protect qsfp data */
2178c2ecf20Sopenharmony_ci	spinlock_t qsfp_lock;
2188c2ecf20Sopenharmony_ci	u8 check_interrupt_flags;
2198c2ecf20Sopenharmony_ci	u8 reset_needed;
2208c2ecf20Sopenharmony_ci	u8 limiting_active;
2218c2ecf20Sopenharmony_ci	u8 cache_valid;
2228c2ecf20Sopenharmony_ci	u8 cache_refresh_required;
2238c2ecf20Sopenharmony_ci};
2248c2ecf20Sopenharmony_ci
2258c2ecf20Sopenharmony_ciint refresh_qsfp_cache(struct hfi1_pportdata *ppd,
2268c2ecf20Sopenharmony_ci		       struct qsfp_data *cp);
2278c2ecf20Sopenharmony_ciint get_qsfp_power_class(u8 power_byte);
2288c2ecf20Sopenharmony_ciint qsfp_mod_present(struct hfi1_pportdata *ppd);
2298c2ecf20Sopenharmony_ciint get_cable_info(struct hfi1_devdata *dd, u32 port_num, u32 addr,
2308c2ecf20Sopenharmony_ci		   u32 len, u8 *data);
2318c2ecf20Sopenharmony_ci
2328c2ecf20Sopenharmony_ciint i2c_write(struct hfi1_pportdata *ppd, u32 target, int i2c_addr,
2338c2ecf20Sopenharmony_ci	      int offset, void *bp, int len);
2348c2ecf20Sopenharmony_ciint i2c_read(struct hfi1_pportdata *ppd, u32 target, int i2c_addr,
2358c2ecf20Sopenharmony_ci	     int offset, void *bp, int len);
2368c2ecf20Sopenharmony_ciint qsfp_write(struct hfi1_pportdata *ppd, u32 target, int addr, void *bp,
2378c2ecf20Sopenharmony_ci	       int len);
2388c2ecf20Sopenharmony_ciint qsfp_read(struct hfi1_pportdata *ppd, u32 target, int addr, void *bp,
2398c2ecf20Sopenharmony_ci	      int len);
2408c2ecf20Sopenharmony_ciint one_qsfp_write(struct hfi1_pportdata *ppd, u32 target, int addr, void *bp,
2418c2ecf20Sopenharmony_ci		   int len);
2428c2ecf20Sopenharmony_ciint one_qsfp_read(struct hfi1_pportdata *ppd, u32 target, int addr, void *bp,
2438c2ecf20Sopenharmony_ci		  int len);
2448c2ecf20Sopenharmony_cistruct hfi1_asic_data;
2458c2ecf20Sopenharmony_ciint set_up_i2c(struct hfi1_devdata *dd, struct hfi1_asic_data *ad);
2468c2ecf20Sopenharmony_civoid clean_up_i2c(struct hfi1_devdata *dd, struct hfi1_asic_data *ad);
247