Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / obp / obp / dev / pci / compatible.fth
CommitLineData
920dae64
AT
1\ ========== Copyright Header Begin ==========================================
2\
3\ Hypervisor Software File: compatible.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: @(#)compatible.fth 1.6 06/05/03
43purpose:
44copyright: Copyright 1994 Firmworks All Rights Reserved
45copyright: Copyright 2006 Sun Microsystems, Inc. All Rights Reserved
46copyright: Use is subject to license terms.
47
48headerless
49
50: $hold ( adr len -- )
51 dup if bounds swap 1- ?do i c@ hold -1 +loop else 2drop then
52;
53
54: vid,did ( -- ven-id dev-id ) 0 my-l@ lwsplit ;
55
56: class-code ( -- n ) 8 my-l@ 8 rshift ;
57
58: subsystem-base ( -- n )
59 h# 0e my-b@ h# 7f and 2 = if h# 40 else h# 2c then
60;
61
62: svid,ssid ( -- subven-id subsys-id )
63 class-code h# 60400 = if
64 \ Bridges dont implement subvendor ID and Subsystem ID
65 0 0
66 else
67 subsystem-base my-l@ lwsplit
68 then
69;
70
71: rev-id ( -- rev-id ) h# 8 my-b@ ;
72
73h# ffff constant invalid-std-cap
74h# ffff.ffff constant invalid-ext-cap
75
76: find-std-capability ( id -- pointer | 0 )
77 h# 34 my-b@ ( id pointer )
78 begin dup while ( id pointer )
79 2dup my-w@ dup invalid-std-cap <> if ( id pointer id w-value )
80 wbsplit -rot = if ( id pointer next )
81 drop nip exit ( pointer )
82 else
83 nip ( id next )
84 then
85 else
86 cmn-warn[ " Standard Capability Config access failed" ]cmn-end
87 abort
88 then
89 repeat
90 nip
91;
92
93: find-extd-capability ( id -- pointer | 0 )
94 h# 100
95 begin dup while ( id pointer )
96 2dup my-l@ dup invalid-ext-cap <> if ( id poinetr id l-value )
97 lwsplit 4 >> -rot = if ( id pointer next )
98 drop nip exit ( pointer )
99 else
100 nip ( id next )
101 then
102 else
103 cmn-warn[ " Extended Capability Config access failed" ]cmn-end
104 abort
105 then
106 repeat
107 nip
108;
109
110: pcie-capability-regs ( -- pointer | 0 ) h# 10 find-std-capability ;
111: aer-capability-regs ( -- pointer | 0 ) 1 find-extd-capability ;
112: shpc-capability-regs ( -- pointer | 0 ) h# 0c find-std-capability ;
113
114: get-port-type ( -- port-type )
115 pcie-capability-regs 2 + my-w@ 4 >> h# f and
116;
117
118pcie-capability-regs 0<> value pci-express?
119
120fload ${BP}/dev/pci/compatible-prop.fth