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

Subversion Repositories zipcpu

[/] [zipcpu/] [trunk/] [rtl/] [zipbones.v] - Blame information for rev 66

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

Line No. Rev Author Line
1 38 dgisselq
///////////////////////////////////////////////////////////////////////////
2
//
3
// Filename:    zipbones.v
4
//
5
// Project:     Zip CPU -- a small, lightweight, RISC CPU soft core
6
//
7
// Purpose:     In the spirit of keeping the Zip CPU small, this implements a
8
//              Zip System with no peripherals: Any peripherals you wish will
9
//              need to be implemented off-module.
10
//
11
// Creator:     Dan Gisselquist, Ph.D.
12
//              Gisselquist Tecnology, LLC
13
//
14
///////////////////////////////////////////////////////////////////////////
15
//
16
// Copyright (C) 2015, Gisselquist Technology, LLC
17
//
18
// This program is free software (firmware): you can redistribute it and/or
19
// modify it under the terms of  the GNU General Public License as published
20
// by the Free Software Foundation, either version 3 of the License, or (at
21
// your option) any later version.
22
//
23
// This program is distributed in the hope that it will be useful, but WITHOUT
24
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
25
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
26
// for more details.
27
//
28
// License:     GPL, v3, as defined and found on www.gnu.org,
29
//              http://www.gnu.org/licenses/gpl.html
30
//
31
//
32
///////////////////////////////////////////////////////////////////////////
33
//
34
module  zipbones(i_clk, i_rst,
35
                // Wishbone master interface from the CPU
36
                o_wb_cyc, o_wb_stb, o_wb_we, o_wb_addr, o_wb_data,
37
                        i_wb_ack, i_wb_stall, i_wb_data, i_wb_err,
38
                // Incoming interrupts
39
                i_ext_int,
40
                // Our one outgoing interrupt
41
                o_ext_int,
42
                // Wishbone slave interface for debugging purposes
43
                i_dbg_cyc, i_dbg_stb, i_dbg_we, i_dbg_addr, i_dbg_data,
44 66 dgisselq
                        o_dbg_ack, o_dbg_stall, o_dbg_data
45
`ifdef  DEBUG_SCOPE
46
                , o_zip_debug
47
`endif
48
                );
49 48 dgisselq
        parameter       RESET_ADDRESS=32'h0100000, ADDRESS_WIDTH=32,
50
                        LGICACHE=6, START_HALTED=1,
51
                        AW=ADDRESS_WIDTH;
52 38 dgisselq
        input   i_clk, i_rst;
53
        // Wishbone master
54
        output  wire            o_wb_cyc, o_wb_stb, o_wb_we;
55 48 dgisselq
        output  wire    [(AW-1):0]       o_wb_addr;
56 38 dgisselq
        output  wire    [31:0]   o_wb_data;
57
        input                   i_wb_ack, i_wb_stall;
58
        input           [31:0]   i_wb_data;
59
        input                   i_wb_err;
60
        // Incoming interrupts
61 48 dgisselq
        input                   i_ext_int;
62 38 dgisselq
        // Outgoing interrupt
63
        output  wire            o_ext_int;
64
        // Wishbone slave
65
        input                   i_dbg_cyc, i_dbg_stb, i_dbg_we, i_dbg_addr;
66
        input           [31:0]   i_dbg_data;
67
        output  reg             o_dbg_ack;
68
        output  wire            o_dbg_stall;
69
        output  wire    [31:0]   o_dbg_data;
70 56 dgisselq
        //
71 66 dgisselq
`ifdef  DEBUG_SCOPE
72 56 dgisselq
        output  wire    [31:0]   o_zip_debug;
73 66 dgisselq
`endif
74 38 dgisselq
 
75
        // 
76
        //
77
        //
78
        wire    sys_cyc, sys_stb, sys_we;
79
        wire    [4:0]    sys_addr;
80 48 dgisselq
        wire    [(AW-1):0]       cpu_addr;
81 38 dgisselq
        wire    [31:0]   sys_data;
82
        wire            sys_ack, sys_stall;
83
 
84
        //
85
        // The external debug interface
86
        //
87
        // We offer only a limited interface here, requiring a pre-register
88
        // write to set the local address.  This interface allows access to
89
        // the Zip System on a debug basis only, and not to the rest of the
90
        // wishbone bus.  Further, to access these registers, the control
91
        // register must first be accessed to both stop the CPU and to 
92
        // set the following address in question.  Hence all accesses require
93
        // two accesses: write the address to the control register (and halt
94
        // the CPU if not halted), then read/write the data from the data
95
        // register.
96
        //
97
        wire            cpu_break, dbg_cmd_write;
98
        reg             cmd_reset, cmd_halt, cmd_step, cmd_clear_pf_cache;
99
        reg     [4:0]    cmd_addr;
100 56 dgisselq
        wire    [3:0]    cpu_dbg_cc;
101 38 dgisselq
        assign  dbg_cmd_write = (i_dbg_cyc)&&(i_dbg_stb)&&(i_dbg_we)&&(~i_dbg_addr);
102
        //
103
        initial cmd_reset = 1'b1;
104
        always @(posedge i_clk)
105
                cmd_reset <= ((dbg_cmd_write)&&(i_dbg_data[6]));
106
        //
107
        initial cmd_halt  = 1'b1;
108
        always @(posedge i_clk)
109
                if (i_rst)
110
                        cmd_halt <= (START_HALTED == 1)? 1'b1 : 1'b0;
111
                else if (dbg_cmd_write)
112
                        cmd_halt <= ((i_dbg_data[10])||(i_dbg_data[8]));
113
                else if ((cmd_step)||(cpu_break))
114
                        cmd_halt  <= 1'b1;
115
 
116
        always @(posedge i_clk)
117
                if (i_rst)
118
                        cmd_clear_pf_cache <= 1'b0;
119
                else if (dbg_cmd_write)
120
                        cmd_clear_pf_cache <= i_dbg_data[11];
121
                else
122
                        cmd_clear_pf_cache <= 1'b0;
123
        //
124
        initial cmd_step  = 1'b0;
125
        always @(posedge i_clk)
126
                cmd_step <= (dbg_cmd_write)&&(i_dbg_data[8]);
127
        //
128
        always @(posedge i_clk)
129
                if (dbg_cmd_write)
130
                        cmd_addr <= i_dbg_data[4:0];
131
 
132
        wire    cpu_reset;
133
        assign  cpu_reset = (cmd_reset)||(i_rst);
134
 
135
        wire    cpu_halt, cpu_dbg_stall;
136
        assign  cpu_halt = (i_rst)||((cmd_halt)&&(~cmd_step));
137
        wire    [31:0]   cmd_data;
138
        // Values:
139
        //      0x0003f -> cmd_addr mask
140
        //      0x00040 -> reset
141
        //      0x00080 -> PIC interrrupts enabled
142
        //      0x00100 -> cmd_step
143
        //      0x00200 -> cmd_stall
144
        //      0x00400 -> cmd_halt
145
        //      0x00800 -> cmd_clear_pf_cache
146
        //      0x01000 -> cc.sleep
147
        //      0x02000 -> cc.gie
148
        //      0x10000 -> External interrupt line is high
149 48 dgisselq
        assign  cmd_data = { 7'h00, 8'h00, i_ext_int,
150 56 dgisselq
                        cpu_dbg_cc,
151 38 dgisselq
                        1'b0, cmd_halt, (~cpu_dbg_stall), 1'b0,
152 56 dgisselq
                        1'b0, cpu_reset, 1'b0, cmd_addr };
153 38 dgisselq
 
154
        //
155
        // The CPU itself
156
        //
157
        wire            cpu_gbl_stb, cpu_lcl_cyc, cpu_lcl_stb,
158
                        cpu_we, cpu_dbg_we,
159
                        cpu_op_stall, cpu_pf_stall, cpu_i_count;
160 56 dgisselq
        wire    [31:0]   cpu_data;
161 38 dgisselq
        wire    [31:0]   cpu_dbg_data;
162
        assign cpu_dbg_we = ((i_dbg_cyc)&&(i_dbg_stb)
163
                                        &&(i_dbg_we)&&(i_dbg_addr));
164 48 dgisselq
        zipcpu  #(RESET_ADDRESS,ADDRESS_WIDTH,LGICACHE)
165
                thecpu(i_clk, cpu_reset, i_ext_int,
166 38 dgisselq
                        cpu_halt, cmd_clear_pf_cache, cmd_addr[4:0], cpu_dbg_we,
167
                                i_dbg_data, cpu_dbg_stall, cpu_dbg_data,
168
                                cpu_dbg_cc, cpu_break,
169
                        o_wb_cyc, o_wb_stb,
170
                                cpu_lcl_cyc, cpu_lcl_stb,
171
                                o_wb_we, o_wb_addr, o_wb_data,
172 56 dgisselq
                                i_wb_ack, i_wb_stall, i_wb_data,
173 66 dgisselq
                                (i_wb_err)||((cpu_lcl_cyc)&&(cpu_lcl_stb)),
174
                        cpu_op_stall, cpu_pf_stall, cpu_i_count
175
`ifdef  DEBUG_SCOPE
176
                        , o_zip_debug
177
`endif
178
                        );
179 38 dgisselq
 
180
        // Return debug response values
181
        assign  o_dbg_data = (~i_dbg_addr)?cmd_data :cpu_dbg_data;
182
        initial o_dbg_ack = 1'b0;
183
        always @(posedge i_clk)
184
                o_dbg_ack <= (i_dbg_cyc)&&((~i_dbg_addr)||(~o_dbg_stall));
185
        assign  o_dbg_stall=(i_dbg_cyc)&&(cpu_dbg_stall)&&(i_dbg_addr);
186
 
187 56 dgisselq
        assign  o_ext_int = (cmd_halt) && (~i_wb_stall);
188 38 dgisselq
 
189
endmodule

powered by: WebSVN 2.1.0

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