falcon_boards.c 22 KB

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