wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 1 | /*----------------------------------------------------------------------------+ |
Josh Boyer | 3177349 | 2009-08-07 13:53:20 -0400 | [diff] [blame] | 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. |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 4 | | |
wdenk | 65bd0e2 | 2003-09-18 10:45:21 +0000 | [diff] [blame] | 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. |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 11 | | |
wdenk | 65bd0e2 | 2003-09-18 10:45:21 +0000 | [diff] [blame] | 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. |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 15 | | |
wdenk | 65bd0e2 | 2003-09-18 10:45:21 +0000 | [diff] [blame] | 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. |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 19 | | |
wdenk | 65bd0e2 | 2003-09-18 10:45:21 +0000 | [diff] [blame] | 20 | | COPYRIGHT I B M CORPORATION 1999 |
| 21 | | LICENSED MATERIAL - PROGRAM PROPERTY OF I B M |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 22 | | |
| 23 | | Additions (C) Copyright 2009 Industrie Dial Face S.p.A. |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 24 | +----------------------------------------------------------------------------*/ |
| 25 | /*----------------------------------------------------------------------------+ |
| 26 | | |
wdenk | 65bd0e2 | 2003-09-18 10:45:21 +0000 | [diff] [blame] | 27 | | File Name: miiphy.h |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 28 | | |
wdenk | 65bd0e2 | 2003-09-18 10:45:21 +0000 | [diff] [blame] | 29 | | Function: Include file defining PHY registers. |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 30 | | |
wdenk | 65bd0e2 | 2003-09-18 10:45:21 +0000 | [diff] [blame] | 31 | | Author: Mark Wisner |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 32 | | |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 33 | +----------------------------------------------------------------------------*/ |
| 34 | #ifndef _miiphy_h_ |
| 35 | #define _miiphy_h_ |
| 36 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 37 | #include <common.h> |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 38 | #include <linux/mii.h> |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 39 | #include <linux/list.h> |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 40 | #include <net.h> |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 41 | #include <phy.h> |
| 42 | |
| 43 | struct legacy_mii_dev { |
| 44 | int (*read)(const char *devname, unsigned char addr, |
Wolfgang Denk | f915c93 | 2011-12-07 08:35:14 +0100 | [diff] [blame] | 45 | unsigned char reg, unsigned short *value); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 46 | int (*write)(const char *devname, unsigned char addr, |
Wolfgang Denk | f915c93 | 2011-12-07 08:35:14 +0100 | [diff] [blame] | 47 | unsigned char reg, unsigned short value); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 48 | }; |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 49 | |
Wolfgang Denk | f915c93 | 2011-12-07 08:35:14 +0100 | [diff] [blame] | 50 | int miiphy_read(const char *devname, unsigned char addr, unsigned char reg, |
Larry Johnson | 298035d | 2007-10-31 11:21:29 -0500 | [diff] [blame] | 51 | unsigned short *value); |
Wolfgang Denk | f915c93 | 2011-12-07 08:35:14 +0100 | [diff] [blame] | 52 | int miiphy_write(const char *devname, unsigned char addr, unsigned char reg, |
Larry Johnson | 298035d | 2007-10-31 11:21:29 -0500 | [diff] [blame] | 53 | unsigned short value); |
Andy Fleming | 16a5323 | 2011-04-07 14:38:35 -0500 | [diff] [blame] | 54 | int miiphy_info(const char *devname, unsigned char addr, unsigned int *oui, |
Larry Johnson | 298035d | 2007-10-31 11:21:29 -0500 | [diff] [blame] | 55 | unsigned char *model, unsigned char *rev); |
Andy Fleming | 16a5323 | 2011-04-07 14:38:35 -0500 | [diff] [blame] | 56 | int miiphy_reset(const char *devname, unsigned char addr); |
| 57 | int miiphy_speed(const char *devname, unsigned char addr); |
| 58 | int miiphy_duplex(const char *devname, unsigned char addr); |
| 59 | int miiphy_is_1000base_x(const char *devname, unsigned char addr); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 60 | #ifdef CONFIG_SYS_FAULT_ECHO_LINK_DOWN |
Andy Fleming | 16a5323 | 2011-04-07 14:38:35 -0500 | [diff] [blame] | 61 | int miiphy_link(const char *devname, unsigned char addr); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 62 | #endif |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 63 | |
Andy Fleming | 16a5323 | 2011-04-07 14:38:35 -0500 | [diff] [blame] | 64 | void miiphy_init(void); |
Marian Balakowicz | d9785c1 | 2005-11-30 18:06:04 +0100 | [diff] [blame] | 65 | |
Andy Fleming | 16a5323 | 2011-04-07 14:38:35 -0500 | [diff] [blame] | 66 | void miiphy_register(const char *devname, |
| 67 | int (*read)(const char *devname, unsigned char addr, |
Wolfgang Denk | f915c93 | 2011-12-07 08:35:14 +0100 | [diff] [blame] | 68 | unsigned char reg, unsigned short *value), |
Andy Fleming | 16a5323 | 2011-04-07 14:38:35 -0500 | [diff] [blame] | 69 | int (*write)(const char *devname, unsigned char addr, |
Wolfgang Denk | f915c93 | 2011-12-07 08:35:14 +0100 | [diff] [blame] | 70 | unsigned char reg, unsigned short value)); |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 71 | |
Andy Fleming | 16a5323 | 2011-04-07 14:38:35 -0500 | [diff] [blame] | 72 | int miiphy_set_current_dev(const char *devname); |
| 73 | const char *miiphy_get_current_dev(void); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 74 | struct mii_dev *mdio_get_current_dev(void); |
| 75 | struct mii_dev *miiphy_get_dev_by_name(const char *devname); |
| 76 | struct phy_device *mdio_phydev_for_ethname(const char *devname); |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 77 | |
Andy Fleming | 16a5323 | 2011-04-07 14:38:35 -0500 | [diff] [blame] | 78 | void miiphy_listdev(void); |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 79 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 80 | struct mii_dev *mdio_alloc(void); |
| 81 | int mdio_register(struct mii_dev *bus); |
| 82 | void mdio_list_devices(void); |
| 83 | |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 84 | #ifdef CONFIG_BITBANGMII |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 85 | |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 86 | #define BB_MII_DEVNAME "bb_miiphy" |
| 87 | |
| 88 | struct bb_miiphy_bus { |
| 89 | char name[NAMESIZE]; |
| 90 | int (*init)(struct bb_miiphy_bus *bus); |
| 91 | int (*mdio_active)(struct bb_miiphy_bus *bus); |
| 92 | int (*mdio_tristate)(struct bb_miiphy_bus *bus); |
| 93 | int (*set_mdio)(struct bb_miiphy_bus *bus, int v); |
| 94 | int (*get_mdio)(struct bb_miiphy_bus *bus, int *v); |
| 95 | int (*set_mdc)(struct bb_miiphy_bus *bus, int v); |
| 96 | int (*delay)(struct bb_miiphy_bus *bus); |
| 97 | #ifdef CONFIG_BITBANGMII_MULTI |
| 98 | void *priv; |
| 99 | #endif |
| 100 | }; |
| 101 | |
| 102 | extern struct bb_miiphy_bus bb_miiphy_buses[]; |
| 103 | extern int bb_miiphy_buses_num; |
| 104 | |
Andy Fleming | 16a5323 | 2011-04-07 14:38:35 -0500 | [diff] [blame] | 105 | void bb_miiphy_init(void); |
| 106 | int bb_miiphy_read(const char *devname, unsigned char addr, |
Larry Johnson | 298035d | 2007-10-31 11:21:29 -0500 | [diff] [blame] | 107 | unsigned char reg, unsigned short *value); |
Andy Fleming | 16a5323 | 2011-04-07 14:38:35 -0500 | [diff] [blame] | 108 | int bb_miiphy_write(const char *devname, unsigned char addr, |
Larry Johnson | 298035d | 2007-10-31 11:21:29 -0500 | [diff] [blame] | 109 | unsigned char reg, unsigned short value); |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 110 | #endif |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 111 | |
| 112 | /* phy seed setup */ |
wdenk | 65bd0e2 | 2003-09-18 10:45:21 +0000 | [diff] [blame] | 113 | #define AUTO 99 |
Larry Johnson | 298035d | 2007-10-31 11:21:29 -0500 | [diff] [blame] | 114 | #define _1000BASET 1000 |
wdenk | 65bd0e2 | 2003-09-18 10:45:21 +0000 | [diff] [blame] | 115 | #define _100BASET 100 |
| 116 | #define _10BASET 10 |
| 117 | #define HALF 22 |
| 118 | #define FULL 44 |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 119 | |
| 120 | /* phy register offsets */ |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 121 | #define MII_MIPSCR 0x11 |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 122 | |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 123 | /* MII_LPA */ |
Larry Johnson | 298035d | 2007-10-31 11:21:29 -0500 | [diff] [blame] | 124 | #define PHY_ANLPAR_PSB_802_3 0x0001 |
| 125 | #define PHY_ANLPAR_PSB_802_9 0x0002 |
wdenk | b9711de | 2004-04-25 13:18:40 +0000 | [diff] [blame] | 126 | |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 127 | /* MII_CTRL1000 masks */ |
Larry Johnson | 71bc6e6 | 2007-11-01 08:46:50 -0500 | [diff] [blame] | 128 | #define PHY_1000BTCR_1000FD 0x0200 |
| 129 | #define PHY_1000BTCR_1000HD 0x0100 |
| 130 | |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 131 | /* MII_STAT1000 masks */ |
Larry Johnson | 298035d | 2007-10-31 11:21:29 -0500 | [diff] [blame] | 132 | #define PHY_1000BTSR_MSCF 0x8000 |
| 133 | #define PHY_1000BTSR_MSCR 0x4000 |
| 134 | #define PHY_1000BTSR_LRS 0x2000 |
| 135 | #define PHY_1000BTSR_RRS 0x1000 |
| 136 | #define PHY_1000BTSR_1000FD 0x0800 |
| 137 | #define PHY_1000BTSR_1000HD 0x0400 |
wdenk | 855a496 | 2004-03-14 18:23:55 +0000 | [diff] [blame] | 138 | |
Larry Johnson | 71bc6e6 | 2007-11-01 08:46:50 -0500 | [diff] [blame] | 139 | /* phy EXSR */ |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 140 | #define ESTATUS_1000XF 0x8000 |
| 141 | #define ESTATUS_1000XH 0x4000 |
Larry Johnson | 71bc6e6 | 2007-11-01 08:46:50 -0500 | [diff] [blame] | 142 | |
wdenk | 214ec6b | 2001-10-08 19:18:17 +0000 | [diff] [blame] | 143 | #endif |