falcon_boards.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761
  1. /****************************************************************************
  2. * Driver for Solarflare Solarstorm network controllers and boards
  3. * Copyright 2007-2009 Solarflare Communications Inc.
  4. *
  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. #include <linux/rtnetlink.h>
  10. #include "net_driver.h"
  11. #include "phy.h"
  12. #include "efx.h"
  13. #include "nic.h"
  14. #include "regs.h"
  15. #include "io.h"
  16. #include "workarounds.h"
  17. /* Macros for unpacking the board revision */
  18. /* The revision info is in host byte order. */
  19. #define FALCON_BOARD_TYPE(_rev) (_rev >> 8)
  20. #define FALCON_BOARD_MAJOR(_rev) ((_rev >> 4) & 0xf)
  21. #define FALCON_BOARD_MINOR(_rev) (_rev & 0xf)
  22. /* Board types */
  23. #define FALCON_BOARD_SFE4001 0x01
  24. #define FALCON_BOARD_SFE4002 0x02
  25. #define FALCON_BOARD_SFN4111T 0x51
  26. #define FALCON_BOARD_SFN4112F 0x52
  27. /* Board temperature is about 15°C above ambient when air flow is
  28. * limited. */
  29. #define FALCON_BOARD_TEMP_BIAS 15
  30. /* SFC4000 datasheet says: 'The maximum permitted junction temperature
  31. * is 125°C; the thermal design of the environment for the SFC4000
  32. * should aim to keep this well below 100°C.' */
  33. #define FALCON_JUNC_TEMP_MAX 90
  34. /*****************************************************************************
  35. * Support for LM87 sensor chip used on several boards
  36. */
  37. #define LM87_REG_ALARMS1 0x41
  38. #define LM87_REG_ALARMS2 0x42
  39. #define LM87_IN_LIMITS(nr, _min, _max) \
  40. 0x2B + (nr) * 2, _max, 0x2C + (nr) * 2, _min
  41. #define LM87_AIN_LIMITS(nr, _min, _max) \
  42. 0x3B + (nr), _max, 0x1A + (nr), _min
  43. #define LM87_TEMP_INT_LIMITS(_min, _max) \
  44. 0x39, _max, 0x3A, _min
  45. #define LM87_TEMP_EXT1_LIMITS(_min, _max) \
  46. 0x37, _max, 0x38, _min
  47. #define LM87_ALARM_TEMP_INT 0x10
  48. #define LM87_ALARM_TEMP_EXT1 0x20
  49. #if defined(CONFIG_SENSORS_LM87) || defined(CONFIG_SENSORS_LM87_MODULE)
  50. static int efx_init_lm87(struct efx_nic *efx, struct i2c_board_info *info,
  51. const u8 *reg_values)
  52. {
  53. struct falcon_board *board = falcon_board(efx);
  54. struct i2c_client *client = i2c_new_device(&board->i2c_adap, info);
  55. int rc;
  56. if (!client)
  57. return -EIO;
  58. while (*reg_values) {
  59. u8 reg = *reg_values++;
  60. u8 value = *reg_values++;
  61. rc = i2c_smbus_write_byte_data(client, reg, value);
  62. if (rc)
  63. goto err;
  64. }
  65. board->hwmon_client = client;
  66. return 0;
  67. err:
  68. i2c_unregister_device(client);
  69. return rc;
  70. }
  71. static void efx_fini_lm87(struct efx_nic *efx)
  72. {
  73. i2c_unregister_device(falcon_board(efx)->hwmon_client);
  74. }
  75. static int efx_check_lm87(struct efx_nic *efx, unsigned mask)
  76. {
  77. struct i2c_client *client = falcon_board(efx)->hwmon_client;
  78. s32 alarms1, alarms2;
  79. /* If link is up then do not monitor temperature */
  80. if (EFX_WORKAROUND_7884(efx) && efx->link_state.up)
  81. return 0;
  82. alarms1 = i2c_smbus_read_byte_data(client, LM87_REG_ALARMS1);
  83. alarms2 = i2c_smbus_read_byte_data(client, LM87_REG_ALARMS2);
  84. if (alarms1 < 0)
  85. return alarms1;
  86. if (alarms2 < 0)
  87. return alarms2;
  88. alarms1 &= mask;
  89. alarms2 &= mask >> 8;
  90. if (alarms1 || alarms2) {
  91. EFX_ERR(efx,
  92. "LM87 detected a hardware failure (status %02x:%02x)"
  93. "%s%s\n",
  94. alarms1, alarms2,
  95. (alarms1 & LM87_ALARM_TEMP_INT) ? " INTERNAL" : "",
  96. (alarms1 & LM87_ALARM_TEMP_EXT1) ? " EXTERNAL" : "");
  97. return -ERANGE;
  98. }
  99. return 0;
  100. }
  101. #else /* !CONFIG_SENSORS_LM87 */
  102. static inline int
  103. efx_init_lm87(struct efx_nic *efx, struct i2c_board_info *info,
  104. const u8 *reg_values)
  105. {
  106. return 0;
  107. }
  108. static inline void efx_fini_lm87(struct efx_nic *efx)
  109. {
  110. }
  111. static inline int efx_check_lm87(struct efx_nic *efx, unsigned mask)
  112. {
  113. return 0;
  114. }
  115. #endif /* CONFIG_SENSORS_LM87 */
  116. /*****************************************************************************
  117. * Support for the SFE4001 and SFN4111T NICs.
  118. *
  119. * The SFE4001 does not power-up fully at reset due to its high power
  120. * consumption. We control its power via a PCA9539 I/O expander.
  121. * Both boards have a MAX6647 temperature monitor which we expose to
  122. * the lm90 driver.
  123. *
  124. * This also provides minimal support for reflashing the PHY, which is
  125. * initiated by resetting it with the FLASH_CFG_1 pin pulled down.
  126. * On SFE4001 rev A2 and later this is connected to the 3V3X output of
  127. * the IO-expander; on the SFN4111T it is connected to Falcon's GPIO3.
  128. * We represent reflash mode as PHY_MODE_SPECIAL and make it mutually
  129. * exclusive with the network device being open.
  130. */
  131. /**************************************************************************
  132. * Support for I2C IO Expander device on SFE4001
  133. */
  134. #define PCA9539 0x74
  135. #define P0_IN 0x00
  136. #define P0_OUT 0x02
  137. #define P0_INVERT 0x04
  138. #define P0_CONFIG 0x06
  139. #define P0_EN_1V0X_LBN 0
  140. #define P0_EN_1V0X_WIDTH 1
  141. #define P0_EN_1V2_LBN 1
  142. #define P0_EN_1V2_WIDTH 1
  143. #define P0_EN_2V5_LBN 2
  144. #define P0_EN_2V5_WIDTH 1
  145. #define P0_EN_3V3X_LBN 3
  146. #define P0_EN_3V3X_WIDTH 1
  147. #define P0_EN_5V_LBN 4
  148. #define P0_EN_5V_WIDTH 1
  149. #define P0_SHORTEN_JTAG_LBN 5
  150. #define P0_SHORTEN_JTAG_WIDTH 1
  151. #define P0_X_TRST_LBN 6
  152. #define P0_X_TRST_WIDTH 1
  153. #define P0_DSP_RESET_LBN 7
  154. #define P0_DSP_RESET_WIDTH 1
  155. #define P1_IN 0x01
  156. #define P1_OUT 0x03
  157. #define P1_INVERT 0x05
  158. #define P1_CONFIG 0x07
  159. #define P1_AFE_PWD_LBN 0
  160. #define P1_AFE_PWD_WIDTH 1
  161. #define P1_DSP_PWD25_LBN 1
  162. #define P1_DSP_PWD25_WIDTH 1
  163. #define P1_RESERVED_LBN 2
  164. #define P1_RESERVED_WIDTH 2
  165. #define P1_SPARE_LBN 4
  166. #define P1_SPARE_WIDTH 4
  167. /* Temperature Sensor */
  168. #define MAX664X_REG_RSL 0x02
  169. #define MAX664X_REG_WLHO 0x0B
  170. static void sfe4001_poweroff(struct efx_nic *efx)
  171. {
  172. struct i2c_client *ioexp_client = falcon_board(efx)->ioexp_client;
  173. struct i2c_client *hwmon_client = falcon_board(efx)->hwmon_client;
  174. /* Turn off all power rails and disable outputs */
  175. i2c_smbus_write_byte_data(ioexp_client, P0_OUT, 0xff);
  176. i2c_smbus_write_byte_data(ioexp_client, P1_CONFIG, 0xff);
  177. i2c_smbus_write_byte_data(ioexp_client, P0_CONFIG, 0xff);
  178. /* Clear any over-temperature alert */
  179. i2c_smbus_read_byte_data(hwmon_client, MAX664X_REG_RSL);
  180. }
  181. static int sfe4001_poweron(struct efx_nic *efx)
  182. {
  183. struct i2c_client *ioexp_client = falcon_board(efx)->ioexp_client;
  184. struct i2c_client *hwmon_client = falcon_board(efx)->hwmon_client;
  185. unsigned int i, j;
  186. int rc;
  187. u8 out;
  188. /* Clear any previous over-temperature alert */
  189. rc = i2c_smbus_read_byte_data(hwmon_client, MAX664X_REG_RSL);
  190. if (rc < 0)
  191. return rc;
  192. /* Enable port 0 and port 1 outputs on IO expander */
  193. rc = i2c_smbus_write_byte_data(ioexp_client, P0_CONFIG, 0x00);
  194. if (rc)
  195. return rc;
  196. rc = i2c_smbus_write_byte_data(ioexp_client, P1_CONFIG,
  197. 0xff & ~(1 << P1_SPARE_LBN));
  198. if (rc)
  199. goto fail_on;
  200. /* If PHY power is on, turn it all off and wait 1 second to
  201. * ensure a full reset.
  202. */
  203. rc = i2c_smbus_read_byte_data(ioexp_client, P0_OUT);
  204. if (rc < 0)
  205. goto fail_on;
  206. out = 0xff & ~((0 << P0_EN_1V2_LBN) | (0 << P0_EN_2V5_LBN) |
  207. (0 << P0_EN_3V3X_LBN) | (0 << P0_EN_5V_LBN) |
  208. (0 << P0_EN_1V0X_LBN));
  209. if (rc != out) {
  210. EFX_INFO(efx, "power-cycling PHY\n");
  211. rc = i2c_smbus_write_byte_data(ioexp_client, P0_OUT, out);
  212. if (rc)
  213. goto fail_on;
  214. schedule_timeout_uninterruptible(HZ);
  215. }
  216. for (i = 0; i < 20; ++i) {
  217. /* Turn on 1.2V, 2.5V, 3.3V and 5V power rails */
  218. out = 0xff & ~((1 << P0_EN_1V2_LBN) | (1 << P0_EN_2V5_LBN) |
  219. (1 << P0_EN_3V3X_LBN) | (1 << P0_EN_5V_LBN) |
  220. (1 << P0_X_TRST_LBN));
  221. if (efx->phy_mode & PHY_MODE_SPECIAL)
  222. out |= 1 << P0_EN_3V3X_LBN;
  223. rc = i2c_smbus_write_byte_data(ioexp_client, P0_OUT, out);
  224. if (rc)
  225. goto fail_on;
  226. msleep(10);
  227. /* Turn on 1V power rail */
  228. out &= ~(1 << P0_EN_1V0X_LBN);
  229. rc = i2c_smbus_write_byte_data(ioexp_client, P0_OUT, out);
  230. if (rc)
  231. goto fail_on;
  232. EFX_INFO(efx, "waiting for DSP boot (attempt %d)...\n", i);
  233. /* In flash config mode, DSP does not turn on AFE, so
  234. * just wait 1 second.
  235. */
  236. if (efx->phy_mode & PHY_MODE_SPECIAL) {
  237. schedule_timeout_uninterruptible(HZ);
  238. return 0;
  239. }
  240. for (j = 0; j < 10; ++j) {
  241. msleep(100);
  242. /* Check DSP has asserted AFE power line */
  243. rc = i2c_smbus_read_byte_data(ioexp_client, P1_IN);
  244. if (rc < 0)
  245. goto fail_on;
  246. if (rc & (1 << P1_AFE_PWD_LBN))
  247. return 0;
  248. }
  249. }
  250. EFX_INFO(efx, "timed out waiting for DSP boot\n");
  251. rc = -ETIMEDOUT;
  252. fail_on:
  253. sfe4001_poweroff(efx);
  254. return rc;
  255. }
  256. static int sfn4111t_reset(struct efx_nic *efx)
  257. {
  258. struct falcon_board *board = falcon_board(efx);
  259. efx_oword_t reg;
  260. /* GPIO 3 and the GPIO register are shared with I2C, so block that */
  261. i2c_lock_adapter(&board->i2c_adap);
  262. /* Pull RST_N (GPIO 2) low then let it up again, setting the
  263. * FLASH_CFG_1 strap (GPIO 3) appropriately. Only change the
  264. * output enables; the output levels should always be 0 (low)
  265. * and we rely on external pull-ups. */
  266. efx_reado(efx, &reg, FR_AB_GPIO_CTL);
  267. EFX_SET_OWORD_FIELD(reg, FRF_AB_GPIO2_OEN, true);
  268. efx_writeo(efx, &reg, FR_AB_GPIO_CTL);
  269. msleep(1000);
  270. EFX_SET_OWORD_FIELD(reg, FRF_AB_GPIO2_OEN, false);
  271. EFX_SET_OWORD_FIELD(reg, FRF_AB_GPIO3_OEN,
  272. !!(efx->phy_mode & PHY_MODE_SPECIAL));
  273. efx_writeo(efx, &reg, FR_AB_GPIO_CTL);
  274. msleep(1);
  275. i2c_unlock_adapter(&board->i2c_adap);
  276. ssleep(1);
  277. return 0;
  278. }
  279. static ssize_t show_phy_flash_cfg(struct device *dev,
  280. struct device_attribute *attr, char *buf)
  281. {
  282. struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
  283. return sprintf(buf, "%d\n", !!(efx->phy_mode & PHY_MODE_SPECIAL));
  284. }
  285. static ssize_t set_phy_flash_cfg(struct device *dev,
  286. struct device_attribute *attr,
  287. const char *buf, size_t count)
  288. {
  289. struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
  290. enum efx_phy_mode old_mode, new_mode;
  291. int err;
  292. rtnl_lock();
  293. old_mode = efx->phy_mode;
  294. if (count == 0 || *buf == '0')
  295. new_mode = old_mode & ~PHY_MODE_SPECIAL;
  296. else
  297. new_mode = PHY_MODE_SPECIAL;
  298. if (old_mode == new_mode) {
  299. err = 0;
  300. } else if (efx->state != STATE_RUNNING || netif_running(efx->net_dev)) {
  301. err = -EBUSY;
  302. } else {
  303. /* Reset the PHY, reconfigure the MAC and enable/disable
  304. * MAC stats accordingly. */
  305. efx->phy_mode = new_mode;
  306. if (new_mode & PHY_MODE_SPECIAL)
  307. falcon_stop_nic_stats(efx);
  308. if (falcon_board(efx)->type->id == FALCON_BOARD_SFE4001)
  309. err = sfe4001_poweron(efx);
  310. else
  311. err = sfn4111t_reset(efx);
  312. if (!err)
  313. err = efx_reconfigure_port(efx);
  314. if (!(new_mode & PHY_MODE_SPECIAL))
  315. falcon_start_nic_stats(efx);
  316. }
  317. rtnl_unlock();
  318. return err ? err : count;
  319. }
  320. static DEVICE_ATTR(phy_flash_cfg, 0644, show_phy_flash_cfg, set_phy_flash_cfg);
  321. static void sfe4001_fini(struct efx_nic *efx)
  322. {
  323. struct falcon_board *board = falcon_board(efx);
  324. EFX_INFO(efx, "%s\n", __func__);
  325. device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_flash_cfg);
  326. sfe4001_poweroff(efx);
  327. i2c_unregister_device(board->ioexp_client);
  328. i2c_unregister_device(board->hwmon_client);
  329. }
  330. static int sfe4001_check_hw(struct efx_nic *efx)
  331. {
  332. s32 status;
  333. /* If XAUI link is up then do not monitor */
  334. if (EFX_WORKAROUND_7884(efx) && !efx->xmac_poll_required)
  335. return 0;
  336. /* Check the powered status of the PHY. Lack of power implies that
  337. * the MAX6647 has shut down power to it, probably due to a temp.
  338. * alarm. Reading the power status rather than the MAX6647 status
  339. * directly because the later is read-to-clear and would thus
  340. * start to power up the PHY again when polled, causing us to blip
  341. * the power undesirably.
  342. * We know we can read from the IO expander because we did
  343. * it during power-on. Assume failure now is bad news. */
  344. status = i2c_smbus_read_byte_data(falcon_board(efx)->ioexp_client, P1_IN);
  345. if (status >= 0 &&
  346. (status & ((1 << P1_AFE_PWD_LBN) | (1 << P1_DSP_PWD25_LBN))) != 0)
  347. return 0;
  348. /* Use board power control, not PHY power control */
  349. sfe4001_poweroff(efx);
  350. efx->phy_mode = PHY_MODE_OFF;
  351. return (status < 0) ? -EIO : -ERANGE;
  352. }
  353. static struct i2c_board_info sfe4001_hwmon_info = {
  354. I2C_BOARD_INFO("max6647", 0x4e),
  355. };
  356. /* This board uses an I2C expander to provider power to the PHY, which needs to
  357. * be turned on before the PHY can be used.
  358. * Context: Process context, rtnl lock held
  359. */
  360. static int sfe4001_init(struct efx_nic *efx)
  361. {
  362. struct falcon_board *board = falcon_board(efx);
  363. int rc;
  364. #if defined(CONFIG_SENSORS_LM90) || defined(CONFIG_SENSORS_LM90_MODULE)
  365. board->hwmon_client =
  366. i2c_new_device(&board->i2c_adap, &sfe4001_hwmon_info);
  367. #else
  368. board->hwmon_client =
  369. i2c_new_dummy(&board->i2c_adap, sfe4001_hwmon_info.addr);
  370. #endif
  371. if (!board->hwmon_client)
  372. return -EIO;
  373. /* Raise board/PHY high limit from 85 to 90 degrees Celsius */
  374. rc = i2c_smbus_write_byte_data(board->hwmon_client,
  375. MAX664X_REG_WLHO, 90);
  376. if (rc)
  377. goto fail_hwmon;
  378. board->ioexp_client = i2c_new_dummy(&board->i2c_adap, PCA9539);
  379. if (!board->ioexp_client) {
  380. rc = -EIO;
  381. goto fail_hwmon;
  382. }
  383. if (efx->phy_mode & PHY_MODE_SPECIAL) {
  384. /* PHY won't generate a 156.25 MHz clock and MAC stats fetch
  385. * will fail. */
  386. falcon_stop_nic_stats(efx);
  387. }
  388. rc = sfe4001_poweron(efx);
  389. if (rc)
  390. goto fail_ioexp;
  391. rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_flash_cfg);
  392. if (rc)
  393. goto fail_on;
  394. EFX_INFO(efx, "PHY is powered on\n");
  395. return 0;
  396. fail_on:
  397. sfe4001_poweroff(efx);
  398. fail_ioexp:
  399. i2c_unregister_device(board->ioexp_client);
  400. fail_hwmon:
  401. i2c_unregister_device(board->hwmon_client);
  402. return rc;
  403. }
  404. static int sfn4111t_check_hw(struct efx_nic *efx)
  405. {
  406. s32 status;
  407. /* If XAUI link is up then do not monitor */
  408. if (EFX_WORKAROUND_7884(efx) && !efx->xmac_poll_required)
  409. return 0;
  410. /* Test LHIGH, RHIGH, FAULT, EOT and IOT alarms */
  411. status = i2c_smbus_read_byte_data(falcon_board(efx)->hwmon_client,
  412. MAX664X_REG_RSL);
  413. if (status < 0)
  414. return -EIO;
  415. if (status & 0x57)
  416. return -ERANGE;
  417. return 0;
  418. }
  419. static void sfn4111t_fini(struct efx_nic *efx)
  420. {
  421. EFX_INFO(efx, "%s\n", __func__);
  422. device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_flash_cfg);
  423. i2c_unregister_device(falcon_board(efx)->hwmon_client);
  424. }
  425. static struct i2c_board_info sfn4111t_a0_hwmon_info = {
  426. I2C_BOARD_INFO("max6647", 0x4e),
  427. };
  428. static struct i2c_board_info sfn4111t_r5_hwmon_info = {
  429. I2C_BOARD_INFO("max6646", 0x4d),
  430. };
  431. static void sfn4111t_init_phy(struct efx_nic *efx)
  432. {
  433. if (!(efx->phy_mode & PHY_MODE_SPECIAL)) {
  434. if (sft9001_wait_boot(efx) != -EINVAL)
  435. return;
  436. efx->phy_mode = PHY_MODE_SPECIAL;
  437. falcon_stop_nic_stats(efx);
  438. }
  439. sfn4111t_reset(efx);
  440. sft9001_wait_boot(efx);
  441. }
  442. static int sfn4111t_init(struct efx_nic *efx)
  443. {
  444. struct falcon_board *board = falcon_board(efx);
  445. int rc;
  446. board->hwmon_client =
  447. i2c_new_device(&board->i2c_adap,
  448. (board->minor < 5) ?
  449. &sfn4111t_a0_hwmon_info :
  450. &sfn4111t_r5_hwmon_info);
  451. if (!board->hwmon_client)
  452. return -EIO;
  453. rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_flash_cfg);
  454. if (rc)
  455. goto fail_hwmon;
  456. if (efx->phy_mode & PHY_MODE_SPECIAL)
  457. /* PHY may not generate a 156.25 MHz clock and MAC
  458. * stats fetch will fail. */
  459. falcon_stop_nic_stats(efx);
  460. return 0;
  461. fail_hwmon:
  462. i2c_unregister_device(board->hwmon_client);
  463. return rc;
  464. }
  465. /*****************************************************************************
  466. * Support for the SFE4002
  467. *
  468. */
  469. static u8 sfe4002_lm87_channel = 0x03; /* use AIN not FAN inputs */
  470. static const u8 sfe4002_lm87_regs[] = {
  471. LM87_IN_LIMITS(0, 0x7c, 0x99), /* 2.5V: 1.8V +/- 10% */
  472. LM87_IN_LIMITS(1, 0x4c, 0x5e), /* Vccp1: 1.2V +/- 10% */
  473. LM87_IN_LIMITS(2, 0xac, 0xd4), /* 3.3V: 3.3V +/- 10% */
  474. LM87_IN_LIMITS(3, 0xac, 0xd4), /* 5V: 5.0V +/- 10% */
  475. LM87_IN_LIMITS(4, 0xac, 0xe0), /* 12V: 10.8-14V */
  476. LM87_IN_LIMITS(5, 0x3f, 0x4f), /* Vccp2: 1.0V +/- 10% */
  477. LM87_AIN_LIMITS(0, 0x98, 0xbb), /* AIN1: 1.66V +/- 10% */
  478. LM87_AIN_LIMITS(1, 0x8a, 0xa9), /* AIN2: 1.5V +/- 10% */
  479. LM87_TEMP_INT_LIMITS(0, 80 + FALCON_BOARD_TEMP_BIAS),
  480. LM87_TEMP_EXT1_LIMITS(0, FALCON_JUNC_TEMP_MAX),
  481. 0
  482. };
  483. static struct i2c_board_info sfe4002_hwmon_info = {
  484. I2C_BOARD_INFO("lm87", 0x2e),
  485. .platform_data = &sfe4002_lm87_channel,
  486. };
  487. /****************************************************************************/
  488. /* LED allocations. Note that on rev A0 boards the schematic and the reality
  489. * differ: red and green are swapped. Below is the fixed (A1) layout (there
  490. * are only 3 A0 boards in existence, so no real reason to make this
  491. * conditional).
  492. */
  493. #define SFE4002_FAULT_LED (2) /* Red */
  494. #define SFE4002_RX_LED (0) /* Green */
  495. #define SFE4002_TX_LED (1) /* Amber */
  496. static void sfe4002_init_phy(struct efx_nic *efx)
  497. {
  498. /* Set the TX and RX LEDs to reflect status and activity, and the
  499. * fault LED off */
  500. falcon_qt202x_set_led(efx, SFE4002_TX_LED,
  501. QUAKE_LED_TXLINK | QUAKE_LED_LINK_ACTSTAT);
  502. falcon_qt202x_set_led(efx, SFE4002_RX_LED,
  503. QUAKE_LED_RXLINK | QUAKE_LED_LINK_ACTSTAT);
  504. falcon_qt202x_set_led(efx, SFE4002_FAULT_LED, QUAKE_LED_OFF);
  505. }
  506. static void sfe4002_set_id_led(struct efx_nic *efx, enum efx_led_mode mode)
  507. {
  508. falcon_qt202x_set_led(
  509. efx, SFE4002_FAULT_LED,
  510. (mode == EFX_LED_ON) ? QUAKE_LED_ON : QUAKE_LED_OFF);
  511. }
  512. static int sfe4002_check_hw(struct efx_nic *efx)
  513. {
  514. struct falcon_board *board = falcon_board(efx);
  515. /* A0 board rev. 4002s report a temperature fault the whole time
  516. * (bad sensor) so we mask it out. */
  517. unsigned alarm_mask =
  518. (board->major == 0 && board->minor == 0) ?
  519. ~LM87_ALARM_TEMP_EXT1 : ~0;
  520. return efx_check_lm87(efx, alarm_mask);
  521. }
  522. static int sfe4002_init(struct efx_nic *efx)
  523. {
  524. return efx_init_lm87(efx, &sfe4002_hwmon_info, sfe4002_lm87_regs);
  525. }
  526. /*****************************************************************************
  527. * Support for the SFN4112F
  528. *
  529. */
  530. static u8 sfn4112f_lm87_channel = 0x03; /* use AIN not FAN inputs */
  531. static const u8 sfn4112f_lm87_regs[] = {
  532. LM87_IN_LIMITS(0, 0x7c, 0x99), /* 2.5V: 1.8V +/- 10% */
  533. LM87_IN_LIMITS(1, 0x4c, 0x5e), /* Vccp1: 1.2V +/- 10% */
  534. LM87_IN_LIMITS(2, 0xac, 0xd4), /* 3.3V: 3.3V +/- 10% */
  535. LM87_IN_LIMITS(4, 0xac, 0xe0), /* 12V: 10.8-14V */
  536. LM87_IN_LIMITS(5, 0x3f, 0x4f), /* Vccp2: 1.0V +/- 10% */
  537. LM87_AIN_LIMITS(1, 0x8a, 0xa9), /* AIN2: 1.5V +/- 10% */
  538. LM87_TEMP_INT_LIMITS(0, 60 + FALCON_BOARD_TEMP_BIAS),
  539. LM87_TEMP_EXT1_LIMITS(0, FALCON_JUNC_TEMP_MAX),
  540. 0
  541. };
  542. static struct i2c_board_info sfn4112f_hwmon_info = {
  543. I2C_BOARD_INFO("lm87", 0x2e),
  544. .platform_data = &sfn4112f_lm87_channel,
  545. };
  546. #define SFN4112F_ACT_LED 0
  547. #define SFN4112F_LINK_LED 1
  548. static void sfn4112f_init_phy(struct efx_nic *efx)
  549. {
  550. falcon_qt202x_set_led(efx, SFN4112F_ACT_LED,
  551. QUAKE_LED_RXLINK | QUAKE_LED_LINK_ACT);
  552. falcon_qt202x_set_led(efx, SFN4112F_LINK_LED,
  553. QUAKE_LED_RXLINK | QUAKE_LED_LINK_STAT);
  554. }
  555. static void sfn4112f_set_id_led(struct efx_nic *efx, enum efx_led_mode mode)
  556. {
  557. int reg;
  558. switch (mode) {
  559. case EFX_LED_OFF:
  560. reg = QUAKE_LED_OFF;
  561. break;
  562. case EFX_LED_ON:
  563. reg = QUAKE_LED_ON;
  564. break;
  565. default:
  566. reg = QUAKE_LED_RXLINK | QUAKE_LED_LINK_STAT;
  567. break;
  568. }
  569. falcon_qt202x_set_led(efx, SFN4112F_LINK_LED, reg);
  570. }
  571. static int sfn4112f_check_hw(struct efx_nic *efx)
  572. {
  573. /* Mask out unused sensors */
  574. return efx_check_lm87(efx, ~0x48);
  575. }
  576. static int sfn4112f_init(struct efx_nic *efx)
  577. {
  578. return efx_init_lm87(efx, &sfn4112f_hwmon_info, sfn4112f_lm87_regs);
  579. }
  580. static const struct falcon_board_type board_types[] = {
  581. {
  582. .id = FALCON_BOARD_SFE4001,
  583. .ref_model = "SFE4001",
  584. .gen_type = "10GBASE-T adapter",
  585. .init = sfe4001_init,
  586. .init_phy = efx_port_dummy_op_void,
  587. .fini = sfe4001_fini,
  588. .set_id_led = tenxpress_set_id_led,
  589. .monitor = sfe4001_check_hw,
  590. },
  591. {
  592. .id = FALCON_BOARD_SFE4002,
  593. .ref_model = "SFE4002",
  594. .gen_type = "XFP adapter",
  595. .init = sfe4002_init,
  596. .init_phy = sfe4002_init_phy,
  597. .fini = efx_fini_lm87,
  598. .set_id_led = sfe4002_set_id_led,
  599. .monitor = sfe4002_check_hw,
  600. },
  601. {
  602. .id = FALCON_BOARD_SFN4111T,
  603. .ref_model = "SFN4111T",
  604. .gen_type = "100/1000/10GBASE-T adapter",
  605. .init = sfn4111t_init,
  606. .init_phy = sfn4111t_init_phy,
  607. .fini = sfn4111t_fini,
  608. .set_id_led = tenxpress_set_id_led,
  609. .monitor = sfn4111t_check_hw,
  610. },
  611. {
  612. .id = FALCON_BOARD_SFN4112F,
  613. .ref_model = "SFN4112F",
  614. .gen_type = "SFP+ adapter",
  615. .init = sfn4112f_init,
  616. .init_phy = sfn4112f_init_phy,
  617. .fini = efx_fini_lm87,
  618. .set_id_led = sfn4112f_set_id_led,
  619. .monitor = sfn4112f_check_hw,
  620. },
  621. };
  622. static const struct falcon_board_type falcon_dummy_board = {
  623. .init = efx_port_dummy_op_int,
  624. .init_phy = efx_port_dummy_op_void,
  625. .fini = efx_port_dummy_op_void,
  626. .set_id_led = efx_port_dummy_op_set_id_led,
  627. .monitor = efx_port_dummy_op_int,
  628. };
  629. void falcon_probe_board(struct efx_nic *efx, u16 revision_info)
  630. {
  631. struct falcon_board *board = falcon_board(efx);
  632. u8 type_id = FALCON_BOARD_TYPE(revision_info);
  633. int i;
  634. board->major = FALCON_BOARD_MAJOR(revision_info);
  635. board->minor = FALCON_BOARD_MINOR(revision_info);
  636. for (i = 0; i < ARRAY_SIZE(board_types); i++)
  637. if (board_types[i].id == type_id)
  638. board->type = &board_types[i];
  639. if (board->type) {
  640. EFX_INFO(efx, "board is %s rev %c%d\n",
  641. (efx->pci_dev->subsystem_vendor == EFX_VENDID_SFC)
  642. ? board->type->ref_model : board->type->gen_type,
  643. 'A' + board->major, board->minor);
  644. } else {
  645. EFX_ERR(efx, "unknown board type %d\n", type_id);
  646. board->type = &falcon_dummy_board;
  647. }
  648. }