]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/qe/uec_phy.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / drivers / qe / uec_phy.h
CommitLineData
7737d5c6 1/*
2b21ec92 2 * Copyright (C) 2005, 2011 Freescale Semiconductor, Inc.
7737d5c6
DL
3 *
4 * Author: Shlomi Gridish <gridish@freescale.com>
5 *
6 * Description: UCC ethernet driver -- PHY handling
dd520bf3
WD
7 * Driver for UEC on QE
8 * Based on 8260_io/fcc_enet.c
7737d5c6 9 *
1a459660 10 * SPDX-License-Identifier: GPL-2.0+
7737d5c6
DL
11 */
12#ifndef __UEC_PHY_H__
13#define __UEC_PHY_H__
14
15#define MII_end ((u32)-2)
16#define MII_read ((u32)-1)
17
dd520bf3
WD
18#define MIIMIND_BUSY 0x00000001
19#define MIIMIND_NOTVALID 0x00000004
7737d5c6 20
dd520bf3 21#define UGETH_AN_TIMEOUT 2000
7737d5c6 22
7737d5c6 23/* Cicada Extended Control Register 1 */
dd520bf3 24#define MII_CIS8201_EXT_CON1 0x17
7737d5c6
DL
25#define MII_CIS8201_EXTCON1_INIT 0x0000
26
27/* Cicada Interrupt Mask Register */
dd520bf3
WD
28#define MII_CIS8201_IMASK 0x19
29#define MII_CIS8201_IMASK_IEN 0x8000
30#define MII_CIS8201_IMASK_SPEED 0x4000
31#define MII_CIS8201_IMASK_LINK 0x2000
7737d5c6 32#define MII_CIS8201_IMASK_DUPLEX 0x1000
dd520bf3 33#define MII_CIS8201_IMASK_MASK 0xf000
7737d5c6
DL
34
35/* Cicada Interrupt Status Register */
dd520bf3 36#define MII_CIS8201_ISTAT 0x1a
7737d5c6 37#define MII_CIS8201_ISTAT_STATUS 0x8000
dd520bf3
WD
38#define MII_CIS8201_ISTAT_SPEED 0x4000
39#define MII_CIS8201_ISTAT_LINK 0x2000
7737d5c6
DL
40#define MII_CIS8201_ISTAT_DUPLEX 0x1000
41
42/* Cicada Auxiliary Control/Status Register */
dd520bf3 43#define MII_CIS8201_AUX_CONSTAT 0x1c
7737d5c6
DL
44#define MII_CIS8201_AUXCONSTAT_INIT 0x0004
45#define MII_CIS8201_AUXCONSTAT_DUPLEX 0x0020
46#define MII_CIS8201_AUXCONSTAT_SPEED 0x0018
47#define MII_CIS8201_AUXCONSTAT_GBIT 0x0010
48#define MII_CIS8201_AUXCONSTAT_100 0x0008
49
50/* 88E1011 PHY Status Register */
dd520bf3
WD
51#define MII_M1011_PHY_SPEC_STATUS 0x11
52#define MII_M1011_PHY_SPEC_STATUS_1000 0x8000
53#define MII_M1011_PHY_SPEC_STATUS_100 0x4000
54#define MII_M1011_PHY_SPEC_STATUS_SPD_MASK 0xc000
55#define MII_M1011_PHY_SPEC_STATUS_FULLDUPLEX 0x2000
56#define MII_M1011_PHY_SPEC_STATUS_RESOLVED 0x0800
57#define MII_M1011_PHY_SPEC_STATUS_LINK 0x0400
58
59#define MII_M1011_IEVENT 0x13
60#define MII_M1011_IEVENT_CLEAR 0x0000
61
62#define MII_M1011_IMASK 0x12
63#define MII_M1011_IMASK_INIT 0x6400
64#define MII_M1011_IMASK_CLEAR 0x0000
65
41410eee
HW
66/* 88E1111 PHY Register */
67#define MII_M1111_PHY_EXT_CR 0x14
68#define MII_M1111_RX_DELAY 0x80
69#define MII_M1111_TX_DELAY 0x2
70#define MII_M1111_PHY_EXT_SR 0x1b
71#define MII_M1111_HWCFG_MODE_MASK 0xf
72#define MII_M1111_HWCFG_MODE_RGMII 0xb
73
dd520bf3
WD
74#define MII_DM9161_SCR 0x10
75#define MII_DM9161_SCR_INIT 0x0610
7737d5c6
DL
76#define MII_DM9161_SCR_RMII_INIT 0x0710
77
78/* DM9161 Specified Configuration and Status Register */
dd520bf3
WD
79#define MII_DM9161_SCSR 0x11
80#define MII_DM9161_SCSR_100F 0x8000
81#define MII_DM9161_SCSR_100H 0x4000
82#define MII_DM9161_SCSR_10F 0x2000
83#define MII_DM9161_SCSR_10H 0x1000
7737d5c6
DL
84
85/* DM9161 Interrupt Register */
dd520bf3
WD
86#define MII_DM9161_INTR 0x15
87#define MII_DM9161_INTR_PEND 0x8000
88#define MII_DM9161_INTR_DPLX_MASK 0x0800
89#define MII_DM9161_INTR_SPD_MASK 0x0400
90#define MII_DM9161_INTR_LINK_MASK 0x0200
91#define MII_DM9161_INTR_MASK 0x0100
92#define MII_DM9161_INTR_DPLX_CHANGE 0x0010
93#define MII_DM9161_INTR_SPD_CHANGE 0x0008
94#define MII_DM9161_INTR_LINK_CHANGE 0x0004
95#define MII_DM9161_INTR_INIT 0x0000
96#define MII_DM9161_INTR_STOP \
7737d5c6
DL
97(MII_DM9161_INTR_DPLX_MASK | MII_DM9161_INTR_SPD_MASK \
98 | MII_DM9161_INTR_LINK_MASK | MII_DM9161_INTR_MASK)
99
100/* DM9161 10BT Configuration/Status */
dd520bf3
WD
101#define MII_DM9161_10BTCSR 0x12
102#define MII_DM9161_10BTCSR_INIT 0x7800
7737d5c6
DL
103
104#define MII_BASIC_FEATURES (SUPPORTED_10baseT_Half | \
dd520bf3
WD
105 SUPPORTED_10baseT_Full | \
106 SUPPORTED_100baseT_Half | \
107 SUPPORTED_100baseT_Full | \
108 SUPPORTED_Autoneg | \
109 SUPPORTED_TP | \
110 SUPPORTED_MII)
7737d5c6
DL
111
112#define MII_GBIT_FEATURES (MII_BASIC_FEATURES | \
dd520bf3
WD
113 SUPPORTED_1000baseT_Half | \
114 SUPPORTED_1000baseT_Full)
7737d5c6 115
dd520bf3 116#define MII_READ_COMMAND 0x00000001
7737d5c6 117
dd520bf3
WD
118#define MII_INTERRUPT_DISABLED 0x0
119#define MII_INTERRUPT_ENABLED 0x1
7737d5c6
DL
120
121#define SPEED_10 10
122#define SPEED_100 100
123#define SPEED_1000 1000
124
125/* Duplex, half or full. */
dd520bf3
WD
126#define DUPLEX_HALF 0x00
127#define DUPLEX_FULL 0x01
7737d5c6
DL
128
129/* Indicates what features are supported by the interface. */
dd520bf3
WD
130#define SUPPORTED_10baseT_Half (1 << 0)
131#define SUPPORTED_10baseT_Full (1 << 1)
132#define SUPPORTED_100baseT_Half (1 << 2)
133#define SUPPORTED_100baseT_Full (1 << 3)
134#define SUPPORTED_1000baseT_Half (1 << 4)
135#define SUPPORTED_1000baseT_Full (1 << 5)
136#define SUPPORTED_Autoneg (1 << 6)
137#define SUPPORTED_TP (1 << 7)
138#define SUPPORTED_AUI (1 << 8)
139#define SUPPORTED_MII (1 << 9)
140#define SUPPORTED_FIBRE (1 << 10)
141#define SUPPORTED_BNC (1 << 11)
142#define SUPPORTED_10000baseT_Full (1 << 12)
143
144#define ADVERTISED_10baseT_Half (1 << 0)
145#define ADVERTISED_10baseT_Full (1 << 1)
146#define ADVERTISED_100baseT_Half (1 << 2)
147#define ADVERTISED_100baseT_Full (1 << 3)
148#define ADVERTISED_1000baseT_Half (1 << 4)
149#define ADVERTISED_1000baseT_Full (1 << 5)
150#define ADVERTISED_Autoneg (1 << 6)
151#define ADVERTISED_TP (1 << 7)
152#define ADVERTISED_AUI (1 << 8)
153#define ADVERTISED_MII (1 << 9)
154#define ADVERTISED_FIBRE (1 << 10)
155#define ADVERTISED_BNC (1 << 11)
156#define ADVERTISED_10000baseT_Full (1 << 12)
7737d5c6 157
7737d5c6
DL
158/* Taken from mii_if_info and sungem_phy.h */
159struct uec_mii_info {
dd520bf3
WD
160 /* Information about the PHY type */
161 /* And management functions */
162 struct phy_info *phyinfo;
7737d5c6 163
dd520bf3 164 struct eth_device *dev;
7737d5c6 165
dd520bf3
WD
166 /* forced speed & duplex (no autoneg)
167 * partner speed & duplex & pause (autoneg)
168 */
169 int speed;
170 int duplex;
171 int pause;
7737d5c6 172
dd520bf3
WD
173 /* The most recently read link state */
174 int link;
7737d5c6 175
dd520bf3
WD
176 /* Enabled Interrupts */
177 u32 interrupts;
7737d5c6 178
dd520bf3
WD
179 u32 advertising;
180 int autoneg;
181 int mii_id;
7737d5c6 182
dd520bf3
WD
183 /* private data pointer */
184 /* For use by PHYs to maintain extra state */
185 void *priv;
7737d5c6 186
dd520bf3
WD
187 /* Provided by ethernet driver */
188 int (*mdio_read) (struct eth_device * dev, int mii_id, int reg);
189 void (*mdio_write) (struct eth_device * dev, int mii_id, int reg,
190 int val);
7737d5c6
DL
191};
192
193/* struct phy_info: a structure which defines attributes for a PHY
194 *
195 * id will contain a number which represents the PHY. During
196 * startup, the driver will poll the PHY to find out what its
197 * UID--as defined by registers 2 and 3--is. The 32-bit result
198 * gotten from the PHY will be ANDed with phy_id_mask to
199 * discard any bits which may change based on revision numbers
200 * unimportant to functionality
201 *
202 * There are 6 commands which take a ugeth_mii_info structure.
203 * Each PHY must declare config_aneg, and read_status.
204 */
205struct phy_info {
dd520bf3
WD
206 u32 phy_id;
207 char *name;
208 unsigned int phy_id_mask;
209 u32 features;
7737d5c6 210
dd520bf3
WD
211 /* Called to initialize the PHY */
212 int (*init) (struct uec_mii_info * mii_info);
7737d5c6 213
dd520bf3
WD
214 /* Called to suspend the PHY for power */
215 int (*suspend) (struct uec_mii_info * mii_info);
7737d5c6 216
dd520bf3
WD
217 /* Reconfigures autonegotiation (or disables it) */
218 int (*config_aneg) (struct uec_mii_info * mii_info);
7737d5c6 219
dd520bf3
WD
220 /* Determines the negotiated speed and duplex */
221 int (*read_status) (struct uec_mii_info * mii_info);
7737d5c6 222
dd520bf3
WD
223 /* Clears any pending interrupts */
224 int (*ack_interrupt) (struct uec_mii_info * mii_info);
7737d5c6 225
dd520bf3
WD
226 /* Enables or disables interrupts */
227 int (*config_intr) (struct uec_mii_info * mii_info);
7737d5c6 228
dd520bf3
WD
229 /* Clears up any memory if needed */
230 void (*close) (struct uec_mii_info * mii_info);
7737d5c6
DL
231};
232
da9d4610
AF
233struct phy_info *uec_get_phy_info (struct uec_mii_info *mii_info);
234void uec_write_phy_reg (struct eth_device *dev, int mii_id, int regnum,
dd520bf3 235 int value);
da9d4610 236int uec_read_phy_reg (struct eth_device *dev, int mii_id, int regnum);
dd520bf3
WD
237void mii_clear_phy_interrupt (struct uec_mii_info *mii_info);
238void mii_configure_phy_interrupt (struct uec_mii_info *mii_info,
239 u32 interrupts);
7737d5c6 240#endif /* __UEC_PHY_H__ */