gianfar_phy.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /*
  2. * drivers/net/gianfar_phy.h
  3. *
  4. * Gianfar Ethernet Driver -- PHY handling
  5. * Driver for FEC on MPC8540 and TSEC on MPC8540/MPC8560
  6. * Based on 8260_io/fcc_enet.c
  7. *
  8. * Author: Andy Fleming
  9. * Maintainer: Kumar Gala (kumar.gala@freescale.com)
  10. *
  11. * Copyright (c) 2002-2004 Freescale Semiconductor, Inc.
  12. *
  13. * This program is free software; you can redistribute it and/or modify it
  14. * under the terms of the GNU General Public License as published by the
  15. * Free Software Foundation; either version 2 of the License, or (at your
  16. * option) any later version.
  17. *
  18. */
  19. #ifndef __GIANFAR_PHY_H
  20. #define __GIANFAR_PHY_H
  21. #define MII_end ((u32)-2)
  22. #define MII_read ((u32)-1)
  23. #define MIIMIND_BUSY 0x00000001
  24. #define MIIMIND_NOTVALID 0x00000004
  25. #define GFAR_AN_TIMEOUT 2000
  26. /* 1000BT control (Marvell & BCM54xx at least) */
  27. #define MII_1000BASETCONTROL 0x09
  28. #define MII_1000BASETCONTROL_FULLDUPLEXCAP 0x0200
  29. #define MII_1000BASETCONTROL_HALFDUPLEXCAP 0x0100
  30. /* Cicada Extended Control Register 1 */
  31. #define MII_CIS8201_EXT_CON1 0x17
  32. #define MII_CIS8201_EXTCON1_INIT 0x0000
  33. /* Cicada Interrupt Mask Register */
  34. #define MII_CIS8201_IMASK 0x19
  35. #define MII_CIS8201_IMASK_IEN 0x8000
  36. #define MII_CIS8201_IMASK_SPEED 0x4000
  37. #define MII_CIS8201_IMASK_LINK 0x2000
  38. #define MII_CIS8201_IMASK_DUPLEX 0x1000
  39. #define MII_CIS8201_IMASK_MASK 0xf000
  40. /* Cicada Interrupt Status Register */
  41. #define MII_CIS8201_ISTAT 0x1a
  42. #define MII_CIS8201_ISTAT_STATUS 0x8000
  43. #define MII_CIS8201_ISTAT_SPEED 0x4000
  44. #define MII_CIS8201_ISTAT_LINK 0x2000
  45. #define MII_CIS8201_ISTAT_DUPLEX 0x1000
  46. /* Cicada Auxiliary Control/Status Register */
  47. #define MII_CIS8201_AUX_CONSTAT 0x1c
  48. #define MII_CIS8201_AUXCONSTAT_INIT 0x0004
  49. #define MII_CIS8201_AUXCONSTAT_DUPLEX 0x0020
  50. #define MII_CIS8201_AUXCONSTAT_SPEED 0x0018
  51. #define MII_CIS8201_AUXCONSTAT_GBIT 0x0010
  52. #define MII_CIS8201_AUXCONSTAT_100 0x0008
  53. /* 88E1011 PHY Status Register */
  54. #define MII_M1011_PHY_SPEC_STATUS 0x11
  55. #define MII_M1011_PHY_SPEC_STATUS_1000 0x8000
  56. #define MII_M1011_PHY_SPEC_STATUS_100 0x4000
  57. #define MII_M1011_PHY_SPEC_STATUS_SPD_MASK 0xc000
  58. #define MII_M1011_PHY_SPEC_STATUS_FULLDUPLEX 0x2000
  59. #define MII_M1011_PHY_SPEC_STATUS_RESOLVED 0x0800
  60. #define MII_M1011_PHY_SPEC_STATUS_LINK 0x0400
  61. #define MII_M1011_IEVENT 0x13
  62. #define MII_M1011_IEVENT_CLEAR 0x0000
  63. #define MII_M1011_IMASK 0x12
  64. #define MII_M1011_IMASK_INIT 0x6400
  65. #define MII_M1011_IMASK_CLEAR 0x0000
  66. #define MII_DM9161_SCR 0x10
  67. #define MII_DM9161_SCR_INIT 0x0610
  68. /* DM9161 Specified Configuration and Status Register */
  69. #define MII_DM9161_SCSR 0x11
  70. #define MII_DM9161_SCSR_100F 0x8000
  71. #define MII_DM9161_SCSR_100H 0x4000
  72. #define MII_DM9161_SCSR_10F 0x2000
  73. #define MII_DM9161_SCSR_10H 0x1000
  74. /* DM9161 Interrupt Register */
  75. #define MII_DM9161_INTR 0x15
  76. #define MII_DM9161_INTR_PEND 0x8000
  77. #define MII_DM9161_INTR_DPLX_MASK 0x0800
  78. #define MII_DM9161_INTR_SPD_MASK 0x0400
  79. #define MII_DM9161_INTR_LINK_MASK 0x0200
  80. #define MII_DM9161_INTR_MASK 0x0100
  81. #define MII_DM9161_INTR_DPLX_CHANGE 0x0010
  82. #define MII_DM9161_INTR_SPD_CHANGE 0x0008
  83. #define MII_DM9161_INTR_LINK_CHANGE 0x0004
  84. #define MII_DM9161_INTR_INIT 0x0000
  85. #define MII_DM9161_INTR_STOP \
  86. (MII_DM9161_INTR_DPLX_MASK | MII_DM9161_INTR_SPD_MASK \
  87. | MII_DM9161_INTR_LINK_MASK | MII_DM9161_INTR_MASK)
  88. /* DM9161 10BT Configuration/Status */
  89. #define MII_DM9161_10BTCSR 0x12
  90. #define MII_DM9161_10BTCSR_INIT 0x7800
  91. #define MII_BASIC_FEATURES (SUPPORTED_10baseT_Half | \
  92. SUPPORTED_10baseT_Full | \
  93. SUPPORTED_100baseT_Half | \
  94. SUPPORTED_100baseT_Full | \
  95. SUPPORTED_Autoneg | \
  96. SUPPORTED_TP | \
  97. SUPPORTED_MII)
  98. #define MII_GBIT_FEATURES (MII_BASIC_FEATURES | \
  99. SUPPORTED_1000baseT_Half | \
  100. SUPPORTED_1000baseT_Full)
  101. #define MII_READ_COMMAND 0x00000001
  102. #define MII_INTERRUPT_DISABLED 0x0
  103. #define MII_INTERRUPT_ENABLED 0x1
  104. /* Taken from mii_if_info and sungem_phy.h */
  105. struct gfar_mii_info {
  106. /* Information about the PHY type */
  107. /* And management functions */
  108. struct phy_info *phyinfo;
  109. /* forced speed & duplex (no autoneg)
  110. * partner speed & duplex & pause (autoneg)
  111. */
  112. int speed;
  113. int duplex;
  114. int pause;
  115. /* The most recently read link state */
  116. int link;
  117. /* Enabled Interrupts */
  118. u32 interrupts;
  119. u32 advertising;
  120. int autoneg;
  121. int mii_id;
  122. /* private data pointer */
  123. /* For use by PHYs to maintain extra state */
  124. void *priv;
  125. /* Provided by host chip */
  126. struct net_device *dev;
  127. /* A lock to ensure that only one thing can read/write
  128. * the MDIO bus at a time */
  129. spinlock_t mdio_lock;
  130. /* Provided by ethernet driver */
  131. int (*mdio_read) (struct net_device *dev, int mii_id, int reg);
  132. void (*mdio_write) (struct net_device *dev, int mii_id, int reg, int val);
  133. };
  134. /* struct phy_info: a structure which defines attributes for a PHY
  135. *
  136. * id will contain a number which represents the PHY. During
  137. * startup, the driver will poll the PHY to find out what its
  138. * UID--as defined by registers 2 and 3--is. The 32-bit result
  139. * gotten from the PHY will be ANDed with phy_id_mask to
  140. * discard any bits which may change based on revision numbers
  141. * unimportant to functionality
  142. *
  143. * There are 6 commands which take a gfar_mii_info structure.
  144. * Each PHY must declare config_aneg, and read_status.
  145. */
  146. struct phy_info {
  147. u32 phy_id;
  148. char *name;
  149. unsigned int phy_id_mask;
  150. u32 features;
  151. /* Called to initialize the PHY */
  152. int (*init)(struct gfar_mii_info *mii_info);
  153. /* Called to suspend the PHY for power */
  154. int (*suspend)(struct gfar_mii_info *mii_info);
  155. /* Reconfigures autonegotiation (or disables it) */
  156. int (*config_aneg)(struct gfar_mii_info *mii_info);
  157. /* Determines the negotiated speed and duplex */
  158. int (*read_status)(struct gfar_mii_info *mii_info);
  159. /* Clears any pending interrupts */
  160. int (*ack_interrupt)(struct gfar_mii_info *mii_info);
  161. /* Enables or disables interrupts */
  162. int (*config_intr)(struct gfar_mii_info *mii_info);
  163. /* Clears up any memory if needed */
  164. void (*close)(struct gfar_mii_info *mii_info);
  165. };
  166. struct phy_info *get_phy_info(struct gfar_mii_info *mii_info);
  167. int read_phy_reg(struct net_device *dev, int mii_id, int regnum);
  168. void write_phy_reg(struct net_device *dev, int mii_id, int regnum, int value);
  169. void mii_clear_phy_interrupt(struct gfar_mii_info *mii_info);
  170. void mii_configure_phy_interrupt(struct gfar_mii_info *mii_info, u32 interrupts);
  171. struct dm9161_private {
  172. struct timer_list timer;
  173. int resetdone;
  174. };
  175. #endif /* GIANFAR_PHY_H */