blob: 42dc12715cd54ccb9690b1d62c139b84d5072f17 [file] [log] [blame]
wdenk214ec6b2001-10-08 19:18:17 +00001/*----------------------------------------------------------------------------+
Josh Boyer31773492009-08-07 13:53:20 -04002| 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.
wdenk214ec6b2001-10-08 19:18:17 +00004|
wdenk65bd0e22003-09-18 10:45:21 +00005| 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.
wdenk214ec6b2001-10-08 19:18:17 +000011|
wdenk65bd0e22003-09-18 10:45:21 +000012| 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.
wdenk214ec6b2001-10-08 19:18:17 +000015|
wdenk65bd0e22003-09-18 10:45:21 +000016| 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.
wdenk214ec6b2001-10-08 19:18:17 +000019|
wdenk65bd0e22003-09-18 10:45:21 +000020| COPYRIGHT I B M CORPORATION 1999
21| LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
Luigi 'Comio' Mantellini4ba31ab2009-10-10 12:42:20 +020022|
23| Additions (C) Copyright 2009 Industrie Dial Face S.p.A.
wdenk214ec6b2001-10-08 19:18:17 +000024+----------------------------------------------------------------------------*/
25/*----------------------------------------------------------------------------+
26|
wdenk65bd0e22003-09-18 10:45:21 +000027| File Name: miiphy.h
wdenk214ec6b2001-10-08 19:18:17 +000028|
wdenk65bd0e22003-09-18 10:45:21 +000029| Function: Include file defining PHY registers.
wdenk214ec6b2001-10-08 19:18:17 +000030|
wdenk65bd0e22003-09-18 10:45:21 +000031| Author: Mark Wisner
wdenk214ec6b2001-10-08 19:18:17 +000032|
wdenk214ec6b2001-10-08 19:18:17 +000033+----------------------------------------------------------------------------*/
34#ifndef _miiphy_h_
35#define _miiphy_h_
36
Mike Frysinger8ef583a2010-12-23 15:40:12 -050037#include <linux/mii.h>
Marian Balakowicz63ff0042005-10-28 22:30:33 +020038#include <net.h>
wdenk214ec6b2001-10-08 19:18:17 +000039
Mike Frysinger5700bb62010-07-27 18:35:08 -040040int miiphy_read (const char *devname, unsigned char addr, unsigned char reg,
Larry Johnson298035d2007-10-31 11:21:29 -050041 unsigned short *value);
Mike Frysinger5700bb62010-07-27 18:35:08 -040042int miiphy_write (const char *devname, unsigned char addr, unsigned char reg,
Larry Johnson298035d2007-10-31 11:21:29 -050043 unsigned short value);
Mike Frysinger5700bb62010-07-27 18:35:08 -040044int miiphy_info (const char *devname, unsigned char addr, unsigned int *oui,
Larry Johnson298035d2007-10-31 11:21:29 -050045 unsigned char *model, unsigned char *rev);
Mike Frysinger5700bb62010-07-27 18:35:08 -040046int miiphy_reset (const char *devname, unsigned char addr);
47int miiphy_speed (const char *devname, unsigned char addr);
48int miiphy_duplex (const char *devname, unsigned char addr);
49int miiphy_is_1000base_x (const char *devname, unsigned char addr);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020050#ifdef CONFIG_SYS_FAULT_ECHO_LINK_DOWN
Mike Frysinger5700bb62010-07-27 18:35:08 -040051int miiphy_link (const char *devname, unsigned char addr);
wdenkfc3e2162003-10-08 22:33:00 +000052#endif
wdenk214ec6b2001-10-08 19:18:17 +000053
Larry Johnson298035d2007-10-31 11:21:29 -050054void miiphy_init (void);
Marian Balakowiczd9785c12005-11-30 18:06:04 +010055
Mike Frysinger5700bb62010-07-27 18:35:08 -040056void miiphy_register (const char *devname,
57 int (*read) (const char *devname, unsigned char addr,
Larry Johnson298035d2007-10-31 11:21:29 -050058 unsigned char reg, unsigned short *value),
Mike Frysinger5700bb62010-07-27 18:35:08 -040059 int (*write) (const char *devname, unsigned char addr,
Larry Johnson298035d2007-10-31 11:21:29 -050060 unsigned char reg, unsigned short value));
Marian Balakowicz63ff0042005-10-28 22:30:33 +020061
Mike Frysinger5700bb62010-07-27 18:35:08 -040062int miiphy_set_current_dev (const char *devname);
63const char *miiphy_get_current_dev (void);
Marian Balakowicz63ff0042005-10-28 22:30:33 +020064
Larry Johnson298035d2007-10-31 11:21:29 -050065void miiphy_listdev (void);
Marian Balakowicz63ff0042005-10-28 22:30:33 +020066
Luigi 'Comio' Mantellini4ba31ab2009-10-10 12:42:20 +020067#ifdef CONFIG_BITBANGMII
Marian Balakowicz63ff0042005-10-28 22:30:33 +020068
Luigi 'Comio' Mantellini4ba31ab2009-10-10 12:42:20 +020069#define BB_MII_DEVNAME "bb_miiphy"
70
71struct bb_miiphy_bus {
72 char name[NAMESIZE];
73 int (*init)(struct bb_miiphy_bus *bus);
74 int (*mdio_active)(struct bb_miiphy_bus *bus);
75 int (*mdio_tristate)(struct bb_miiphy_bus *bus);
76 int (*set_mdio)(struct bb_miiphy_bus *bus, int v);
77 int (*get_mdio)(struct bb_miiphy_bus *bus, int *v);
78 int (*set_mdc)(struct bb_miiphy_bus *bus, int v);
79 int (*delay)(struct bb_miiphy_bus *bus);
80#ifdef CONFIG_BITBANGMII_MULTI
81 void *priv;
82#endif
83};
84
85extern struct bb_miiphy_bus bb_miiphy_buses[];
86extern int bb_miiphy_buses_num;
87
88void bb_miiphy_init (void);
Mike Frysinger5700bb62010-07-27 18:35:08 -040089int bb_miiphy_read (const char *devname, unsigned char addr,
Larry Johnson298035d2007-10-31 11:21:29 -050090 unsigned char reg, unsigned short *value);
Mike Frysinger5700bb62010-07-27 18:35:08 -040091int bb_miiphy_write (const char *devname, unsigned char addr,
Larry Johnson298035d2007-10-31 11:21:29 -050092 unsigned char reg, unsigned short value);
Luigi 'Comio' Mantellini4ba31ab2009-10-10 12:42:20 +020093#endif
wdenk214ec6b2001-10-08 19:18:17 +000094
95/* phy seed setup */
wdenk65bd0e22003-09-18 10:45:21 +000096#define AUTO 99
Larry Johnson298035d2007-10-31 11:21:29 -050097#define _1000BASET 1000
wdenk65bd0e22003-09-18 10:45:21 +000098#define _100BASET 100
99#define _10BASET 10
100#define HALF 22
101#define FULL 44
wdenk214ec6b2001-10-08 19:18:17 +0000102
103/* phy register offsets */
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500104#define MII_MIPSCR 0x11
wdenk214ec6b2001-10-08 19:18:17 +0000105
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500106/* MII_LPA */
Larry Johnson298035d2007-10-31 11:21:29 -0500107#define PHY_ANLPAR_PSB_802_3 0x0001
108#define PHY_ANLPAR_PSB_802_9 0x0002
wdenkb9711de2004-04-25 13:18:40 +0000109
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500110/* MII_CTRL1000 masks */
Larry Johnson71bc6e62007-11-01 08:46:50 -0500111#define PHY_1000BTCR_1000FD 0x0200
112#define PHY_1000BTCR_1000HD 0x0100
113
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500114/* MII_STAT1000 masks */
Larry Johnson298035d2007-10-31 11:21:29 -0500115#define PHY_1000BTSR_MSCF 0x8000
116#define PHY_1000BTSR_MSCR 0x4000
117#define PHY_1000BTSR_LRS 0x2000
118#define PHY_1000BTSR_RRS 0x1000
119#define PHY_1000BTSR_1000FD 0x0800
120#define PHY_1000BTSR_1000HD 0x0400
wdenk855a4962004-03-14 18:23:55 +0000121
Larry Johnson71bc6e62007-11-01 08:46:50 -0500122/* phy EXSR */
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500123#define ESTATUS_1000XF 0x8000
124#define ESTATUS_1000XH 0x4000
Larry Johnson71bc6e62007-11-01 08:46:50 -0500125
wdenk214ec6b2001-10-08 19:18:17 +0000126#endif