blob: 5c38a24484ab26257bbadf44512a3e462099737b [file] [log] [blame]
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08001/*
Jubin John05d6ac12016-02-14 20:22:17 -08002 * Copyright(c) 2015, 2016 Intel Corporation.
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08003 *
4 * This file is provided under a dual BSD/GPLv2 license. When using or
5 * redistributing this file, you may do so under either license.
6 *
7 * GPL LICENSE SUMMARY
8 *
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * BSD LICENSE
19 *
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -080020 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 *
24 * - Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * - Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in
28 * the documentation and/or other materials provided with the
29 * distribution.
30 * - Neither the name of Intel Corporation nor the names of its
31 * contributors may be used to endorse or promote products derived
32 * from this software without specific prior written permission.
33 *
34 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
35 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
37 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45 *
46 */
Easwar Hariharanc3838b32016-02-09 14:29:13 -080047
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -080048#include "hfi.h"
Easwar Hariharanc3838b32016-02-09 14:29:13 -080049#include "efivar.h"
Dean Luicke83eba22016-09-30 04:41:45 -070050#include "eprom.h"
Easwar Hariharanc3838b32016-02-09 14:29:13 -080051
Easwar Hariharanfe4d9242016-10-17 04:19:47 -070052static int validate_scratch_checksum(struct hfi1_devdata *dd)
53{
54 u64 checksum = 0, temp_scratch = 0;
55 int i, j, version;
56
57 temp_scratch = read_csr(dd, ASIC_CFG_SCRATCH);
58 version = (temp_scratch & BITMAP_VERSION_SMASK) >> BITMAP_VERSION_SHIFT;
59
60 /* Prevent power on default of all zeroes from passing checksum */
Jan Sokolowskic8226522017-07-29 08:43:37 -070061 if (!version) {
62 dd_dev_err(dd, "%s: Config bitmap uninitialized\n", __func__);
63 dd_dev_err(dd,
64 "%s: Please update your BIOS to support active channels\n",
65 __func__);
Easwar Hariharanfe4d9242016-10-17 04:19:47 -070066 return 0;
Jan Sokolowskic8226522017-07-29 08:43:37 -070067 }
Easwar Hariharanfe4d9242016-10-17 04:19:47 -070068
69 /*
70 * ASIC scratch 0 only contains the checksum and bitmap version as
71 * fields of interest, both of which are handled separately from the
72 * loop below, so skip it
73 */
74 checksum += version;
75 for (i = 1; i < ASIC_NUM_SCRATCH; i++) {
76 temp_scratch = read_csr(dd, ASIC_CFG_SCRATCH + (8 * i));
77 for (j = sizeof(u64); j != 0; j -= 2) {
78 checksum += (temp_scratch & 0xFFFF);
79 temp_scratch >>= 16;
80 }
81 }
82
83 while (checksum >> 16)
84 checksum = (checksum & CHECKSUM_MASK) + (checksum >> 16);
85
86 temp_scratch = read_csr(dd, ASIC_CFG_SCRATCH);
87 temp_scratch &= CHECKSUM_SMASK;
88 temp_scratch >>= CHECKSUM_SHIFT;
89
90 if (checksum + temp_scratch == 0xFFFF)
91 return 1;
Jan Sokolowskic8226522017-07-29 08:43:37 -070092
93 dd_dev_err(dd, "%s: Configuration bitmap corrupted\n", __func__);
Easwar Hariharanfe4d9242016-10-17 04:19:47 -070094 return 0;
95}
96
97static void save_platform_config_fields(struct hfi1_devdata *dd)
98{
99 struct hfi1_pportdata *ppd = dd->pport;
100 u64 temp_scratch = 0, temp_dest = 0;
101
102 temp_scratch = read_csr(dd, ASIC_CFG_SCRATCH_1);
103
104 temp_dest = temp_scratch &
105 (dd->hfi1_id ? PORT1_PORT_TYPE_SMASK :
106 PORT0_PORT_TYPE_SMASK);
107 ppd->port_type = temp_dest >>
108 (dd->hfi1_id ? PORT1_PORT_TYPE_SHIFT :
109 PORT0_PORT_TYPE_SHIFT);
110
111 temp_dest = temp_scratch &
112 (dd->hfi1_id ? PORT1_LOCAL_ATTEN_SMASK :
113 PORT0_LOCAL_ATTEN_SMASK);
114 ppd->local_atten = temp_dest >>
115 (dd->hfi1_id ? PORT1_LOCAL_ATTEN_SHIFT :
116 PORT0_LOCAL_ATTEN_SHIFT);
117
118 temp_dest = temp_scratch &
119 (dd->hfi1_id ? PORT1_REMOTE_ATTEN_SMASK :
120 PORT0_REMOTE_ATTEN_SMASK);
121 ppd->remote_atten = temp_dest >>
122 (dd->hfi1_id ? PORT1_REMOTE_ATTEN_SHIFT :
123 PORT0_REMOTE_ATTEN_SHIFT);
124
125 temp_dest = temp_scratch &
126 (dd->hfi1_id ? PORT1_DEFAULT_ATTEN_SMASK :
127 PORT0_DEFAULT_ATTEN_SMASK);
128 ppd->default_atten = temp_dest >>
129 (dd->hfi1_id ? PORT1_DEFAULT_ATTEN_SHIFT :
130 PORT0_DEFAULT_ATTEN_SHIFT);
131
132 temp_scratch = read_csr(dd, dd->hfi1_id ? ASIC_CFG_SCRATCH_3 :
133 ASIC_CFG_SCRATCH_2);
134
135 ppd->tx_preset_eq = (temp_scratch & TX_EQ_SMASK) >> TX_EQ_SHIFT;
136 ppd->tx_preset_noeq = (temp_scratch & TX_NO_EQ_SMASK) >> TX_NO_EQ_SHIFT;
137 ppd->rx_preset = (temp_scratch & RX_SMASK) >> RX_SHIFT;
138
139 ppd->max_power_class = (temp_scratch & QSFP_MAX_POWER_SMASK) >>
140 QSFP_MAX_POWER_SHIFT;
141}
142
Easwar Hariharanc3838b32016-02-09 14:29:13 -0800143void get_platform_config(struct hfi1_devdata *dd)
144{
145 int ret = 0;
Easwar Hariharanc3838b32016-02-09 14:29:13 -0800146 u8 *temp_platform_config = NULL;
Dean Luicke83eba22016-09-30 04:41:45 -0700147 u32 esize;
148
Easwar Hariharanfe4d9242016-10-17 04:19:47 -0700149 if (is_integrated(dd)) {
150 if (validate_scratch_checksum(dd)) {
151 save_platform_config_fields(dd);
152 return;
153 }
Easwar Hariharanfe4d9242016-10-17 04:19:47 -0700154 } else {
155 ret = eprom_read_platform_config(dd,
156 (void **)&temp_platform_config,
157 &esize);
158 if (!ret) {
159 /* success */
160 dd->platform_config.data = temp_platform_config;
161 dd->platform_config.size = esize;
162 return;
163 }
Dean Luicke83eba22016-09-30 04:41:45 -0700164 }
Easwar Hariharanfe4d9242016-10-17 04:19:47 -0700165 dd_dev_err(dd,
166 "%s: Failed to get platform config, falling back to sub-optimal default file\n",
167 __func__);
Dean Luicke83eba22016-09-30 04:41:45 -0700168 /* fall back to request firmware */
169 platform_config_load = 1;
Easwar Hariharanc3838b32016-02-09 14:29:13 -0800170}
171
172void free_platform_config(struct hfi1_devdata *dd)
173{
174 if (!platform_config_load) {
175 /*
Easwar Hariharanfe4d9242016-10-17 04:19:47 -0700176 * was loaded from EFI or the EPROM, release memory
177 * allocated by read_efi_var/eprom_read_platform_config
Easwar Hariharanc3838b32016-02-09 14:29:13 -0800178 */
179 kfree(dd->platform_config.data);
180 }
181 /*
182 * else do nothing, dispose_firmware will release
183 * struct firmware platform_config on driver exit
184 */
185}
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800186
Easwar Hariharan9775a992016-05-12 10:22:39 -0700187void get_port_type(struct hfi1_pportdata *ppd)
188{
189 int ret;
Easwar Hariharanfe4d9242016-10-17 04:19:47 -0700190 u32 temp;
Easwar Hariharan9775a992016-05-12 10:22:39 -0700191
192 ret = get_platform_config_field(ppd->dd, PLATFORM_CONFIG_PORT_TABLE, 0,
Easwar Hariharanfe4d9242016-10-17 04:19:47 -0700193 PORT_TABLE_PORT_TYPE, &temp,
Easwar Hariharan9775a992016-05-12 10:22:39 -0700194 4);
Easwar Hariharanfe4d9242016-10-17 04:19:47 -0700195 if (ret) {
Easwar Hariharan9775a992016-05-12 10:22:39 -0700196 ppd->port_type = PORT_TYPE_UNKNOWN;
Easwar Hariharanfe4d9242016-10-17 04:19:47 -0700197 return;
198 }
199 ppd->port_type = temp;
Easwar Hariharan9775a992016-05-12 10:22:39 -0700200}
201
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800202int set_qsfp_tx(struct hfi1_pportdata *ppd, int on)
203{
204 u8 tx_ctrl_byte = on ? 0x0 : 0xF;
205 int ret = 0;
206
207 ret = qsfp_write(ppd, ppd->dd->hfi1_id, QSFP_TX_CTRL_BYTE_OFFS,
208 &tx_ctrl_byte, 1);
209 /* we expected 1, so consider 0 an error */
210 if (ret == 0)
211 ret = -EIO;
212 else if (ret == 1)
213 ret = 0;
214 return ret;
215}
216
217static int qual_power(struct hfi1_pportdata *ppd)
218{
219 u32 cable_power_class = 0, power_class_max = 0;
220 u8 *cache = ppd->qsfp_info.cache;
221 int ret = 0;
222
223 ret = get_platform_config_field(
224 ppd->dd, PLATFORM_CONFIG_SYSTEM_TABLE, 0,
225 SYSTEM_TABLE_QSFP_POWER_CLASS_MAX, &power_class_max, 4);
226 if (ret)
227 return ret;
228
Easwar Hariharan145dd2b2016-04-12 11:25:31 -0700229 cable_power_class = get_qsfp_power_class(cache[QSFP_MOD_PWR_OFFS]);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800230
Easwar Hariharan145dd2b2016-04-12 11:25:31 -0700231 if (cable_power_class > power_class_max)
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800232 ppd->offline_disabled_reason =
233 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_POWER_POLICY);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800234
235 if (ppd->offline_disabled_reason ==
236 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_POWER_POLICY)) {
Sebastian Sanchezb4e9e2f2017-05-26 05:35:57 -0700237 dd_dev_err(
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800238 ppd->dd,
239 "%s: Port disabled due to system power restrictions\n",
240 __func__);
241 ret = -EPERM;
242 }
243 return ret;
244}
245
246static int qual_bitrate(struct hfi1_pportdata *ppd)
247{
248 u16 lss = ppd->link_speed_supported, lse = ppd->link_speed_enabled;
249 u8 *cache = ppd->qsfp_info.cache;
250
251 if ((lss & OPA_LINK_SPEED_25G) && (lse & OPA_LINK_SPEED_25G) &&
252 cache[QSFP_NOM_BIT_RATE_250_OFFS] < 0x64)
253 ppd->offline_disabled_reason =
254 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_LINKSPEED_POLICY);
255
256 if ((lss & OPA_LINK_SPEED_12_5G) && (lse & OPA_LINK_SPEED_12_5G) &&
257 cache[QSFP_NOM_BIT_RATE_100_OFFS] < 0x7D)
258 ppd->offline_disabled_reason =
259 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_LINKSPEED_POLICY);
260
261 if (ppd->offline_disabled_reason ==
262 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_LINKSPEED_POLICY)) {
Sebastian Sanchezb4e9e2f2017-05-26 05:35:57 -0700263 dd_dev_err(
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800264 ppd->dd,
265 "%s: Cable failed bitrate check, disabling port\n",
266 __func__);
267 return -EPERM;
268 }
269 return 0;
270}
271
272static int set_qsfp_high_power(struct hfi1_pportdata *ppd)
273{
274 u8 cable_power_class = 0, power_ctrl_byte = 0;
275 u8 *cache = ppd->qsfp_info.cache;
276 int ret;
277
Easwar Hariharan145dd2b2016-04-12 11:25:31 -0700278 cable_power_class = get_qsfp_power_class(cache[QSFP_MOD_PWR_OFFS]);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800279
Easwar Hariharan145dd2b2016-04-12 11:25:31 -0700280 if (cable_power_class > QSFP_POWER_CLASS_1) {
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800281 power_ctrl_byte = cache[QSFP_PWR_CTRL_BYTE_OFFS];
282
283 power_ctrl_byte |= 1;
284 power_ctrl_byte &= ~(0x2);
285
286 ret = qsfp_write(ppd, ppd->dd->hfi1_id,
287 QSFP_PWR_CTRL_BYTE_OFFS,
288 &power_ctrl_byte, 1);
289 if (ret != 1)
290 return -EIO;
291
Easwar Hariharan145dd2b2016-04-12 11:25:31 -0700292 if (cable_power_class > QSFP_POWER_CLASS_4) {
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800293 power_ctrl_byte |= (1 << 2);
294 ret = qsfp_write(ppd, ppd->dd->hfi1_id,
295 QSFP_PWR_CTRL_BYTE_OFFS,
296 &power_ctrl_byte, 1);
297 if (ret != 1)
298 return -EIO;
299 }
300
301 /* SFF 8679 rev 1.7 LPMode Deassert time */
302 msleep(300);
303 }
304 return 0;
305}
306
307static void apply_rx_cdr(struct hfi1_pportdata *ppd,
308 u32 rx_preset_index,
309 u8 *cdr_ctrl_byte)
310{
311 u32 rx_preset;
312 u8 *cache = ppd->qsfp_info.cache;
Easwar Hariharan145dd2b2016-04-12 11:25:31 -0700313 int cable_power_class;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800314
315 if (!((cache[QSFP_MOD_PWR_OFFS] & 0x4) &&
316 (cache[QSFP_CDR_INFO_OFFS] & 0x40)))
317 return;
318
Easwar Hariharan145dd2b2016-04-12 11:25:31 -0700319 /* RX CDR present, bypass supported */
320 cable_power_class = get_qsfp_power_class(cache[QSFP_MOD_PWR_OFFS]);
321
322 if (cable_power_class <= QSFP_POWER_CLASS_3) {
323 /* Power class <= 3, ignore config & turn RX CDR on */
324 *cdr_ctrl_byte |= 0xF;
325 return;
326 }
327
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800328 get_platform_config_field(
329 ppd->dd, PLATFORM_CONFIG_RX_PRESET_TABLE,
330 rx_preset_index, RX_PRESET_TABLE_QSFP_RX_CDR_APPLY,
331 &rx_preset, 4);
332
333 if (!rx_preset) {
334 dd_dev_info(
335 ppd->dd,
336 "%s: RX_CDR_APPLY is set to disabled\n",
337 __func__);
338 return;
339 }
340 get_platform_config_field(
341 ppd->dd, PLATFORM_CONFIG_RX_PRESET_TABLE,
342 rx_preset_index, RX_PRESET_TABLE_QSFP_RX_CDR,
343 &rx_preset, 4);
344
345 /* Expand cdr setting to all 4 lanes */
346 rx_preset = (rx_preset | (rx_preset << 1) |
347 (rx_preset << 2) | (rx_preset << 3));
348
349 if (rx_preset) {
350 *cdr_ctrl_byte |= rx_preset;
351 } else {
352 *cdr_ctrl_byte &= rx_preset;
353 /* Preserve current TX CDR status */
354 *cdr_ctrl_byte |= (cache[QSFP_CDR_CTRL_BYTE_OFFS] & 0xF0);
355 }
356}
357
358static void apply_tx_cdr(struct hfi1_pportdata *ppd,
359 u32 tx_preset_index,
Easwar Hariharan145dd2b2016-04-12 11:25:31 -0700360 u8 *cdr_ctrl_byte)
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800361{
362 u32 tx_preset;
363 u8 *cache = ppd->qsfp_info.cache;
Easwar Hariharan145dd2b2016-04-12 11:25:31 -0700364 int cable_power_class;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800365
366 if (!((cache[QSFP_MOD_PWR_OFFS] & 0x8) &&
367 (cache[QSFP_CDR_INFO_OFFS] & 0x80)))
368 return;
369
Easwar Hariharan145dd2b2016-04-12 11:25:31 -0700370 /* TX CDR present, bypass supported */
371 cable_power_class = get_qsfp_power_class(cache[QSFP_MOD_PWR_OFFS]);
372
373 if (cable_power_class <= QSFP_POWER_CLASS_3) {
374 /* Power class <= 3, ignore config & turn TX CDR on */
375 *cdr_ctrl_byte |= 0xF0;
376 return;
377 }
378
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800379 get_platform_config_field(
380 ppd->dd,
381 PLATFORM_CONFIG_TX_PRESET_TABLE, tx_preset_index,
382 TX_PRESET_TABLE_QSFP_TX_CDR_APPLY, &tx_preset, 4);
383
384 if (!tx_preset) {
385 dd_dev_info(
386 ppd->dd,
387 "%s: TX_CDR_APPLY is set to disabled\n",
388 __func__);
389 return;
390 }
391 get_platform_config_field(
392 ppd->dd,
393 PLATFORM_CONFIG_TX_PRESET_TABLE,
394 tx_preset_index,
395 TX_PRESET_TABLE_QSFP_TX_CDR, &tx_preset, 4);
396
397 /* Expand cdr setting to all 4 lanes */
398 tx_preset = (tx_preset | (tx_preset << 1) |
399 (tx_preset << 2) | (tx_preset << 3));
400
401 if (tx_preset)
Easwar Hariharan145dd2b2016-04-12 11:25:31 -0700402 *cdr_ctrl_byte |= (tx_preset << 4);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800403 else
404 /* Preserve current/determined RX CDR status */
Easwar Hariharan145dd2b2016-04-12 11:25:31 -0700405 *cdr_ctrl_byte &= ((tx_preset << 4) | 0xF);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800406}
407
408static void apply_cdr_settings(
409 struct hfi1_pportdata *ppd, u32 rx_preset_index,
410 u32 tx_preset_index)
411{
412 u8 *cache = ppd->qsfp_info.cache;
413 u8 cdr_ctrl_byte = cache[QSFP_CDR_CTRL_BYTE_OFFS];
414
415 apply_rx_cdr(ppd, rx_preset_index, &cdr_ctrl_byte);
416
417 apply_tx_cdr(ppd, tx_preset_index, &cdr_ctrl_byte);
418
419 qsfp_write(ppd, ppd->dd->hfi1_id, QSFP_CDR_CTRL_BYTE_OFFS,
420 &cdr_ctrl_byte, 1);
421}
422
423static void apply_tx_eq_auto(struct hfi1_pportdata *ppd)
424{
425 u8 *cache = ppd->qsfp_info.cache;
426 u8 tx_eq;
427
428 if (!(cache[QSFP_EQ_INFO_OFFS] & 0x8))
429 return;
430 /* Disable adaptive TX EQ if present */
431 tx_eq = cache[(128 * 3) + 241];
432 tx_eq &= 0xF0;
433 qsfp_write(ppd, ppd->dd->hfi1_id, (256 * 3) + 241, &tx_eq, 1);
434}
435
436static void apply_tx_eq_prog(struct hfi1_pportdata *ppd, u32 tx_preset_index)
437{
438 u8 *cache = ppd->qsfp_info.cache;
439 u32 tx_preset;
440 u8 tx_eq;
441
442 if (!(cache[QSFP_EQ_INFO_OFFS] & 0x4))
443 return;
444
445 get_platform_config_field(
446 ppd->dd, PLATFORM_CONFIG_TX_PRESET_TABLE,
447 tx_preset_index, TX_PRESET_TABLE_QSFP_TX_EQ_APPLY,
448 &tx_preset, 4);
449 if (!tx_preset) {
450 dd_dev_info(
451 ppd->dd,
452 "%s: TX_EQ_APPLY is set to disabled\n",
453 __func__);
454 return;
455 }
456 get_platform_config_field(
457 ppd->dd, PLATFORM_CONFIG_TX_PRESET_TABLE,
458 tx_preset_index, TX_PRESET_TABLE_QSFP_TX_EQ,
459 &tx_preset, 4);
460
461 if (((cache[(128 * 3) + 224] & 0xF0) >> 4) < tx_preset) {
462 dd_dev_info(
463 ppd->dd,
464 "%s: TX EQ %x unsupported\n",
465 __func__, tx_preset);
466
467 dd_dev_info(
468 ppd->dd,
469 "%s: Applying EQ %x\n",
470 __func__, cache[608] & 0xF0);
471
472 tx_preset = (cache[608] & 0xF0) >> 4;
473 }
474
475 tx_eq = tx_preset | (tx_preset << 4);
476 qsfp_write(ppd, ppd->dd->hfi1_id, (256 * 3) + 234, &tx_eq, 1);
477 qsfp_write(ppd, ppd->dd->hfi1_id, (256 * 3) + 235, &tx_eq, 1);
478}
479
480static void apply_rx_eq_emp(struct hfi1_pportdata *ppd, u32 rx_preset_index)
481{
482 u32 rx_preset;
483 u8 rx_eq, *cache = ppd->qsfp_info.cache;
484
485 if (!(cache[QSFP_EQ_INFO_OFFS] & 0x2))
486 return;
487 get_platform_config_field(
488 ppd->dd, PLATFORM_CONFIG_RX_PRESET_TABLE,
489 rx_preset_index, RX_PRESET_TABLE_QSFP_RX_EMP_APPLY,
490 &rx_preset, 4);
491
492 if (!rx_preset) {
493 dd_dev_info(
494 ppd->dd,
495 "%s: RX_EMP_APPLY is set to disabled\n",
496 __func__);
497 return;
498 }
499 get_platform_config_field(
500 ppd->dd, PLATFORM_CONFIG_RX_PRESET_TABLE,
501 rx_preset_index, RX_PRESET_TABLE_QSFP_RX_EMP,
502 &rx_preset, 4);
503
504 if ((cache[(128 * 3) + 224] & 0xF) < rx_preset) {
505 dd_dev_info(
506 ppd->dd,
507 "%s: Requested RX EMP %x\n",
508 __func__, rx_preset);
509
510 dd_dev_info(
511 ppd->dd,
512 "%s: Applying supported EMP %x\n",
513 __func__, cache[608] & 0xF);
514
515 rx_preset = cache[608] & 0xF;
516 }
517
518 rx_eq = rx_preset | (rx_preset << 4);
519
520 qsfp_write(ppd, ppd->dd->hfi1_id, (256 * 3) + 236, &rx_eq, 1);
521 qsfp_write(ppd, ppd->dd->hfi1_id, (256 * 3) + 237, &rx_eq, 1);
522}
523
524static void apply_eq_settings(struct hfi1_pportdata *ppd,
525 u32 rx_preset_index, u32 tx_preset_index)
526{
527 u8 *cache = ppd->qsfp_info.cache;
528
529 /* no point going on w/o a page 3 */
530 if (cache[2] & 4) {
531 dd_dev_info(ppd->dd,
532 "%s: Upper page 03 not present\n",
533 __func__);
534 return;
535 }
536
537 apply_tx_eq_auto(ppd);
538
539 apply_tx_eq_prog(ppd, tx_preset_index);
540
541 apply_rx_eq_emp(ppd, rx_preset_index);
542}
543
544static void apply_rx_amplitude_settings(
545 struct hfi1_pportdata *ppd, u32 rx_preset_index,
546 u32 tx_preset_index)
547{
548 u32 rx_preset;
549 u8 rx_amp = 0, i = 0, preferred = 0, *cache = ppd->qsfp_info.cache;
550
551 /* no point going on w/o a page 3 */
552 if (cache[2] & 4) {
553 dd_dev_info(ppd->dd,
554 "%s: Upper page 03 not present\n",
555 __func__);
556 return;
557 }
558 if (!(cache[QSFP_EQ_INFO_OFFS] & 0x1)) {
559 dd_dev_info(ppd->dd,
560 "%s: RX_AMP_APPLY is set to disabled\n",
561 __func__);
562 return;
563 }
564
565 get_platform_config_field(ppd->dd,
566 PLATFORM_CONFIG_RX_PRESET_TABLE,
567 rx_preset_index,
568 RX_PRESET_TABLE_QSFP_RX_AMP_APPLY,
569 &rx_preset, 4);
570
571 if (!rx_preset) {
572 dd_dev_info(ppd->dd,
573 "%s: RX_AMP_APPLY is set to disabled\n",
574 __func__);
575 return;
576 }
577 get_platform_config_field(ppd->dd,
578 PLATFORM_CONFIG_RX_PRESET_TABLE,
579 rx_preset_index,
580 RX_PRESET_TABLE_QSFP_RX_AMP,
581 &rx_preset, 4);
582
583 dd_dev_info(ppd->dd,
584 "%s: Requested RX AMP %x\n",
585 __func__,
586 rx_preset);
587
588 for (i = 0; i < 4; i++) {
589 if (cache[(128 * 3) + 225] & (1 << i)) {
590 preferred = i;
591 if (preferred == rx_preset)
592 break;
593 }
594 }
595
596 /*
597 * Verify that preferred RX amplitude is not just a
598 * fall through of the default
599 */
600 if (!preferred && !(cache[(128 * 3) + 225] & 0x1)) {
601 dd_dev_info(ppd->dd, "No supported RX AMP, not applying\n");
602 return;
603 }
604
605 dd_dev_info(ppd->dd,
606 "%s: Applying RX AMP %x\n", __func__, preferred);
607
608 rx_amp = preferred | (preferred << 4);
609 qsfp_write(ppd, ppd->dd->hfi1_id, (256 * 3) + 238, &rx_amp, 1);
610 qsfp_write(ppd, ppd->dd->hfi1_id, (256 * 3) + 239, &rx_amp, 1);
611}
612
613#define OPA_INVALID_INDEX 0xFFF
614
Easwar Hariharan97167e82016-02-09 14:29:22 -0800615static void apply_tx_lanes(struct hfi1_pportdata *ppd, u8 field_id,
616 u32 config_data, const char *message)
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800617{
618 u8 i;
619 int ret = HCMD_SUCCESS;
620
621 for (i = 0; i < 4; i++) {
Easwar Hariharan97167e82016-02-09 14:29:22 -0800622 ret = load_8051_config(ppd->dd, field_id, i, config_data);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800623 if (ret != HCMD_SUCCESS) {
624 dd_dev_err(
625 ppd->dd,
626 "%s: %s for lane %u failed\n",
627 message, __func__, i);
628 }
629 }
630}
631
Dean Luick52130062016-12-07 19:33:13 -0800632/*
633 * Return a special SerDes setting for low power AOC cables. The power class
634 * threshold and setting being used were all found by empirical testing.
635 *
636 * Summary of the logic:
637 *
638 * if (QSFP and QSFP_TYPE == AOC and QSFP_POWER_CLASS < 4)
639 * return 0xe
640 * return 0; // leave at default
641 */
642static u8 aoc_low_power_setting(struct hfi1_pportdata *ppd)
643{
644 u8 *cache = ppd->qsfp_info.cache;
645 int power_class;
646
647 /* QSFP only */
648 if (ppd->port_type != PORT_TYPE_QSFP)
649 return 0; /* leave at default */
650
651 /* active optical cables only */
652 switch ((cache[QSFP_MOD_TECH_OFFS] & 0xF0) >> 4) {
653 case 0x0 ... 0x9: /* fallthrough */
654 case 0xC: /* fallthrough */
655 case 0xE:
656 /* active AOC */
657 power_class = get_qsfp_power_class(cache[QSFP_MOD_PWR_OFFS]);
658 if (power_class < QSFP_POWER_CLASS_4)
659 return 0xe;
660 }
661 return 0; /* leave at default */
662}
663
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800664static void apply_tunings(
665 struct hfi1_pportdata *ppd, u32 tx_preset_index,
666 u8 tuning_method, u32 total_atten, u8 limiting_active)
667{
668 int ret = 0;
669 u32 config_data = 0, tx_preset = 0;
670 u8 precur = 0, attn = 0, postcur = 0, external_device_config = 0;
671 u8 *cache = ppd->qsfp_info.cache;
672
Easwar Hariharan97167e82016-02-09 14:29:22 -0800673 /* Pass tuning method to 8051 */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800674 read_8051_config(ppd->dd, LINK_TUNING_PARAMETERS, GENERAL_CONFIG,
675 &config_data);
Dean Luickf6de3d32016-05-24 12:51:00 -0700676 config_data &= ~(0xff << TUNING_METHOD_SHIFT);
677 config_data |= ((u32)tuning_method << TUNING_METHOD_SHIFT);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800678 ret = load_8051_config(ppd->dd, LINK_TUNING_PARAMETERS, GENERAL_CONFIG,
679 config_data);
680 if (ret != HCMD_SUCCESS)
681 dd_dev_err(ppd->dd, "%s: Failed to set tuning method\n",
682 __func__);
683
Easwar Hariharan97167e82016-02-09 14:29:22 -0800684 /* Set same channel loss for both TX and RX */
685 config_data = 0 | (total_atten << 16) | (total_atten << 24);
686 apply_tx_lanes(ppd, CHANNEL_LOSS_SETTINGS, config_data,
687 "Setting channel loss");
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800688
Easwar Hariharan97167e82016-02-09 14:29:22 -0800689 /* Inform 8051 of cable capabilities */
690 if (ppd->qsfp_info.cache_valid) {
691 external_device_config =
692 ((cache[QSFP_MOD_PWR_OFFS] & 0x4) << 3) |
693 ((cache[QSFP_MOD_PWR_OFFS] & 0x8) << 2) |
694 ((cache[QSFP_EQ_INFO_OFFS] & 0x2) << 1) |
695 (cache[QSFP_EQ_INFO_OFFS] & 0x4);
696 ret = read_8051_config(ppd->dd, DC_HOST_COMM_SETTINGS,
697 GENERAL_CONFIG, &config_data);
698 /* Clear, then set the external device config field */
Easwar Hariharan27a340f2016-05-12 10:22:45 -0700699 config_data &= ~(u32)0xFF;
700 config_data |= external_device_config;
Easwar Hariharan97167e82016-02-09 14:29:22 -0800701 ret = load_8051_config(ppd->dd, DC_HOST_COMM_SETTINGS,
702 GENERAL_CONFIG, config_data);
703 if (ret != HCMD_SUCCESS)
Sebastian Sanchezb4e9e2f2017-05-26 05:35:57 -0700704 dd_dev_err(ppd->dd,
705 "%s: Failed set ext device config params\n",
706 __func__);
Easwar Hariharan97167e82016-02-09 14:29:22 -0800707 }
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800708
Easwar Hariharan97167e82016-02-09 14:29:22 -0800709 if (tx_preset_index == OPA_INVALID_INDEX) {
710 if (ppd->port_type == PORT_TYPE_QSFP && limiting_active)
Sebastian Sanchezb4e9e2f2017-05-26 05:35:57 -0700711 dd_dev_err(ppd->dd, "%s: Invalid Tx preset index\n",
712 __func__);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800713 return;
Easwar Hariharan97167e82016-02-09 14:29:22 -0800714 }
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800715
Easwar Hariharan97167e82016-02-09 14:29:22 -0800716 /* Following for limiting active channels only */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800717 get_platform_config_field(
718 ppd->dd, PLATFORM_CONFIG_TX_PRESET_TABLE, tx_preset_index,
719 TX_PRESET_TABLE_PRECUR, &tx_preset, 4);
720 precur = tx_preset;
721
722 get_platform_config_field(
723 ppd->dd, PLATFORM_CONFIG_TX_PRESET_TABLE,
724 tx_preset_index, TX_PRESET_TABLE_ATTN, &tx_preset, 4);
725 attn = tx_preset;
726
727 get_platform_config_field(
728 ppd->dd, PLATFORM_CONFIG_TX_PRESET_TABLE,
729 tx_preset_index, TX_PRESET_TABLE_POSTCUR, &tx_preset, 4);
730 postcur = tx_preset;
731
Dean Luick52130062016-12-07 19:33:13 -0800732 /*
733 * NOTES:
734 * o The aoc_low_power_setting is applied to all lanes even
735 * though only lane 0's value is examined by the firmware.
736 * o A lingering low power setting after a cable swap does
737 * not occur. On cable unplug the 8051 is reset and
738 * restarted on cable insert. This resets all settings to
739 * their default, erasing any previous low power setting.
740 */
741 config_data = precur | (attn << 8) | (postcur << 16) |
742 (aoc_low_power_setting(ppd) << 24);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800743
Easwar Hariharan97167e82016-02-09 14:29:22 -0800744 apply_tx_lanes(ppd, TX_EQ_SETTINGS, config_data,
745 "Applying TX settings");
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800746}
747
Dean Luicke4e0e392016-04-12 11:28:36 -0700748/* Must be holding the QSFP i2c resource */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800749static int tune_active_qsfp(struct hfi1_pportdata *ppd, u32 *ptr_tx_preset,
750 u32 *ptr_rx_preset, u32 *ptr_total_atten)
751{
Dean Luick765a6fa2016-03-05 08:50:06 -0800752 int ret;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800753 u16 lss = ppd->link_speed_supported, lse = ppd->link_speed_enabled;
754 u8 *cache = ppd->qsfp_info.cache;
755
756 ppd->qsfp_info.limiting_active = 1;
757
758 ret = set_qsfp_tx(ppd, 0);
759 if (ret)
Dean Luicke4e0e392016-04-12 11:28:36 -0700760 return ret;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800761
762 ret = qual_power(ppd);
763 if (ret)
Dean Luicke4e0e392016-04-12 11:28:36 -0700764 return ret;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800765
766 ret = qual_bitrate(ppd);
767 if (ret)
Dean Luicke4e0e392016-04-12 11:28:36 -0700768 return ret;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800769
Easwar Hariharanb5e71012016-07-25 13:40:03 -0700770 /*
771 * We'll change the QSFP memory contents from here on out, thus we set a
772 * flag here to remind ourselves to reset the QSFP module. This prevents
773 * reuse of stale settings established in our previous pass through.
774 */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800775 if (ppd->qsfp_info.reset_needed) {
776 reset_qsfp(ppd);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800777 refresh_qsfp_cache(ppd, &ppd->qsfp_info);
778 } else {
779 ppd->qsfp_info.reset_needed = 1;
780 }
781
782 ret = set_qsfp_high_power(ppd);
783 if (ret)
Dean Luicke4e0e392016-04-12 11:28:36 -0700784 return ret;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800785
786 if (cache[QSFP_EQ_INFO_OFFS] & 0x4) {
787 ret = get_platform_config_field(
788 ppd->dd,
789 PLATFORM_CONFIG_PORT_TABLE, 0,
790 PORT_TABLE_TX_PRESET_IDX_ACTIVE_EQ,
791 ptr_tx_preset, 4);
792 if (ret) {
793 *ptr_tx_preset = OPA_INVALID_INDEX;
Dean Luicke4e0e392016-04-12 11:28:36 -0700794 return ret;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800795 }
796 } else {
797 ret = get_platform_config_field(
798 ppd->dd,
799 PLATFORM_CONFIG_PORT_TABLE, 0,
800 PORT_TABLE_TX_PRESET_IDX_ACTIVE_NO_EQ,
801 ptr_tx_preset, 4);
802 if (ret) {
803 *ptr_tx_preset = OPA_INVALID_INDEX;
Dean Luicke4e0e392016-04-12 11:28:36 -0700804 return ret;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800805 }
806 }
807
808 ret = get_platform_config_field(
809 ppd->dd, PLATFORM_CONFIG_PORT_TABLE, 0,
810 PORT_TABLE_RX_PRESET_IDX, ptr_rx_preset, 4);
811 if (ret) {
812 *ptr_rx_preset = OPA_INVALID_INDEX;
Dean Luicke4e0e392016-04-12 11:28:36 -0700813 return ret;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800814 }
815
816 if ((lss & OPA_LINK_SPEED_25G) && (lse & OPA_LINK_SPEED_25G))
817 get_platform_config_field(
818 ppd->dd, PLATFORM_CONFIG_PORT_TABLE, 0,
819 PORT_TABLE_LOCAL_ATTEN_25G, ptr_total_atten, 4);
820 else if ((lss & OPA_LINK_SPEED_12_5G) && (lse & OPA_LINK_SPEED_12_5G))
821 get_platform_config_field(
822 ppd->dd, PLATFORM_CONFIG_PORT_TABLE, 0,
823 PORT_TABLE_LOCAL_ATTEN_12G, ptr_total_atten, 4);
824
825 apply_cdr_settings(ppd, *ptr_rx_preset, *ptr_tx_preset);
826
827 apply_eq_settings(ppd, *ptr_rx_preset, *ptr_tx_preset);
828
829 apply_rx_amplitude_settings(ppd, *ptr_rx_preset, *ptr_tx_preset);
830
831 ret = set_qsfp_tx(ppd, 1);
Dean Luick765a6fa2016-03-05 08:50:06 -0800832
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800833 return ret;
834}
835
836static int tune_qsfp(struct hfi1_pportdata *ppd,
837 u32 *ptr_tx_preset, u32 *ptr_rx_preset,
838 u8 *ptr_tuning_method, u32 *ptr_total_atten)
839{
840 u32 cable_atten = 0, remote_atten = 0, platform_atten = 0;
841 u16 lss = ppd->link_speed_supported, lse = ppd->link_speed_enabled;
842 int ret = 0;
843 u8 *cache = ppd->qsfp_info.cache;
844
845 switch ((cache[QSFP_MOD_TECH_OFFS] & 0xF0) >> 4) {
846 case 0xA ... 0xB:
847 ret = get_platform_config_field(
848 ppd->dd,
849 PLATFORM_CONFIG_PORT_TABLE, 0,
850 PORT_TABLE_LOCAL_ATTEN_25G,
851 &platform_atten, 4);
852 if (ret)
853 return ret;
854
855 if ((lss & OPA_LINK_SPEED_25G) && (lse & OPA_LINK_SPEED_25G))
856 cable_atten = cache[QSFP_CU_ATTEN_12G_OFFS];
857 else if ((lss & OPA_LINK_SPEED_12_5G) &&
858 (lse & OPA_LINK_SPEED_12_5G))
859 cable_atten = cache[QSFP_CU_ATTEN_7G_OFFS];
860
861 /* Fallback to configured attenuation if cable memory is bad */
862 if (cable_atten == 0 || cable_atten > 36) {
863 ret = get_platform_config_field(
864 ppd->dd,
865 PLATFORM_CONFIG_SYSTEM_TABLE, 0,
866 SYSTEM_TABLE_QSFP_ATTENUATION_DEFAULT_25G,
867 &cable_atten, 4);
868 if (ret)
869 return ret;
870 }
871
872 ret = get_platform_config_field(
873 ppd->dd, PLATFORM_CONFIG_PORT_TABLE, 0,
874 PORT_TABLE_REMOTE_ATTEN_25G, &remote_atten, 4);
875 if (ret)
876 return ret;
877
878 *ptr_total_atten = platform_atten + cable_atten + remote_atten;
879
880 *ptr_tuning_method = OPA_PASSIVE_TUNING;
881 break;
882 case 0x0 ... 0x9: /* fallthrough */
883 case 0xC: /* fallthrough */
884 case 0xE:
885 ret = tune_active_qsfp(ppd, ptr_tx_preset, ptr_rx_preset,
886 ptr_total_atten);
887 if (ret)
888 return ret;
889
890 *ptr_tuning_method = OPA_ACTIVE_TUNING;
891 break;
892 case 0xD: /* fallthrough */
893 case 0xF:
894 default:
Sebastian Sanchezb4e9e2f2017-05-26 05:35:57 -0700895 dd_dev_warn(ppd->dd, "%s: Unknown/unsupported cable\n",
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800896 __func__);
897 break;
898 }
899 return ret;
900}
901
902/*
903 * This function communicates its success or failure via ppd->driver_link_ready
904 * Thus, it depends on its association with start_link(...) which checks
905 * driver_link_ready before proceeding with the link negotiation and
906 * initialization process.
907 */
908void tune_serdes(struct hfi1_pportdata *ppd)
909{
910 int ret = 0;
911 u32 total_atten = 0;
912 u32 remote_atten = 0, platform_atten = 0;
913 u32 rx_preset_index, tx_preset_index;
Easwar Hariharan97167e82016-02-09 14:29:22 -0800914 u8 tuning_method = 0, limiting_active = 0;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800915 struct hfi1_devdata *dd = ppd->dd;
916
917 rx_preset_index = OPA_INVALID_INDEX;
918 tx_preset_index = OPA_INVALID_INDEX;
919
920 /* the link defaults to enabled */
921 ppd->link_enabled = 1;
922 /* the driver link ready state defaults to not ready */
923 ppd->driver_link_ready = 0;
924 ppd->offline_disabled_reason = HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE);
925
Easwar Hariharan715c4302016-02-03 14:32:14 -0800926 /* Skip the tuning for testing (loopback != none) and simulations */
927 if (loopback != LOOPBACK_NONE ||
Easwar Hariharanc3838b32016-02-09 14:29:13 -0800928 ppd->dd->icode == ICODE_FUNCTIONAL_SIMULATOR) {
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800929 ppd->driver_link_ready = 1;
930 return;
931 }
932
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800933 switch (ppd->port_type) {
934 case PORT_TYPE_DISCONNECTED:
935 ppd->offline_disabled_reason =
936 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_DISCONNECTED);
Sebastian Sanchezb4e9e2f2017-05-26 05:35:57 -0700937 dd_dev_warn(dd, "%s: Port disconnected, disabling port\n",
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800938 __func__);
939 goto bail;
940 case PORT_TYPE_FIXED:
941 /* platform_atten, remote_atten pre-zeroed to catch error */
942 get_platform_config_field(
943 ppd->dd, PLATFORM_CONFIG_PORT_TABLE, 0,
944 PORT_TABLE_LOCAL_ATTEN_25G, &platform_atten, 4);
945
946 get_platform_config_field(
947 ppd->dd, PLATFORM_CONFIG_PORT_TABLE, 0,
948 PORT_TABLE_REMOTE_ATTEN_25G, &remote_atten, 4);
949
950 total_atten = platform_atten + remote_atten;
951
952 tuning_method = OPA_PASSIVE_TUNING;
953 break;
954 case PORT_TYPE_VARIABLE:
955 if (qsfp_mod_present(ppd)) {
956 /*
957 * platform_atten, remote_atten pre-zeroed to
958 * catch error
959 */
960 get_platform_config_field(
961 ppd->dd, PLATFORM_CONFIG_PORT_TABLE, 0,
962 PORT_TABLE_LOCAL_ATTEN_25G,
963 &platform_atten, 4);
964
965 get_platform_config_field(
966 ppd->dd, PLATFORM_CONFIG_PORT_TABLE, 0,
967 PORT_TABLE_REMOTE_ATTEN_25G,
968 &remote_atten, 4);
969
970 total_atten = platform_atten + remote_atten;
971
972 tuning_method = OPA_PASSIVE_TUNING;
Easwar Hariharan623bba22016-04-12 11:25:57 -0700973 } else {
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800974 ppd->offline_disabled_reason =
975 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_CHASSIS_CONFIG);
Easwar Hariharan623bba22016-04-12 11:25:57 -0700976 goto bail;
977 }
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800978 break;
979 case PORT_TYPE_QSFP:
980 if (qsfp_mod_present(ppd)) {
Dean Luicke4e0e392016-04-12 11:28:36 -0700981 ret = acquire_chip_resource(ppd->dd,
982 qsfp_resource(ppd->dd),
983 QSFP_WAIT);
984 if (ret) {
985 dd_dev_err(ppd->dd, "%s: hfi%d: cannot lock i2c chain\n",
986 __func__, (int)ppd->dd->hfi1_id);
987 goto bail;
988 }
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -0800989 refresh_qsfp_cache(ppd, &ppd->qsfp_info);
990
991 if (ppd->qsfp_info.cache_valid) {
992 ret = tune_qsfp(ppd,
993 &tx_preset_index,
994 &rx_preset_index,
995 &tuning_method,
996 &total_atten);
Easwar Hariharanc3838b32016-02-09 14:29:13 -0800997
998 /*
999 * We may have modified the QSFP memory, so
1000 * update the cache to reflect the changes
1001 */
1002 refresh_qsfp_cache(ppd, &ppd->qsfp_info);
Easwar Hariharan97167e82016-02-09 14:29:22 -08001003 limiting_active =
1004 ppd->qsfp_info.limiting_active;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08001005 } else {
1006 dd_dev_err(dd,
1007 "%s: Reading QSFP memory failed\n",
1008 __func__);
Dean Luicke4e0e392016-04-12 11:28:36 -07001009 ret = -EINVAL; /* a fail indication */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08001010 }
Dean Luicke4e0e392016-04-12 11:28:36 -07001011 release_chip_resource(ppd->dd, qsfp_resource(ppd->dd));
1012 if (ret)
1013 goto bail;
Easwar Hariharan623bba22016-04-12 11:25:57 -07001014 } else {
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08001015 ppd->offline_disabled_reason =
1016 HFI1_ODR_MASK(
Easwar Hariharane1bf0d52016-02-03 14:36:58 -08001017 OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED);
Easwar Hariharan623bba22016-04-12 11:25:57 -07001018 goto bail;
1019 }
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08001020 break;
1021 default:
Sebastian Sanchezb4e9e2f2017-05-26 05:35:57 -07001022 dd_dev_warn(ppd->dd, "%s: Unknown port type\n", __func__);
Easwar Hariharan97167e82016-02-09 14:29:22 -08001023 ppd->port_type = PORT_TYPE_UNKNOWN;
1024 tuning_method = OPA_UNKNOWN_TUNING;
1025 total_atten = 0;
1026 limiting_active = 0;
1027 tx_preset_index = OPA_INVALID_INDEX;
1028 break;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08001029 }
Easwar Hariharan97167e82016-02-09 14:29:22 -08001030
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08001031 if (ppd->offline_disabled_reason ==
1032 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE))
1033 apply_tunings(ppd, tx_preset_index, tuning_method,
Easwar Hariharan97167e82016-02-09 14:29:22 -08001034 total_atten, limiting_active);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08001035
Easwar Hariharanc3838b32016-02-09 14:29:13 -08001036 if (!ret)
1037 ppd->driver_link_ready = 1;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08001038
1039 return;
1040bail:
1041 ppd->driver_link_ready = 0;
1042}