blob: e6dd441983f2ab5447f103ede4d0682397591246 [file] [log] [blame]
Tom Rini8b0c8a12018-05-06 18:27:01 -04001/* SPDX-License-Identifier: GPL-2.0 OR IBM-pibs */
Wolfgang Denk52744b42013-07-28 22:12:45 +02002/*
Wolfgang Denk52744b42013-07-28 22:12:45 +02003 * Additions (C) Copyright 2009 Industrie Dial Face S.p.A.
4 */
wdenk214ec6b2001-10-08 19:18:17 +00005/*----------------------------------------------------------------------------+
6|
wdenk5256def2003-09-18 10:45:21 +00007| File Name: miiphy.h
wdenk214ec6b2001-10-08 19:18:17 +00008|
wdenk5256def2003-09-18 10:45:21 +00009| Function: Include file defining PHY registers.
wdenk214ec6b2001-10-08 19:18:17 +000010|
wdenk5256def2003-09-18 10:45:21 +000011| Author: Mark Wisner
wdenk214ec6b2001-10-08 19:18:17 +000012|
wdenk214ec6b2001-10-08 19:18:17 +000013+----------------------------------------------------------------------------*/
14#ifndef _miiphy_h_
15#define _miiphy_h_
16
Andy Flemingaecf6fc2011-04-08 02:10:27 -050017#include <common.h>
Mike Frysingerd63ee712010-12-23 15:40:12 -050018#include <linux/mii.h>
Andy Flemingaecf6fc2011-04-08 02:10:27 -050019#include <linux/list.h>
Marian Balakowiczaab8c492005-10-28 22:30:33 +020020#include <net.h>
Andy Flemingaecf6fc2011-04-08 02:10:27 -050021#include <phy.h>
22
Wolfgang Denk934fcb62011-12-07 08:35:14 +010023int miiphy_read(const char *devname, unsigned char addr, unsigned char reg,
Larry Johnson81b974b2007-10-31 11:21:29 -050024 unsigned short *value);
Wolfgang Denk934fcb62011-12-07 08:35:14 +010025int miiphy_write(const char *devname, unsigned char addr, unsigned char reg,
Larry Johnson81b974b2007-10-31 11:21:29 -050026 unsigned short value);
Andy Flemingaea0c3e2011-04-07 14:38:35 -050027int miiphy_info(const char *devname, unsigned char addr, unsigned int *oui,
Larry Johnson81b974b2007-10-31 11:21:29 -050028 unsigned char *model, unsigned char *rev);
Andy Flemingaea0c3e2011-04-07 14:38:35 -050029int miiphy_reset(const char *devname, unsigned char addr);
30int miiphy_speed(const char *devname, unsigned char addr);
31int miiphy_duplex(const char *devname, unsigned char addr);
32int miiphy_is_1000base_x(const char *devname, unsigned char addr);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020033#ifdef CONFIG_SYS_FAULT_ECHO_LINK_DOWN
Andy Flemingaea0c3e2011-04-07 14:38:35 -050034int miiphy_link(const char *devname, unsigned char addr);
wdenk49c3f672003-10-08 22:33:00 +000035#endif
wdenk214ec6b2001-10-08 19:18:17 +000036
Andy Flemingaea0c3e2011-04-07 14:38:35 -050037void miiphy_init(void);
Marian Balakowiczcbdd1c82005-11-30 18:06:04 +010038
Andy Flemingaea0c3e2011-04-07 14:38:35 -050039int miiphy_set_current_dev(const char *devname);
40const char *miiphy_get_current_dev(void);
Andy Flemingaecf6fc2011-04-08 02:10:27 -050041struct mii_dev *mdio_get_current_dev(void);
Pankaj Bansal7c18fe82018-09-18 15:46:48 +053042struct list_head *mdio_get_list_head(void);
Andy Flemingaecf6fc2011-04-08 02:10:27 -050043struct mii_dev *miiphy_get_dev_by_name(const char *devname);
44struct phy_device *mdio_phydev_for_ethname(const char *devname);
Marian Balakowiczaab8c492005-10-28 22:30:33 +020045
Andy Flemingaea0c3e2011-04-07 14:38:35 -050046void miiphy_listdev(void);
Marian Balakowiczaab8c492005-10-28 22:30:33 +020047
Andy Flemingaecf6fc2011-04-08 02:10:27 -050048struct mii_dev *mdio_alloc(void);
Bin Menga961e1f2015-10-07 21:32:37 -070049void mdio_free(struct mii_dev *bus);
Andy Flemingaecf6fc2011-04-08 02:10:27 -050050int mdio_register(struct mii_dev *bus);
Michal Simek1a548f52016-12-08 10:06:26 +010051
52/**
53 * mdio_register_seq - Register mdio bus with sequence number
54 * @bus: mii device structure
55 * @seq: sequence number
56 *
57 * Return: 0 if success, negative value if error
58 */
59int mdio_register_seq(struct mii_dev *bus, int seq);
Bin Menga961e1f2015-10-07 21:32:37 -070060int mdio_unregister(struct mii_dev *bus);
Andy Flemingaecf6fc2011-04-08 02:10:27 -050061void mdio_list_devices(void);
62
Luigi 'Comio' Mantellini466827e2009-10-10 12:42:20 +020063#ifdef CONFIG_BITBANGMII
64
65#define BB_MII_DEVNAME "bb_miiphy"
66
67struct bb_miiphy_bus {
Mike Frysinger6b300dc2011-11-10 14:11:04 +000068 char name[16];
Luigi 'Comio' Mantellini466827e2009-10-10 12:42:20 +020069 int (*init)(struct bb_miiphy_bus *bus);
70 int (*mdio_active)(struct bb_miiphy_bus *bus);
71 int (*mdio_tristate)(struct bb_miiphy_bus *bus);
72 int (*set_mdio)(struct bb_miiphy_bus *bus, int v);
73 int (*get_mdio)(struct bb_miiphy_bus *bus, int *v);
74 int (*set_mdc)(struct bb_miiphy_bus *bus, int v);
75 int (*delay)(struct bb_miiphy_bus *bus);
76#ifdef CONFIG_BITBANGMII_MULTI
77 void *priv;
78#endif
79};
80
81extern struct bb_miiphy_bus bb_miiphy_buses[];
82extern int bb_miiphy_buses_num;
Marian Balakowiczaab8c492005-10-28 22:30:33 +020083
Andy Flemingaea0c3e2011-04-07 14:38:35 -050084void bb_miiphy_init(void);
Joe Hershberger0c333192016-08-08 11:28:39 -050085int bb_miiphy_read(struct mii_dev *miidev, int addr, int devad, int reg);
86int bb_miiphy_write(struct mii_dev *miidev, int addr, int devad, int reg,
87 u16 value);
Luigi 'Comio' Mantellini466827e2009-10-10 12:42:20 +020088#endif
wdenk214ec6b2001-10-08 19:18:17 +000089
90/* phy seed setup */
wdenk5256def2003-09-18 10:45:21 +000091#define AUTO 99
Larry Johnson81b974b2007-10-31 11:21:29 -050092#define _1000BASET 1000
wdenk5256def2003-09-18 10:45:21 +000093#define _100BASET 100
94#define _10BASET 10
95#define HALF 22
96#define FULL 44
wdenk214ec6b2001-10-08 19:18:17 +000097
98/* phy register offsets */
Mike Frysingerd63ee712010-12-23 15:40:12 -050099#define MII_MIPSCR 0x11
wdenk214ec6b2001-10-08 19:18:17 +0000100
Mike Frysingerd63ee712010-12-23 15:40:12 -0500101/* MII_LPA */
Larry Johnson81b974b2007-10-31 11:21:29 -0500102#define PHY_ANLPAR_PSB_802_3 0x0001
103#define PHY_ANLPAR_PSB_802_9 0x0002
wdenk656140b2004-04-25 13:18:40 +0000104
Mike Frysingerd63ee712010-12-23 15:40:12 -0500105/* MII_CTRL1000 masks */
Larry Johnson966a80b2007-11-01 08:46:50 -0500106#define PHY_1000BTCR_1000FD 0x0200
107#define PHY_1000BTCR_1000HD 0x0100
108
Mike Frysingerd63ee712010-12-23 15:40:12 -0500109/* MII_STAT1000 masks */
Larry Johnson81b974b2007-10-31 11:21:29 -0500110#define PHY_1000BTSR_MSCF 0x8000
111#define PHY_1000BTSR_MSCR 0x4000
112#define PHY_1000BTSR_LRS 0x2000
113#define PHY_1000BTSR_RRS 0x1000
114#define PHY_1000BTSR_1000FD 0x0800
115#define PHY_1000BTSR_1000HD 0x0400
wdenked2ac4b2004-03-14 18:23:55 +0000116
Larry Johnson966a80b2007-11-01 08:46:50 -0500117/* phy EXSR */
Mike Frysingerd63ee712010-12-23 15:40:12 -0500118#define ESTATUS_1000XF 0x8000
119#define ESTATUS_1000XH 0x4000
Larry Johnson966a80b2007-11-01 08:46:50 -0500120
Alex Marginean1a5b0982019-06-03 19:10:30 +0300121#ifdef CONFIG_DM_MDIO
122
123/**
124 * struct mdio_perdev_priv - Per-device class data for MDIO DM
125 *
126 * @mii_bus: Supporting MII legacy bus
127 */
128struct mdio_perdev_priv {
129 struct mii_dev *mii_bus;
130};
131
132/**
133 * struct mdio_ops - MDIO bus operations
134 *
135 * @read: Read from a PHY register
136 * @write: Write to a PHY register
137 * @reset: Reset the MDIO bus, NULL if not supported
138 */
139struct mdio_ops {
140 int (*read)(struct udevice *mdio_dev, int addr, int devad, int reg);
141 int (*write)(struct udevice *mdio_dev, int addr, int devad, int reg,
142 u16 val);
143 int (*reset)(struct udevice *mdio_dev);
144};
145
146#define mdio_get_ops(dev) ((struct mdio_ops *)(dev)->driver->ops)
147
148/**
149 * dm_mdio_probe_devices - Call probe on all MII devices, currently used for
150 * MDIO console commands.
151 */
152void dm_mdio_probe_devices(void);
153
154/**
155 * dm_mdio_phy_connect - Wrapper over phy_connect for DM MDIO
156 *
157 * @dev: mdio dev
158 * @addr: PHY address on MDIO bus
159 * @ethdev: ethernet device to connect to the PHY
160 * @interface: MAC-PHY protocol
161 *
162 * @return pointer to phy_device, or 0 on error
163 */
164struct phy_device *dm_mdio_phy_connect(struct udevice *dev, int addr,
165 struct udevice *ethdev,
166 phy_interface_t interface);
167
168#endif
169
wdenk214ec6b2001-10-08 19:18:17 +0000170#endif