blob: a6fc5ce88c88a952dfa356669ace9b61139b323d [file] [log] [blame]
Ben Hutchings8ceee662008-04-27 12:55:59 +01001/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
Ben Hutchings906bb262009-11-29 15:16:19 +00003 * Copyright 2007-2009 Solarflare Communications Inc.
Ben Hutchings8ceee662008-04-27 12:55:59 +01004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published
7 * by the Free Software Foundation, incorporated herein by reference.
8 */
9
Ben Hutchingsc9597d42009-10-23 08:29:33 +000010#include <linux/rtnetlink.h>
11
Ben Hutchings8ceee662008-04-27 12:55:59 +010012#include "net_driver.h"
13#include "phy.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010014#include "efx.h"
Ben Hutchings744093c2009-11-29 15:12:08 +000015#include "nic.h"
Ben Hutchings3e133c42008-11-04 20:34:56 +000016#include "workarounds.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010017
18/* Macros for unpacking the board revision */
19/* The revision info is in host byte order. */
Ben Hutchings3473a5b2009-10-23 08:29:16 +000020#define FALCON_BOARD_TYPE(_rev) (_rev >> 8)
21#define FALCON_BOARD_MAJOR(_rev) ((_rev >> 4) & 0xf)
22#define FALCON_BOARD_MINOR(_rev) (_rev & 0xf)
23
24/* Board types */
Ben Hutchingsc9597d42009-10-23 08:29:33 +000025#define FALCON_BOARD_SFE4001 0x01
Ben Hutchings3473a5b2009-10-23 08:29:16 +000026#define FALCON_BOARD_SFE4002 0x02
Ben Hutchings7e51b432010-09-22 10:00:47 +000027#define FALCON_BOARD_SFE4003 0x03
Ben Hutchings3473a5b2009-10-23 08:29:16 +000028#define FALCON_BOARD_SFN4112F 0x52
Ben Hutchings8ceee662008-04-27 12:55:59 +010029
Ben Hutchings242cc052010-02-19 13:34:03 +000030/* Board temperature is about 15°C above ambient when air flow is
Ben Hutchings71839f72010-12-02 13:46:24 +000031 * limited. The maximum acceptable ambient temperature varies
32 * depending on the PHY specifications but the critical temperature
33 * above which we should shut down to avoid damage is 80°C. */
Ben Hutchings242cc052010-02-19 13:34:03 +000034#define FALCON_BOARD_TEMP_BIAS 15
Ben Hutchings71839f72010-12-02 13:46:24 +000035#define FALCON_BOARD_TEMP_CRIT (80 + FALCON_BOARD_TEMP_BIAS)
Ben Hutchings242cc052010-02-19 13:34:03 +000036
37/* SFC4000 datasheet says: 'The maximum permitted junction temperature
38 * is 125°C; the thermal design of the environment for the SFC4000
39 * should aim to keep this well below 100°C.' */
Ben Hutchings71839f72010-12-02 13:46:24 +000040#define FALCON_JUNC_TEMP_MIN 0
Ben Hutchings242cc052010-02-19 13:34:03 +000041#define FALCON_JUNC_TEMP_MAX 90
Ben Hutchings71839f72010-12-02 13:46:24 +000042#define FALCON_JUNC_TEMP_CRIT 125
Ben Hutchings242cc052010-02-19 13:34:03 +000043
Ben Hutchings8ceee662008-04-27 12:55:59 +010044/*****************************************************************************
Ben Hutchings3e133c42008-11-04 20:34:56 +000045 * Support for LM87 sensor chip used on several boards
46 */
Ben Hutchings71839f72010-12-02 13:46:24 +000047#define LM87_REG_TEMP_HW_INT_LOCK 0x13
48#define LM87_REG_TEMP_HW_EXT_LOCK 0x14
49#define LM87_REG_TEMP_HW_INT 0x17
50#define LM87_REG_TEMP_HW_EXT 0x18
51#define LM87_REG_TEMP_EXT1 0x26
52#define LM87_REG_TEMP_INT 0x27
Ben Hutchings3e133c42008-11-04 20:34:56 +000053#define LM87_REG_ALARMS1 0x41
54#define LM87_REG_ALARMS2 0x42
55#define LM87_IN_LIMITS(nr, _min, _max) \
56 0x2B + (nr) * 2, _max, 0x2C + (nr) * 2, _min
57#define LM87_AIN_LIMITS(nr, _min, _max) \
58 0x3B + (nr), _max, 0x1A + (nr), _min
59#define LM87_TEMP_INT_LIMITS(_min, _max) \
60 0x39, _max, 0x3A, _min
61#define LM87_TEMP_EXT1_LIMITS(_min, _max) \
62 0x37, _max, 0x38, _min
63
64#define LM87_ALARM_TEMP_INT 0x10
65#define LM87_ALARM_TEMP_EXT1 0x20
66
67#if defined(CONFIG_SENSORS_LM87) || defined(CONFIG_SENSORS_LM87_MODULE)
68
Ben Hutchings71839f72010-12-02 13:46:24 +000069static int efx_poke_lm87(struct i2c_client *client, const u8 *reg_values)
70{
71 while (*reg_values) {
72 u8 reg = *reg_values++;
73 u8 value = *reg_values++;
74 int rc = i2c_smbus_write_byte_data(client, reg, value);
75 if (rc)
76 return rc;
77 }
78 return 0;
79}
80
81static const u8 falcon_lm87_common_regs[] = {
82 LM87_REG_TEMP_HW_INT_LOCK, FALCON_BOARD_TEMP_CRIT,
83 LM87_REG_TEMP_HW_INT, FALCON_BOARD_TEMP_CRIT,
84 LM87_TEMP_EXT1_LIMITS(FALCON_JUNC_TEMP_MIN, FALCON_JUNC_TEMP_MAX),
85 LM87_REG_TEMP_HW_EXT_LOCK, FALCON_JUNC_TEMP_CRIT,
86 LM87_REG_TEMP_HW_EXT, FALCON_JUNC_TEMP_CRIT,
87 0
88};
89
Ben Hutchings3e133c42008-11-04 20:34:56 +000090static int efx_init_lm87(struct efx_nic *efx, struct i2c_board_info *info,
91 const u8 *reg_values)
92{
Ben Hutchingse775fb92009-11-23 16:06:02 +000093 struct falcon_board *board = falcon_board(efx);
94 struct i2c_client *client = i2c_new_device(&board->i2c_adap, info);
Ben Hutchings3e133c42008-11-04 20:34:56 +000095 int rc;
96
97 if (!client)
98 return -EIO;
99
Ben Hutchingsadc1d232010-12-02 13:46:31 +0000100 /* Read-to-clear alarm/interrupt status */
101 i2c_smbus_read_byte_data(client, LM87_REG_ALARMS1);
102 i2c_smbus_read_byte_data(client, LM87_REG_ALARMS2);
103
Ben Hutchings71839f72010-12-02 13:46:24 +0000104 rc = efx_poke_lm87(client, reg_values);
105 if (rc)
106 goto err;
107 rc = efx_poke_lm87(client, falcon_lm87_common_regs);
108 if (rc)
109 goto err;
Ben Hutchings3e133c42008-11-04 20:34:56 +0000110
Ben Hutchingse775fb92009-11-23 16:06:02 +0000111 board->hwmon_client = client;
Ben Hutchings3e133c42008-11-04 20:34:56 +0000112 return 0;
113
114err:
115 i2c_unregister_device(client);
116 return rc;
117}
118
119static void efx_fini_lm87(struct efx_nic *efx)
120{
Ben Hutchings278c0622009-11-23 16:05:12 +0000121 i2c_unregister_device(falcon_board(efx)->hwmon_client);
Ben Hutchings3e133c42008-11-04 20:34:56 +0000122}
123
124static int efx_check_lm87(struct efx_nic *efx, unsigned mask)
125{
Ben Hutchings278c0622009-11-23 16:05:12 +0000126 struct i2c_client *client = falcon_board(efx)->hwmon_client;
Ben Hutchings71839f72010-12-02 13:46:24 +0000127 bool temp_crit, elec_fault, is_failure;
128 u16 alarms;
129 s32 reg;
Ben Hutchings3e133c42008-11-04 20:34:56 +0000130
131 /* If link is up then do not monitor temperature */
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000132 if (EFX_WORKAROUND_7884(efx) && efx->link_state.up)
Ben Hutchings3e133c42008-11-04 20:34:56 +0000133 return 0;
134
Ben Hutchings71839f72010-12-02 13:46:24 +0000135 reg = i2c_smbus_read_byte_data(client, LM87_REG_ALARMS1);
136 if (reg < 0)
137 return reg;
138 alarms = reg;
139 reg = i2c_smbus_read_byte_data(client, LM87_REG_ALARMS2);
140 if (reg < 0)
141 return reg;
142 alarms |= reg << 8;
143 alarms &= mask;
Ben Hutchings3e133c42008-11-04 20:34:56 +0000144
Ben Hutchings71839f72010-12-02 13:46:24 +0000145 temp_crit = false;
146 if (alarms & LM87_ALARM_TEMP_INT) {
147 reg = i2c_smbus_read_byte_data(client, LM87_REG_TEMP_INT);
148 if (reg < 0)
149 return reg;
150 if (reg > FALCON_BOARD_TEMP_CRIT)
151 temp_crit = true;
152 }
153 if (alarms & LM87_ALARM_TEMP_EXT1) {
154 reg = i2c_smbus_read_byte_data(client, LM87_REG_TEMP_EXT1);
155 if (reg < 0)
156 return reg;
157 if (reg > FALCON_JUNC_TEMP_CRIT)
158 temp_crit = true;
159 }
160 elec_fault = alarms & ~(LM87_ALARM_TEMP_INT | LM87_ALARM_TEMP_EXT1);
161 is_failure = temp_crit || elec_fault;
162
163 if (alarms)
164 netif_err(efx, hw, efx->net_dev,
165 "LM87 detected a hardware %s (status %02x:%02x)"
166 "%s%s%s%s\n",
167 is_failure ? "failure" : "problem",
168 alarms & 0xff, alarms >> 8,
169 (alarms & LM87_ALARM_TEMP_INT) ?
170 "; board is overheating" : "",
171 (alarms & LM87_ALARM_TEMP_EXT1) ?
172 "; controller is overheating" : "",
173 temp_crit ? "; reached critical temperature" : "",
174 elec_fault ? "; electrical fault" : "");
175
176 return is_failure ? -ERANGE : 0;
Ben Hutchings3e133c42008-11-04 20:34:56 +0000177}
178
179#else /* !CONFIG_SENSORS_LM87 */
180
181static inline int
182efx_init_lm87(struct efx_nic *efx, struct i2c_board_info *info,
183 const u8 *reg_values)
184{
185 return 0;
186}
187static inline void efx_fini_lm87(struct efx_nic *efx)
188{
189}
190static inline int efx_check_lm87(struct efx_nic *efx, unsigned mask)
191{
192 return 0;
193}
194
195#endif /* CONFIG_SENSORS_LM87 */
196
197/*****************************************************************************
Ben Hutchings8fbca792010-09-22 10:00:11 +0000198 * Support for the SFE4001 NIC.
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000199 *
200 * The SFE4001 does not power-up fully at reset due to its high power
201 * consumption. We control its power via a PCA9539 I/O expander.
Ben Hutchings8fbca792010-09-22 10:00:11 +0000202 * It also has a MAX6647 temperature monitor which we expose to
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000203 * the lm90 driver.
204 *
205 * This also provides minimal support for reflashing the PHY, which is
206 * initiated by resetting it with the FLASH_CFG_1 pin pulled down.
207 * On SFE4001 rev A2 and later this is connected to the 3V3X output of
Ben Hutchings8fbca792010-09-22 10:00:11 +0000208 * the IO-expander.
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000209 * We represent reflash mode as PHY_MODE_SPECIAL and make it mutually
210 * exclusive with the network device being open.
211 */
212
213/**************************************************************************
Ben Hutchings89863522009-11-25 16:09:04 +0000214 * Support for I2C IO Expander device on SFE4001
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000215 */
216#define PCA9539 0x74
217
218#define P0_IN 0x00
219#define P0_OUT 0x02
220#define P0_INVERT 0x04
221#define P0_CONFIG 0x06
222
223#define P0_EN_1V0X_LBN 0
224#define P0_EN_1V0X_WIDTH 1
225#define P0_EN_1V2_LBN 1
226#define P0_EN_1V2_WIDTH 1
227#define P0_EN_2V5_LBN 2
228#define P0_EN_2V5_WIDTH 1
229#define P0_EN_3V3X_LBN 3
230#define P0_EN_3V3X_WIDTH 1
231#define P0_EN_5V_LBN 4
232#define P0_EN_5V_WIDTH 1
233#define P0_SHORTEN_JTAG_LBN 5
234#define P0_SHORTEN_JTAG_WIDTH 1
235#define P0_X_TRST_LBN 6
236#define P0_X_TRST_WIDTH 1
237#define P0_DSP_RESET_LBN 7
238#define P0_DSP_RESET_WIDTH 1
239
240#define P1_IN 0x01
241#define P1_OUT 0x03
242#define P1_INVERT 0x05
243#define P1_CONFIG 0x07
244
245#define P1_AFE_PWD_LBN 0
246#define P1_AFE_PWD_WIDTH 1
247#define P1_DSP_PWD25_LBN 1
248#define P1_DSP_PWD25_WIDTH 1
249#define P1_RESERVED_LBN 2
250#define P1_RESERVED_WIDTH 2
251#define P1_SPARE_LBN 4
252#define P1_SPARE_WIDTH 4
253
254/* Temperature Sensor */
255#define MAX664X_REG_RSL 0x02
256#define MAX664X_REG_WLHO 0x0B
257
258static void sfe4001_poweroff(struct efx_nic *efx)
259{
Ben Hutchings278c0622009-11-23 16:05:12 +0000260 struct i2c_client *ioexp_client = falcon_board(efx)->ioexp_client;
261 struct i2c_client *hwmon_client = falcon_board(efx)->hwmon_client;
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000262
263 /* Turn off all power rails and disable outputs */
264 i2c_smbus_write_byte_data(ioexp_client, P0_OUT, 0xff);
265 i2c_smbus_write_byte_data(ioexp_client, P1_CONFIG, 0xff);
266 i2c_smbus_write_byte_data(ioexp_client, P0_CONFIG, 0xff);
267
268 /* Clear any over-temperature alert */
269 i2c_smbus_read_byte_data(hwmon_client, MAX664X_REG_RSL);
270}
271
272static int sfe4001_poweron(struct efx_nic *efx)
273{
Ben Hutchings278c0622009-11-23 16:05:12 +0000274 struct i2c_client *ioexp_client = falcon_board(efx)->ioexp_client;
275 struct i2c_client *hwmon_client = falcon_board(efx)->hwmon_client;
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000276 unsigned int i, j;
277 int rc;
278 u8 out;
279
280 /* Clear any previous over-temperature alert */
281 rc = i2c_smbus_read_byte_data(hwmon_client, MAX664X_REG_RSL);
282 if (rc < 0)
283 return rc;
284
285 /* Enable port 0 and port 1 outputs on IO expander */
286 rc = i2c_smbus_write_byte_data(ioexp_client, P0_CONFIG, 0x00);
287 if (rc)
288 return rc;
289 rc = i2c_smbus_write_byte_data(ioexp_client, P1_CONFIG,
290 0xff & ~(1 << P1_SPARE_LBN));
291 if (rc)
292 goto fail_on;
293
294 /* If PHY power is on, turn it all off and wait 1 second to
295 * ensure a full reset.
296 */
297 rc = i2c_smbus_read_byte_data(ioexp_client, P0_OUT);
298 if (rc < 0)
299 goto fail_on;
300 out = 0xff & ~((0 << P0_EN_1V2_LBN) | (0 << P0_EN_2V5_LBN) |
301 (0 << P0_EN_3V3X_LBN) | (0 << P0_EN_5V_LBN) |
302 (0 << P0_EN_1V0X_LBN));
303 if (rc != out) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000304 netif_info(efx, hw, efx->net_dev, "power-cycling PHY\n");
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000305 rc = i2c_smbus_write_byte_data(ioexp_client, P0_OUT, out);
306 if (rc)
307 goto fail_on;
308 schedule_timeout_uninterruptible(HZ);
309 }
310
311 for (i = 0; i < 20; ++i) {
312 /* Turn on 1.2V, 2.5V, 3.3V and 5V power rails */
313 out = 0xff & ~((1 << P0_EN_1V2_LBN) | (1 << P0_EN_2V5_LBN) |
314 (1 << P0_EN_3V3X_LBN) | (1 << P0_EN_5V_LBN) |
315 (1 << P0_X_TRST_LBN));
316 if (efx->phy_mode & PHY_MODE_SPECIAL)
317 out |= 1 << P0_EN_3V3X_LBN;
318
319 rc = i2c_smbus_write_byte_data(ioexp_client, P0_OUT, out);
320 if (rc)
321 goto fail_on;
322 msleep(10);
323
324 /* Turn on 1V power rail */
325 out &= ~(1 << P0_EN_1V0X_LBN);
326 rc = i2c_smbus_write_byte_data(ioexp_client, P0_OUT, out);
327 if (rc)
328 goto fail_on;
329
Ben Hutchings62776d02010-06-23 11:30:07 +0000330 netif_info(efx, hw, efx->net_dev,
331 "waiting for DSP boot (attempt %d)...\n", i);
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000332
333 /* In flash config mode, DSP does not turn on AFE, so
334 * just wait 1 second.
335 */
336 if (efx->phy_mode & PHY_MODE_SPECIAL) {
337 schedule_timeout_uninterruptible(HZ);
338 return 0;
339 }
340
341 for (j = 0; j < 10; ++j) {
342 msleep(100);
343
344 /* Check DSP has asserted AFE power line */
345 rc = i2c_smbus_read_byte_data(ioexp_client, P1_IN);
346 if (rc < 0)
347 goto fail_on;
348 if (rc & (1 << P1_AFE_PWD_LBN))
349 return 0;
350 }
351 }
352
Ben Hutchings62776d02010-06-23 11:30:07 +0000353 netif_info(efx, hw, efx->net_dev, "timed out waiting for DSP boot\n");
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000354 rc = -ETIMEDOUT;
355fail_on:
356 sfe4001_poweroff(efx);
357 return rc;
358}
359
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000360static ssize_t show_phy_flash_cfg(struct device *dev,
361 struct device_attribute *attr, char *buf)
362{
363 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
364 return sprintf(buf, "%d\n", !!(efx->phy_mode & PHY_MODE_SPECIAL));
365}
366
367static ssize_t set_phy_flash_cfg(struct device *dev,
368 struct device_attribute *attr,
369 const char *buf, size_t count)
370{
371 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
372 enum efx_phy_mode old_mode, new_mode;
373 int err;
374
375 rtnl_lock();
376 old_mode = efx->phy_mode;
377 if (count == 0 || *buf == '0')
378 new_mode = old_mode & ~PHY_MODE_SPECIAL;
379 else
380 new_mode = PHY_MODE_SPECIAL;
Ben Hutchings4484cd72010-12-02 13:46:14 +0000381 if (!((old_mode ^ new_mode) & PHY_MODE_SPECIAL)) {
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000382 err = 0;
383 } else if (efx->state != STATE_RUNNING || netif_running(efx->net_dev)) {
384 err = -EBUSY;
385 } else {
386 /* Reset the PHY, reconfigure the MAC and enable/disable
387 * MAC stats accordingly. */
388 efx->phy_mode = new_mode;
389 if (new_mode & PHY_MODE_SPECIAL)
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000390 falcon_stop_nic_stats(efx);
Ben Hutchings8fbca792010-09-22 10:00:11 +0000391 err = sfe4001_poweron(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000392 if (!err)
393 err = efx_reconfigure_port(efx);
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000394 if (!(new_mode & PHY_MODE_SPECIAL))
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000395 falcon_start_nic_stats(efx);
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000396 }
397 rtnl_unlock();
398
399 return err ? err : count;
400}
401
402static DEVICE_ATTR(phy_flash_cfg, 0644, show_phy_flash_cfg, set_phy_flash_cfg);
403
404static void sfe4001_fini(struct efx_nic *efx)
405{
Ben Hutchings278c0622009-11-23 16:05:12 +0000406 struct falcon_board *board = falcon_board(efx);
407
Ben Hutchings62776d02010-06-23 11:30:07 +0000408 netif_info(efx, drv, efx->net_dev, "%s\n", __func__);
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000409
410 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_flash_cfg);
411 sfe4001_poweroff(efx);
Ben Hutchings278c0622009-11-23 16:05:12 +0000412 i2c_unregister_device(board->ioexp_client);
413 i2c_unregister_device(board->hwmon_client);
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000414}
415
416static int sfe4001_check_hw(struct efx_nic *efx)
417{
418 s32 status;
419
420 /* If XAUI link is up then do not monitor */
Ben Hutchings9007b9f2009-11-25 16:12:01 +0000421 if (EFX_WORKAROUND_7884(efx) && !efx->xmac_poll_required)
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000422 return 0;
423
424 /* Check the powered status of the PHY. Lack of power implies that
425 * the MAX6647 has shut down power to it, probably due to a temp.
426 * alarm. Reading the power status rather than the MAX6647 status
427 * directly because the later is read-to-clear and would thus
428 * start to power up the PHY again when polled, causing us to blip
429 * the power undesirably.
430 * We know we can read from the IO expander because we did
431 * it during power-on. Assume failure now is bad news. */
Ben Hutchings278c0622009-11-23 16:05:12 +0000432 status = i2c_smbus_read_byte_data(falcon_board(efx)->ioexp_client, P1_IN);
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000433 if (status >= 0 &&
434 (status & ((1 << P1_AFE_PWD_LBN) | (1 << P1_DSP_PWD25_LBN))) != 0)
435 return 0;
436
437 /* Use board power control, not PHY power control */
438 sfe4001_poweroff(efx);
439 efx->phy_mode = PHY_MODE_OFF;
440
441 return (status < 0) ? -EIO : -ERANGE;
442}
443
444static struct i2c_board_info sfe4001_hwmon_info = {
445 I2C_BOARD_INFO("max6647", 0x4e),
446};
447
448/* This board uses an I2C expander to provider power to the PHY, which needs to
449 * be turned on before the PHY can be used.
450 * Context: Process context, rtnl lock held
451 */
452static int sfe4001_init(struct efx_nic *efx)
453{
Ben Hutchings278c0622009-11-23 16:05:12 +0000454 struct falcon_board *board = falcon_board(efx);
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000455 int rc;
456
457#if defined(CONFIG_SENSORS_LM90) || defined(CONFIG_SENSORS_LM90_MODULE)
Ben Hutchings278c0622009-11-23 16:05:12 +0000458 board->hwmon_client =
Ben Hutchingse775fb92009-11-23 16:06:02 +0000459 i2c_new_device(&board->i2c_adap, &sfe4001_hwmon_info);
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000460#else
Ben Hutchings278c0622009-11-23 16:05:12 +0000461 board->hwmon_client =
Ben Hutchingse775fb92009-11-23 16:06:02 +0000462 i2c_new_dummy(&board->i2c_adap, sfe4001_hwmon_info.addr);
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000463#endif
Ben Hutchings278c0622009-11-23 16:05:12 +0000464 if (!board->hwmon_client)
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000465 return -EIO;
466
467 /* Raise board/PHY high limit from 85 to 90 degrees Celsius */
Ben Hutchings278c0622009-11-23 16:05:12 +0000468 rc = i2c_smbus_write_byte_data(board->hwmon_client,
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000469 MAX664X_REG_WLHO, 90);
470 if (rc)
471 goto fail_hwmon;
472
Ben Hutchingse775fb92009-11-23 16:06:02 +0000473 board->ioexp_client = i2c_new_dummy(&board->i2c_adap, PCA9539);
Ben Hutchings278c0622009-11-23 16:05:12 +0000474 if (!board->ioexp_client) {
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000475 rc = -EIO;
476 goto fail_hwmon;
477 }
478
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000479 if (efx->phy_mode & PHY_MODE_SPECIAL) {
480 /* PHY won't generate a 156.25 MHz clock and MAC stats fetch
481 * will fail. */
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000482 falcon_stop_nic_stats(efx);
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000483 }
484 rc = sfe4001_poweron(efx);
485 if (rc)
486 goto fail_ioexp;
487
488 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_flash_cfg);
489 if (rc)
490 goto fail_on;
491
Ben Hutchings62776d02010-06-23 11:30:07 +0000492 netif_info(efx, hw, efx->net_dev, "PHY is powered on\n");
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000493 return 0;
494
495fail_on:
496 sfe4001_poweroff(efx);
497fail_ioexp:
Ben Hutchings278c0622009-11-23 16:05:12 +0000498 i2c_unregister_device(board->ioexp_client);
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000499fail_hwmon:
Ben Hutchings278c0622009-11-23 16:05:12 +0000500 i2c_unregister_device(board->hwmon_client);
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000501 return rc;
502}
503
Ben Hutchingsc9597d42009-10-23 08:29:33 +0000504/*****************************************************************************
Ben Hutchings8ceee662008-04-27 12:55:59 +0100505 * Support for the SFE4002
506 *
507 */
Ben Hutchings3e133c42008-11-04 20:34:56 +0000508static u8 sfe4002_lm87_channel = 0x03; /* use AIN not FAN inputs */
509
510static const u8 sfe4002_lm87_regs[] = {
Ben Hutchings242cc052010-02-19 13:34:03 +0000511 LM87_IN_LIMITS(0, 0x7c, 0x99), /* 2.5V: 1.8V +/- 10% */
512 LM87_IN_LIMITS(1, 0x4c, 0x5e), /* Vccp1: 1.2V +/- 10% */
513 LM87_IN_LIMITS(2, 0xac, 0xd4), /* 3.3V: 3.3V +/- 10% */
514 LM87_IN_LIMITS(3, 0xac, 0xd4), /* 5V: 5.0V +/- 10% */
515 LM87_IN_LIMITS(4, 0xac, 0xe0), /* 12V: 10.8-14V */
516 LM87_IN_LIMITS(5, 0x3f, 0x4f), /* Vccp2: 1.0V +/- 10% */
517 LM87_AIN_LIMITS(0, 0x98, 0xbb), /* AIN1: 1.66V +/- 10% */
518 LM87_AIN_LIMITS(1, 0x8a, 0xa9), /* AIN2: 1.5V +/- 10% */
519 LM87_TEMP_INT_LIMITS(0, 80 + FALCON_BOARD_TEMP_BIAS),
520 LM87_TEMP_EXT1_LIMITS(0, FALCON_JUNC_TEMP_MAX),
Ben Hutchings3e133c42008-11-04 20:34:56 +0000521 0
522};
523
524static struct i2c_board_info sfe4002_hwmon_info = {
525 I2C_BOARD_INFO("lm87", 0x2e),
526 .platform_data = &sfe4002_lm87_channel,
Ben Hutchings3e133c42008-11-04 20:34:56 +0000527};
528
Ben Hutchings8ceee662008-04-27 12:55:59 +0100529/****************************************************************************/
530/* LED allocations. Note that on rev A0 boards the schematic and the reality
531 * differ: red and green are swapped. Below is the fixed (A1) layout (there
532 * are only 3 A0 boards in existence, so no real reason to make this
533 * conditional).
534 */
535#define SFE4002_FAULT_LED (2) /* Red */
536#define SFE4002_RX_LED (0) /* Green */
537#define SFE4002_TX_LED (1) /* Amber */
538
Ben Hutchings981fc1b2009-11-23 16:04:23 +0000539static void sfe4002_init_phy(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100540{
541 /* Set the TX and RX LEDs to reflect status and activity, and the
542 * fault LED off */
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000543 falcon_qt202x_set_led(efx, SFE4002_TX_LED,
544 QUAKE_LED_TXLINK | QUAKE_LED_LINK_ACTSTAT);
545 falcon_qt202x_set_led(efx, SFE4002_RX_LED,
546 QUAKE_LED_RXLINK | QUAKE_LED_LINK_ACTSTAT);
547 falcon_qt202x_set_led(efx, SFE4002_FAULT_LED, QUAKE_LED_OFF);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100548}
549
Ben Hutchings398468e2009-11-23 16:03:45 +0000550static void sfe4002_set_id_led(struct efx_nic *efx, enum efx_led_mode mode)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100551{
Ben Hutchings398468e2009-11-23 16:03:45 +0000552 falcon_qt202x_set_led(
553 efx, SFE4002_FAULT_LED,
554 (mode == EFX_LED_ON) ? QUAKE_LED_ON : QUAKE_LED_OFF);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100555}
556
Ben Hutchings3e133c42008-11-04 20:34:56 +0000557static int sfe4002_check_hw(struct efx_nic *efx)
558{
Ben Hutchings278c0622009-11-23 16:05:12 +0000559 struct falcon_board *board = falcon_board(efx);
560
Ben Hutchings3e133c42008-11-04 20:34:56 +0000561 /* A0 board rev. 4002s report a temperature fault the whole time
562 * (bad sensor) so we mask it out. */
563 unsigned alarm_mask =
Ben Hutchings278c0622009-11-23 16:05:12 +0000564 (board->major == 0 && board->minor == 0) ?
Ben Hutchings3e133c42008-11-04 20:34:56 +0000565 ~LM87_ALARM_TEMP_EXT1 : ~0;
566
567 return efx_check_lm87(efx, alarm_mask);
568}
569
Ben Hutchings8ceee662008-04-27 12:55:59 +0100570static int sfe4002_init(struct efx_nic *efx)
571{
Ben Hutchings44838a42009-11-25 16:09:41 +0000572 return efx_init_lm87(efx, &sfe4002_hwmon_info, sfe4002_lm87_regs);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100573}
574
Ben Hutchings94f52cd2009-02-27 13:08:18 +0000575/*****************************************************************************
576 * Support for the SFN4112F
577 *
578 */
579static u8 sfn4112f_lm87_channel = 0x03; /* use AIN not FAN inputs */
580
581static const u8 sfn4112f_lm87_regs[] = {
Ben Hutchings242cc052010-02-19 13:34:03 +0000582 LM87_IN_LIMITS(0, 0x7c, 0x99), /* 2.5V: 1.8V +/- 10% */
583 LM87_IN_LIMITS(1, 0x4c, 0x5e), /* Vccp1: 1.2V +/- 10% */
584 LM87_IN_LIMITS(2, 0xac, 0xd4), /* 3.3V: 3.3V +/- 10% */
585 LM87_IN_LIMITS(4, 0xac, 0xe0), /* 12V: 10.8-14V */
586 LM87_IN_LIMITS(5, 0x3f, 0x4f), /* Vccp2: 1.0V +/- 10% */
587 LM87_AIN_LIMITS(1, 0x8a, 0xa9), /* AIN2: 1.5V +/- 10% */
588 LM87_TEMP_INT_LIMITS(0, 60 + FALCON_BOARD_TEMP_BIAS),
589 LM87_TEMP_EXT1_LIMITS(0, FALCON_JUNC_TEMP_MAX),
Ben Hutchings94f52cd2009-02-27 13:08:18 +0000590 0
591};
592
593static struct i2c_board_info sfn4112f_hwmon_info = {
594 I2C_BOARD_INFO("lm87", 0x2e),
595 .platform_data = &sfn4112f_lm87_channel,
Ben Hutchings94f52cd2009-02-27 13:08:18 +0000596};
597
598#define SFN4112F_ACT_LED 0
599#define SFN4112F_LINK_LED 1
600
Ben Hutchings981fc1b2009-11-23 16:04:23 +0000601static void sfn4112f_init_phy(struct efx_nic *efx)
Ben Hutchings94f52cd2009-02-27 13:08:18 +0000602{
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000603 falcon_qt202x_set_led(efx, SFN4112F_ACT_LED,
604 QUAKE_LED_RXLINK | QUAKE_LED_LINK_ACT);
605 falcon_qt202x_set_led(efx, SFN4112F_LINK_LED,
606 QUAKE_LED_RXLINK | QUAKE_LED_LINK_STAT);
Ben Hutchings94f52cd2009-02-27 13:08:18 +0000607}
608
Ben Hutchings398468e2009-11-23 16:03:45 +0000609static void sfn4112f_set_id_led(struct efx_nic *efx, enum efx_led_mode mode)
Ben Hutchings94f52cd2009-02-27 13:08:18 +0000610{
Ben Hutchings398468e2009-11-23 16:03:45 +0000611 int reg;
612
613 switch (mode) {
614 case EFX_LED_OFF:
615 reg = QUAKE_LED_OFF;
616 break;
617 case EFX_LED_ON:
618 reg = QUAKE_LED_ON;
619 break;
620 default:
621 reg = QUAKE_LED_RXLINK | QUAKE_LED_LINK_STAT;
622 break;
623 }
624
625 falcon_qt202x_set_led(efx, SFN4112F_LINK_LED, reg);
Ben Hutchings94f52cd2009-02-27 13:08:18 +0000626}
627
628static int sfn4112f_check_hw(struct efx_nic *efx)
629{
630 /* Mask out unused sensors */
631 return efx_check_lm87(efx, ~0x48);
632}
633
634static int sfn4112f_init(struct efx_nic *efx)
635{
Ben Hutchings44838a42009-11-25 16:09:41 +0000636 return efx_init_lm87(efx, &sfn4112f_hwmon_info, sfn4112f_lm87_regs);
Ben Hutchings94f52cd2009-02-27 13:08:18 +0000637}
638
Ben Hutchings7e51b432010-09-22 10:00:47 +0000639/*****************************************************************************
640 * Support for the SFE4003
641 *
642 */
643static u8 sfe4003_lm87_channel = 0x03; /* use AIN not FAN inputs */
644
645static const u8 sfe4003_lm87_regs[] = {
646 LM87_IN_LIMITS(0, 0x67, 0x7f), /* 2.5V: 1.5V +/- 10% */
647 LM87_IN_LIMITS(1, 0x4c, 0x5e), /* Vccp1: 1.2V +/- 10% */
648 LM87_IN_LIMITS(2, 0xac, 0xd4), /* 3.3V: 3.3V +/- 10% */
649 LM87_IN_LIMITS(4, 0xac, 0xe0), /* 12V: 10.8-14V */
650 LM87_IN_LIMITS(5, 0x3f, 0x4f), /* Vccp2: 1.0V +/- 10% */
651 LM87_TEMP_INT_LIMITS(0, 70 + FALCON_BOARD_TEMP_BIAS),
652 0
653};
654
655static struct i2c_board_info sfe4003_hwmon_info = {
656 I2C_BOARD_INFO("lm87", 0x2e),
657 .platform_data = &sfe4003_lm87_channel,
658};
659
660/* Board-specific LED info. */
661#define SFE4003_RED_LED_GPIO 11
662#define SFE4003_LED_ON 1
663#define SFE4003_LED_OFF 0
664
665static void sfe4003_set_id_led(struct efx_nic *efx, enum efx_led_mode mode)
666{
667 struct falcon_board *board = falcon_board(efx);
668
669 /* The LEDs were not wired to GPIOs before A3 */
670 if (board->minor < 3 && board->major == 0)
671 return;
672
673 falcon_txc_set_gpio_val(
674 efx, SFE4003_RED_LED_GPIO,
675 (mode == EFX_LED_ON) ? SFE4003_LED_ON : SFE4003_LED_OFF);
676}
677
678static void sfe4003_init_phy(struct efx_nic *efx)
679{
680 struct falcon_board *board = falcon_board(efx);
681
682 /* The LEDs were not wired to GPIOs before A3 */
683 if (board->minor < 3 && board->major == 0)
684 return;
685
686 falcon_txc_set_gpio_dir(efx, SFE4003_RED_LED_GPIO, TXC_GPIO_DIR_OUTPUT);
687 falcon_txc_set_gpio_val(efx, SFE4003_RED_LED_GPIO, SFE4003_LED_OFF);
688}
689
690static int sfe4003_check_hw(struct efx_nic *efx)
691{
692 struct falcon_board *board = falcon_board(efx);
693
694 /* A0/A1/A2 board rev. 4003s report a temperature fault the whole time
695 * (bad sensor) so we mask it out. */
696 unsigned alarm_mask =
697 (board->major == 0 && board->minor <= 2) ?
698 ~LM87_ALARM_TEMP_EXT1 : ~0;
699
700 return efx_check_lm87(efx, alarm_mask);
701}
702
703static int sfe4003_init(struct efx_nic *efx)
704{
705 return efx_init_lm87(efx, &sfe4003_hwmon_info, sfe4003_lm87_regs);
706}
707
Ben Hutchings44838a42009-11-25 16:09:41 +0000708static const struct falcon_board_type board_types[] = {
709 {
710 .id = FALCON_BOARD_SFE4001,
711 .ref_model = "SFE4001",
712 .gen_type = "10GBASE-T adapter",
713 .init = sfe4001_init,
714 .init_phy = efx_port_dummy_op_void,
715 .fini = sfe4001_fini,
716 .set_id_led = tenxpress_set_id_led,
717 .monitor = sfe4001_check_hw,
718 },
719 {
720 .id = FALCON_BOARD_SFE4002,
721 .ref_model = "SFE4002",
722 .gen_type = "XFP adapter",
723 .init = sfe4002_init,
724 .init_phy = sfe4002_init_phy,
725 .fini = efx_fini_lm87,
726 .set_id_led = sfe4002_set_id_led,
727 .monitor = sfe4002_check_hw,
728 },
729 {
Ben Hutchings7e51b432010-09-22 10:00:47 +0000730 .id = FALCON_BOARD_SFE4003,
731 .ref_model = "SFE4003",
732 .gen_type = "10GBASE-CX4 adapter",
733 .init = sfe4003_init,
734 .init_phy = sfe4003_init_phy,
735 .fini = efx_fini_lm87,
736 .set_id_led = sfe4003_set_id_led,
737 .monitor = sfe4003_check_hw,
738 },
739 {
Ben Hutchings44838a42009-11-25 16:09:41 +0000740 .id = FALCON_BOARD_SFN4112F,
741 .ref_model = "SFN4112F",
742 .gen_type = "SFP+ adapter",
743 .init = sfn4112f_init,
744 .init_phy = sfn4112f_init_phy,
745 .fini = efx_fini_lm87,
746 .set_id_led = sfn4112f_set_id_led,
747 .monitor = sfn4112f_check_hw,
748 },
Ben Hutchings8ceee662008-04-27 12:55:59 +0100749};
750
Ben Hutchingse41c11e2010-04-28 09:01:50 +0000751int falcon_probe_board(struct efx_nic *efx, u16 revision_info)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100752{
Ben Hutchings278c0622009-11-23 16:05:12 +0000753 struct falcon_board *board = falcon_board(efx);
Ben Hutchings44838a42009-11-25 16:09:41 +0000754 u8 type_id = FALCON_BOARD_TYPE(revision_info);
Ben Hutchings04300d22008-12-12 21:48:09 -0800755 int i;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100756
Ben Hutchings278c0622009-11-23 16:05:12 +0000757 board->major = FALCON_BOARD_MAJOR(revision_info);
758 board->minor = FALCON_BOARD_MINOR(revision_info);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100759
Ben Hutchings44838a42009-11-25 16:09:41 +0000760 for (i = 0; i < ARRAY_SIZE(board_types); i++)
761 if (board_types[i].id == type_id)
762 board->type = &board_types[i];
Ben Hutchings8ceee662008-04-27 12:55:59 +0100763
Ben Hutchings44838a42009-11-25 16:09:41 +0000764 if (board->type) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000765 netif_info(efx, probe, efx->net_dev, "board is %s rev %c%d\n",
Ben Hutchings8ceee662008-04-27 12:55:59 +0100766 (efx->pci_dev->subsystem_vendor == EFX_VENDID_SFC)
Ben Hutchings44838a42009-11-25 16:09:41 +0000767 ? board->type->ref_model : board->type->gen_type,
Ben Hutchings278c0622009-11-23 16:05:12 +0000768 'A' + board->major, board->minor);
Ben Hutchingse41c11e2010-04-28 09:01:50 +0000769 return 0;
Ben Hutchings04300d22008-12-12 21:48:09 -0800770 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +0000771 netif_err(efx, probe, efx->net_dev, "unknown board type %d\n",
772 type_id);
Ben Hutchingse41c11e2010-04-28 09:01:50 +0000773 return -ENODEV;
Ben Hutchings04300d22008-12-12 21:48:09 -0800774 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100775}