xref: /openbmc/linux/drivers/net/dsa/mv88e6xxx/phy.h (revision 10fa5bfc)
1 /*
2  * Marvell 88E6xxx PHY access
3  *
4  * Copyright (c) 2008 Marvell Semiconductor
5  *
6  * Copyright (c) 2017 Andrew Lunn <andrew@lunn.ch>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  */
13 
14 #ifndef _MV88E6XXX_PHY_H
15 #define _MV88E6XXX_PHY_H
16 
17 int mv88e6165_phy_read(struct mv88e6xxx_chip *chip, struct mii_bus *bus,
18 		       int addr, int reg, u16 *val);
19 int mv88e6165_phy_write(struct mv88e6xxx_chip *chip, struct mii_bus *bus,
20 			int addr, int reg, u16 val);
21 int mv88e6xxx_phy_read(struct mv88e6xxx_chip *chip, int phy,
22 		       int reg, u16 *val);
23 int mv88e6xxx_phy_write(struct mv88e6xxx_chip *chip, int phy,
24 			int reg, u16 val);
25 int mv88e6xxx_phy_page_read(struct mv88e6xxx_chip *chip, int phy,
26 			    u8 page, int reg, u16 *val);
27 int mv88e6xxx_phy_page_write(struct mv88e6xxx_chip *chip, int phy,
28 			     u8 page, int reg, u16 val);
29 int mv88e6xxx_phy_ppu_read(struct mv88e6xxx_chip *chip, struct mii_bus *bus,
30 			   int addr, int reg, u16 *val);
31 int mv88e6xxx_phy_ppu_write(struct mv88e6xxx_chip *chip, struct mii_bus *bus,
32 			    int addr, int reg, u16 val);
33 int mv88e6xxx_ppu_enable(struct mv88e6xxx_chip *chip);
34 void mv88e6xxx_phy_init(struct mv88e6xxx_chip *chip);
35 void mv88e6xxx_phy_destroy(struct mv88e6xxx_chip *chip);
36 
37 #endif /*_MV88E6XXX_PHY_H */
38