2021-10-29 10:04:59 +00:00
|
|
|
module CNT(
|
2023-07-16 03:21:44 +00:00
|
|
|
/* FSB clock and E clock inputs */
|
2024-09-29 07:29:49 +00:00
|
|
|
input CLK, input C8M, input E,
|
2021-10-29 10:04:59 +00:00
|
|
|
/* Refresh request */
|
2023-07-16 03:21:44 +00:00
|
|
|
output reg RefReq, output reg RefUrg,
|
2023-03-26 08:33:59 +00:00
|
|
|
/* Reset, button */
|
2024-09-22 12:13:18 +00:00
|
|
|
output reg nRESout, input nRESin, input nIPL2,
|
2023-03-20 04:53:10 +00:00
|
|
|
/* Mac PDS bus master control outputs */
|
2023-04-08 09:46:13 +00:00
|
|
|
output reg AoutOE, output reg nBR_IOB,
|
2024-09-22 01:53:14 +00:00
|
|
|
/* QoS control */
|
2024-09-06 10:05:06 +00:00
|
|
|
input BACT,
|
2024-09-29 07:29:49 +00:00
|
|
|
input BACTr,
|
|
|
|
input IOQoSCS,
|
|
|
|
input SndQoSCS,
|
2024-09-30 03:15:06 +00:00
|
|
|
input IACKCS,
|
2024-09-29 07:29:49 +00:00
|
|
|
output reg IOQoSEN,
|
|
|
|
output reg MCKE);
|
2023-03-26 08:33:59 +00:00
|
|
|
|
|
|
|
/* E clock synchronization */
|
2023-07-16 06:25:27 +00:00
|
|
|
reg [1:0] Er; always @(posedge CLK) Er[1:0] <= { Er[0], E };
|
2023-03-26 08:33:59 +00:00
|
|
|
wire EFall = Er[1] && !Er[0];
|
2023-07-16 06:25:27 +00:00
|
|
|
|
2024-09-29 07:29:49 +00:00
|
|
|
/* C8M clock synchronization */
|
|
|
|
reg [1:0] C8Mr; always @(posedge CLK) C8Mr[1:0] <= { C8Mr[0], C8M };
|
|
|
|
wire C8MFall = C8Mr[1] && !C8Mr[0];
|
|
|
|
|
2024-09-22 01:53:48 +00:00
|
|
|
/* NMI and reset synchronization */
|
2023-04-08 09:46:13 +00:00
|
|
|
reg nIPL2r; always @(posedge CLK) nIPL2r <= nIPL2;
|
2024-09-22 01:53:48 +00:00
|
|
|
reg nRESr; always @(posedge CLK) nRESr <= nRESin;
|
2023-04-08 09:49:29 +00:00
|
|
|
|
|
|
|
/* Startup sequence state */
|
|
|
|
reg [1:0] IS = 0;
|
2022-09-04 01:32:05 +00:00
|
|
|
|
2023-03-25 07:50:31 +00:00
|
|
|
/* Timer counts from 0 to 1010 (10) -- 11 states == 14.042 us
|
2023-03-22 01:11:58 +00:00
|
|
|
* Refresh timer sequence
|
2023-04-08 08:08:53 +00:00
|
|
|
* | Timer | RefReq | RefUrg |
|
|
|
|
* |---------|--------|-----------|
|
2023-03-22 01:11:58 +00:00
|
|
|
* | 0 0000 | 0 | 0 |
|
2023-04-08 08:08:53 +00:00
|
|
|
* | 1 0001 | 1 | 0 |
|
2023-03-26 08:33:59 +00:00
|
|
|
* | 2 0010 | 1 | 0 |
|
2023-03-22 01:11:58 +00:00
|
|
|
* | 3 0011 | 1 | 0 |
|
|
|
|
* | 4 0100 | 1 | 0 |
|
|
|
|
* | 5 0101 | 1 | 0 |
|
|
|
|
* | 6 0110 | 1 | 0 |
|
2023-03-25 07:50:31 +00:00
|
|
|
* | 7 0111 | 1 | 0 |
|
2023-04-08 08:08:53 +00:00
|
|
|
* | 8 1000 | 1 | 0 |
|
2023-04-10 08:08:23 +00:00
|
|
|
* | 9 1001 | 1 | 1 |
|
2023-03-25 07:50:31 +00:00
|
|
|
* | 10 1010 | 1 | 1 |
|
2023-03-20 04:53:10 +00:00
|
|
|
* back to timer==0
|
2022-09-04 01:32:05 +00:00
|
|
|
*/
|
2023-03-22 01:11:58 +00:00
|
|
|
reg [3:0] Timer = 0;
|
2023-04-10 08:08:23 +00:00
|
|
|
reg TimerTC;
|
2023-03-26 08:33:59 +00:00
|
|
|
always @(posedge CLK) begin
|
|
|
|
if (EFall) begin
|
2023-03-25 07:50:31 +00:00
|
|
|
if (TimerTC) Timer <= 0;
|
|
|
|
else Timer <= Timer+1;
|
2023-07-16 03:21:44 +00:00
|
|
|
RefUrg <= Timer==8 || Timer==9;
|
|
|
|
RefReq <= Timer!=10;
|
2023-04-10 08:08:23 +00:00
|
|
|
TimerTC <= Timer==9;
|
2023-03-25 07:50:31 +00:00
|
|
|
end
|
2021-10-29 10:04:59 +00:00
|
|
|
end
|
2023-07-16 03:21:44 +00:00
|
|
|
|
|
|
|
/* During init (IS!=3) long timer counts from 0 to 4095.
|
2024-09-30 03:15:06 +00:00
|
|
|
* 1024 states == 14.379 ms */
|
|
|
|
reg [10:0] LTimer;
|
2023-03-26 08:33:59 +00:00
|
|
|
reg LTimerTC;
|
2023-07-16 03:21:43 +00:00
|
|
|
always @(posedge CLK) begin
|
2023-09-28 06:46:30 +00:00
|
|
|
if (EFall && TimerTC) begin
|
|
|
|
LTimer <= LTimer+1;
|
2024-09-30 03:15:06 +00:00
|
|
|
LTimerTC <= LTimer[10:0]==11'h7FE;
|
2023-09-28 06:46:30 +00:00
|
|
|
end
|
2023-07-16 03:21:43 +00:00
|
|
|
end
|
2024-09-22 12:13:18 +00:00
|
|
|
|
2024-09-30 03:15:06 +00:00
|
|
|
/* QoS select registers */
|
|
|
|
reg IACKCSr, IOQoSCSr;
|
|
|
|
always @(posedge CLK) IACKCSr <= (BACT && IACKCS) || !nRESr;
|
|
|
|
always @(posedge CLK) IOQoSCSr <= BACT && (IOQoSCS || SndQoSCS);
|
2023-07-16 06:25:27 +00:00
|
|
|
|
2024-09-29 07:29:49 +00:00
|
|
|
/* I/O QoS timer */
|
2024-09-30 03:15:06 +00:00
|
|
|
reg [3:0] IOQS;
|
2023-04-08 09:46:13 +00:00
|
|
|
always @(posedge CLK) begin
|
2024-09-30 03:15:06 +00:00
|
|
|
if (IACKCSr) IOQS <= 4'hF;
|
|
|
|
else if (IOQoSCSr) IOQS <= 4'hF;
|
|
|
|
else if (IOQS==0) IOQS <= 0;
|
|
|
|
else if (EFall && TimerTC) IOQS <= IOQS-1;
|
2023-09-28 06:46:30 +00:00
|
|
|
end
|
2024-09-22 12:13:18 +00:00
|
|
|
|
2024-09-29 07:29:49 +00:00
|
|
|
/* I/O QoS enable */
|
|
|
|
always @(posedge CLK) if (!BACT) IOQoSEN <= IOQS!=0;
|
|
|
|
|
|
|
|
/* MC68K clock enable */
|
2024-09-30 03:15:06 +00:00
|
|
|
always @(posedge CLK) MCKE <= BACT || BACTr || !IOQoSEN || C8MFall;
|
|
|
|
|
|
|
|
/* */
|
|
|
|
reg LookReset;
|
|
|
|
always @(posedge CLK) begin
|
|
|
|
if (!nRESout) LookReset <= 0;
|
|
|
|
else if (EFall) LookReset <= 1;
|
|
|
|
end
|
|
|
|
|
2023-04-08 09:49:29 +00:00
|
|
|
/* Startup sequence state control */
|
2023-04-08 09:46:13 +00:00
|
|
|
wire ISTC = EFall && TimerTC && LTimerTC;
|
2023-03-26 08:33:59 +00:00
|
|
|
always @(posedge CLK) begin
|
2023-04-08 09:46:13 +00:00
|
|
|
case (IS[1:0])
|
2023-04-10 02:47:27 +00:00
|
|
|
0: begin
|
2023-03-20 04:53:10 +00:00
|
|
|
AoutOE <= 0; // Tristate PDS address and control
|
|
|
|
nRESout <= 0; // Hold reset low
|
2023-03-22 01:11:58 +00:00
|
|
|
nBR_IOB <= 0; // Default to request bus
|
2023-04-08 09:46:13 +00:00
|
|
|
if (ISTC) IS <= 1;
|
2023-04-10 02:47:27 +00:00
|
|
|
end 1: begin
|
2023-03-26 08:33:59 +00:00
|
|
|
AoutOE <= 0;
|
|
|
|
nRESout <= 0;
|
|
|
|
nBR_IOB <= !(!nBR_IOB && nIPL2r); // Disable bus request if NMI pressed
|
2023-04-08 09:46:13 +00:00
|
|
|
if (ISTC && nIPL2r) IS <= 2;
|
2023-04-10 02:47:27 +00:00
|
|
|
end 2: begin
|
2023-03-26 08:33:59 +00:00
|
|
|
AoutOE <= !nBR_IOB;
|
|
|
|
nRESout <= 0;
|
2023-04-08 09:46:13 +00:00
|
|
|
if (ISTC) IS <= 3;
|
2023-04-10 02:47:27 +00:00
|
|
|
end 3: begin
|
2023-03-25 07:50:31 +00:00
|
|
|
nRESout <= 1; // Release reset
|
2024-09-30 03:15:06 +00:00
|
|
|
if (LookReset && !nRESr) IS <= 0;
|
2022-09-04 01:32:05 +00:00
|
|
|
end
|
2022-09-11 21:15:53 +00:00
|
|
|
endcase
|
|
|
|
end
|
2021-10-29 10:04:59 +00:00
|
|
|
endmodule
|