]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/miiphy.h
remoteproc: Allow for individual remoteproc initialization
[thirdparty/u-boot.git] / include / miiphy.h
CommitLineData
4549e789 1/* SPDX-License-Identifier: GPL-2.0 OR IBM-pibs */
46263f2d 2/*
46263f2d
WD
3 * Additions (C) Copyright 2009 Industrie Dial Face S.p.A.
4 */
214ec6bb
WD
5/*----------------------------------------------------------------------------+
6|
65bd0e28 7| File Name: miiphy.h
214ec6bb 8|
65bd0e28 9| Function: Include file defining PHY registers.
214ec6bb 10|
65bd0e28 11| Author: Mark Wisner
214ec6bb 12|
214ec6bb
WD
13+----------------------------------------------------------------------------*/
14#ifndef _miiphy_h_
15#define _miiphy_h_
16
5f184715 17#include <common.h>
8ef583a0 18#include <linux/mii.h>
5f184715 19#include <linux/list.h>
63ff004c 20#include <net.h>
5f184715
AF
21#include <phy.h>
22
f915c931 23int miiphy_read(const char *devname, unsigned char addr, unsigned char reg,
298035df 24 unsigned short *value);
f915c931 25int miiphy_write(const char *devname, unsigned char addr, unsigned char reg,
298035df 26 unsigned short value);
16a53238 27int miiphy_info(const char *devname, unsigned char addr, unsigned int *oui,
298035df 28 unsigned char *model, unsigned char *rev);
16a53238
AF
29int 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);
6d0f6bcf 33#ifdef CONFIG_SYS_FAULT_ECHO_LINK_DOWN
16a53238 34int miiphy_link(const char *devname, unsigned char addr);
fc3e2165 35#endif
214ec6bb 36
16a53238 37void miiphy_init(void);
d9785c14 38
16a53238
AF
39int miiphy_set_current_dev(const char *devname);
40const char *miiphy_get_current_dev(void);
5f184715
AF
41struct mii_dev *mdio_get_current_dev(void);
42struct mii_dev *miiphy_get_dev_by_name(const char *devname);
43struct phy_device *mdio_phydev_for_ethname(const char *devname);
63ff004c 44
16a53238 45void miiphy_listdev(void);
63ff004c 46
5f184715 47struct mii_dev *mdio_alloc(void);
cb6baca7 48void mdio_free(struct mii_dev *bus);
5f184715 49int mdio_register(struct mii_dev *bus);
79e2a6a0
MS
50
51/**
52 * mdio_register_seq - Register mdio bus with sequence number
53 * @bus: mii device structure
54 * @seq: sequence number
55 *
56 * Return: 0 if success, negative value if error
57 */
58int mdio_register_seq(struct mii_dev *bus, int seq);
cb6baca7 59int mdio_unregister(struct mii_dev *bus);
5f184715
AF
60void mdio_list_devices(void);
61
4ba31ab3
LCM
62#ifdef CONFIG_BITBANGMII
63
64#define BB_MII_DEVNAME "bb_miiphy"
65
66struct bb_miiphy_bus {
f6add132 67 char name[16];
4ba31ab3
LCM
68 int (*init)(struct bb_miiphy_bus *bus);
69 int (*mdio_active)(struct bb_miiphy_bus *bus);
70 int (*mdio_tristate)(struct bb_miiphy_bus *bus);
71 int (*set_mdio)(struct bb_miiphy_bus *bus, int v);
72 int (*get_mdio)(struct bb_miiphy_bus *bus, int *v);
73 int (*set_mdc)(struct bb_miiphy_bus *bus, int v);
74 int (*delay)(struct bb_miiphy_bus *bus);
75#ifdef CONFIG_BITBANGMII_MULTI
76 void *priv;
77#endif
78};
79
80extern struct bb_miiphy_bus bb_miiphy_buses[];
81extern int bb_miiphy_buses_num;
63ff004c 82
16a53238 83void bb_miiphy_init(void);
dfcc496e
JH
84int bb_miiphy_read(struct mii_dev *miidev, int addr, int devad, int reg);
85int bb_miiphy_write(struct mii_dev *miidev, int addr, int devad, int reg,
86 u16 value);
4ba31ab3 87#endif
214ec6bb
WD
88
89/* phy seed setup */
65bd0e28 90#define AUTO 99
298035df 91#define _1000BASET 1000
65bd0e28
WD
92#define _100BASET 100
93#define _10BASET 10
94#define HALF 22
95#define FULL 44
214ec6bb
WD
96
97/* phy register offsets */
8ef583a0
MF
98#define MII_MIPSCR 0x11
99
100/* MII_LPA */
298035df
LJ
101#define PHY_ANLPAR_PSB_802_3 0x0001
102#define PHY_ANLPAR_PSB_802_9 0x0002
103
8ef583a0 104/* MII_CTRL1000 masks */
71bc6e64
LJ
105#define PHY_1000BTCR_1000FD 0x0200
106#define PHY_1000BTCR_1000HD 0x0100
107
8ef583a0 108/* MII_STAT1000 masks */
298035df
LJ
109#define PHY_1000BTSR_MSCF 0x8000
110#define PHY_1000BTSR_MSCR 0x4000
111#define PHY_1000BTSR_LRS 0x2000
112#define PHY_1000BTSR_RRS 0x1000
113#define PHY_1000BTSR_1000FD 0x0800
114#define PHY_1000BTSR_1000HD 0x0400
855a496f 115
71bc6e64 116/* phy EXSR */
8ef583a0
MF
117#define ESTATUS_1000XF 0x8000
118#define ESTATUS_1000XH 0x4000
71bc6e64 119
214ec6bb 120#endif