-
Notifications
You must be signed in to change notification settings - Fork 12
/
APB_Controller.v
297 lines (244 loc) · 5.91 KB
/
APB_Controller.v
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
// AHB to APG Bridge | Maven Silicon
//
//
//
// APB FSM Controller
// Date:08-06-2022
//
// By-Prajwal Kumar Sahu
module APB_FSM_Controller( Hclk,Hresetn,valid,Haddr1,Haddr2,Hwdata1,Hwdata2,Prdata,Hwrite,Haddr,Hwdata,Hwritereg,tempselx,
Pwrite,Penable,Pselx,Paddr,Pwdata,Hreadyout);
input Hclk,Hresetn,valid,Hwrite,Hwritereg;
input [31:0] Hwdata,Haddr,Haddr1,Haddr2,Hwdata1,Hwdata2,Prdata;
input [2:0] tempselx;
output reg Pwrite,Penable;
output reg Hreadyout;
output reg [2:0] Pselx;
output reg [31:0] Paddr,Pwdata;
//////////////////////////////////////////////////////PARAMETERS
parameter ST_IDLE=3'b000;
parameter ST_WWAIT=3'b001;
parameter ST_READ= 3'b010;
parameter ST_WRITE=3'b011;
parameter ST_WRITEP=3'b100;
parameter ST_RENABLE=3'b101;
parameter ST_WENABLE=3'b110;
parameter ST_WENABLEP=3'b111;
//////////////////////////////////////////////////// PRESENT STATE LOGIC
reg [2:0] PRESENT_STATE,NEXT_STATE;
always @(posedge Hclk)
begin:PRESENT_STATE_LOGIC
if (~Hresetn)
PRESENT_STATE<=ST_IDLE;
else
PRESENT_STATE<=NEXT_STATE;
end
/////////////////////////////////////////////////////// NEXT STATE LOGIC
always @(PRESENT_STATE,valid,Hwrite,Hwritereg)
begin:NEXT_STATE_LOGIC
case (PRESENT_STATE)
ST_IDLE:begin
if (~valid)
NEXT_STATE=ST_IDLE;
else if (valid && Hwrite)
NEXT_STATE=ST_WWAIT;
else
NEXT_STATE=ST_READ;
end
ST_WWAIT:begin
if (~valid)
NEXT_STATE=ST_WRITE;
else
NEXT_STATE=ST_WRITEP;
end
ST_READ: begin
NEXT_STATE=ST_RENABLE;
end
ST_WRITE:begin
if (~valid)
NEXT_STATE=ST_WENABLE;
else
NEXT_STATE=ST_WENABLEP;
end
ST_WRITEP:begin
NEXT_STATE=ST_WENABLEP;
end
ST_RENABLE:begin
if (~valid)
NEXT_STATE=ST_IDLE;
else if (valid && Hwrite)
NEXT_STATE=ST_WWAIT;
else
NEXT_STATE=ST_READ;
end
ST_WENABLE:begin
if (~valid)
NEXT_STATE=ST_IDLE;
else if (valid && Hwrite)
NEXT_STATE=ST_WWAIT;
else
NEXT_STATE=ST_READ;
end
ST_WENABLEP:begin
if (~valid && Hwritereg)
NEXT_STATE=ST_WRITE;
else if (valid && Hwritereg)
NEXT_STATE=ST_WRITEP;
else
NEXT_STATE=ST_READ;
end
default: begin
NEXT_STATE=ST_IDLE;
end
endcase
end
////////////////////////////////////////////////////////OUTPUT LOGIC:COMBINATIONAL
reg Penable_temp,Hreadyout_temp,Pwrite_temp;
reg [2:0] Pselx_temp;
reg [31:0] Paddr_temp, Pwdata_temp;
always @(*)
begin:OUTPUT_COMBINATIONAL_LOGIC
case(PRESENT_STATE)
ST_IDLE: begin
if (valid && ~Hwrite)
begin:IDLE_TO_READ
Paddr_temp=Haddr;
Pwrite_temp=Hwrite;
Pselx_temp=tempselx;
Penable_temp=0;
Hreadyout_temp=0;
end
else if (valid && Hwrite)
begin:IDLE_TO_WWAIT
Pselx_temp=0;
Penable_temp=0;
Hreadyout_temp=1;
end
else
begin:IDLE_TO_IDLE
Pselx_temp=0;
Penable_temp=0;
Hreadyout_temp=1;
end
end
ST_WWAIT:begin
if (~valid)
begin:WAIT_TO_WRITE
Paddr_temp=Haddr1;
Pwrite_temp=1;
Pselx_temp=tempselx;
Penable_temp=0;
Pwdata_temp=Hwdata;
Hreadyout_temp=0;
end
else
begin:WAIT_TO_WRITEP
Paddr_temp=Haddr1;
Pwrite_temp=1;
Pselx_temp=tempselx;
Pwdata_temp=Hwdata;
Penable_temp=0;
Hreadyout_temp=0;
end
end
ST_READ: begin:READ_TO_RENABLE
Penable_temp=1;
Hreadyout_temp=1;
end
ST_WRITE:begin
if (~valid)
begin:WRITE_TO_WENABLE
Penable_temp=1;
Hreadyout_temp=1;
end
else
begin:WRITE_TO_WENABLEP ///DOUBT
Penable_temp=1;
Hreadyout_temp=1;
end
end
ST_WRITEP:begin:WRITEP_TO_WENABLEP
Penable_temp=1;
Hreadyout_temp=1;
end
ST_RENABLE:begin
if (valid && ~Hwrite)
begin:RENABLE_TO_READ
Paddr_temp=Haddr;
Pwrite_temp=Hwrite;
Pselx_temp=tempselx;
Penable_temp=0;
Hreadyout_temp=0;
end
else if (valid && Hwrite)
begin:RENABLE_TO_WWAIT
Pselx_temp=0;
Penable_temp=0;
Hreadyout_temp=1;
end
else
begin:RENABLE_TO_IDLE
Pselx_temp=0;
Penable_temp=0;
Hreadyout_temp=1;
end
end
ST_WENABLEP:begin
if (~valid && Hwritereg)
begin:WENABLEP_TO_WRITEP
Paddr_temp=Haddr2;
Pwrite_temp=Hwrite;
Pselx_temp=tempselx;
Penable_temp=0;
Pwdata_temp=Hwdata;
Hreadyout_temp=0;
end
else
begin:WENABLEP_TO_WRITE_OR_READ /////DOUBT
Paddr_temp=Haddr2;
Pwrite_temp=Hwrite;
Pselx_temp=tempselx;
Pwdata_temp=Hwdata;
Penable_temp=0;
Hreadyout_temp=0;
end
end
ST_WENABLE :begin
if (~valid && Hwritereg)
begin:WENABLE_TO_IDLE
Pselx_temp=0;
Penable_temp=0;
Hreadyout_temp=0;
end
else
begin:WENABLE_TO_WAIT_OR_READ /////DOUBT
Pselx_temp=0;
Penable_temp=0;
Hreadyout_temp=0;
end
end
endcase
end
////////////////////////////////////////////////////////OUTPUT LOGIC:SEQUENTIAL
always @(posedge Hclk)
begin
if (~Hresetn)
begin
Paddr<=0;
Pwrite<=0;
Pselx<=0;
Pwdata<=0;
Penable<=0;
Hreadyout<=0;
end
else
begin
Paddr<=Paddr_temp;
Pwrite<=Pwrite_temp;
Pselx<=Pselx_temp;
Pwdata<=Pwdata_temp;
Penable<=Penable_temp;
Hreadyout<=Hreadyout_temp;
end
end
endmodule