mv88x201x.c 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. /*****************************************************************************
  2. * *
  3. * File: mv88x201x.c *
  4. * $Revision: 1.12 $ *
  5. * $Date: 2005/04/15 19:27:14 $ *
  6. * Description: *
  7. * Marvell PHY (mv88x201x) functionality. *
  8. * part of the Chelsio 10Gb Ethernet Driver. *
  9. * *
  10. * This program is free software; you can redistribute it and/or modify *
  11. * it under the terms of the GNU General Public License, version 2, as *
  12. * published by the Free Software Foundation. *
  13. * *
  14. * You should have received a copy of the GNU General Public License along *
  15. * with this program; if not, write to the Free Software Foundation, Inc., *
  16. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
  17. * *
  18. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED *
  19. * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF *
  20. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. *
  21. * *
  22. * http://www.chelsio.com *
  23. * *
  24. * Copyright (c) 2003 - 2005 Chelsio Communications, Inc. *
  25. * All rights reserved. *
  26. * *
  27. * Maintainers: maintainers@chelsio.com *
  28. * *
  29. * Authors: Dimitrios Michailidis <dm@chelsio.com> *
  30. * Tina Yang <tainay@chelsio.com> *
  31. * Felix Marti <felix@chelsio.com> *
  32. * Scott Bardone <sbardone@chelsio.com> *
  33. * Kurt Ottaway <kottaway@chelsio.com> *
  34. * Frank DiMambro <frank@chelsio.com> *
  35. * *
  36. * History: *
  37. * *
  38. ****************************************************************************/
  39. #include "cphy.h"
  40. #include "elmer0.h"
  41. /*
  42. * The 88x2010 Rev C. requires some link status registers * to be read
  43. * twice in order to get the right values. Future * revisions will fix
  44. * this problem and then this macro * can disappear.
  45. */
  46. #define MV88x2010_LINK_STATUS_BUGS 1
  47. static int led_init(struct cphy *cphy)
  48. {
  49. /* Setup the LED registers so we can turn on/off.
  50. * Writing these bits maps control to another
  51. * register. mmd(0x1) addr(0x7)
  52. */
  53. mdio_write(cphy, 0x3, 0x8304, 0xdddd);
  54. return 0;
  55. }
  56. static int led_link(struct cphy *cphy, u32 do_enable)
  57. {
  58. u32 led = 0;
  59. #define LINK_ENABLE_BIT 0x1
  60. mdio_read(cphy, 0x1, 0x7, &led);
  61. if (do_enable & LINK_ENABLE_BIT) {
  62. led |= LINK_ENABLE_BIT;
  63. mdio_write(cphy, 0x1, 0x7, led);
  64. } else {
  65. led &= ~LINK_ENABLE_BIT;
  66. mdio_write(cphy, 0x1, 0x7, led);
  67. }
  68. return 0;
  69. }
  70. /* Port Reset */
  71. static int mv88x201x_reset(struct cphy *cphy, int wait)
  72. {
  73. /* This can be done through registers. It is not required since
  74. * a full chip reset is used.
  75. */
  76. return 0;
  77. }
  78. static int mv88x201x_interrupt_enable(struct cphy *cphy)
  79. {
  80. u32 elmer;
  81. /* Enable PHY LASI interrupts. */
  82. mdio_write(cphy, 0x1, 0x9002, 0x1);
  83. /* Enable Marvell interrupts through Elmer0. */
  84. t1_tpi_read(cphy->adapter, A_ELMER0_INT_ENABLE, &elmer);
  85. elmer |= ELMER0_GP_BIT6;
  86. t1_tpi_write(cphy->adapter, A_ELMER0_INT_ENABLE, elmer);
  87. return 0;
  88. }
  89. static int mv88x201x_interrupt_disable(struct cphy *cphy)
  90. {
  91. u32 elmer;
  92. /* Disable PHY LASI interrupts. */
  93. mdio_write(cphy, 0x1, 0x9002, 0x0);
  94. /* Disable Marvell interrupts through Elmer0. */
  95. t1_tpi_read(cphy->adapter, A_ELMER0_INT_ENABLE, &elmer);
  96. elmer &= ~ELMER0_GP_BIT6;
  97. t1_tpi_write(cphy->adapter, A_ELMER0_INT_ENABLE, elmer);
  98. return 0;
  99. }
  100. static int mv88x201x_interrupt_clear(struct cphy *cphy)
  101. {
  102. u32 elmer;
  103. u32 val;
  104. #ifdef MV88x2010_LINK_STATUS_BUGS
  105. /* Required to read twice before clear takes affect. */
  106. mdio_read(cphy, 0x1, 0x9003, &val);
  107. mdio_read(cphy, 0x1, 0x9004, &val);
  108. mdio_read(cphy, 0x1, 0x9005, &val);
  109. /* Read this register after the others above it else
  110. * the register doesn't clear correctly.
  111. */
  112. mdio_read(cphy, 0x1, 0x1, &val);
  113. #endif
  114. /* Clear link status. */
  115. mdio_read(cphy, 0x1, 0x1, &val);
  116. /* Clear PHY LASI interrupts. */
  117. mdio_read(cphy, 0x1, 0x9005, &val);
  118. #ifdef MV88x2010_LINK_STATUS_BUGS
  119. /* Do it again. */
  120. mdio_read(cphy, 0x1, 0x9003, &val);
  121. mdio_read(cphy, 0x1, 0x9004, &val);
  122. #endif
  123. /* Clear Marvell interrupts through Elmer0. */
  124. t1_tpi_read(cphy->adapter, A_ELMER0_INT_CAUSE, &elmer);
  125. elmer |= ELMER0_GP_BIT6;
  126. t1_tpi_write(cphy->adapter, A_ELMER0_INT_CAUSE, elmer);
  127. return 0;
  128. }
  129. static int mv88x201x_interrupt_handler(struct cphy *cphy)
  130. {
  131. /* Clear interrupts */
  132. mv88x201x_interrupt_clear(cphy);
  133. /* We have only enabled link change interrupts and so
  134. * cphy_cause must be a link change interrupt.
  135. */
  136. return cphy_cause_link_change;
  137. }
  138. static int mv88x201x_set_loopback(struct cphy *cphy, int on)
  139. {
  140. return 0;
  141. }
  142. static int mv88x201x_get_link_status(struct cphy *cphy, int *link_ok,
  143. int *speed, int *duplex, int *fc)
  144. {
  145. u32 val = 0;
  146. #define LINK_STATUS_BIT 0x4
  147. if (link_ok) {
  148. /* Read link status. */
  149. mdio_read(cphy, 0x1, 0x1, &val);
  150. val &= LINK_STATUS_BIT;
  151. *link_ok = (val == LINK_STATUS_BIT);
  152. /* Turn on/off Link LED */
  153. led_link(cphy, *link_ok);
  154. }
  155. if (speed)
  156. *speed = SPEED_10000;
  157. if (duplex)
  158. *duplex = DUPLEX_FULL;
  159. if (fc)
  160. *fc = PAUSE_RX | PAUSE_TX;
  161. return 0;
  162. }
  163. static void mv88x201x_destroy(struct cphy *cphy)
  164. {
  165. kfree(cphy);
  166. }
  167. static struct cphy_ops mv88x201x_ops = {
  168. .destroy = mv88x201x_destroy,
  169. .reset = mv88x201x_reset,
  170. .interrupt_enable = mv88x201x_interrupt_enable,
  171. .interrupt_disable = mv88x201x_interrupt_disable,
  172. .interrupt_clear = mv88x201x_interrupt_clear,
  173. .interrupt_handler = mv88x201x_interrupt_handler,
  174. .get_link_status = mv88x201x_get_link_status,
  175. .set_loopback = mv88x201x_set_loopback,
  176. };
  177. static struct cphy *mv88x201x_phy_create(adapter_t *adapter, int phy_addr,
  178. struct mdio_ops *mdio_ops)
  179. {
  180. u32 val;
  181. struct cphy *cphy = kmalloc(sizeof(*cphy), GFP_KERNEL);
  182. if (!cphy)
  183. return NULL;
  184. memset(cphy, 0, sizeof(*cphy));
  185. cphy_init(cphy, adapter, phy_addr, &mv88x201x_ops, mdio_ops);
  186. /* Commands the PHY to enable XFP's clock. */
  187. mdio_read(cphy, 0x3, 0x8300, &val);
  188. mdio_write(cphy, 0x3, 0x8300, val | 1);
  189. /* Clear link status. Required because of a bug in the PHY. */
  190. mdio_read(cphy, 0x1, 0x8, &val);
  191. mdio_read(cphy, 0x3, 0x8, &val);
  192. /* Allows for Link,Ack LED turn on/off */
  193. led_init(cphy);
  194. return cphy;
  195. }
  196. /* Chip Reset */
  197. static int mv88x201x_phy_reset(adapter_t *adapter)
  198. {
  199. u32 val;
  200. t1_tpi_read(adapter, A_ELMER0_GPO, &val);
  201. val &= ~4;
  202. t1_tpi_write(adapter, A_ELMER0_GPO, val);
  203. msleep(100);
  204. t1_tpi_write(adapter, A_ELMER0_GPO, val | 4);
  205. msleep(1000);
  206. /* Now lets enable the Laser. Delay 100us */
  207. t1_tpi_read(adapter, A_ELMER0_GPO, &val);
  208. val |= 0x8000;
  209. t1_tpi_write(adapter, A_ELMER0_GPO, val);
  210. udelay(100);
  211. return 0;
  212. }
  213. struct gphy t1_mv88x201x_ops = {
  214. mv88x201x_phy_create,
  215. mv88x201x_phy_reset
  216. };