]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/micrel.h
Merge branch 'master' of git://git.denx.de/u-boot-mips
[people/ms/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
TK
17
18struct phy_device;
19int ksz9021_phy_extended_write(struct phy_device *phydev, int regnum, u16 val);
20int ksz9021_phy_extended_read(struct phy_device *phydev, int regnum);
21
42a7cb50
SL
22int ksz9031_phy_extended_write(struct phy_device *phydev, int devaddr,
23 int regnum, u16 mode, u16 val);
24int ksz9031_phy_extended_read(struct phy_device *phydev, int devaddr,
25 int regnum, u16 mode);
26
8682aba7 27#endif