]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/micrel.h
Prepare v2013.07-rc2
[karo-tx-uboot.git] / include / micrel.h
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
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
17
18 struct phy_device;
19 int ksz9021_phy_extended_write(struct phy_device *phydev, int regnum, u16 val);
20 int ksz9021_phy_extended_read(struct phy_device *phydev, int regnum);
21
22 int ksz9031_phy_extended_write(struct phy_device *phydev, int devaddr,
23                                int regnum, u16 mode, u16 val);
24 int ksz9031_phy_extended_read(struct phy_device *phydev, int devaddr,
25                               int regnum, u16 mode);
26
27 #endif