]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/miiphy.h
NAND: Fix integer overflow in ONFI detection of chips >= 4GiB
[people/ms/u-boot.git] / include / miiphy.h
CommitLineData
214ec6bb 1/*----------------------------------------------------------------------------+
31773496
JB
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.
214ec6bb 4|
65bd0e28
WD
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.
214ec6bb 11|
65bd0e28
WD
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.
214ec6bb 15|
65bd0e28
WD
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.
214ec6bb 19|
65bd0e28
WD
20| COPYRIGHT I B M CORPORATION 1999
21| LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
4ba31ab3
LCM
22|
23| Additions (C) Copyright 2009 Industrie Dial Face S.p.A.
214ec6bb
WD
24+----------------------------------------------------------------------------*/
25/*----------------------------------------------------------------------------+
26|
65bd0e28 27| File Name: miiphy.h
214ec6bb 28|
65bd0e28 29| Function: Include file defining PHY registers.
214ec6bb 30|
65bd0e28 31| Author: Mark Wisner
214ec6bb 32|
214ec6bb
WD
33+----------------------------------------------------------------------------*/
34#ifndef _miiphy_h_
35#define _miiphy_h_
36
8ef583a0 37#include <linux/mii.h>
63ff004c 38#include <net.h>
214ec6bb 39
5700bb63 40int miiphy_read (const char *devname, unsigned char addr, unsigned char reg,
298035df 41 unsigned short *value);
5700bb63 42int miiphy_write (const char *devname, unsigned char addr, unsigned char reg,
298035df 43 unsigned short value);
5700bb63 44int miiphy_info (const char *devname, unsigned char addr, unsigned int *oui,
298035df 45 unsigned char *model, unsigned char *rev);
5700bb63
MF
46int 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);
6d0f6bcf 50#ifdef CONFIG_SYS_FAULT_ECHO_LINK_DOWN
5700bb63 51int miiphy_link (const char *devname, unsigned char addr);
fc3e2165 52#endif
214ec6bb 53
298035df 54void miiphy_init (void);
d9785c14 55
5700bb63
MF
56void miiphy_register (const char *devname,
57 int (*read) (const char *devname, unsigned char addr,
298035df 58 unsigned char reg, unsigned short *value),
5700bb63 59 int (*write) (const char *devname, unsigned char addr,
298035df 60 unsigned char reg, unsigned short value));
63ff004c 61
5700bb63
MF
62int miiphy_set_current_dev (const char *devname);
63const char *miiphy_get_current_dev (void);
63ff004c 64
298035df 65void miiphy_listdev (void);
63ff004c 66
4ba31ab3
LCM
67#ifdef CONFIG_BITBANGMII
68
69#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;
63ff004c 87
4ba31ab3 88void bb_miiphy_init (void);
5700bb63 89int bb_miiphy_read (const char *devname, unsigned char addr,
298035df 90 unsigned char reg, unsigned short *value);
5700bb63 91int bb_miiphy_write (const char *devname, unsigned char addr,
298035df 92 unsigned char reg, unsigned short value);
4ba31ab3 93#endif
214ec6bb
WD
94
95/* phy seed setup */
65bd0e28 96#define AUTO 99
298035df 97#define _1000BASET 1000
65bd0e28
WD
98#define _100BASET 100
99#define _10BASET 10
100#define HALF 22
101#define FULL 44
214ec6bb
WD
102
103/* phy register offsets */
8ef583a0
MF
104#define MII_MIPSCR 0x11
105
106/* MII_LPA */
298035df
LJ
107#define PHY_ANLPAR_PSB_802_3 0x0001
108#define PHY_ANLPAR_PSB_802_9 0x0002
109
8ef583a0 110/* MII_CTRL1000 masks */
71bc6e64
LJ
111#define PHY_1000BTCR_1000FD 0x0200
112#define PHY_1000BTCR_1000HD 0x0100
113
8ef583a0 114/* MII_STAT1000 masks */
298035df
LJ
115#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
855a496f 121
71bc6e64 122/* phy EXSR */
8ef583a0
MF
123#define ESTATUS_1000XF 0x8000
124#define ESTATUS_1000XH 0x4000
71bc6e64 125
214ec6bb 126#endif