xref: /openbmc/linux/include/linux/sungem_phy.h (revision 5f10376b)
1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
22bb69841SDavid S. Miller #ifndef __SUNGEM_PHY_H__
32bb69841SDavid S. Miller #define __SUNGEM_PHY_H__
42bb69841SDavid S. Miller 
5*5f10376bSJakub Kicinski #include <linux/types.h>
6*5f10376bSJakub Kicinski 
72bb69841SDavid S. Miller struct mii_phy;
82bb69841SDavid S. Miller 
92bb69841SDavid S. Miller /* Operations supported by any kind of PHY */
102bb69841SDavid S. Miller struct mii_phy_ops
112bb69841SDavid S. Miller {
122bb69841SDavid S. Miller 	int		(*init)(struct mii_phy *phy);
132bb69841SDavid S. Miller 	int		(*suspend)(struct mii_phy *phy);
142bb69841SDavid S. Miller 	int		(*setup_aneg)(struct mii_phy *phy, u32 advertise);
152bb69841SDavid S. Miller 	int		(*setup_forced)(struct mii_phy *phy, int speed, int fd);
162bb69841SDavid S. Miller 	int		(*poll_link)(struct mii_phy *phy);
172bb69841SDavid S. Miller 	int		(*read_link)(struct mii_phy *phy);
182bb69841SDavid S. Miller 	int		(*enable_fiber)(struct mii_phy *phy, int autoneg);
192bb69841SDavid S. Miller };
202bb69841SDavid S. Miller 
212bb69841SDavid S. Miller /* Structure used to statically define an mii/gii based PHY */
222bb69841SDavid S. Miller struct mii_phy_def
232bb69841SDavid S. Miller {
242bb69841SDavid S. Miller 	u32				phy_id;		/* Concatenated ID1 << 16 | ID2 */
252bb69841SDavid S. Miller 	u32				phy_id_mask;	/* Significant bits */
262bb69841SDavid S. Miller 	u32				features;	/* Ethtool SUPPORTED_* defines */
272bb69841SDavid S. Miller 	int				magic_aneg;	/* Autoneg does all speed test for us */
282bb69841SDavid S. Miller 	const char*			name;
292bb69841SDavid S. Miller 	const struct mii_phy_ops*	ops;
302bb69841SDavid S. Miller };
312bb69841SDavid S. Miller 
322bb69841SDavid S. Miller enum {
332bb69841SDavid S. Miller 	BCM54XX_COPPER,
342bb69841SDavid S. Miller 	BCM54XX_FIBER,
352bb69841SDavid S. Miller 	BCM54XX_GBIC,
362bb69841SDavid S. Miller 	BCM54XX_SGMII,
372bb69841SDavid S. Miller 	BCM54XX_UNKNOWN,
382bb69841SDavid S. Miller };
392bb69841SDavid S. Miller 
402bb69841SDavid S. Miller /* An instance of a PHY, partially borrowed from mii_if_info */
412bb69841SDavid S. Miller struct mii_phy
422bb69841SDavid S. Miller {
432bb69841SDavid S. Miller 	struct mii_phy_def*	def;
442bb69841SDavid S. Miller 	u32			advertising;
452bb69841SDavid S. Miller 	int			mii_id;
462bb69841SDavid S. Miller 
472bb69841SDavid S. Miller 	/* 1: autoneg enabled, 0: disabled */
482bb69841SDavid S. Miller 	int			autoneg;
492bb69841SDavid S. Miller 
502bb69841SDavid S. Miller 	/* forced speed & duplex (no autoneg)
512bb69841SDavid S. Miller 	 * partner speed & duplex & pause (autoneg)
522bb69841SDavid S. Miller 	 */
532bb69841SDavid S. Miller 	int			speed;
542bb69841SDavid S. Miller 	int			duplex;
552bb69841SDavid S. Miller 	int			pause;
562bb69841SDavid S. Miller 
572bb69841SDavid S. Miller 	/* Provided by host chip */
582bb69841SDavid S. Miller 	struct net_device	*dev;
592bb69841SDavid S. Miller 	int (*mdio_read) (struct net_device *dev, int mii_id, int reg);
602bb69841SDavid S. Miller 	void (*mdio_write) (struct net_device *dev, int mii_id, int reg, int val);
612bb69841SDavid S. Miller 	void			*platform_data;
622bb69841SDavid S. Miller };
632bb69841SDavid S. Miller 
642bb69841SDavid S. Miller /* Pass in a struct mii_phy with dev, mdio_read and mdio_write
652bb69841SDavid S. Miller  * filled, the remaining fields will be filled on return
662bb69841SDavid S. Miller  */
6719e2f6feSDavid S. Miller extern int sungem_phy_probe(struct mii_phy *phy, int mii_id);
682bb69841SDavid S. Miller 
692bb69841SDavid S. Miller 
702bb69841SDavid S. Miller /* MII definitions missing from mii.h */
712bb69841SDavid S. Miller 
722bb69841SDavid S. Miller #define BMCR_SPD2	0x0040		/* Gigabit enable (bcm54xx)	*/
732bb69841SDavid S. Miller #define LPA_PAUSE	0x0400
742bb69841SDavid S. Miller 
752bb69841SDavid S. Miller /* More PHY registers (model specific) */
762bb69841SDavid S. Miller 
772bb69841SDavid S. Miller /* MII BCM5201 MULTIPHY interrupt register */
782bb69841SDavid S. Miller #define MII_BCM5201_INTERRUPT			0x1A
792bb69841SDavid S. Miller #define MII_BCM5201_INTERRUPT_INTENABLE		0x4000
802bb69841SDavid S. Miller 
812bb69841SDavid S. Miller #define MII_BCM5201_AUXMODE2			0x1B
822bb69841SDavid S. Miller #define MII_BCM5201_AUXMODE2_LOWPOWER		0x0008
832bb69841SDavid S. Miller 
842bb69841SDavid S. Miller #define MII_BCM5201_MULTIPHY                    0x1E
852bb69841SDavid S. Miller 
862bb69841SDavid S. Miller /* MII BCM5201 MULTIPHY register bits */
872bb69841SDavid S. Miller #define MII_BCM5201_MULTIPHY_SERIALMODE         0x0002
882bb69841SDavid S. Miller #define MII_BCM5201_MULTIPHY_SUPERISOLATE       0x0008
892bb69841SDavid S. Miller 
902bb69841SDavid S. Miller /* MII BCM5221 Additional registers */
912bb69841SDavid S. Miller #define MII_BCM5221_TEST			0x1f
922bb69841SDavid S. Miller #define MII_BCM5221_TEST_ENABLE_SHADOWS		0x0080
932bb69841SDavid S. Miller #define MII_BCM5221_SHDOW_AUX_STAT2		0x1b
942bb69841SDavid S. Miller #define MII_BCM5221_SHDOW_AUX_STAT2_APD		0x0020
952bb69841SDavid S. Miller #define MII_BCM5221_SHDOW_AUX_MODE4		0x1a
962bb69841SDavid S. Miller #define MII_BCM5221_SHDOW_AUX_MODE4_IDDQMODE	0x0001
972bb69841SDavid S. Miller #define MII_BCM5221_SHDOW_AUX_MODE4_CLKLOPWR	0x0004
982bb69841SDavid S. Miller 
992bb69841SDavid S. Miller /* MII BCM5241 Additional registers */
1002bb69841SDavid S. Miller #define MII_BCM5241_SHDOW_AUX_MODE4_STANDBYPWR	0x0008
1012bb69841SDavid S. Miller 
1022bb69841SDavid S. Miller /* MII BCM5400 1000-BASET Control register */
1032bb69841SDavid S. Miller #define MII_BCM5400_GB_CONTROL			0x09
1042bb69841SDavid S. Miller #define MII_BCM5400_GB_CONTROL_FULLDUPLEXCAP	0x0200
1052bb69841SDavid S. Miller 
1062bb69841SDavid S. Miller /* MII BCM5400 AUXCONTROL register */
1072bb69841SDavid S. Miller #define MII_BCM5400_AUXCONTROL                  0x18
1082bb69841SDavid S. Miller #define MII_BCM5400_AUXCONTROL_PWR10BASET       0x0004
1092bb69841SDavid S. Miller 
1102bb69841SDavid S. Miller /* MII BCM5400 AUXSTATUS register */
1112bb69841SDavid S. Miller #define MII_BCM5400_AUXSTATUS                   0x19
1122bb69841SDavid S. Miller #define MII_BCM5400_AUXSTATUS_LINKMODE_MASK     0x0700
1132bb69841SDavid S. Miller #define MII_BCM5400_AUXSTATUS_LINKMODE_SHIFT    8
1142bb69841SDavid S. Miller 
1152bb69841SDavid S. Miller /* 1000BT control (Marvell & BCM54xx at least) */
1162bb69841SDavid S. Miller #define MII_1000BASETCONTROL			0x09
1172bb69841SDavid S. Miller #define MII_1000BASETCONTROL_FULLDUPLEXCAP	0x0200
1182bb69841SDavid S. Miller #define MII_1000BASETCONTROL_HALFDUPLEXCAP	0x0100
1192bb69841SDavid S. Miller 
1202bb69841SDavid S. Miller /* Marvell 88E1011 PHY control */
1212bb69841SDavid S. Miller #define MII_M1011_PHY_SPEC_CONTROL		0x10
1222bb69841SDavid S. Miller #define MII_M1011_PHY_SPEC_CONTROL_MANUAL_MDIX	0x20
1232bb69841SDavid S. Miller #define MII_M1011_PHY_SPEC_CONTROL_AUTO_MDIX	0x40
1242bb69841SDavid S. Miller 
1252bb69841SDavid S. Miller /* Marvell 88E1011 PHY status */
1262bb69841SDavid S. Miller #define MII_M1011_PHY_SPEC_STATUS		0x11
1272bb69841SDavid S. Miller #define MII_M1011_PHY_SPEC_STATUS_1000		0x8000
1282bb69841SDavid S. Miller #define MII_M1011_PHY_SPEC_STATUS_100		0x4000
1292bb69841SDavid S. Miller #define MII_M1011_PHY_SPEC_STATUS_SPD_MASK	0xc000
1302bb69841SDavid S. Miller #define MII_M1011_PHY_SPEC_STATUS_FULLDUPLEX	0x2000
1312bb69841SDavid S. Miller #define MII_M1011_PHY_SPEC_STATUS_RESOLVED	0x0800
1322bb69841SDavid S. Miller #define MII_M1011_PHY_SPEC_STATUS_TX_PAUSE	0x0008
1332bb69841SDavid S. Miller #define MII_M1011_PHY_SPEC_STATUS_RX_PAUSE	0x0004
1342bb69841SDavid S. Miller 
1352bb69841SDavid S. Miller #endif /* __SUNGEM_PHY_H__ */
136