OpenCores
URL https://opencores.org/ocsvn/sdr_ctrl/sdr_ctrl/trunk

Subversion Repositories sdr_ctrl

[/] [sdr_ctrl/] [trunk/] [rtl/] [core/] [sdrc_bs_convert.v] - Blame information for rev 44

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 3 dinesha
/*********************************************************************
2
 
3
  SDRAM Controller buswidth converter
4
 
5
  This file is part of the sdram controller project
6
  http://www.opencores.org/cores/sdr_ctrl/
7
 
8
  Description: SDRAM Controller Buswidth converter
9
 
10
  This module does write/read data transalation between
11
     application data to SDRAM bus width
12
 
13
  To Do:
14
    nothing
15
 
16
  Author(s):
17
      - Dinesh Annayya, dinesha@opencores.org
18 44 dinesha
  Version  :  0.0  - 8th Jan 2012 - Initial structure
19
              0.2 - 2nd Feb 2012
20
                 Improved the command pipe structure to accept up-to 4 command of different bank.
21 3 dinesha
 
22
 
23
 
24
 Copyright (C) 2000 Authors and OPENCORES.ORG
25
 
26
 This source file may be used and distributed without
27
 restriction provided that this copyright statement is not
28
 removed from the file and that any derivative work contains
29
 the original copyright notice and the associated disclaimer.
30
 
31
 This source file is free software; you can redistribute it
32
 and/or modify it under the terms of the GNU Lesser General
33
 Public License as published by the Free Software Foundation;
34
 either version 2.1 of the License, or (at your option) any
35
later version.
36
 
37
 This source is distributed in the hope that it will be
38
 useful, but WITHOUT ANY WARRANTY; without even the implied
39
 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
40
 PURPOSE.  See the GNU Lesser General Public License for more
41
 details.
42
 
43
 You should have received a copy of the GNU Lesser General
44
 Public License along with this source; if not, download it
45
 from http://www.opencores.org/lgpl.shtml
46
 
47
*******************************************************************/
48
 
49 37 dinesha
`include "sdrc_define.v"
50 3 dinesha
module sdrc_bs_convert (
51
                    clk,
52
                    reset_n,
53
                    sdr_width,
54
 
55 44 dinesha
        /* Control Signal from xfr ctrl */
56
                    x2a_rdstart,
57
                    x2a_wrstart,
58
                    x2a_rdlast,
59
                    x2a_wrlast,
60
                    app_rd_data_int,
61
                    app_rd_valid_int,
62
                    app_wr_data_int,
63
                    app_wr_en_n_int,
64
                    app_wr_next_int,
65
 
66
       /* Control Signal from request ctrl */
67
                    app_req_addr_int,
68
                    app_req_len_int,
69
                    app_req_ack_int,
70
                    app_sdr_req_int,
71
 
72
   /* Control Signal from Bank Ctrl  */
73
                    app_req_dma_last_int,
74
 
75
   /*  Control Signal from/to to application i/f  */
76 3 dinesha
                    app_req_addr,
77
                    app_req_len,
78 4 dinesha
                    app_sdr_req,
79 3 dinesha
                    app_req_dma_last,
80
                    app_req_wr_n,
81
                    app_req_ack,
82
                    app_wr_data,
83
                    app_wr_en_n,
84
                    app_wr_next,
85
                    app_rd_data,
86
                    app_rd_valid
87
                );
88
parameter  APP_AW   = 30;  // Application Address Width
89
parameter  APP_DW   = 32;  // Application Data Width 
90
parameter  APP_BW   = 4;   // Application Byte Width
91
parameter  APP_RW   = 9;   // Application Request Width
92
 
93
parameter  SDR_DW   = 16;  // SDR Data Width 
94
parameter  SDR_BW   = 2;   // SDR Byte Width
95
 
96
input                    clk;
97
input                    reset_n ;
98 16 dinesha
input [1:0]             sdr_width           ; // 2'b00 - 32 Bit SDR, 2'b01 - 16 Bit SDR, 2'b1x - 8 Bit
99 3 dinesha
 
100 44 dinesha
/* Control Signal from xfr ctrl */
101
input                    x2a_rdstart; // read start indication
102
input                    x2a_wrstart; // writ start indication
103
input                    x2a_rdlast; //  read last burst access
104
input                    x2a_wrlast; // write last transfer
105
input [SDR_DW-1:0]       app_rd_data_int;
106
input                    app_rd_valid_int;
107
output [SDR_DW-1:0]      app_wr_data_int;
108
output [SDR_BW-1:0]      app_wr_en_n_int;
109
input                    app_wr_next_int;
110
 
111
/* Control Signal from request ctrl */
112
output [APP_AW:0]        app_req_addr_int;
113
output [APP_RW-1:0]      app_req_len_int;
114
input                    app_req_ack_int;
115
output                   app_sdr_req_int;
116
 
117
/* Control Signal from Bank Ctrl  */
118
output                   app_req_dma_last_int;
119
 
120
 
121
/*  Control Signal from/to to application i/f  */
122 3 dinesha
input [APP_AW-1:0]       app_req_addr;
123
input  [APP_RW-1:0]      app_req_len ;
124
input                    app_req_wr_n;
125 4 dinesha
input                    app_sdr_req;
126 3 dinesha
input                    app_req_dma_last;
127
output                   app_req_dma_last_int;
128
output                   app_req_ack;
129
 
130
input  [APP_DW-1:0]      app_wr_data;
131
input  [APP_BW-1:0]      app_wr_en_n;
132
output                   app_wr_next;
133
 
134
output [APP_DW-1:0]      app_rd_data;
135
output                   app_rd_valid;
136
 
137
reg [APP_AW:0]           app_req_addr_int;
138
reg [APP_RW-1:0]         app_req_len_int;
139
 
140
reg                      app_req_dma_last_int;
141 4 dinesha
reg                      app_sdr_req_int;
142 3 dinesha
reg                      app_req_ack;
143
 
144
reg [APP_DW-1:0]         app_rd_data;
145
reg                      app_rd_valid;
146
reg [SDR_DW-1:0]         app_wr_data_int;
147
reg [SDR_BW-1:0]         app_wr_en_n_int;
148
reg                      app_wr_next;
149
 
150 16 dinesha
reg [23:0]               saved_rd_data;
151 44 dinesha
reg [1:0]                rd_xfr_count;
152
reg [1:0]                wr_xfr_count;
153 3 dinesha
 
154
 
155
wire                  ok_to_req;
156
 
157 16 dinesha
assign ok_to_req = ((wr_xfr_count == 0) && (rd_xfr_count == 0));
158 3 dinesha
 
159
always @(*) begin
160 16 dinesha
        if(sdr_width == 2'b00) // 32 Bit SDR Mode
161 3 dinesha
          begin
162
            app_req_addr_int = {1'b0,app_req_addr};
163
            app_req_len_int = app_req_len;
164
            app_wr_data_int = app_wr_data;
165
            app_wr_en_n_int = app_wr_en_n;
166
            app_req_dma_last_int = app_req_dma_last;
167 4 dinesha
            app_sdr_req_int = app_sdr_req;
168 3 dinesha
            app_wr_next = app_wr_next_int;
169
            app_rd_data = app_rd_data_int;
170
            app_rd_valid = app_rd_valid_int;
171
            app_req_ack = app_req_ack_int;
172
          end
173 16 dinesha
        else if(sdr_width == 2'b01) // 16 Bit SDR Mode
174
        begin
175 3 dinesha
           // Changed the address and length to match the 16 bit SDR Mode
176
            app_req_addr_int = {app_req_addr,1'b0};
177
            app_req_len_int = {app_req_len,1'b0};
178
            app_req_dma_last_int = app_req_dma_last;
179 44 dinesha
            //app_sdr_req_int = app_sdr_req && ok_to_req;
180
            app_sdr_req_int = app_sdr_req ;
181 3 dinesha
            app_req_ack = app_req_ack_int;
182 16 dinesha
            app_wr_next = (app_wr_next_int & wr_xfr_count[0]);
183
            app_rd_valid = (rd_xfr_count & rd_xfr_count[0]);
184
            if(wr_xfr_count[0] == 1'b1)
185 3 dinesha
              begin
186
                app_wr_en_n_int = app_wr_en_n[3:2];
187
                app_wr_data_int = app_wr_data[31:16];
188
              end
189
            else
190
              begin
191
                app_wr_en_n_int = app_wr_en_n[1:0];
192
                app_wr_data_int = app_wr_data[15:0];
193
              end
194
 
195 16 dinesha
            app_rd_data = {app_rd_data_int,saved_rd_data[15:0]};
196
        end else  // 8 Bit SDR Mode
197
        begin
198
           // Changed the address and length to match the 16 bit SDR Mode
199
            app_req_addr_int = {app_req_addr,2'b0};
200
            app_req_len_int = {app_req_len,2'b0};
201
            app_req_dma_last_int = app_req_dma_last;
202
            app_sdr_req_int = app_sdr_req && ok_to_req;
203
            app_req_ack = app_req_ack_int;
204 44 dinesha
            app_wr_next = (app_wr_next_int & (wr_xfr_count[1:0]== 2'b11));
205
            app_rd_valid = (rd_xfr_count &   (rd_xfr_count[1:0]== 2'b11));
206
            if(wr_xfr_count[1:0] == 2'b11)
207 3 dinesha
            begin
208 16 dinesha
                app_wr_en_n_int = app_wr_en_n[3];
209
                app_wr_data_int = app_wr_data[31:24];
210 3 dinesha
            end
211 16 dinesha
            else if(wr_xfr_count[1:0] == 2'b10)
212 3 dinesha
            begin
213 16 dinesha
                app_wr_en_n_int = app_wr_en_n[2];
214
                app_wr_data_int = app_wr_data[23:16];
215 3 dinesha
            end
216 44 dinesha
            else if(wr_xfr_count[1:0] == 2'b01)
217 3 dinesha
            begin
218 16 dinesha
                app_wr_en_n_int = app_wr_en_n[1];
219
                app_wr_data_int = app_wr_data[15:8];
220 3 dinesha
            end
221 16 dinesha
            else begin
222
                app_wr_en_n_int = app_wr_en_n[0];
223
                app_wr_data_int = app_wr_data[7:0];
224
            end
225
 
226
            app_rd_data = {app_rd_data_int,saved_rd_data[23:0]};
227
          end
228
     end
229 3 dinesha
 
230
 
231
 
232
always @(posedge clk)
233
  begin
234
    if(!reset_n)
235
      begin
236 16 dinesha
        rd_xfr_count    <= 8'b0;
237
        wr_xfr_count    <= 8'b0;
238
        saved_rd_data   <= 24'h0;
239 3 dinesha
      end
240 16 dinesha
    else begin
241
 
242
        // During Write Phase
243 44 dinesha
        if(x2a_wrlast) begin
244
           wr_xfr_count    <= 0;
245 3 dinesha
        end
246 44 dinesha
        else if(app_wr_next_int) begin
247
           wr_xfr_count <= wr_xfr_count + 1'b1;
248 3 dinesha
        end
249 16 dinesha
 
250
        // During Read Phase
251 44 dinesha
        if(x2a_rdlast) begin
252
           rd_xfr_count    <= 0;
253 16 dinesha
        end
254 44 dinesha
        else if(app_rd_valid_int) begin
255
           rd_xfr_count   <= rd_xfr_count + 1'b1;
256
        end
257
 
258
        // Save Previous Data
259
        if(app_rd_valid_int) begin
260 16 dinesha
           if(sdr_width == 2'b01) // 16 Bit SDR Mode
261
              saved_rd_data[15:0]  <= app_rd_data_int;
262
            else begin// 8 bit SDR Mode - 
263
               if(rd_xfr_count[1:0] == 2'b00)      saved_rd_data[7:0]   <= app_rd_data_int[7:0];
264 44 dinesha
               else if(rd_xfr_count[1:0] == 2'b01) saved_rd_data[15:8]  <= app_rd_data_int[7:0];
265 16 dinesha
               else if(rd_xfr_count[1:0] == 2'b10) saved_rd_data[23:16] <= app_rd_data_int[7:0];
266
            end
267
        end
268
    end
269
end
270
 
271 3 dinesha
endmodule // sdr_bs_convert

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.