]>
Commit | Line | Data |
---|---|---|
40a1f26c | 1 | ////////////////////////////////////////////////////////////////////// |
2 | //// //// | |
3 | //// File name: pci_decoder.v //// | |
4 | //// //// | |
5 | //// This file is part of the "PCI bridge" project //// | |
6 | //// http://www.opencores.org/cores/pci/ //// | |
7 | //// //// | |
8 | //// Author(s): //// | |
9 | //// - Tadej Markovic, tadej@opencores.org //// | |
10 | //// //// | |
11 | //// All additional information is avaliable in the README.txt //// | |
12 | //// file. //// | |
13 | //// //// | |
14 | //// //// | |
15 | ////////////////////////////////////////////////////////////////////// | |
16 | //// //// | |
17 | //// Copyright (C) 2000 Tadej Markovic, tadej@opencores.org //// | |
18 | //// //// | |
19 | //// This source file may be used and distributed without //// | |
20 | //// restriction provided that this copyright statement is not //// | |
21 | //// removed from the file and that any derivative work contains //// | |
22 | //// the original copyright notice and the associated disclaimer. //// | |
23 | //// //// | |
24 | //// This source file is free software; you can redistribute it //// | |
25 | //// and/or modify it under the terms of the GNU Lesser General //// | |
26 | //// Public License as published by the Free Software Foundation; //// | |
27 | //// either version 2.1 of the License, or (at your option) any //// | |
28 | //// later version. //// | |
29 | //// //// | |
30 | //// This source is distributed in the hope that it will be //// | |
31 | //// useful, but WITHOUT ANY WARRANTY; without even the implied //// | |
32 | //// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR //// | |
33 | //// PURPOSE. See the GNU Lesser General Public License for more //// | |
34 | //// details. //// | |
35 | //// //// | |
36 | //// You should have received a copy of the GNU Lesser General //// | |
37 | //// Public License along with this source; if not, download it //// | |
38 | //// from http://www.opencores.org/lgpl.shtml //// | |
39 | //// //// | |
40 | ////////////////////////////////////////////////////////////////////// | |
41 | // | |
42 | // CVS Revision History | |
43 | // | |
44 | // $Log: pci_pci_decoder.v,v $ | |
45 | // Revision 1.1 2007-03-20 17:50:56 sithglan | |
46 | // add shit | |
47 | // | |
48 | // Revision 1.1 2003/01/27 16:49:31 mihad | |
49 | // Changed module and file names. Updated scripts accordingly. FIFO synchronizations changed. | |
50 | // | |
51 | // Revision 1.3 2002/02/01 15:25:12 mihad | |
52 | // Repaired a few bugs, updated specification, added test bench files and design document | |
53 | // | |
54 | // Revision 1.2 2001/10/05 08:14:28 mihad | |
55 | // Updated all files with inclusion of timescale file for simulation purposes. | |
56 | // | |
57 | // Revision 1.1.1.1 2001/10/02 15:33:46 mihad | |
58 | // New project directory structure | |
59 | // | |
60 | // | |
61 | ||
62 | `include "pci_constants.v" | |
63 | ||
64 | // synopsys translate_off | |
65 | `include "timescale.v" | |
66 | // synopsys translate_on | |
67 | ||
68 | module pci_pci_decoder (hit, addr_out, | |
69 | addr_in, bc_in, | |
70 | base_addr, mask_addr, tran_addr, at_en, | |
71 | mem_io_space, mem_en, io_en) ; | |
72 | ||
73 | // Decoding address size parameter - for FPGAs 1MegByte is recommended | |
74 | // MAXIMUM is 20 (4KBytes), length 12 is 1 MByte !!! | |
75 | parameter decode_len = 12 ; | |
76 | ||
77 | //########################################################################################################### | |
78 | // ALL COMMENTS are written as there were decode_len 20. This number and 12 (32 - 20) are assigning the | |
79 | // numbers of decoded and compared bits, etc. | |
80 | //########################################################################################################### | |
81 | ||
82 | /*----------------------------------------------------------------------------------------------------------- | |
83 | DECODER interface decodes input address (ADDR_IN); what means that it validates (HIT), if input address | |
84 | falls within the defined image space boundaries. Image space boundarie is defined with image base address | |
85 | register (BASE_ADDR) and address mask register (MASK_ADDR). | |
86 | Beside that, it also translates (maps) the input address to the output address (ADDR_OUT), regarding the | |
87 | translation address register (TRAN_ADDR) and the address mask register. | |
88 | -----------------------------------------------------------------------------------------------------------*/ | |
89 | ||
90 | // output control | |
91 | output hit ; | |
92 | // output address | |
93 | output [31:0] addr_out ; | |
94 | // input address and bus command | |
95 | input [31:0] addr_in ; | |
96 | input [3:0] bc_in ; | |
97 | ||
98 | // input registers - 12 LSbits are not valid since the smallest possible size is 4KB ! | |
99 | input [31:(32-decode_len)] base_addr ; | |
100 | input [31:(32-decode_len)] mask_addr ; | |
101 | input [31:(32-decode_len)] tran_addr ; | |
102 | ||
103 | // input bit[2] of the Image Control register used to enable the address translation ! | |
104 | input at_en ; | |
105 | ||
106 | // memory or io space selection and its enable signals ! | |
107 | input mem_io_space ; | |
108 | input mem_en ; | |
109 | input io_en ; | |
110 | ||
111 | /*----------------------------------------------------------------------------------------------------------- | |
112 | Internal signals ! | |
113 | -----------------------------------------------------------------------------------------------------------*/ | |
114 | ||
115 | // bit[31] if address mask register is IMAGE ENABLE bit (img_en) | |
116 | wire img_en ; | |
117 | ||
118 | // addr_in_compare are masked input address bits that are compared with masked base_addr | |
119 | wire [31:(32-decode_len)] addr_in_compare ; | |
120 | // base_addr_compare are masked base address bits that are compared with masked addr_in | |
121 | wire [31:(32-decode_len)] base_addr_compare ; | |
122 | ||
123 | /*----------------------------------------------------------------------------------------------------------- | |
124 | Decoding the input address! | |
125 | This logic produces the loghest path in this module! | |
126 | ||
127 | 20 MSbits of input addres are as well as base address (20 bits) masked with corrected address mask. Only | |
128 | masked bits of each vector are actually logically compared. | |
129 | Bit[31] of address mask register is used to enable the image space ! | |
130 | Because of PCI bus specifications, there is also the comparison of memory/io selection (mem_io_space) and | |
131 | its appropriate enable bit (mem_en / io_en). | |
132 | -----------------------------------------------------------------------------------------------------------*/ | |
133 | ||
134 | assign addr_in_compare = (addr_in[31:(32-decode_len)] & mask_addr) ; | |
135 | ||
136 | assign base_addr_compare = (base_addr & mask_addr) ; | |
137 | ||
138 | assign img_en = mask_addr[31] ; | |
139 | ||
140 | wire addr_hit = (addr_in_compare == base_addr_compare) ; | |
141 | ||
142 | wire space_hit = (!mem_io_space && mem_en && img_en) || (mem_io_space && io_en && img_en) ; | |
143 | ||
144 | reg bc_hit ; | |
145 | always@(bc_in or mem_io_space) | |
146 | begin // Allowed bus commands for accesses through IMAGEs to WB bus - BC_CONF_WRITE/READ are not used with address claim!!! | |
147 | case ( {bc_in[3:1], mem_io_space} ) | |
148 | 4'b001_1, // BC_IO_READ or BC_IO_WRITE and IO space | |
149 | 4'b011_0, // BC_MEM_READ or BC_MEM_WRITE and MEM space | |
150 | 4'b110_0, // BC_MEM_READ_MUL and MEM space - BC_DUAL_ADDR_CYC must NOT be allowed! | |
151 | 4'b111_0: // BC_MEM_READ_LN or BC_MEM_WRITE_INVAL and MEM space | |
152 | bc_hit <= 1'b1 ; | |
153 | default: | |
154 | bc_hit <= 1'b0 ; | |
155 | endcase | |
156 | end | |
157 | ||
158 | wire bc_forbid = bc_in[3] && bc_in[2] && !bc_in[1] && bc_in[0] ; // BC_DUAL_ADDR_CYC must NOT be allowed! | |
159 | ||
160 | ||
161 | assign hit = (addr_hit && space_hit && bc_hit && !bc_forbid) ; | |
162 | ||
163 | /*----------------------------------------------------------------------------------------------------------- | |
164 | Translating the input address! | |
165 | ||
166 | Translation of input address is not implemented if ADDR_TRAN_IMPL is not defined | |
167 | ||
168 | 20 MSbits of input address are masked with negated value of the corrected address mask in order to get | |
169 | address bits of the input address which won't be replaced with translation address bits. | |
170 | Translation address bits (20 bits) are masked with corrected address mask. Only masked bits of vector are | |
171 | actually valid, all others are zero. | |
172 | Boath vectors are bit-wise ORed in order to get the valid translation address with an offset of an input | |
173 | address. | |
174 | 12 LSbits of an input address are assigned to 12 LSbits of an output addres. | |
175 | -----------------------------------------------------------------------------------------------------------*/ | |
176 | ||
177 | `ifdef ADDR_TRAN_IMPL | |
178 | // if Address Translation Enable bit is set, then translation address is used othervise input address is used! | |
179 | // addr_in_combine input address bits are not replaced with translation address! | |
180 | wire [31:(32-decode_len)] addr_in_combine ; | |
181 | // tran_addr_combine are masked and combined with addr_in_combine! | |
182 | reg [31:(32-decode_len)] tran_addr_combine ; | |
183 | ||
184 | assign addr_in_combine = (addr_in[31:(32-decode_len)] & ~mask_addr) ; | |
185 | always@(at_en or tran_addr or mask_addr or addr_in) | |
186 | begin | |
187 | if (at_en) | |
188 | begin | |
189 | tran_addr_combine <= (tran_addr & mask_addr) ; | |
190 | end | |
191 | else | |
192 | begin | |
193 | tran_addr_combine <= (addr_in[31:(32-decode_len)] & mask_addr) ; | |
194 | end | |
195 | end | |
196 | ||
197 | assign addr_out[31:(32-decode_len)] = (addr_in_combine | tran_addr_combine) ; | |
198 | assign addr_out[(31-decode_len):0] = addr_in [(31-decode_len):0] ; | |
199 | `else | |
200 | assign addr_out = addr_in ; | |
201 | `endif | |
202 | ||
203 | endmodule | |
204 |