VirtualBox

source: vbox/trunk/src/VBox/Devices/Network/DevE1000Phy.h@ 73705

Last change on this file since 73705 was 69500, checked in by vboxsync, 7 years ago

*: scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.4 KB
Line 
1/** $Id: DevE1000Phy.h 69500 2017-10-28 15:14:05Z vboxsync $ */
2/** @file
3 * DevE1000Phy - Intel 82540EM Ethernet Controller Internal PHY Emulation, Header.
4 */
5
6/*
7 * Copyright (C) 2007-2017 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#include <VBox/types.h>
19
20#define PHY_EPID_M881000 0xC50
21#define PHY_EPID_M881011 0xC24
22
23#define PCTRL_SPDSELM 0x0040
24#define PCTRL_DUPMOD 0x0100
25#define PCTRL_ANEG 0x1000
26#define PCTRL_SPDSELL 0x2000
27#define PCTRL_RESET 0x8000
28
29#define PSTATUS_LNKSTAT 0x0004
30#define PSTATUS_NEGCOMP 0x0020
31
32/*
33 * Speed: 1000 Mb/s
34 * Duplex: full
35 * Page received
36 * Resolved
37 * Link up
38 * Receive Pause Enable
39 */
40#define PSSTAT_LINK_ALL 0xBC08
41#define PSSTAT_LINK 0x0400
42
43namespace Phy
44{
45 /**
46 * Indices of memory-mapped registers in register table
47 */
48 enum enmRegIdx
49 {
50 PCTRL_IDX,
51 PSTATUS_IDX,
52 PID_IDX,
53 EPID_IDX,
54 ANA_IDX,
55 LPA_IDX,
56 ANE_IDX,
57 NPT_IDX,
58 LPN_IDX,
59 GCON_IDX,
60 GSTATUS_IDX,
61 EPSTATUS_IDX,
62 PSCON_IDX,
63 PSSTAT_IDX,
64 PINTE_IDX,
65 PINTS_IDX,
66 EPSCON1_IDX,
67 PREC_IDX,
68 EPSCON2_IDX,
69 R30PS_IDX,
70 R30AW_IDX,
71 NUM_OF_PHY_REGS
72 };
73 /**
74 * Emulation state of PHY.
75 */
76 struct Phy_st
77 {
78 /** Network controller instance this PHY is attached to. */
79 int iInstance;
80 /** Register storage. */
81 uint16_t au16Regs[NUM_OF_PHY_REGS];
82 /** Current state of serial MDIO interface. */
83 uint16_t u16State;
84 /** Current state of serial MDIO interface. */
85 uint16_t u16Acc;
86 /** Number of bits remaining to be shifted into/out of accumulator. */
87 uint16_t u16Cnt;
88 /** PHY register offset selected for MDIO operation. */
89 uint16_t u16RegAdr;
90 };
91}
92
93#define MDIO_IDLE 0
94#define MDIO_ST 1
95#define MDIO_OP_ADR 2
96#define MDIO_TA_RD 3
97#define MDIO_TA_WR 4
98#define MDIO_READ 5
99#define MDIO_WRITE 6
100
101#define MDIO_READ_OP 2
102#define MDIO_WRITE_OP 1
103
104typedef struct Phy::Phy_st PHY;
105typedef PHY *PPHY;
106
107/* Interface *****************************************************************/
108namespace Phy {
109 /** Initialize PHY. */
110 void init(PPHY pPhy, int iNICInstance, uint16_t u16EPid);
111 /** Read PHY register at specified address. */
112 uint16_t readRegister(PPHY pPhy, uint32_t u32Address);
113 /** Write to PHY register at specified address. */
114 void writeRegister(PPHY pPhy, uint32_t u32Address, uint16_t u16Value);
115 /** Read the value on MDIO pin. */
116 bool readMDIO(PPHY pPhy);
117 /** Set the value of MDIO pin. */
118 void writeMDIO(PPHY pPhy, bool fPin);
119 /** Hardware reset. */
120 void hardReset(PPHY pPhy);
121 /** Query link status. */
122 bool isLinkUp(PPHY pPhy);
123 /** Set link status. */
124 void setLinkStatus(PPHY pPhy, bool fLinkIsUp);
125 /** Save PHY state. */
126 int saveState(PSSMHANDLE pSSMHandle, PPHY pPhy);
127 /** Restore previously saved PHY state. */
128 int loadState(PSSMHANDLE pSSMHandle, PPHY pPhy);
129}
130
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette