1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
/* $OpenBSD: rgephyreg.h,v 1.8 2015/07/19 06:35:18 yuo Exp $ */
/*
* Copyright (c) 2003
* Bill Paul <wpaul@windriver.com>. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Bill Paul.
* 4. Neither the name of the author nor the names of any co-contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
* $FreeBSD: rgephyreg.h,v 1.1 2003/09/11 03:53:46 wpaul Exp $
*/
#ifndef _DEV_MII_RGEPHYREG_H_
#define _DEV_MII_RGEPHYREG_H_
/*
* Realtek 8169S/8110S gigE PHY registers
*/
/* RTL8211B(L)/RTL8211C(L) */
#define RGEPHY_CR 0x10 /* PHY Specific Control */
#define RGEPHY_CR_ASSERT_CRS 0x0800
#define RGEPHY_CR_FORCE_LINK 0x0400
#define RGEPHY_CR_MDI_MASK 0x0060
#define RGEPHY_CR_MDIX_AUTO 0x0040
#define RGEPHY_CR_MDIX_MANUAL 0x0020
#define RGEPHY_CR_MDI_MANUAL 0x0000
#define RGEPHY_CR_CLK125_DIS 0x0010
#define RGEPHY_CR_ALDPS 0x0004 /* RTL8251 only */
#define RGEPHY_CR_JABBER_DIS 0x0001
#define RGEPHY_SR 0x11 /* PHY Specific Status */
#define RGEPHY_SR_SPEED_1000MBPS 0x8000
#define RGEPHY_SR_SPEED_100MBPS 0x4000
#define RGEPHY_SR_SPEED_10MBPS 0x0000
#define RGEPHY_SR_SPEED_MASK 0xc000
#define RGEPHY_SR_FDX 0x2000 /* full duplex */
#define RGEPHY_SR_PAGE_RECEIVED 0x1000 /* new page received */
#define RGEPHY_SR_SPD_DPLX_RESOLVED 0x0800 /* speed/duplex resolved */
#define RGEPHY_SR_LINK 0x0400 /* link up */
#define RGEPHY_SR_MDI_XOVER 0x0040 /* MDI crossover */
#define RGEPHY_SR_ALDPS 0x0008 /* RTL8211C(L) only */
#define RGEPHY_SR_JABBER 0x0001 /* Jabber */
#define RGEPHY_SR_SPEED(X) ((X) & RGEPHY_SR_SPEED_MASK)
#define RGEPHY_LC 0x18 /* PHY LED Control Register */
#define RGEPHY_LC_P2 0x1A /* PHY LED Control Register, Page 2 */
#define RGEPHY_LC_DISABLE 0x8000 /* disable leds */
/* Led pusle strething */
#define RGEPHY_LC_PULSE_1_3S 0x7000
#define RGEPHY_LC_PULSE_670MS 0x6000
#define RGEPHY_LC_PULSE_340MS 0x5000
#define RGEPHY_LC_PULSE_170MS 0x4000
#define RGEPHY_LC_PULSE_84MS 0x3000
#define RGEPHY_LC_PULSE_42MS 0x2000
#define RGEPHY_LC_PULSE_21MS 0x1000
#define RGEPHY_LC_PULSE_0MS 0x0000
#define RGEPHY_LC_LINK 0x0008 /* Link and speed indicated by combination of leds */
#define RGEPHY_LC_DUPLEX 0x0004
#define RGEPHY_LC_RX 0x0002
#define RGEPHY_LC_TX 0x0001
#define RGEPHY_PS 0x1F /* Page Select Register */
#define RGEPHY_PS_PAGE_0 0x0000
#define RGEPHY_PS_PAGE_1 0x0001
#define RGEPHY_PS_PAGE_2 0x0002
#define RGEPHY_PS_PAGE_3 0x0003
#define RGEPHY_PS_PAGE_4 0x0004
#endif /* _DEV_RGEPHY_MIIREG_H_ */
|