Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / obp / obp / dev / network / common / mif / gmii-h.fth
CommitLineData
920dae64
AT
1\ ========== Copyright Header Begin ==========================================
2\
3\ Hypervisor Software File: gmii-h.fth
4\
5\ Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
6\
7\ - Do no alter or remove copyright notices
8\
9\ - Redistribution and use of this software in source and binary forms, with
10\ or without modification, are permitted provided that the following
11\ conditions are met:
12\
13\ - Redistribution of source code must retain the above copyright notice,
14\ this list of conditions and the following disclaimer.
15\
16\ - Redistribution in binary form must reproduce the above copyright notice,
17\ this list of conditions and the following disclaimer in the
18\ documentation and/or other materials provided with the distribution.
19\
20\ Neither the name of Sun Microsystems, Inc. or the names of contributors
21\ may be used to endorse or promote products derived from this software
22\ without specific prior written permission.
23\
24\ This software is provided "AS IS," without a warranty of any kind.
25\ ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
26\ INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
27\ PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN
28\ MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE FOR
29\ ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
30\ DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
31\ OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
32\ FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE
33\ DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY,
34\ ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, EVEN IF
35\ SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
36\
37\ You acknowledge that this software is not designed, licensed or
38\ intended for use in the design, construction, operation or maintenance of
39\ any nuclear facility.
40\
41\ ========== Copyright Header End ============================================
42id: @(#) gmii-h.fth 1.2 03/08/23
43purpose: Ethernet PHY GMII register access routines and bit-fields.
44copyright: Copyright 1999-2003 Sun Microsystems, Inc. All Rights Reserved.
45copyright: Use is subject to license terms.
46
47headerless
48
49\ GMII 1000Base-T Control Register definitions
50h# 100 constant gcr.1000bt-hdx \ Advertise 1000Base-T HDX
51h# 200 constant gcr.1000bt-fdx \ Advertise 1000Base-T FDX
52h# 800 constant gcr.ms-cfg-value \ Master/Salve 1000Base-T link clock value
53h# 1000 constant gcr.ms-cfg-enable \ Master/Slave 1000Base-T link clock enable
54
55\ GMII 1000Base-T Status Register definitions
56h# 400 constant gsr.lp-1000hdx \ Link Partner 1000Base-T HDX capable
57h# 800 constant gsr.lp-1000fdx \ Link Partner 1000Base-T FDX capable
58h# 1000 constant gsr.remote-rx-status \ Remote receiver status
59h# 2000 constant gsr.local-rx-status \ Local Receiver status
60h# 4000 constant gsr.ms-cfg-resolution \ Master/Slave link-clk cfg resolution
61h# 8000 constant gsr.ms-cfg-fault \ Master/Salve link-clk cfg fault
62
63\ GMII Extended Status Register definitions
64h# 2000 constant esr.1000bt-fdx \ 1000Base-T FDX capable
65h# 1000 constant esr.1000bt-hdx \ 1000Base-T HDX capable
66
67headers
68
69\ 1000 Base-T Control Register
70: phy-1000-cr@ ( -- data ) 9 phy@ ;
71: phy-1000-cr! ( data -- ) 9 phy! ;
72
73\ 1000 Base-T Status Register
74: phy-1000-sr@ ( -- data ) h# a phy@ ;
75
76\ Extended Status register
77: phy-esr@ ( -- data ) h# f phy@ ;
78
79: gmii-phy? ( -- flag )
80 phy-sr@ physr.ext-status and 0<>
81;
82
83headers