miiphy.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*----------------------------------------------------------------------------+
  2. | This source code is dual-licensed. You may use it under the terms of the
  3. | GNU General Public License version 2, or under the license below.
  4. |
  5. | This source code has been made available to you by IBM on an AS-IS
  6. | basis. Anyone receiving this source is licensed under IBM
  7. | copyrights to use it in any way he or she deems fit, including
  8. | copying it, modifying it, compiling it, and redistributing it either
  9. | with or without modifications. No license under IBM patents or
  10. | patent applications is to be implied by the copyright license.
  11. |
  12. | Any user of this software should understand that IBM cannot provide
  13. | technical support for this software and will not be responsible for
  14. | any consequences resulting from the use of this software.
  15. |
  16. | Any person who transfers this source code or any derivative work
  17. | must include the IBM copyright notice, this paragraph, and the
  18. | preceding two paragraphs in the transferred software.
  19. |
  20. | COPYRIGHT I B M CORPORATION 1999
  21. | LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
  22. |
  23. | Additions (C) Copyright 2009 Industrie Dial Face S.p.A.
  24. +----------------------------------------------------------------------------*/
  25. /*----------------------------------------------------------------------------+
  26. |
  27. | File Name: miiphy.h
  28. |
  29. | Function: Include file defining PHY registers.
  30. |
  31. | Author: Mark Wisner
  32. |
  33. +----------------------------------------------------------------------------*/
  34. #ifndef _miiphy_h_
  35. #define _miiphy_h_
  36. #include <common.h>
  37. #include <linux/mii.h>
  38. #include <linux/list.h>
  39. #include <net.h>
  40. #include <phy.h>
  41. struct legacy_mii_dev {
  42. int (*read)(const char *devname, unsigned char addr,
  43. unsigned char reg, unsigned short *value);
  44. int (*write)(const char *devname, unsigned char addr,
  45. unsigned char reg, unsigned short value);
  46. };
  47. int miiphy_read(const char *devname, unsigned char addr, unsigned char reg,
  48. unsigned short *value);
  49. int miiphy_write(const char *devname, unsigned char addr, unsigned char reg,
  50. unsigned short value);
  51. int miiphy_info(const char *devname, unsigned char addr, unsigned int *oui,
  52. unsigned char *model, unsigned char *rev);
  53. int miiphy_reset(const char *devname, unsigned char addr);
  54. int miiphy_speed(const char *devname, unsigned char addr);
  55. int miiphy_duplex(const char *devname, unsigned char addr);
  56. int miiphy_is_1000base_x(const char *devname, unsigned char addr);
  57. #ifdef CONFIG_SYS_FAULT_ECHO_LINK_DOWN
  58. int miiphy_link(const char *devname, unsigned char addr);
  59. #endif
  60. void miiphy_init(void);
  61. void miiphy_register(const char *devname,
  62. int (*read)(const char *devname, unsigned char addr,
  63. unsigned char reg, unsigned short *value),
  64. int (*write)(const char *devname, unsigned char addr,
  65. unsigned char reg, unsigned short value));
  66. int miiphy_set_current_dev(const char *devname);
  67. const char *miiphy_get_current_dev(void);
  68. struct mii_dev *mdio_get_current_dev(void);
  69. struct mii_dev *miiphy_get_dev_by_name(const char *devname);
  70. struct phy_device *mdio_phydev_for_ethname(const char *devname);
  71. void miiphy_listdev(void);
  72. struct mii_dev *mdio_alloc(void);
  73. int mdio_register(struct mii_dev *bus);
  74. void mdio_list_devices(void);
  75. #ifdef CONFIG_BITBANGMII
  76. #define BB_MII_DEVNAME "bb_miiphy"
  77. struct bb_miiphy_bus {
  78. char name[NAMESIZE];
  79. int (*init)(struct bb_miiphy_bus *bus);
  80. int (*mdio_active)(struct bb_miiphy_bus *bus);
  81. int (*mdio_tristate)(struct bb_miiphy_bus *bus);
  82. int (*set_mdio)(struct bb_miiphy_bus *bus, int v);
  83. int (*get_mdio)(struct bb_miiphy_bus *bus, int *v);
  84. int (*set_mdc)(struct bb_miiphy_bus *bus, int v);
  85. int (*delay)(struct bb_miiphy_bus *bus);
  86. #ifdef CONFIG_BITBANGMII_MULTI
  87. void *priv;
  88. #endif
  89. };
  90. extern struct bb_miiphy_bus bb_miiphy_buses[];
  91. extern int bb_miiphy_buses_num;
  92. void bb_miiphy_init(void);
  93. int bb_miiphy_read(const char *devname, unsigned char addr,
  94. unsigned char reg, unsigned short *value);
  95. int bb_miiphy_write(const char *devname, unsigned char addr,
  96. unsigned char reg, unsigned short value);
  97. #endif
  98. /* phy seed setup */
  99. #define AUTO 99
  100. #define _1000BASET 1000
  101. #define _100BASET 100
  102. #define _10BASET 10
  103. #define HALF 22
  104. #define FULL 44
  105. /* phy register offsets */
  106. #define MII_MIPSCR 0x11
  107. /* MII_LPA */
  108. #define PHY_ANLPAR_PSB_802_3 0x0001
  109. #define PHY_ANLPAR_PSB_802_9 0x0002
  110. /* MII_CTRL1000 masks */
  111. #define PHY_1000BTCR_1000FD 0x0200
  112. #define PHY_1000BTCR_1000HD 0x0100
  113. /* MII_STAT1000 masks */
  114. #define PHY_1000BTSR_MSCF 0x8000
  115. #define PHY_1000BTSR_MSCR 0x4000
  116. #define PHY_1000BTSR_LRS 0x2000
  117. #define PHY_1000BTSR_RRS 0x1000
  118. #define PHY_1000BTSR_1000FD 0x0800
  119. #define PHY_1000BTSR_1000HD 0x0400
  120. /* phy EXSR */
  121. #define ESTATUS_1000XF 0x8000
  122. #define ESTATUS_1000XH 0x4000
  123. #endif