]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/micrel.h
mpc83xx, abb: remove suvd3 board
[thirdparty/u-boot.git] / include / micrel.h
CommitLineData
8682aba7
TK
1#ifndef _MICREL_H
2
3#define MII_KSZ9021_EXT_COMMON_CTRL 0x100
4#define MII_KSZ9021_EXT_STRAP_STATUS 0x101
5#define MII_KSZ9021_EXT_OP_STRAP_OVERRIDE 0x102
6#define MII_KSZ9021_EXT_OP_STRAP_STATUS 0x103
7#define MII_KSZ9021_EXT_RGMII_CLOCK_SKEW 0x104
8#define MII_KSZ9021_EXT_RGMII_RX_DATA_SKEW 0x105
9#define MII_KSZ9021_EXT_RGMII_TX_DATA_SKEW 0x106
10#define MII_KSZ9021_EXT_ANALOG_TEST 0x107
42a7cb50
SL
11/* Register operations */
12#define MII_KSZ9031_MOD_REG 0x0000
13/* Data operations */
14#define MII_KSZ9031_MOD_DATA_NO_POST_INC 0x4000
15#define MII_KSZ9031_MOD_DATA_POST_INC_RW 0x8000
16#define MII_KSZ9031_MOD_DATA_POST_INC_W 0xC000
8682aba7 17
71817a16
SB
18#define MII_KSZ9031_EXT_RGMII_CTRL_SIG_SKEW 0x4
19#define MII_KSZ9031_EXT_RGMII_RX_DATA_SKEW 0x5
20#define MII_KSZ9031_EXT_RGMII_TX_DATA_SKEW 0x6
21#define MII_KSZ9031_EXT_RGMII_CLOCK_SKEW 0x8
22
f018545e
AC
23#define MII_KSZ9031_FLP_BURST_TX_LO 0x3
24#define MII_KSZ9031_FLP_BURST_TX_HI 0x4
25
0861aa8f
PS
26#define MII_KSZ9x31_SILICON_REV_MASK 0xfffff0
27
f72e48ba
PS
28#define MII_KSZ9131_RXTXDLL_BYPASS BIT(12)
29#define MII_KSZ9131_EXT_RGMII_2NS_SKEW_RXDLL 0x4c
30#define MII_KSZ9131_EXT_RGMII_2NS_SKEW_TXDLL 0x4d
31
0861aa8f 32#define PHY_ID_KSZ9031 0x00221620
c51eef59 33#define PHY_ID_KSZ9131 0x00221640
0861aa8f
PS
34
35
f0222902
OS
36/* Registers */
37#define MMD_ACCESS_CONTROL 0xd
38#define MMD_ACCESS_REG_DATA 0xe
39
8682aba7
TK
40struct phy_device;
41int ksz9021_phy_extended_write(struct phy_device *phydev, int regnum, u16 val);
42int ksz9021_phy_extended_read(struct phy_device *phydev, int regnum);
43
42a7cb50
SL
44int ksz9031_phy_extended_write(struct phy_device *phydev, int devaddr,
45 int regnum, u16 mode, u16 val);
46int ksz9031_phy_extended_read(struct phy_device *phydev, int devaddr,
47 int regnum, u16 mode);
c51eef59 48int ksz9xx1_phy_get_id(struct phy_device *phydev);
42a7cb50 49
8682aba7 50#endif