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

Subversion Repositories zipcpu

[/] [zipcpu/] [trunk/] [doc/] [src/] [spec.tex] - Blame information for rev 79

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

Line No. Rev Author Line
1 21 dgisselq
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
%%
3
%% Filename:    spec.tex
4
%%
5
%% Project:     Zip CPU -- a small, lightweight, RISC CPU soft core
6
%%
7
%% Purpose:     This LaTeX file contains all of the documentation/description
8 33 dgisselq
%%              currently provided with this Zip CPU soft core.  It supersedes
9 21 dgisselq
%%              any information about the instruction set or CPUs found
10
%%              elsewhere.  It's not nearly as interesting, though, as the PDF
11
%%              file it creates, so I'd recommend reading that before diving
12
%%              into this file.  You should be able to find the PDF file in
13
%%              the SVN distribution together with this PDF file and a copy of
14
%%              the GPL-3.0 license this file is distributed under.  If not,
15
%%              just type 'make' in the doc directory and it (should) build
16
%%              without a problem.
17
%%
18
%%
19
%% Creator:     Dan Gisselquist
20
%%              Gisselquist Technology, LLC
21
%%
22
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
23
%%
24
%% Copyright (C) 2015, Gisselquist Technology, LLC
25
%%
26
%% This program is free software (firmware): you can redistribute it and/or
27
%% modify it under the terms of  the GNU General Public License as published
28
%% by the Free Software Foundation, either version 3 of the License, or (at
29
%% your option) any later version.
30
%%
31
%% This program is distributed in the hope that it will be useful, but WITHOUT
32
%% ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
33
%% FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
34
%% for more details.
35
%%
36
%% You should have received a copy of the GNU General Public License along
37
%% with this program.  (It's in the $(ROOT)/doc directory, run make with no
38
%% target there if the PDF file isn't present.)  If not, see
39
%% <http://www.gnu.org/licenses/> for a copy.
40
%%
41
%% License:     GPL, v3, as defined and found on www.gnu.org,
42
%%              http://www.gnu.org/licenses/gpl.html
43
%%
44
%%
45
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
46
\documentclass{gqtekspec}
47 68 dgisselq
\usepackage{import}
48 69 dgisselq
\usepackage{bytefield}
49 68 dgisselq
% \graphicspath{{../gfx}}
50 21 dgisselq
\project{Zip CPU}
51
\title{Specification}
52
\author{Dan Gisselquist, Ph.D.}
53
\email{dgisselq (at) opencores.org}
54 69 dgisselq
\revision{Rev.~0.7}
55
\definecolor{webred}{rgb}{0.5,0,0}
56
\definecolor{webgreen}{rgb}{0,0.4,0}
57 36 dgisselq
\usepackage[dvips,ps2pdf,colorlinks=true,
58 69 dgisselq
        anchorcolor=black,pdfpagelabels,hypertexnames,
59 36 dgisselq
        pdfauthor={Dan Gisselquist},
60
        pdfsubject={Zip CPU}]{hyperref}
61 69 dgisselq
\hypersetup{
62
        colorlinks = true,
63
        linkcolor  = webred,
64
        citecolor  = webgreen
65
}
66 21 dgisselq
\begin{document}
67
\pagestyle{gqtekspecplain}
68
\titlepage
69
\begin{license}
70
Copyright (C) \theyear\today, Gisselquist Technology, LLC
71
 
72
This project is free software (firmware): you can redistribute it and/or
73
modify it under the terms of  the GNU General Public License as published
74
by the Free Software Foundation, either version 3 of the License, or (at
75
your option) any later version.
76
 
77
This program is distributed in the hope that it will be useful, but WITHOUT
78
ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
79
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
80
for more details.
81
 
82
You should have received a copy of the GNU General Public License along
83
with this program.  If not, see \hbox{<http://www.gnu.org/licenses/>} for a
84
copy.
85
\end{license}
86
\begin{revisionhistory}
87 69 dgisselq
0.7 & 12/22/2015 & Gisselquist & New Instruction Set Architecture \\\hline
88 68 dgisselq
0.6 & 11/17/2015 & Gisselquist & Added graphics to illustrate pipeline discussion.\\\hline
89 39 dgisselq
0.5 & 9/29/2015 & Gisselquist & Added pipelined memory access discussion.\\\hline
90 36 dgisselq
0.4 & 9/19/2015 & Gisselquist & Added DMA controller, improved stall information, and self--assessment info.\\\hline
91 33 dgisselq
0.3 & 8/22/2015 & Gisselquist & First completed draft\\\hline
92 24 dgisselq
0.2 & 8/19/2015 & Gisselquist & Still Draft, more complete \\\hline
93 21 dgisselq
0.1 & 8/17/2015 & Gisselquist & Incomplete First Draft \\\hline
94
\end{revisionhistory}
95
% Revision History
96
% Table of Contents, named Contents
97
\tableofcontents
98 24 dgisselq
\listoffigures
99 21 dgisselq
\listoftables
100
\begin{preface}
101
Many people have asked me why I am building the Zip CPU. ARM processors are
102
good and effective. Xilinx makes and markets Microblaze, Altera Nios, and both
103
have better toolsets than the Zip CPU will ever have. OpenRISC is also
104 24 dgisselq
available, RISC--V may be replacing it. Why build a new processor?
105 21 dgisselq
 
106
The easiest, most obvious answer is the simple one: Because I can.
107
 
108
There's more to it, though. There's a lot that I would like to do with a
109
processor, and I want to be able to do it in a vendor independent fashion.
110 36 dgisselq
First, I would like to be able to place this processor inside an FPGA.  Without
111
paying royalties, ARM is out of the question.  I would then like to be able to
112
generate Verilog code, both for the processor and the system it sits within,
113
that can run equivalently on both Xilinx and Altera chips, and that can be
114
easily ported from one manufacturer's chipsets to another. Even more, before
115
purchasing a chip or a board, I would like to know that my soft core works. I
116
would like to build a test bench to test components with, and Verilator is my
117
chosen test bench. This forces me to use all Verilog, and it prevents me from
118
using any proprietary cores. For this reason, Microblaze and Nios are out of
119
the question.
120 21 dgisselq
 
121
Why not OpenRISC? That's a hard question. The OpenRISC team has done some
122
wonderful work on an amazing processor, and I'll have to admit that I am
123
envious of what they've accomplished. I would like to port binutils to the
124
Zip CPU, as I would like to port GCC and GDB. They are way ahead of me. The
125
OpenRISC processor, however, is complex and hefty at about 4,500 LUTs. It has
126
a lot of features of modern CPUs within it that ... well, let's just say it's
127
not the little guy on the block. The Zip CPU is lighter weight, costing only
128 32 dgisselq
about 2,300 LUTs with no peripherals, and 3,200 LUTs with some very basic
129 21 dgisselq
peripherals.
130
 
131
My final reason is that I'm building the Zip CPU as a learning experience. The
132
Zip CPU has allowed me to learn a lot about how CPUs work on a very micro
133
level. For the first time, I am beginning to understand many of the Computer
134
Architecture lessons from years ago.
135
 
136
To summarize: Because I can, because it is open source, because it is light
137
weight, and as an exercise in learning.
138
 
139
\end{preface}
140
 
141
\chapter{Introduction}
142
\pagenumbering{arabic}
143
\setcounter{page}{1}
144
 
145
 
146 36 dgisselq
The original goal of the Zip CPU was to be a very simple CPU.   You might
147 21 dgisselq
think of it as a poor man's alternative to the OpenRISC architecture.
148
For this reason, all instructions have been designed to be as simple as
149 69 dgisselq
possible, and the base instructions are all designed to be executed in one
150
instruction cycle per instruction, barring pipeline stalls.  Indeed, even the
151
bus has been simplified to a constant 32-bit width, with no option for more
152
or less.  This has resulted in the choice to drop push and pop instructions,
153
pre-increment and post-decrement addressing modes, and more.
154 21 dgisselq
 
155
For those who like buzz words, the Zip CPU is:
156
\begin{itemize}
157
\item A 32-bit CPU: All registers are 32-bits, addresses are 32-bits,
158
                instructions are 32-bits wide, etc.
159 24 dgisselq
\item A RISC CPU.  There is no microcode for executing instructions.  All
160
        instructions are designed to be completed in one clock cycle.
161 21 dgisselq
\item A Load/Store architecture.  (Only load and store instructions
162
                can access memory.)
163
\item Wishbone compliant.  All peripherals are accessed just like
164
                memory across this bus.
165
\item A Von-Neumann architecture.  (The instructions and data share a
166
                common bus.)
167
\item A pipelined architecture, having stages for {\bf Prefetch},
168 69 dgisselq
                {\bf Decode}, {\bf Read-Operand}, a
169
                combined stage containing the {\bf ALU},
170
                {\bf Memory}, {\bf Divide}, and {\bf Floating Point}
171
                units, and then the final {\bf Write-back} stage.
172
                See Fig.~\ref{fig:cpu}
173 24 dgisselq
\begin{figure}\begin{center}
174
\includegraphics[width=3.5in]{../gfx/cpu.eps}
175
\caption{Zip CPU internal pipeline architecture}\label{fig:cpu}
176
\end{center}\end{figure}
177
                for a diagram of this structure.
178 21 dgisselq
\item Completely open source, licensed under the GPL.\footnote{Should you
179
        need a copy of the Zip CPU licensed under other terms, please
180
        contact me.}
181
\end{itemize}
182
 
183 68 dgisselq
The Zip CPU also has one very unique feature: the ability to do pipelined loads
184
and stores.  This allows the CPU to access on-chip memory at one access per
185
clock, minus a stall for the initial access.
186
 
187
\section{Characteristics of a SwiC}
188
 
189
Here, we shall define a soft core internal to an FPGA as a ``System within a
190
Chip,'' or a SwiC.  SwiCs have some very unique properties internal to them
191
that have influenced the design of the Zip CPU.  Among these are the bus,
192
memory, and available peripherals.
193
 
194
Most other approaches to soft core CPU's employ a Harvard architecture.
195
This allows these other CPU's to have two separate bus structures: one for the
196 69 dgisselq
program fetch, and the other for the memory.  The Zip CPU is fairly unique in
197 68 dgisselq
its approach because it uses a von Neumann architecture.  This was done for
198
simplicity.  By using a von Neumann architecture, only one bus needs to be
199
implemented within any FPGA.  This helps to minimize real-estate, while
200
maintaining a high clock speed.  The disadvantage is that it can severely
201
degrade the overall instructions per clock count.
202
 
203
Soft core's within an FPGA have an additional characteristic regarding
204 69 dgisselq
memory access: it is slow.  While memory on chip may be accessed at a single
205
cycle per access, small FPGA's often have only a limited amount of memory on
206
chip.  Going off chip, however, is expensive.  Two examples will prove this
207
point.  On
208 68 dgisselq
the XuLA2 board, Flash can be accessed at 128~cycles per 32--bit word,
209
or 64~cycles per subsequent word in a pipelined architecture.  Likewise, the
210 69 dgisselq
SDRAM chip on the XuLA2 board allows a 6~cycle access for a write, 10~cycles
211 68 dgisselq
per read, and 2~cycles for any subsequent pipelined access read or write.
212
Either way you look at it, this memory access will be slow and this doesn't
213
account for any logic delays should the bus implementation logic get
214
complicated.
215
 
216
As may be noticed from the above discussion about memory speed, a second
217
characteristic of memory is that all memory accesses may be pipelined, and
218
that pipelined memory access is faster than non--pipelined access.  Therefore,
219
a SwiC soft core should support pipelined operations, but it should also
220
allow a higher priority subsystem to get access to the bus (no starvation).
221
 
222
As a further characteristic of SwiC memory options, on-chip cache's are
223
expensive.  If you want to have a minimum of logic, cache logic may not be
224
the highest on the priority list.
225
 
226
In sum, memory is slow.  While one processor on one FPGA may be able to fill
227
its pipeline, the same processor on another FPGA may struggle to get more than
228
one instruction at a time into the pipeline.  Any SwiC must be able to deal
229
with both cases: fast and slow memories.
230
 
231
A final characteristic of SwiC's within FPGA's is the peripherals.
232
Specifically, FPGA's are highly reconfigurable.  Soft peripherals can easily
233
be created on chip to support the SwiC if necessary.  As an example, a simple
234
30-bit peripheral could easily support reversing 30-bit numbers: a read from
235
the peripheral returns it's bit--reversed address.  This is cheap within an
236 69 dgisselq
FPGA, but expensive in instructions.  Reading from another 16--bit peripheral
237
might calculate a sine function, where the 16--bit address internal to the
238
peripheral was the angle of the sine wave.
239 68 dgisselq
 
240
Indeed, anything that must be done fast within an FPGA is likely to already
241 69 dgisselq
be done--elsewhere in the fabric.  This leaves the CPU with the simple role
242
of solely handling sequential tasks that need a lot of state.
243 68 dgisselq
 
244
This means that the SwiC needs to live within a very unique environment,
245
separate and different from the traditional SoC.  That isn't to say that a
246
SwiC cannot be turned into a SoC, just that this SwiC has not been designed
247
for that purpose.
248
 
249
\section{Lessons Learned}
250
 
251 21 dgisselq
Now, however, that I've worked on the Zip CPU for a while, it is not nearly
252
as simple as I originally hoped.  Worse, I've had to adjust to create
253
capabilities that I was never expecting to need.  These include:
254
\begin{itemize}
255 33 dgisselq
\item {\bf External Debug:} Once placed upon an FPGA, some external means is
256 21 dgisselq
        still necessary to debug this CPU.  That means that there needs to be
257
        an external register that can control the CPU: reset it, halt it, step
258 24 dgisselq
        it, and tell whether it is running or not.  My chosen interface
259
        includes a second register similar to this control register.  This
260
        second register allows the external controller or debugger to examine
261 21 dgisselq
        registers internal to the CPU.
262
 
263
\item {\bf Internal Debug:} Being able to run a debugger from within
264
        a user process requires an ability to step a user process from
265
        within a debugger.  It also requires a break instruction that can
266
        be substituted for any other instruction, and substituted back.
267
        The break is actually difficult: the break instruction cannot be
268
        allowed to execute.  That way, upon a break, the debugger should
269
        be able to jump back into the user process to step the instruction
270
        that would've been at the break point initially, and then to
271
        replace the break after passing it.
272
 
273 24 dgisselq
        Incidentally, this break messes with the prefetch cache and the
274
        pipeline: if you change an instruction partially through the pipeline,
275
        the whole pipeline needs to be cleansed.  Likewise if you change
276
        an instruction in memory, you need to make sure the cache is reloaded
277
        with the new instruction.
278
 
279 69 dgisselq
\item {\bf Prefetch Cache:} My original implementation, {\tt prefetch}, had
280
        a very simple prefetch stage.  Any time the PC changed the prefetch
281
        would go and fetch the new instruction.  While this was perhaps this
282
        simplest approach, it cost roughly five clocks for every instruction.
283
        This was deemed unacceptable, as I wanted a CPU that could execute
284
        instructions in one cycle.
285 21 dgisselq
 
286 69 dgisselq
        My second implementation, {\tt pipefetch}, attempted to make the most
287
        use of pipelined memory.  When a new CPU address was issued, it would
288
        start reading
289
        memory in a pipelined fashion, and issuing instructions as soon as they
290
        were ready.  This cache was a sliding window in memory.  This suffered
291
        from some difficult performance problems, though.  If the CPU was
292
        alternating between two diverse sections of code, both could never be
293
        in the cache at the same time--causing lots of cache misses.  Further,
294
        the extra logic to implement this window cost an extra clock cycle
295
        in the cache implementation, slowing down branches.
296 21 dgisselq
 
297 69 dgisselq
        The Zip CPU now has a third cache implementation, {\tt pfcache}.  This
298
        new implementation takes only a single cycle per access, but costs a
299
        full cache line miss on any miss.  While configurable, a full cache
300
        line miss might mean that the CPU needs to read 256~instructions from
301
        memory before it can execute the first one of them.
302
 
303 21 dgisselq
\item {\bf Operating System:} In order to support an operating system,
304
        interrupts and so forth, the CPU needs to support supervisor and
305
        user modes, as well as a means of switching between them.  For example,
306
        the user needs a means of executing a system call.  This is the
307
        purpose of the {\bf `trap'} instruction.  This instruction needs to
308
        place the CPU into supervisor mode (here equivalent to disabling
309
        interrupts), as well as handing it a parameter such as identifying
310
        which O/S function was called.
311
 
312 24 dgisselq
My initial approach to building a trap instruction was to create an external
313
peripheral which, when written to, would generate an interrupt and could
314
return the last value written to it.  In practice, this approach didn't work
315
at all: the CPU executed two instructions while waiting for the
316
trap interrupt to take place.  Since then, I've decided to keep the rest of
317
the CC register for that purpose so that a write to the CC register, with the
318
GIE bit cleared, could be used to execute a trap.  This has other problems,
319
though, primarily in the limitation of the uses of the CC register.  In
320
particular, the CC register is the best place to put CPU state information and
321
to ``announce'' special CPU features (floating point, etc).  So the trap
322
instruction still switches to interrupt mode, but the CC register is not
323
nearly as useful for telling the supervisor mode processor what trap is being
324
executed.
325 21 dgisselq
 
326
Modern timesharing systems also depend upon a {\bf Timer} interrupt
327 24 dgisselq
to handle task swapping.  For the Zip CPU, this interrupt is handled
328
external to the CPU as part of the CPU System, found in {\tt zipsystem.v}.
329
The timer module itself is found in {\tt ziptimer.v}.
330 21 dgisselq
 
331 69 dgisselq
\item {\bf Bus Errors:} My original implementation had no logic to handle
332
        what would happen if the CPU attempted to read or write a non-existent
333
        memory address.  This changed after I needed to troubleshoot a failure
334
        caused by a subroutine return to a non-existent address.
335
 
336
        My next problem bus problem was caused by a misbehaving peripheral.
337
        Whenever the CPU attempted to read from or write to this peripheral,
338
        the peripheral would take control of the wishbone bus and not return
339
        it.  For example, it might never return an {\tt ACK} to signal
340
        the end of the bus transaction.  This led to the implementation of
341
        a wishbone bus watchdog that would create a bus error if any particular
342
        bus action didn't complete in a timely fashion.
343
 
344 21 dgisselq
\item {\bf Pipeline Stalls:} My original plan was to not support pipeline
345
        stalls at all, but rather to require the compiler to properly schedule
346 24 dgisselq
        all instructions so that stalls would never be necessary.  After trying
347 21 dgisselq
        to build such an architecture, I gave up, having learned some things:
348
 
349 68 dgisselq
        First, and ideal pipeline might look something like
350
        Fig.~\ref{fig:ideal-pipeline}.
351
\begin{figure}
352
\begin{center}
353
\includegraphics[width=4in]{../gfx/fullpline.eps}
354
\caption{An Ideal Pipeline: One instruction per clock cycle}\label{fig:ideal-pipeline}
355
\end{center}\end{figure}
356
        Notice that, in this figure, all the pipeline stages are complete and
357
        full.  Every instruction takes one clock and there are no delays.
358
        However, as the discussion above pointed out, the memory associated
359
        with a SwiC may not allow single clock access.  It may be instead
360
        that you can only read every two clocks.  In that case, what shall
361
        the pipeline look like?  Should it look like
362
        Fig.~\ref{fig:waiting-pipeline},
363
\begin{figure}\begin{center}
364
\includegraphics[width=4in]{../gfx/stuttra.eps}
365
\caption{Instructions wait for each other}\label{fig:waiting-pipeline}
366
\end{center}\end{figure}
367
        where instructions are held back until the pipeline is full, or should
368
        it look like Fig.~\ref{fig:independent-pipeline},
369
\begin{figure}\begin{center}
370
\includegraphics[width=4in]{../gfx/stuttrb.eps}
371
\caption{Instructions proceed independently}\label{fig:independent-pipeline}
372
\end{center}\end{figure}
373
        where each instruction is allowed to move through the pipeline
374
        independently?  For better or worse, the Zip CPU allows instructions
375
        to move through the pipeline independently.
376 21 dgisselq
 
377 68 dgisselq
        One approach to avoiding stalls is to use a branch delay slot,
378
        such as is shown in Fig.~\ref{fig:brdelay}.
379
\begin{figure}\begin{center}
380
\includegraphics[width=4in]{../gfx/bdly.eps}
381
\caption{A typical branch delay slot approach}\label{fig:brdelay}
382
\end{center}\end{figure}
383
        In this figure, instructions
384
        {\tt BR} (a branch), {\tt BD} (a branch delay instruction),
385
        are followed by instructions after the branch: {\tt IA}, {\tt IB}, etc.
386
        Since it takes a processor a clock cycle to execute a branch, the
387
        delay slot allows the processor to do something useful in that
388
        branch.  The problem the Zip CPU has with this approach is, what
389
        happens when the pipeline looks like Fig.~\ref{fig:brbroken}?
390
\begin{figure}\begin{center}
391
\includegraphics[width=4in]{../gfx/bdbroken.eps}
392
\caption{The branch delay slot breaks with a slow memory}\label{fig:brbroken}
393
\end{center}\end{figure}
394
        In this case, the branch delay slot never gets filled in the first
395
        place, and so the pipeline squashes it before it gets executed.
396
        If not that, then what happens when handling interrupts or
397
        debug stepping: when has the CPU finished an instruction?
398
        When the {\tt BR} instruction has finished, or must {\tt BD}
399
        follow every {\tt BR}?  and, again, what if the pipeline isn't
400
        full?
401
        These thoughts killed any hopes of doing delayed branching.
402
 
403 21 dgisselq
        So I switched to a model of discrete execution: Once an instruction
404
        enters into either the ALU or memory unit, the instruction is
405
        guaranteed to complete.  If the logic recognizes a branch or a
406
        condition that would render the instruction entering into this stage
407 33 dgisselq
        possibly inappropriate (i.e. a conditional branch preceding a store
408 21 dgisselq
        instruction for example), then the pipeline stalls for one cycle
409
        until the conditional branch completes.  Then, if it generates a new
410 33 dgisselq
        PC address, the stages preceding are all wiped clean.
411 21 dgisselq
 
412 68 dgisselq
        This model, however, generated too many pipeline stalls, so the
413
        discrete execution model was modified to allow instructions to go
414
        through the ALU unit and be canceled before writeback.  This removed
415
        the stall associated with ALU instructions before untaken branches.
416
 
417
        The discrete execution model allows such things as sleeping, as
418
        outlined in Fig.~\ref{fig:sleeping}.
419
\begin{figure}\begin{center}
420
\includegraphics[width=4in]{../gfx/sleep.eps}
421
\caption{How the CPU halts when sleeping}\label{fig:sleeping}
422
\end{center}\end{figure}
423
        If the
424 24 dgisselq
        CPU is put to ``sleep,'' the ALU and memory stages stall and back up
425 21 dgisselq
        everything before them.  Likewise, anything that has entered the ALU
426
        or memory stage when the CPU is placed to sleep continues to completion.
427
        To handle this logic, each pipeline stage has three control signals:
428
        a valid signal, a stall signal, and a clock enable signal.  In
429
        general, a stage stalls if it's contents are valid and the next step
430
        is stalled.  This allows the pipeline to fill any time a later stage
431 68 dgisselq
        stalls, as illustrated in Fig.~\ref{fig:stacking}.
432
\begin{figure}\begin{center}
433
\includegraphics[width=4in]{../gfx/stacking.eps}
434
\caption{Instructions can stack up behind a stalled instruction}\label{fig:stacking}
435
\end{center}\end{figure}
436 69 dgisselq
        However, if a pipeline hazard is detected, a stage can stall in order
437
        to prevent the previous from moving forward.
438 21 dgisselq
 
439 68 dgisselq
        This approach is also different from other pipeline approaches.
440
        Instead of keeping the entire pipeline filled, each stage is treated
441 24 dgisselq
        independently.  Therefore, individual stages may move forward as long
442
        as the subsequent stage is available, regardless of whether the stage
443
        behind it is filled.
444 21 dgisselq
\end{itemize}
445
 
446
With that introduction out of the way, let's move on to the instruction
447
set.
448
 
449
\chapter{CPU Architecture}\label{chap:arch}
450
 
451 24 dgisselq
The Zip CPU supports a set of two operand instructions, where the second operand
452 21 dgisselq
(always a register) is the result.  The only exception is the store instruction,
453
where the first operand (always a register) is the source of the data to be
454
stored.
455
 
456 24 dgisselq
\section{Simplified Bus}
457
The bus architecture of the Zip CPU is that of a simplified WISHBONE bus.
458
It has been simplified in this fashion: all operations are 32--bit operations.
459 36 dgisselq
The bus is neither little endian nor big endian.  For this reason, all words
460 24 dgisselq
are 32--bits.  All instructions are also 32--bits wide.  Everything has been
461
built around the 32--bit word.
462
 
463 21 dgisselq
\section{Register Set}
464
The Zip CPU supports two sets of sixteen 32-bit registers, a supervisor
465 24 dgisselq
and a user set as shown in Fig.~\ref{fig:regset}.
466
\begin{figure}\begin{center}
467
\includegraphics[width=3.5in]{../gfx/regset.eps}
468
\caption{Zip CPU Register File}\label{fig:regset}
469
\end{center}\end{figure}
470
The supervisor set is used in interrupt mode when interrupts are disabled,
471
whereas the user set is used otherwise.  Of this register set, the Program
472
Counter (PC) is register 15, whereas the status register (SR) or condition
473
code register
474 21 dgisselq
(CC) is register 14.  By convention, the stack pointer will be register 13 and
475 24 dgisselq
noted as (SP)--although there is nothing special about this register other
476 69 dgisselq
than this convention.  Also by convention register~12 will point to a global
477
offset table, and may be abbreviated as the (GBL) register.
478 21 dgisselq
The CPU can access both register sets via move instructions from the
479
supervisor state, whereas the user state can only access the user registers.
480
 
481 36 dgisselq
The status register is special, and bears further mention.  As shown in
482
Fig.~\ref{tbl:cc-register},
483
\begin{table}\begin{center}
484
\begin{bitlist}
485 69 dgisselq
31\ldots 13 & R/W & Reserved for future uses\\\hline
486
12 & R & (Reserved for) Floating Point Exception\\\hline
487
11 & R & Division by Zero Exception\\\hline
488
10 & R & Bus-Error Flag\\\hline
489 36 dgisselq
9 & R & Trap, or user interrupt, Flag.  Cleared on return to userspace.\\\hline
490 68 dgisselq
8 & R & Illegal Instruction Flag\\\hline
491 36 dgisselq
7 & R/W & Break--Enable\\\hline
492
6 & R/W & Step\\\hline
493
5 & R/W & Global Interrupt Enable (GIE)\\\hline
494
4 & R/W & Sleep.  When GIE is also set, the CPU waits for an interrupt.\\\hline
495
3 & R/W & Overflow\\\hline
496
2 & R/W & Negative.  The sign bit was set as a result of the last ALU instruction.\\\hline
497
1 & R/W & Carry\\\hline
498
 
499
\end{bitlist}
500
\caption{Condition Code Register Bit Assignment}\label{tbl:cc-register}
501
\end{center}\end{table}
502
the lower 11~bits of the status register form
503
a set of CPU state and condition codes.  Writes to other bits of this register
504
are preserved.
505 21 dgisselq
 
506 33 dgisselq
Of the condition codes, the bottom four bits are the current flags:
507 21 dgisselq
                Zero (Z),
508
                Carry (C),
509
                Negative (N),
510
                and Overflow (V).
511 69 dgisselq
On those instructions that set the flags, these flags will be set based upon
512
the output of the instruction.  If the result is zero, the Z flag will be set.
513
If the high order bit is set, the N flag will be set.  If the instruction
514
caused a bit to fall off the end, the carry bit will be set.  Finally, if
515
the instruction causes a signed integer overflow, the V flag will be set
516
afterwards.
517 21 dgisselq
 
518 69 dgisselq
The next bit is a sleep bit.  Set this bit to one to disable instruction
519
        execution and place the CPU to sleep, or to zero to keep the pipeline
520
        running.  Setting this bit will cause the CPU to wait for an interrupt
521
        (if interrupts are enabled), or to completely halt (if interrupts are
522
        disabled).  In order to prevent users from halting the CPU, only the
523
        supervisor is allowed to both put the CPU to sleep and disable
524
        interrupts.  Any user attempt to do so will simply result in a switch
525
        to supervisor mode.
526 33 dgisselq
 
527 21 dgisselq
The sixth bit is a global interrupt enable bit (GIE).  When this
528 32 dgisselq
        sixth bit is a `1' interrupts will be enabled, else disabled.  When
529 21 dgisselq
        interrupts are disabled, the CPU will be in supervisor mode, otherwise
530
        it is in user mode.  Thus, to execute a context switch, one only
531
        need enable or disable interrupts.  (When an interrupt line goes
532
        high, interrupts will automatically be disabled, as the CPU goes
533 32 dgisselq
        and deals with its context switch.)  Special logic has been added to
534
        keep the user mode from setting the sleep register and clearing the
535
        GIE register at the same time, with clearing the GIE register taking
536
        precedence.
537 21 dgisselq
 
538 69 dgisselq
The seventh bit is a step bit.  This bit can be set from supervisor mode only.
539
        After setting this bit, should the supervisor mode process switch to
540
        user mode, it would then accomplish one instruction in user mode
541
        before returning to supervisor mode.  Then, upon return to supervisor
542
        mode, this bit will be automatically cleared.  This bit has no effect
543
        on the CPU while in supervisor mode.
544 21 dgisselq
 
545
        This functionality was added to enable a userspace debugger
546
        functionality on a user process, working through supervisor mode
547
        of course.
548
 
549
 
550 24 dgisselq
The eighth bit is a break enable bit.  This controls whether a break
551
instruction in user mode will halt the processor for an external debugger
552
(break enabled), or whether the break instruction will simply send send the
553
CPU into interrupt mode.  Encountering a break in supervisor mode will
554
halt the CPU independent of the break enable bit.  This bit can only be set
555
within supervisor mode.
556 21 dgisselq
 
557 32 dgisselq
% Should break enable be a supervisor mode bit, while the break enable bit
558
% in user mode is a break has taken place bit?
559
%
560
 
561 21 dgisselq
This functionality was added to enable an external debugger to
562
        set and manage breakpoints.
563
 
564 68 dgisselq
The ninth bit is an illegal instruction bit.  When the CPU
565 36 dgisselq
tries to execute either a non-existant instruction, or an instruction from
566 68 dgisselq
an address that produces a bus error, the CPU will (if implemented) switch
567 36 dgisselq
to supervisor mode while setting this bit.  The bit will automatically be
568
cleared upon any return to user mode.
569 21 dgisselq
 
570
The tenth bit is a trap bit.  It is set whenever the user requests a soft
571
interrupt, and cleared on any return to userspace command.  This allows the
572
supervisor, in supervisor mode, to determine whether it got to supervisor
573
mode from a trap or from an external interrupt or both.
574
 
575 69 dgisselq
\section{Instruction Format}
576
All Zip CPU instructions fit in one of the formats shown in
577
Fig.~\ref{fig:iset-format}.
578
\begin{figure}\begin{center}
579
\begin{bytefield}[endianness=big]{32}
580
\bitheader{0-31}\\
581
\begin{leftwordgroup}{Standard}\bitbox{1}{0}\bitbox{4}{DR}
582
                \bitbox[lrt]{5}{OpCode}
583
                \bitbox[lrt]{3}{Cnd}
584
                \bitbox{1}{0}
585
                \bitbox{18}{18-bit Signed Immediate} \\
586
\bitbox{1}{0}\bitbox{4}{DR}
587
                \bitbox[lrb]{5}{}
588
                \bitbox[lrb]{3}{}
589
                \bitbox{1}{1}
590
                \bitbox{4}{BR}
591
                \bitbox{14}{14-bit Signed Immediate}\end{leftwordgroup} \\
592
\begin{leftwordgroup}{MOV}\bitbox{1}{0}\bitbox{4}{DR}
593
                \bitbox[lrt]{5}{5'hf}
594
                \bitbox[lrt]{3}{Cnd}
595
                \bitbox{1}{A}
596
                \bitbox{4}{BR}
597
                \bitbox{1}{B}
598
                \bitbox{13}{13-bit Signed Immediate}\end{leftwordgroup} \\
599
\begin{leftwordgroup}{LDI}\bitbox{1}{0}\bitbox{4}{DR}
600
                \bitbox{4}{4'hb}
601
                \bitbox{23}{23-bit Signed Immediate}\end{leftwordgroup} \\
602
\begin{leftwordgroup}{NOOP}\bitbox{1}{0}\bitbox{3}{3'h7}
603
                \bitbox{1}{}
604
                \bitbox{2}{11}
605
                \bitbox{3}{xxx}
606
                \bitbox{22}{Ignored}
607
                \end{leftwordgroup} \\
608
\begin{leftwordgroup}{VLIW}\bitbox{1}{1}\bitbox[lrt]{4}{DR}
609
                \bitbox[lrt]{5}{OpCode}
610
                \bitbox[lrt]{3}{Cnd}
611
                \bitbox{1}{0}
612
                \bitbox{4}{Imm.}
613
                \bitbox{14}{---} \\
614
\bitbox{1}{1}\bitbox[lr]{4}{}
615
                \bitbox[lrb]{5}{}
616
                \bitbox[lr]{3}{}
617
                \bitbox{1}{1}
618
                \bitbox{4}{BR}
619
                \bitbox{14}{---}        \\
620
\bitbox{1}{1}\bitbox[lrb]{4}{}
621
                \bitbox{4}{4'hb}
622
                \bitbox{1}{}
623
                \bitbox[lrb]{3}{}
624
                \bitbox{5}{5'b Imm}
625
                \bitbox{14}{---}        \\
626
\bitbox{1}{1}\bitbox{9}{---}
627
                \bitbox[lrt]{3}{Cnd}
628
                \bitbox{5}{---}
629
                \bitbox[lrt]{4}{DR}
630
                \bitbox[lrt]{5}{OpCode}
631
                \bitbox{1}{0}
632
                \bitbox{4}{Imm}
633
                \\
634
\bitbox{1}{1}\bitbox{9}{---}
635
                \bitbox[lr]{3}{}
636
                \bitbox{5}{---}
637
                \bitbox[lr]{4}{}
638
                \bitbox[lrb]{5}{}
639
                \bitbox{1}{1}
640
                \bitbox{4}{Reg} \\
641
\bitbox{1}{1}\bitbox{9}{---}
642
                \bitbox[lrb]{3}{}
643
                \bitbox{5}{---}
644
                \bitbox[lrb]{4}{}
645
                \bitbox{4}{4'hb}
646
                \bitbox{1}{}
647
                \bitbox{5}{5'b Imm}
648
                \end{leftwordgroup} \\
649
\end{bytefield}
650
\caption{Zip Instruction Set Format}\label{fig:iset-format}
651
\end{center}\end{figure}
652
The basic format is that some operation, defined by the OpCode, is applied
653
if a condition, Cnd, is true in order to produce a result which is placed in
654
the destination register, or DR.  The Load 23--bit signed immediate instruction
655
is different in that it requires no conditions, and uses only a 4-bit opcode.
656
 
657
This is actually a second version of instruction set definition, given certain
658
lessons learned.  For example, the original instruction set had the following
659
problems:
660
\begin{enumerate}
661
\item No opcodes were available for divide or floating point extensions to be
662
        made available.  Although there was space in the instruction set to
663
        add these types of instructions, this instruction space was going to
664
        require extra logic to use.
665
\item The carveouts for instructions such as NOOP and LDIHI/LDILO required
666
        extra logic to process.
667
\item The instruction set wasn't very compact.  One bus operation was required
668
        for every instruction.
669
\end{enumerate}
670
This second version was designed with two criteria.  The first was that the
671
new instruction set needed to be compatible, at the assembly language level,
672
with the previous instruction set.  Thus, it must be able to support all of
673
the previous menumonics and more.  This was achieved with the sole exception
674
that instruction immediates are generally two bits shorter than before.
675
(One bit was lost to the VLIW bit in front, another from changing from 4--bit
676
to 5--bit opcodes.)  Second, the new instruction set needed to be a drop--in
677
replacement for the decoder, modifying nothing else.  This was almost achieved,
678
save for two issues: the ALU unit needed to be replaced since the OpCodes
679
were reordered, and some condition code logic needed to be adjusted since the
680
condition codes were renumbered as well.  In the end, maximum reuse of the
681
existing RTL (Verilog) code was achieved in this upgrade.
682
 
683
As of this second version of the Zip CPU instruction set, the Zip CPU also
684
supports a very long instruction word (VLIW) set of instructions.   These
685
instruction formats pack two instructions into a single instuction word,
686
trading immediate instruction space to do this, but in just about all other
687
respects these are identical to two standard instructions.  Other than
688
instruction format, the only basic difference is that the CPU will not switch
689
to interrupt mode in between the two instructions.  Likewise a new job given
690
to the assembler is that of automatically packing as many instructions as
691
possible into the VLIW format.  Where necessary to place both VLIW instructions
692
on the same line, they will be separated by a vertical bar.
693
 
694
\section{Instruction OpCodes}
695
With a 5--bit opcode field, there are 32--possible instructions as shown in
696
Tbl.~\ref{tbl:iset-opcodes}.
697
\begin{table}\begin{center}
698
\begin{tabular}{|l|l|l|c|} \hline \rowcolor[gray]{0.85}
699
OpCode & & Instruction &Sets CC \\\hline\hline
700
5'h00 & SUB & Subtract &   \\\cline{1-3}
701
5'h01 & AND & Bitwise And &   \\\cline{1-3}
702
5'h02 & ADD & Add two numbers &   \\\cline{1-3}
703
5'h03 & OR  & Bitwise Or & Y \\\cline{1-3}
704
5'h04 & XOR & Bitwise Exclusive Or &   \\\cline{1-3}
705
5'h05 & LSR & Logical Shift Right &   \\\cline{1-3}
706
5'h06 & LSL & Logical Shift Left &   \\\cline{1-3}
707
5'h07 & ASR & Arithmetic Shift Right &   \\\hline
708
5'h08 & LDIHI & Load Immediate High & N \\\cline{1-3}
709
5'h09 & LDILO & Load Immediate Low &  \\\hline
710
5'h0a & MPYU & Unsigned 16--bit Multiply &  \\\cline{1-3}
711
5'h0b & MPYS & Signed 16--bit Multiply & Y \\\cline{1-3}
712
5'h0c & BREV & Bit Reverse &  \\\cline{1-3}
713
5'h0d & POPC& Population Count &  \\\cline{1-3}
714
5'h0e & ROL & Rotate left &   \\\hline
715
5'h0f & MOV & Move register & N \\\hline
716
5'h10 & CMP & Compare & Y \\\cline{1-3}
717
5'h11 & TST & Test (AND w/o setting result) &   \\\hline
718
5'h12 & LOD & Load from memory & N \\\cline{1-3}
719
5'h13 & STO & Store a register into memory &  \\\hline\hline
720
5'h14 & DIVU & Divide, unsigned & Y \\\cline{1-3}
721
5'h15 & DIVS & Divide, signed &  \\\hline\hline
722
5'h16/7 & LDI & Load 23--bit signed immediate & N \\\hline\hline
723
5'h18 & FPADD & Floating point add &  \\\cline{1-3}
724
5'h19 & FPSUB & Floating point subtract &   \\\cline{1-3}
725
5'h1a & FPMPY & Floating point multiply & Y \\\cline{1-3}
726
5'h1b & FPDIV & Floating point divide &   \\\cline{1-3}
727
5'h1c & FPCVT & Convert integer to floating point &   \\\cline{1-3}
728
5'h1d & FPINT & Convert to integer &   \\\hline
729
5'h1e & & {\em Reserved for future use} &\\\hline
730
5'h1f & & {\em Reserved for future use} &\\\hline
731 39 dgisselq
\end{tabular}
732 69 dgisselq
\caption{Zip CPU OpCodes}\label{tbl:iset-opcodes}
733 39 dgisselq
\end{center}\end{table}
734 69 dgisselq
%
735
Of these opcodes, the {\tt BREV} and {\tt POPC} are experimental, and may be
736
replaced later, and two floating point instruction opcodes are reserved for
737
future use.
738 39 dgisselq
 
739 21 dgisselq
\section{Conditional Instructions}
740 69 dgisselq
Most, although not quite all, instructions may be conditionally executed.
741
The 23--bit load immediate instruction, together with the {\tt NOOP},
742
{\tt BREAK}, and {\tt LOCK} instructions are the only exception to this rule.
743
 
744
From the four condition code flags, eight conditions are defined for standard
745
instructions.  These are shown in Tbl.~\ref{tbl:conditions}.
746
\begin{table}\begin{center}
747 21 dgisselq
\begin{tabular}{l|l|l}
748
Code & Mneumonic & Condition \\\hline
749
3'h0 & None & Always execute the instruction \\
750 69 dgisselq
3'h1 & {\tt .LT} & Less than ('N' set) \\
751
3'h2 & {\tt .Z} & Only execute when 'Z' is set \\
752
3'h3 & {\tt .NZ} & Only execute when 'Z' is not set \\
753 21 dgisselq
3'h4 & {\tt .GT} & Greater than ('N' not set, 'Z' not set) \\
754 69 dgisselq
3'h5 & {\tt .GE} & Greater than or equal ('N' not set, 'Z' irrelevant) \\
755 21 dgisselq
3'h6 & {\tt .C} & Carry set\\
756
3'h7 & {\tt .V} & Overflow set\\
757
\end{tabular}
758
\caption{Conditions for conditional operand execution}\label{tbl:conditions}
759 69 dgisselq
\end{center}\end{table}
760
There is no condition code for less than or equal, not C or not V---there
761
just wasn't enough space in 3--bits.  Conditioning on a non--supported
762
condition is still possible, but it will take an extra instruction and a
763
pipeline stall.  (Ex: \hbox{\em (Stall)}; \hbox{\tt TST \$4,CC;} \hbox{\tt
764
STO.NZ R0,(R1)}) As an alternative, it is often possible to reverse the
765
condition, and thus recovering those extra two clocks.  Thus instead of
766
\hbox{\tt CMP Rx,Ry;} \hbox{\tt BNV label} you can issue a
767
\hbox{\tt CMP Ry,Rx;} \hbox{\tt BV label}.
768 21 dgisselq
 
769 69 dgisselq
Conditionally executed instructions will not further adjust the
770 68 dgisselq
condition codes, with the exception of \hbox{\tt CMP} and \hbox{\tt TST}
771
instructions.   Conditional \hbox{\tt CMP} or \hbox{\tt TST} instructions
772 69 dgisselq
will adjust conditions whenever they are executed.  In this way,
773 68 dgisselq
multiple conditions may be evaluated without branches.  For example, to do
774
something if \hbox{\tt R0} is one and \hbox{\tt R1} is two, one might try
775
code such as Tbl.~\ref{tbl:dbl-condition}.
776
\begin{table}\begin{center}
777
\begin{tabular}{l}
778
        {\tt CMP 1,R0} \\
779
        {;\em Condition codes are now set based upon R0-1} \\
780
        {\tt CMP.Z 2,R1} \\
781
        {;\em If R0 $\neq$ 1, conditions are unchanged.} \\
782
        {;\em If R0 $=$ 1, conditions are set based upon R1-2.} \\
783
        {;\em Now do something based upon the conjunction of both conditions.} \\
784
        {;\em While we use the example of a STO, it could be any instruction.} \\
785
        {\tt STO.Z R0,(R2)} \\
786
\end{tabular}
787
\caption{An example of a double conditional}\label{tbl:dbl-condition}
788
\end{center}\end{table}
789 36 dgisselq
 
790 69 dgisselq
In the case of VLIW instructions, only four conditions are defined as shown
791
in Tbl.~\ref{tbl:vliw-conditions}.
792
\begin{table}\begin{center}
793
\begin{tabular}{l|l|l}
794
Code & Mneumonic & Condition \\\hline
795
2'h0 & None & Always execute the instruction \\
796
2'h1 & {\tt .LT} & Less than ('N' set) \\
797
2'h2 & {\tt .Z} & Only execute when 'Z' is set \\
798
2'h3 & {\tt .NZ} & Only execute when 'Z' is not set \\
799
\end{tabular}
800
\caption{VLIW Conditions}\label{tbl:vliw-conditions}
801
\end{center}\end{table}
802
Further, the first bit is given a special meaning.  If the first bit is set,
803
the conditions apply to the second half of the instruction, otherwise the
804
conditions will only apply to the first half of a conditional instruction.
805 68 dgisselq
 
806 21 dgisselq
\section{Operand B}
807 69 dgisselq
Many instruction forms have a 19-bit source ``Operand B'' associated with them.
808
This ``Operand B'' is shown in Fig.~\ref{fig:iset-format} as part of the
809
standard instructions.  This Operand B is either equal to a register plus a
810
14--bit signed immediate offset, or an 18--bit signed immediate offset by
811
itself.  This value is encoded as shown in Tbl.~\ref{tbl:opb}.
812 21 dgisselq
\begin{table}\begin{center}
813 69 dgisselq
\begin{bytefield}[endianness=big]{19}
814
\bitheader{0-18}  \\
815
\bitbox{1}{0}\bitbox{18}{18-bit Signed Immediate} \\
816
\bitbox{1}{1}\bitbox{4}{Reg}\bitbox{14}{14-bit Signed Immediate}
817
\end{bytefield}
818 21 dgisselq
\caption{Bit allocation for Operand B}\label{tbl:opb}
819
\end{center}\end{table}
820 24 dgisselq
 
821 69 dgisselq
Fourteen and eighteen bit immediate values don't make sense for all
822
instructions.  For example, what is the point of an 18--bit immediate when
823
executing a 16--bit multiply?  Or a 16--bit load--immediate?  In these cases,
824
the extra bits are simply ignored.
825 24 dgisselq
 
826 69 dgisselq
VLIW instructions still use the same operand B, only there was no room for any
827
instruction plus immediate addressing.  Therefore, VLIW instructions have either
828
a register or a 4--bit signed immediate as their operand B.  The only exception
829
is the load immediate instruction, which permits a 5--bit signed operand
830
B.\footnote{Although the space exists to extend this VLIW load immediate
831
instruction to six bits, the 5--bit limit was chosen to simplify the
832
disassembler.  This may change in the future.}
833
 
834 21 dgisselq
\section{Address Modes}
835 36 dgisselq
The Zip CPU supports two addressing modes: register plus immediate, and
836 21 dgisselq
immediate address.  Addresses are therefore encoded in the same fashion as
837 69 dgisselq
Operand B's, shown above.  Practically, the VLIW instruction set only offers
838
register addressing, necessitating a non--VLIW instruction for most memory
839
operations.
840 21 dgisselq
 
841
A lot of long hard thought was put into whether to allow pre/post increment
842
and decrement addressing modes.  Finding no way to use these operators without
843 32 dgisselq
taking two or more clocks per instruction,\footnote{The two clocks figure
844
comes from the design of the register set, allowing only one write per clock.
845
That write is either from the memory unit or the ALU, but never both.} these
846
addressing modes have been
847 21 dgisselq
removed from the realm of possibilities.  This means that the Zip CPU has no
848
native way of executing push, pop, return, or jump to subroutine operations.
849 24 dgisselq
Each of these instructions can be emulated with a set of instructions from the
850
existing set.
851 21 dgisselq
 
852
\section{Move Operands}
853
The previous set of operands would be perfect and complete, save only that
854 24 dgisselq
the CPU needs access to non--supervisory registers while in supervisory mode.
855
Therefore, the MOV instruction is special and offers access to these registers
856
\ldots when in supervisory mode.  To keep the compiler simple, the extra bits
857
are ignored in non-supervisory mode (as though they didn't exist), rather than
858
being mapped to new instructions or additional capabilities.  The bits
859 69 dgisselq
indicating which register set each register lies within are the A-User, marked
860
`A' in Fig.~\ref{fig:iset-format}, and B-User bits, marked as `B'.  When set
861
to a one, these refer to a user mode register.  When set to a zero, these
862
refer to a register in the current mode, whether user or supervisor.  Further,
863
because a load immediate instruction exists, there is no move capability
864
between an immediate and a register: all moves come from either a register or
865
a register plus an offset.
866 21 dgisselq
 
867 69 dgisselq
This actually leads to a bit of a problem: since the {\tt MOV} instruction
868
encodes which register set each register is coming from or moving to, how shall
869
a compiler or assembler know how to compile a MOV instruction without knowing
870 24 dgisselq
the mode of the CPU at the time?  For this reason, the compiler will assume
871
all MOV registers are supervisor registers, and display them as normal.
872 69 dgisselq
Anything with the user bit set will be treated as a user register and displayed
873
special.  Since the CPU quietly ignores the supervisor bits while in user mode,
874
anything marked as a user register will always be specific.
875 21 dgisselq
 
876
\section{Multiply Operations}
877 36 dgisselq
The Zip CPU supports two Multiply operations, a 16x16 bit signed multiply
878 69 dgisselq
({\tt MPYS}) and a 16x16 bit unsigned multiply ({\tt MPYU}).  A 32--bit
879
multiply, should it be desired, needs to be created via software from this
880
16x16 bit multiply.
881 21 dgisselq
 
882 69 dgisselq
\section{Divide Unit}
883
The Zip CPU also has a divide unit which can be built alongside the ALU.
884
This divide unit provides the Zip CPU with its first two instructions that
885
cannot be executed in a single cycle: {\tt DIVS}, or signed divide, and
886
{\tt DIVU}, the unsigned divide.  These are both 32--bit divide instructions,
887
dividing one 32--bit number by another.  In this case, the Operand B field,
888
whether it be register or register plus immediate, constitutes the denominator,
889
whereas the numerator is given by the other register.
890 21 dgisselq
 
891 69 dgisselq
The Divide is also a multi--clock instruction.  While the divide is running,
892
the ALU, memory unit, and floating point unit (if installed) will be idle.
893
Once the divide completes, other units may continue.
894 21 dgisselq
 
895 69 dgisselq
Of course, divides can have errors: division by zero.  In the case of division
896
by zero, an exception will be caused that will send the CPU either from
897
user mode to supervisor mode, or halt the CPU if it is already in supervisor
898
mode.
899 32 dgisselq
 
900 69 dgisselq
\section{NOOP, BREAK, and Bus Lock Instruction}
901
Three instructions are not listed in the opcode list in
902
Tbl.~\ref{tbl:iset-opcodes}, yet fit in the NOOP type instruction format of
903
Fig.~\ref{fig:iset-format}.  These are the {\tt NOOP}, {\tt Break}, and
904
bus {\tt LOCK} instructions.  These are encoded according to
905
Fig.~\ref{fig:iset-noop}, and have the following meanings:
906
\begin{figure}\begin{center}
907
\begin{bytefield}[endianness=big]{32}
908
\bitheader{0-31}\\
909
\begin{leftwordgroup}{NOOP}
910
\bitbox{1}{0}\bitbox{3}{3'h7}\bitbox{1}{}
911
        \bitbox{2}{11}\bitbox{3}{001}\bitbox{22}{Ignored} \\
912
\bitbox{1}{1}\bitbox{3}{3'h7}\bitbox{1}{}
913
        \bitbox{2}{11}\bitbox{3}{001}\bitbox{22}{---} \\
914
\bitbox{1}{1}\bitbox{9}{---}\bitbox{3}{---}\bitbox{5}{---}
915
        \bitbox{3}{3'h7}\bitbox{1}{}\bitbox{2}{11}\bitbox{3}{001}
916
        \bitbox{5}{Ignored}
917
                \end{leftwordgroup} \\
918
\begin{leftwordgroup}{BREAK}
919
\bitbox{1}{0}\bitbox{3}{3'h7}
920
                \bitbox{1}{}\bitbox{2}{11}\bitbox{3}{010}\bitbox{22}{Ignored}
921
                \end{leftwordgroup} \\
922
\begin{leftwordgroup}{LOCK}
923
\bitbox{1}{0}\bitbox{3}{3'h7}
924
                \bitbox{1}{}\bitbox{2}{11}\bitbox{3}{100}\bitbox{22}{Ignored}
925
                \end{leftwordgroup} \\
926
\end{bytefield}
927
\caption{NOOP/Break/LOCK Instruction Format}\label{fig:iset-noop}
928
\end{center}\end{figure}
929 32 dgisselq
 
930 69 dgisselq
The {\tt NOOP} instruction is just that: an instruction that does not perform
931
any operation.  While many other instructions, such as a move from a register to
932
itself, could also fit these roles, only the NOOP instruction guarantees that
933
it will not stall waiting for a register to be available.   For this reason,
934
it gets its own place in the instruction set.
935 32 dgisselq
 
936 69 dgisselq
The {\tt BREAK} instruction is useful for creating a debug instruction that
937
will halt the CPU without executing.  If in user mode, depending upon the
938
setting of the break enable bit, it will either switch to supervisor mode or
939
halt the CPU--depending upon where the user wishes to do his debugging.
940 21 dgisselq
 
941 69 dgisselq
Finally, the {\tt LOCK} instruction was added in order to make a test and
942
set multi--CPU operation possible.  Following a LOCK instruction, the next
943
two instructions, if they are memory LOD/STO instructions, will execute without
944
dropping the wishbone {\tt CYC} line between the instructions.   Thus a
945
{\tt LOCK} followed by {\tt LOD (Rx),Ry} and a {\tt STO Rz,(Rx)}, where Rz
946
is initially set, can be used to set an address while guaranteeing that Ry
947
was the value before setting the address to Rz.   This is a useful instruction
948
while trying to achieve concurrency among multiple CPU's.
949 21 dgisselq
 
950 69 dgisselq
\section{Floating Point}
951
Although the Zip CPU does not (yet) have a floating point unit, the current
952
instruction set offers eight opcodes for floating point operations, and treats
953
floating point exceptions like divide by zero errors.  Once this unit is built
954
and integrated together with the rest of the CPU, the Zip CPU will support
955
32--bit floating point instructions natively.  Any 64--bit floating point
956
instructions will still need to be emulated in software.
957
 
958 21 dgisselq
\section{Derived Instructions}
959 36 dgisselq
The Zip CPU supports many other common instructions, but not all of them
960 24 dgisselq
are single cycle instructions.  The derived instruction tables,
961 36 dgisselq
Tbls.~\ref{tbl:derived-1}, \ref{tbl:derived-2}, \ref{tbl:derived-3}
962
and~\ref{tbl:derived-4},
963 21 dgisselq
help to capture some of how these other instructions may be implemented on
964 36 dgisselq
the Zip CPU.  Many of these instructions will have assembly equivalents,
965 21 dgisselq
such as the branch instructions, to facilitate working with the CPU.
966
\begin{table}\begin{center}
967
\begin{tabular}{p{1.4in}p{1.5in}p{3in}}\\\hline
968
Mapped & Actual  & Notes \\\hline
969 39 dgisselq
{\tt ABS Rx}
970
        & \parbox[t]{1.5in}{\tt TST -1,Rx\\NEG.LT Rx}
971 36 dgisselq
        & Absolute value, depends upon derived NEG.\\\hline
972 39 dgisselq
\parbox[t]{1.4in}{\tt ADD Ra,Rx\\ADDC Rb,Ry}
973
        & \parbox[t]{1.5in}{\tt Add Ra,Rx\\ADD.C \$1,Ry\\Add Rb,Ry}
974 21 dgisselq
        & Add with carry \\\hline
975 39 dgisselq
{\tt BRA.Cond +/-\$Addr}
976
        & \hbox{\tt MOV.cond \$Addr+PC,PC}
977 69 dgisselq
        & Branch or jump on condition.  Works for 13--bit
978 24 dgisselq
                signed address offsets.\\\hline
979 39 dgisselq
{\tt BRA.Cond +/-\$Addr}
980
        & \parbox[t]{1.5in}{\tt LDI \$Addr,Rx \\ ADD.cond Rx,PC}
981 73 dgisselq
        & Branch/jump on condition.  Works for 23 bit address offsets, but
982
        costs a register and an extra instruction.  With LDIHI and LDILO
983
        this can be made to work anywhere in the 32-bit address space, but yet
984
        cost an additional instruction still. \\\hline
985 39 dgisselq
{\tt BNC PC+\$Addr}
986
        & \parbox[t]{1.5in}{\tt Test \$Carry,CC \\ MOV.Z PC+\$Addr,PC}
987 21 dgisselq
        & Example of a branch on an unsupported
988
                condition, in this case a branch on not carry \\\hline
989 39 dgisselq
{\tt BUSY } & {\tt MOV \$-1(PC),PC} & Execute an infinite loop \\\hline
990
{\tt CLRF.NZ Rx }
991
        & {\tt XOR.NZ Rx,Rx}
992 21 dgisselq
        & Clear Rx, and flags, if the Z-bit is not set \\\hline
993 39 dgisselq
{\tt CLR Rx }
994
        & {\tt LDI \$0,Rx}
995 21 dgisselq
        & Clears Rx, leaves flags untouched.  This instruction cannot be
996
                conditional. \\\hline
997 39 dgisselq
{\tt EXCH.W Rx }
998
        & {\tt ROL \$16,Rx}
999 21 dgisselq
        & Exchanges the top and bottom 16'bit words of Rx \\\hline
1000 39 dgisselq
{\tt HALT }
1001
        & {\tt Or \$SLEEP,CC}
1002
        & This only works when issued in interrupt/supervisor mode.  In user
1003
        mode this is simply a wait until interrupt instruction. \\\hline
1004 69 dgisselq
{\tt INT } & {\tt LDI \$0,CC} & This is also known as a trap instruction\\\hline
1005 39 dgisselq
{\tt IRET}
1006
        & {\tt OR \$GIE,CC}
1007
        & Also known as an RTU instruction (Return to Userspace) \\\hline
1008
{\tt JMP R6+\$Addr}
1009
        & {\tt MOV \$Addr(R6),PC}
1010 21 dgisselq
        & \\\hline
1011 69 dgisselq
{\tt LJMP \$Addr}
1012
        & \parbox[t]{1.5in}{\tt LOD (PC),PC \\ {\em Address }}
1013
        & Although this only works for an unconditional jump, and it only
1014
        works in a Von Neumann architecture, this instruction combination makes
1015
        for a nice combination that can be adjusted by a linker at a later
1016
        time.\\\hline
1017 39 dgisselq
{\tt JSR PC+\$Addr  }
1018 69 dgisselq
        & \parbox[t]{1.5in}{\tt MOV \$1+PC,R0 \\ MOV \$addr+PC,PC}
1019
        & This is similar to the jump and link instructions from other
1020
        architectures, save only that it requires a specific link
1021
        instruction, also known as the {\tt MOV} instruction on the
1022
        left.\\\hline
1023
\end{tabular}
1024
\caption{Derived Instructions}\label{tbl:derived-1}
1025
\end{center}\end{table}
1026
\begin{table}\begin{center}
1027
\begin{tabular}{p{1.4in}p{1.5in}p{3in}}\\\hline
1028
Mapped & Actual  & Notes \\\hline
1029 39 dgisselq
{\tt LDI.l \$val,Rx }
1030
        & \parbox[t]{1.8in}{\tt LDIHI (\$val$>>$16)\&0x0ffff, Rx \\
1031
                        LDILO (\$val\&0x0ffff),Rx}
1032 69 dgisselq
        & \parbox[t]{3.0in}{Sadly, there's not enough instruction
1033 21 dgisselq
                space to load a complete immediate value into any register.
1034
                Therefore, fully loading any register takes two cycles.
1035
                The LDIHI (load immediate high) and LDILO (load immediate low)
1036 69 dgisselq
                instructions have been created to facilitate this.
1037
                \\
1038
        This is also the appropriate means for setting a register value
1039
        to an arbitrary 32--bit value in a post--assembly link
1040
        operation.}\\\hline
1041 39 dgisselq
{\tt LOD.b \$addr,Rx}
1042
        & \parbox[t]{1.5in}{\tt %
1043 21 dgisselq
        LDI     \$addr,Ra \\
1044
        LDI     \$addr,Rb \\
1045
        LSR     \$2,Ra \\
1046
        AND     \$3,Rb \\
1047
        LOD     (Ra),Rx \\
1048
        LSL     \$3,Rb \\
1049
        SUB     \$32,Rb \\
1050
        ROL     Rb,Rx \\
1051
        AND \$0ffh,Rx}
1052
        & \parbox[t]{3in}{This CPU is designed for 32'bit word
1053
        length instructions.  Byte addressing is not supported by the CPU or
1054
        the bus, so it therefore takes more work to do.
1055
 
1056
        Note also that in this example, \$Addr is a byte-wise address, where
1057 24 dgisselq
        all other addresses in this document are 32-bit wordlength addresses.
1058
        For this reason,
1059 21 dgisselq
        we needed to drop the bottom two bits.  This also limits the address
1060
        space of character accesses using this method from 16 MB down to 4MB.}
1061
                \\\hline
1062 39 dgisselq
\parbox[t]{1.5in}{\tt LSL \$1,Rx\\ LSLC \$1,Ry}
1063
        & \parbox[t]{1.5in}{\tt LSL \$1,Ry \\
1064 21 dgisselq
        LSL \$1,Rx \\
1065
        OR.C \$1,Ry}
1066
        & Logical shift left with carry.  Note that the
1067
        instruction order is now backwards, to keep the conditions valid.
1068 33 dgisselq
        That is, LSL sets the carry flag, so if we did this the other way
1069 21 dgisselq
        with Rx before Ry, then the condition flag wouldn't have been right
1070
        for an OR correction at the end. \\\hline
1071 39 dgisselq
\parbox[t]{1.5in}{\tt LSR \$1,Rx \\ LSRC \$1,Ry}
1072
        & \parbox[t]{1.5in}{\tt CLR Rz \\
1073 21 dgisselq
        LSR \$1,Ry \\
1074
        LDIHI.C \$8000h,Rz \\
1075
        LSR \$1,Rx \\
1076
        OR Rz,Rx}
1077
        & Logical shift right with carry \\\hline
1078 39 dgisselq
{\tt NEG Rx} & \parbox[t]{1.5in}{\tt XOR \$-1,Rx \\ ADD \$1,Rx} & \\\hline
1079
{\tt NEG.C Rx} & \parbox[t]{1.5in}{\tt MOV.C \$-1+Rx,Rx\\XOR.C \$-1,Rx} & \\\hline
1080
{\tt NOOP} & {\tt NOOP} & While there are many
1081 21 dgisselq
        operations that do nothing, such as MOV Rx,Rx, or OR \$0,Rx, these
1082
        operations have consequences in that they might stall the bus if
1083
        Rx isn't ready yet.  For this reason, we have a dedicated NOOP
1084
        instruction. \\\hline
1085 39 dgisselq
{\tt NOT Rx } & {\tt XOR \$-1,Rx } & \\\hline
1086
{\tt POP Rx }
1087 69 dgisselq
        & \parbox[t]{1.5in}{\tt LOD \$(SP),Rx \\ ADD \$1,SP}
1088
        & \\\hline
1089 36 dgisselq
\end{tabular}
1090
\caption{Derived Instructions, continued}\label{tbl:derived-2}
1091
\end{center}\end{table}
1092
\begin{table}\begin{center}
1093
\begin{tabular}{p{1.4in}p{1.5in}p{3in}}\\\hline
1094 39 dgisselq
{\tt PUSH Rx}
1095 69 dgisselq
        & \parbox[t]{1.5in}{\hbox{\tt SUB \$1,SP}
1096
        \hbox{\tt STO Rx,\$(SP)}}
1097 39 dgisselq
        & Note that for pipelined operation, it helps to coalesce all the
1098
        {\tt SUB}'s into one command, and place the {\tt STO}'s right
1099 69 dgisselq
        after each other.  Further, to avoid a pipeline stall, the
1100
        immediate value for the store must be zero.
1101
        \\\hline
1102 39 dgisselq
{\tt PUSH Rx-Ry}
1103 69 dgisselq
        & \parbox[t]{1.5in}{\tt SUB \$$n$,SP \\
1104
        STO Rx,\$(SP)
1105 36 dgisselq
        \ldots \\
1106 69 dgisselq
        STO Ry,\$$\left(n-1\right)$(SP)}
1107 36 dgisselq
        & Multiple pushes at once only need the single subtract from the
1108
        stack pointer.  This derived instruction is analogous to a similar one
1109
        on the Motoroloa 68k architecture, although the Zip Assembler
1110 39 dgisselq
        does not support this instruction (yet).  This instruction
1111
        also supports pipelined memory access.\\\hline
1112
{\tt RESET}
1113
        & \parbox[t]{1in}{\tt STO \$1,\$watchdog(R12)\\NOOP\\NOOP}
1114
        & This depends upon the peripheral base address being
1115 69 dgisselq
        preloaded into R12.
1116 21 dgisselq
 
1117
        Another opportunity might be to jump to the reset address from within
1118 39 dgisselq
        supervisor mode.\\\hline
1119 69 dgisselq
{\tt RET} & {\tt MOV R0,PC}
1120
        & This depends upon the form of the {\tt JSR} given on the previous
1121
        page that stores the return address into R0.
1122 21 dgisselq
        \\\hline
1123 39 dgisselq
{\tt STEP Rr,Rt}
1124
        & \parbox[t]{1.5in}{\tt LSR \$1,Rr \\ XOR.C Rt,Rr}
1125 21 dgisselq
        & Step a Galois implementation of a Linear Feedback Shift Register, Rr,
1126
                using taps Rt \\\hline
1127 39 dgisselq
{\tt STO.b Rx,\$addr}
1128
        & \parbox[t]{1.5in}{\tt %
1129 21 dgisselq
        LDI \$addr,Ra \\
1130
        LDI \$addr,Rb \\
1131
        LSR \$2,Ra \\
1132
        AND \$3,Rb \\
1133
        SUB \$32,Rb \\
1134
        LOD (Ra),Ry \\
1135
        AND \$0ffh,Rx \\
1136 39 dgisselq
        AND \~\$0ffh,Ry \\
1137 21 dgisselq
        ROL Rb,Rx \\
1138
        OR Rx,Ry \\
1139
        STO Ry,(Ra) }
1140
        & \parbox[t]{3in}{This CPU and it's bus are {\em not} optimized
1141
        for byte-wise operations.
1142
 
1143
        Note that in this example, \$addr is a
1144
        byte-wise address, whereas in all of our other examples it is a
1145
        32-bit word address. This also limits the address space
1146
        of character accesses from 16 MB down to 4MB.F
1147
        Further, this instruction implies a byte ordering,
1148
        such as big or little endian.} \\\hline
1149 39 dgisselq
{\tt SWAP Rx,Ry }
1150 69 dgisselq
        & \parbox[t]{1.5in}{\tt XOR Ry,Rx \\ XOR Rx,Ry \\ XOR Ry,Rx}
1151 21 dgisselq
        & While no extra registers are needed, this example
1152
        does take 3-clocks. \\\hline
1153 69 dgisselq
\end{tabular}
1154
\caption{Derived Instructions, continued}\label{tbl:derived-3}
1155
\end{center}\end{table}
1156
\begin{table}\begin{center}
1157
\begin{tabular}{p{1.4in}p{1.5in}p{3in}}\\\hline
1158 39 dgisselq
{\tt TRAP \#X}
1159
        & \parbox[t]{1.5in}{\tt LDI \$x,R0 \\ AND \~\$GIE,CC }
1160 36 dgisselq
        & This works because whenever a user lowers the \$GIE flag, it sets
1161
        a TRAP bit within the CC register.  Therefore, upon entering the
1162
        supervisor state, the CPU only need check this bit to know that it
1163
        got there via a TRAP.  The trap could be made conditional by making
1164
        the LDI and the AND conditional.  In that case, the assembler would
1165
        quietly turn the LDI instruction into an LDILO and LDIHI pair,
1166 37 dgisselq
        but the effect would be the same. \\\hline
1167 69 dgisselq
{\tt TS Rx,Ry,(Rz)}
1168
        & \hbox{\tt LDI 1,Rx}
1169
                \hbox{\tt LOCK}
1170
                \hbox{\tt LOD (Rz),Ry}
1171
                \hbox{\tt STO Rx,(Rz)}
1172
        & A test and set instruction.  The {\tt LOCK} instruction insures
1173
        that the next two instructions lock the bus between the instructions,
1174
        so no one else can use it.  Thus guarantees that the operation is
1175
        atomic.
1176
        \\\hline
1177 39 dgisselq
{\tt TST Rx}
1178
        & {\tt TST \$-1,Rx}
1179 21 dgisselq
        & Set the condition codes based upon Rx.  Could also do a CMP \$0,Rx,
1180
        ADD \$0,Rx, SUB \$0,Rx, etc, AND \$-1,Rx, etc.  The TST and CMP
1181
        approaches won't stall future pipeline stages looking for the value
1182 69 dgisselq
        of Rx. (Future versions of the assembler may shorten this to a
1183
        {\tt TST Rx} instruction.)\\\hline
1184 39 dgisselq
{\tt WAIT}
1185
        & {\tt Or \$GIE | \$SLEEP,CC}
1186
        & Wait until the next interrupt, then jump to supervisor/interrupt
1187
        mode.
1188 21 dgisselq
\end{tabular}
1189 36 dgisselq
\caption{Derived Instructions, continued}\label{tbl:derived-4}
1190 21 dgisselq
\end{center}\end{table}
1191 69 dgisselq
 
1192
\section{Interrupt Handling}
1193
The Zip CPU does not maintain any interrupt vector tables.  If an interrupt
1194
takes place, the CPU simply switches to interrupt mode.  The supervisor code
1195
continues in this interrupt mode from where it left off before, after
1196
executing a return to userspace {\tt RTU} instruction.
1197
 
1198
At this point, the supervisor code needs to determine first whether an
1199
interrupt has occurred, and then whether it is in interrupt mode due to
1200
an exception and handle each case appropriately.
1201
 
1202 21 dgisselq
\section{Pipeline Stages}
1203 32 dgisselq
As mentioned in the introduction, and highlighted in Fig.~\ref{fig:cpu},
1204
the Zip CPU supports a five stage pipeline.
1205 21 dgisselq
\begin{enumerate}
1206 36 dgisselq
\item {\bf Prefetch}: Reads instruction from memory and into a cache, if so
1207
        configured.  This
1208 21 dgisselq
        stage is actually pipelined itself, and so it will stall if the PC
1209
        ever changes.  Stalls are also created here if the instruction isn't
1210
        in the prefetch cache.
1211 36 dgisselq
 
1212 69 dgisselq
        The Zip CPU supports one of three prefetch methods, depending upon a
1213
        flag set at build time within the {\tt cpudefs.v} file.  The simplest
1214
        is a non--cached implementation of a prefetch.  This implementation is
1215
        fairly small, and ideal for users of the Zip CPU who need the extra
1216
        space on the FPGA fabric.  However, because this non--cached version
1217
        has no cache, the maximum number of instructions per clock is limited
1218
        to about one per five.
1219 36 dgisselq
 
1220
        The second prefetch module is a pipelined prefetch with a cache.  This
1221
        module tries to keep the instruction address within a window of valid
1222
        instruction addresses.  While effective, it is not a traditional
1223
        cache implementation.  One unique feature of this cache implementation,
1224
        however, is that it can be cleared in a single clock.  A disappointing
1225
        feature, though, was that it needs an extra internal pipeline stage
1226
        to be implemented.
1227
 
1228 69 dgisselq
        The third prefetch and cache module implements a more traditional cache.
1229
        While the resulting code tends to be twice as fast as the pipelined
1230
        cache architecture, this implementation uses a large amount of
1231
        distributed FPGA RAM to be successful.  This then inflates the Zip CPU's
1232
        FPGA usage statistics.
1233
 
1234
\item {\bf Decode}: Decodes an instruction into OpCode, register(s) to read,
1235
        and immediate offset.  This stage also determines whether the flags
1236
        will be set or whether the result will be written back.
1237
 
1238 21 dgisselq
\item {\bf Read Operands}: Read registers and apply any immediate values to
1239 24 dgisselq
        them.  There is no means of detecting or flagging arithmetic overflow
1240
        or carry when adding the immediate to the operand.  This stage will
1241
        stall if any source operand is pending.
1242 69 dgisselq
 
1243
\item Split into one of four tracks: An {\bf ALU} track which will accomplish
1244
        a simple instruction, the {\bf MemOps} stage which handles {\tt LOD}
1245
        (load) and {\tt STO} (store) instructions, the {\bf divide} unit,
1246
        and the {\bf floating point} unit.
1247 21 dgisselq
        \begin{itemize}
1248 69 dgisselq
        \item Loads will stall instructions in the decode stage until the
1249
                entire pipeline until complete, lest a register be read in
1250
                the read operands stage only to be updated unseen by the
1251
                Load.
1252
        \item Condition codes are available upon completion of the ALU,
1253
                divide, or FPU stage.
1254
        \item Issuing a non--pipelined memory instruction to the memory unit
1255
                while the memory unit is busy will stall the entire pipeline.
1256 21 dgisselq
        \end{itemize}
1257 32 dgisselq
\item {\bf Write-Back}: Conditionally write back the result to the register
1258 69 dgisselq
        set, applying the condition.  This routine is quad-entrant: either the
1259
        ALU, the memory, the divide, or the FPU may write back a register.
1260
        The only design rule is that no more than a single register may be
1261
        written back in any given clock.
1262 21 dgisselq
\end{enumerate}
1263
 
1264 24 dgisselq
The Zip CPU does not support out of order execution.  Therefore, if the memory
1265 69 dgisselq
unit stalls, every other instruction stalls.  The same is true for divide or
1266
floating point instructions--all other instructions will stall while waiting
1267
for these to complete.  Memory stores, however, can take place concurrently
1268
with non--memory operations, although memory reads (loads) cannot.
1269 24 dgisselq
 
1270 32 dgisselq
\section{Pipeline Stalls}
1271
The processing pipeline can and will stall for a variety of reasons.  Some of
1272
these are obvious, some less so.  These reasons are listed below:
1273
\begin{itemize}
1274
\item When the prefetch cache is exhausted
1275 21 dgisselq
 
1276 36 dgisselq
This reason should be obvious.  If the prefetch cache doesn't have the
1277 69 dgisselq
instruction in memory, the entire pipeline must stall until an instruction
1278
can be made ready.  In the case of the {\tt pipefetch} windowed approach
1279
to the prefetch cache, this means the pipeline will stall until enough of the
1280
prefetch cache is loaded to support the next instruction.  In the case
1281
of the more traditional {\tt pfcache} approach, the entire cache line must
1282
fill before instruction execution can continue.
1283 21 dgisselq
 
1284 32 dgisselq
\item While waiting for the pipeline to load following any taken branch, jump,
1285 69 dgisselq
        return from interrupt or switch to interrupt context (4 stall cycles)
1286 32 dgisselq
 
1287 68 dgisselq
Fig.~\ref{fig:bcstalls}
1288
\begin{figure}\begin{center}
1289
\includegraphics[width=3.5in]{../gfx/bc.eps}
1290 69 dgisselq
\caption{A conditional branch generates 4 stall cycles}\label{fig:bcstalls}
1291 68 dgisselq
\end{center}\end{figure}
1292
illustrates the situation for a conditional branch.  In this case, the branch
1293 69 dgisselq
instruction, {\tt BC}, is nominally followed by instructions {\tt I1} and so
1294 68 dgisselq
forth.  However, since the branch is taken, the next instruction must be
1295
{\tt IA}.  Therefore, the pipeline needs to be cleared and reloaded.
1296
Given that there are five stages to the pipeline, that accounts
1297 69 dgisselq
for the four stalls.  (Were the {\tt pipefetch} cache chosen, there would
1298
be another stall internal to the {\tt pipefetch} cache.)
1299 32 dgisselq
 
1300 36 dgisselq
The Zip CPU handles {\tt MOV \$X(PC),PC}, {\tt ADD \$X,PC}, and
1301
{\tt LDI \$X,PC} instructions specially, however.  These instructions, when
1302 69 dgisselq
not conditioned on the flags, can execute with only a single stall cycle,
1303
such as is shown in Fig.~\ref{fig:branch}.\footnote{Note that when using the
1304
{\tt pipefetch} cache, this requires an additional stall cycle due to that
1305
cache's implementation.}
1306 68 dgisselq
\begin{figure}\begin{center}
1307 69 dgisselq
\includegraphics[width=4in]{../gfx/bra.eps} %0.4in per clock
1308
\caption{An expedited branch costs a single stall cycle}\label{fig:branch}
1309 68 dgisselq
\end{center}\end{figure}
1310
In this example, {\tt BR} is a branch always taken, {\tt I1} is the instruction
1311
following the branch in memory, while {\tt IA} is the first instruction at the
1312
branch address.  ({\tt CLR} denotes a clear--pipeline operation, and does
1313
not represent any instruction.)
1314 36 dgisselq
 
1315 32 dgisselq
\item When reading from a prior register while also adding an immediate offset
1316
\begin{enumerate}
1317
\item\ {\tt OPCODE ?,RA}
1318
\item\ {\em (stall)}
1319
\item\ {\tt OPCODE I+RA,RB}
1320
\end{enumerate}
1321
 
1322
Since the addition of the immediate register within OpB decoding gets applied
1323
during the read operand stage so that it can be nicely settled before the ALU,
1324
any instruction that will write back an operand must be separated from the
1325
opcode that will read and apply an immediate offset by one instruction.  The
1326
good news is that this stall can easily be mitigated by proper scheduling.
1327 36 dgisselq
That is, any instruction that does not add an immediate to {\tt RA} may be
1328
scheduled into the stall slot.
1329 32 dgisselq
 
1330 69 dgisselq
This is also the reason why, when setting up a stack frame, the top of the
1331
stack frame is used first: it eliminates this stall cycle.  Hence, to save
1332
registers at the top of a procedure, one would write:
1333 32 dgisselq
\begin{enumerate}
1334 69 dgisselq
\item\ {\tt SUB 2,SP}
1335
\item\ {\tt STO R1,(SP)}
1336
\item\ {\tt STO R2,1(SP)}
1337 32 dgisselq
\end{enumerate}
1338 69 dgisselq
Had {\tt R1} instead been stored at {\tt 1(SP)} as the top of the stack,
1339
there would've been an extra stall in setting up the stack frame.
1340 32 dgisselq
 
1341
\item When reading from the CC register after setting the flags
1342
\begin{enumerate}
1343 69 dgisselq
\item\ {\tt ALUOP RA,RB} {\em ; Ex: a compare opcode}
1344 36 dgisselq
\item\ {\em (stall)}
1345 32 dgisselq
\item\ {\tt TST sys.ccv,CC}
1346
\item\ {\tt BZ somewhere}
1347
\end{enumerate}
1348
 
1349 68 dgisselq
The reason for this stall is simply performance: many of the flags are
1350
determined via combinatorial logic {\em during} the writeback cycle.
1351
Trying to then place these into the input for one of the operands for an
1352
ALU instruction during the same cycle
1353 32 dgisselq
created a time delay loop that would no longer execute in a single 100~MHz
1354
clock cycle.  (The time delay of the multiply within the ALU wasn't helping
1355
either \ldots).
1356
 
1357 33 dgisselq
This stall may be eliminated via proper scheduling, by placing an instruction
1358
that does not set flags in between the ALU operation and the instruction
1359
that references the CC register.  For example, {\tt MOV \$addr+PC,uPC}
1360
followed by an {\tt RTU} ({\tt OR \$GIE,CC}) instruction will not incur
1361
this stall, whereas an {\tt OR \$BREAKEN,CC} followed by an {\tt OR \$STEP,CC}
1362 68 dgisselq
will incur the stall, while a {\tt LDI \$BREAKEN|\$STEP,CC} will not since
1363 69 dgisselq
it doesn't read the condition codes before executing.
1364 33 dgisselq
 
1365 32 dgisselq
\item When waiting for a memory read operation to complete
1366
\begin{enumerate}
1367
\item\ {\tt LOD address,RA}
1368 36 dgisselq
\item\ {\em (multiple stalls, bus dependent, 4 clocks best)}
1369 32 dgisselq
\item\ {\tt OPCODE I+RA,RB}
1370
\end{enumerate}
1371
 
1372 36 dgisselq
Remember, the Zip CPU does not support out of order execution.  Therefore,
1373 32 dgisselq
anytime the memory unit becomes busy both the memory unit and the ALU must
1374 68 dgisselq
stall until the memory unit is cleared.  This is illustrated in
1375
Fig.~\ref{fig:memrd},
1376
\begin{figure}\begin{center}
1377 69 dgisselq
\includegraphics[width=5.6in]{../gfx/memrd.eps}
1378 68 dgisselq
\caption{Pipeline handling of a load instruction}\label{fig:memrd}
1379
\end{center}\end{figure}
1380
since it is especially true of a load
1381 69 dgisselq
instruction, which must still write its operand back to the register file.
1382
Further, note that on a pipelined memory operation, the instruction must
1383
stall in the decode operand stage, lest it try to read a result from the
1384
register file before the load result has been written to it.  Finally, note
1385
that there is an extra stall at the end of the memory cycle, so that
1386
the memory unit will be idle for two clocks before an instruction will be
1387
accepted into the ALU.  Store instructions are different, as shown in
1388
Fig.~\ref{fig:memwr},
1389 68 dgisselq
\begin{figure}\begin{center}
1390 69 dgisselq
\includegraphics[width=4in]{../gfx/memwr.eps}
1391 68 dgisselq
\caption{Pipeline handling of a store instruction}\label{fig:memwr}
1392
\end{center}\end{figure}
1393
since they can be busy with the bus without impacting later write back
1394
pipeline stages.  Hence, only loads stall the pipeline.
1395 32 dgisselq
 
1396 68 dgisselq
This, of course, also assumes that the memory being accessed is a single cycle
1397
memory and that there are no stalls to get to the memory.
1398 32 dgisselq
Slower memories, such as the Quad SPI flash, will take longer--perhaps even
1399 33 dgisselq
as long as forty clocks.   During this time the CPU and the external bus
1400 68 dgisselq
will be busy, and unable to do anything else.  Likewise, if it takes a couple
1401
of clock cycles for the bus to be free, as shown in both Figs.~\ref{fig:memrd}
1402
and~\ref{fig:memwr}, there will be stalls.
1403 32 dgisselq
 
1404
\item Memory operation followed by a memory operation
1405
\begin{enumerate}
1406
\item\ {\tt STO address,RA}
1407 36 dgisselq
\item\ {\em (multiple stalls, bus dependent, 4 clocks best)}
1408 32 dgisselq
\item\ {\tt LOD address,RB}
1409 36 dgisselq
\item\ {\em (multiple stalls, bus dependent, 4 clocks best)}
1410 32 dgisselq
\end{enumerate}
1411
 
1412 68 dgisselq
In this case, the LOD instruction cannot start until the STO is finished,
1413
as illustrated by Fig.~\ref{fig:mstld}.
1414
\begin{figure}\begin{center}
1415
\includegraphics[width=5.5in]{../gfx/mstld.eps}
1416
\caption{Pipeline handling of a store followed by a load instruction}\label{fig:mstld}
1417
\end{center}\end{figure}
1418 32 dgisselq
With proper scheduling, it is possible to do something in the ALU while the
1419 36 dgisselq
memory unit is busy with the STO instruction, but otherwise this pipeline will
1420 68 dgisselq
stall while waiting for it to complete before the load instruction can
1421
start.
1422 32 dgisselq
 
1423 39 dgisselq
The Zip CPU does have the capability of supporting pipelined memory access,
1424
but only under the following conditions: all accesses within the pipeline
1425
must all be reads or all be writes, all must use the same register for their
1426
address, and there can be no stalls or other instructions between pipelined
1427
memory access instructions.  Further, the offset to memory must be increasing
1428
by one address each instruction.  These conditions work well for saving or
1429 68 dgisselq
storing registers to the stack.  Indeed, if you noticed, both
1430
Fig.~\ref{fig:memrd} and Fig.~\ref{fig:memwr} illustrated pipelined memory
1431
accesses.
1432 36 dgisselq
 
1433 32 dgisselq
\end{itemize}
1434
 
1435
 
1436 21 dgisselq
\chapter{Peripherals}\label{chap:periph}
1437 24 dgisselq
 
1438
While the previous chapter describes a CPU in isolation, the Zip System
1439
includes a minimum set of peripherals as well.  These peripherals are shown
1440
in Fig.~\ref{fig:zipsystem}
1441
\begin{figure}\begin{center}
1442
\includegraphics[width=3.5in]{../gfx/system.eps}
1443
\caption{Zip System Peripherals}\label{fig:zipsystem}
1444
\end{center}\end{figure}
1445
and described here.  They are designed to make
1446
the Zip CPU more useful in an Embedded Operating System environment.
1447
 
1448 68 dgisselq
\section{Interrupt Controller}\label{sec:pic}
1449 24 dgisselq
 
1450
Perhaps the most important peripheral within the Zip System is the interrupt
1451
controller.  While the Zip CPU itself can only handle one interrupt, and has
1452
only the one interrupt state: disabled or enabled, the interrupt controller
1453
can make things more interesting.
1454
 
1455
The Zip System interrupt controller module supports up to 15 interrupts, all
1456
controlled from one register.  Bit~31 of the interrupt controller controls
1457
overall whether interrupts are enabled (1'b1) or disabled (1'b0).  Bits~16--30
1458 68 dgisselq
control whether individual interrupts are enabled (1'b1) or disabled (1'b0).
1459 24 dgisselq
Bit~15 is an indicator showing whether or not any interrupt is active, and
1460
bits~0--15 indicate whether or not an individual interrupt is active.
1461
 
1462
The interrupt controller has been designed so that bits can be controlled
1463
individually without having any knowledge of the rest of the controller
1464
setting.  To enable an interrupt, write to the register with the high order
1465
global enable bit set and the respective interrupt enable bit set.  No other
1466
bits will be affected.  To disable an interrupt, write to the register with
1467
the high order global enable bit cleared and the respective interrupt enable
1468
bit set.  To clear an interrupt, write a `1' to that interrupts status pin.
1469
Zero's written to the register have no affect, save that a zero written to the
1470
master enable will disable all interrupts.
1471
 
1472
As an example, suppose you wished to enable interrupt \#4.  You would then
1473
write to the register a {\tt 0x80100010} to enable interrupt \#4 and to clear
1474
any past active state.  When you later wish to disable this interrupt, you would
1475
write a {\tt 0x00100010} to the register.  As before, this both disables the
1476
interrupt and clears the active indicator.  This also has the side effect of
1477
disabling all interrupts, so a second write of {\tt 0x80000000} may be necessary
1478
to re-enable any other interrupts.
1479
 
1480
The Zip System currently hosts two interrupt controllers, a primary and a
1481 69 dgisselq
secondary.  The primary interrupt controller has one (or more) interrupt line(s)
1482
which may come from an external interrupt source, and one interrupt line from
1483
the secondary controller.  Other primary interrupts include the system timers,
1484
the jiffies interrupt, and the manual cache interrupt.  The secondary interrupt
1485
controller maintains an interrupt state for all of the processor accounting
1486
counters.
1487 24 dgisselq
 
1488 21 dgisselq
\section{Counter}
1489
 
1490
The Zip Counter is a very simple counter: it just counts.  It cannot be
1491
halted.  When it rolls over, it issues an interrupt.  Writing a value to the
1492
counter just sets the current value, and it starts counting again from that
1493
value.
1494
 
1495
Eight counters are implemented in the Zip System for process accounting.
1496
This may change in the future, as nothing as yet uses these counters.
1497
 
1498
\section{Timer}
1499
 
1500
The Zip Timer is also very simple: it simply counts down to zero.  When it
1501
transitions from a one to a zero it creates an interrupt.
1502
 
1503
Writing any non-zero value to the timer starts the timer.  If the high order
1504
bit is set when writing to the timer, the timer becomes an interval timer and
1505
reloads its last start time on any interrupt.  Hence, to mark seconds, one
1506
might set the timer to 100~million (the number of clocks per second), and
1507
set the high bit.  Ever after, the timer will interrupt the CPU once per
1508 24 dgisselq
second (assuming a 100~MHz clock).  This reload capability also limits the
1509 68 dgisselq
maximum timer value to $2^{31}-1$ (about 21~seconds using a 100~MHz clock),
1510
rather than $2^{32}-1$.
1511 21 dgisselq
 
1512
\section{Watchdog Timer}
1513
 
1514
The watchdog timer is no different from any of the other timers, save for one
1515
critical difference: the interrupt line from the watchdog
1516
timer is tied to the reset line of the CPU.  Hence writing a `1' to the
1517
watchdog timer will always reset the CPU.
1518 32 dgisselq
To stop the Watchdog timer, write a `0' to it.  To start it,
1519 21 dgisselq
write any other number to it---as with the other timers.
1520
 
1521
While the watchdog timer supports interval mode, it doesn't make as much sense
1522
as it did with the other timers.
1523
 
1524 68 dgisselq
\section{Bus Watchdog}
1525
There is an additional watchdog timer on the Wishbone bus.  This timer,
1526
however, is hardware configured and not software configured.  The timer is
1527
reset at the beginning of any bus transaction, and only counts clocks during
1528
such bus transactions.  If the bus transaction takes longer than the number
1529
of counts the timer allots, it will raise a bus error flag to terminate the
1530
transaction.  This is useful in the case of any peripherals that are
1531
misbehaving.  If the bus watchdog terminates a bus transaction, the CPU may
1532
then read from its port to find out which memory location created the problem.
1533
 
1534
Aside from its unusual configuration, the bus watchdog is just another
1535 69 dgisselq
implementation of the fundamental timer described above--stripped down
1536
for simplicity.
1537 68 dgisselq
 
1538 21 dgisselq
\section{Jiffies}
1539
 
1540
This peripheral is motivated by the Linux use of `jiffies' whereby a process
1541
can request to be put to sleep until a certain number of `jiffies' have
1542
elapsed.  Using this interface, the CPU can read the number of `jiffies'
1543
from the peripheral (it only has the one location in address space), add the
1544 69 dgisselq
sleep length to it, and write the result back to the peripheral.  The
1545
{\tt zipjiffies}
1546 21 dgisselq
peripheral will record the value written to it only if it is nearer the current
1547
counter value than the last current waiting interrupt time.  If no other
1548
interrupts are waiting, and this time is in the future, it will be enabled.
1549
(There is currently no way to disable a jiffie interrupt once set, other
1550 24 dgisselq
than to disable the interrupt line in the interrupt controller.)  The processor
1551 21 dgisselq
may then place this sleep request into a list among other sleep requests.
1552
Once the timer expires, it would write the next Jiffy request to the peripheral
1553
and wake up the process whose timer had expired.
1554
 
1555
Indeed, the Jiffies register is nothing more than a glorified counter with
1556
an interrupt.  Unlike the other counters, the Jiffies register cannot be set.
1557
Writes to the jiffies register create an interrupt time.  When the Jiffies
1558
register later equals the value written to it, an interrupt will be asserted
1559
and the register then continues counting as though no interrupt had taken
1560
place.
1561
 
1562
The purpose of this register is to support alarm times within a CPU.  To
1563
set an alarm for a particular process $N$ clocks in advance, read the current
1564
Jiffies value, and $N$, and write it back to the Jiffies register.  The
1565
O/S must also keep track of values written to the Jiffies register.  Thus,
1566 32 dgisselq
when an `alarm' trips, it should be removed from the list of alarms, the list
1567 69 dgisselq
should be resorted, and the next alarm in terms of Jiffies should be written
1568
to the register--possibly for a second time.
1569 21 dgisselq
 
1570 36 dgisselq
\section{Direct Memory Access Controller}
1571 24 dgisselq
 
1572 36 dgisselq
The Direct Memory Access (DMA) controller can be used to either move memory
1573
from one location to another, to read from a peripheral into memory, or to
1574
write from a peripheral into memory all without CPU intervention.  Further,
1575
since the DMA controller can issue (and does issue) pipeline wishbone accesses,
1576
any DMA memory move will by nature be faster than a corresponding program
1577
accomplishing the same move.  To put this to numbers, it may take a program
1578
18~clocks per word transferred, whereas this DMA controller can move one
1579 69 dgisselq
word in two clocks--provided it has bus access.  (The CPU gets priority over
1580
the bus.)
1581 24 dgisselq
 
1582 36 dgisselq
When copying memory from one location to another, the DMA controller will
1583
copy in units of a given transfer length--up to 1024 words at a time.  It will
1584
read that transfer length into its internal buffer, and then write to the
1585 69 dgisselq
destination address from that buffer.
1586 24 dgisselq
 
1587 36 dgisselq
When coupled with a peripheral, the DMA controller can be configured to start
1588 69 dgisselq
a memory copy when any interrupt line going high.  Further, the controller can
1589
be configured to issue reads from (or to) the same address instead of
1590
incrementing the address at each clock.  The DMA completes once the total
1591
number of items specified (not the transfer length) have been transferred.
1592 36 dgisselq
 
1593
In each case, once the transfer is complete and the DMA unit returns to
1594
idle, the DMA will issue an interrupt.
1595
 
1596
 
1597 21 dgisselq
\chapter{Operation}\label{chap:ops}
1598
 
1599 33 dgisselq
The Zip CPU, and even the Zip System, is not a System on a Chip (SoC).  It
1600
needs to be connected to its operational environment in order to be used.
1601
Specifically, some per system adjustments need to be made:
1602
\begin{enumerate}
1603
\item The Zip System depends upon an external 32-bit Wishbone bus.  This
1604
        must exist, and must be connected to the Zip CPU for it to work.
1605
\item The Zip System needs to be told of its {\tt RESET\_ADDRESS}.  This is
1606
        the program counter of the first instruction following a reset.
1607 69 dgisselq
\item To conserve logic, you'll want to set the {\tt ADDRESS\_WIDTH} parameter
1608
        to the number of address bits on your wishbone bus.
1609
\item Likewise, the {\tt LGICACHE} parameter sets the number of bits in
1610
        the instruction cache address.  This means that the instruction cache
1611
        will have $2^{\mbox{\tiny\tt LGICACHE}}$ locations within it.
1612 33 dgisselq
\item If you want the Zip System to start up on its own, you will need to
1613
        set the {\tt START\_HALTED} parameter to zero.  Otherwise, if you
1614
        wish to manually start the CPU, that is if upon reset you want the
1615
        CPU start start in its halted, reset state, then set this parameter to
1616 69 dgisselq
        one.  This latter configuration is useful for a CPU that should be
1617
        idle (i.e. halted) until given an explicit instruction from somewhere
1618
        else to start.
1619 33 dgisselq
\item The third parameter to set is the number of interrupts you will be
1620
        providing from external to the CPU.  This can be anything from one
1621 69 dgisselq
        to sixteen, but it cannot be zero.  (Set this to 1 and wire the single
1622
        interrupt line to a 1'b0 if you do not wish to support any external
1623
        interrupts.)
1624 33 dgisselq
\item Finally, you need to place into some wishbone accessible address, whether
1625
        RAM or (more likely) ROM, the initial instructions for the CPU.
1626
\end{enumerate}
1627
If you have enabled your CPU to start automatically, then upon power up the
1628 69 dgisselq
CPU will immediately start executing your instructions, starting at the given
1629
{\tt RESET\_ADDRESS}.
1630 33 dgisselq
 
1631
This is, however, not how I have used the Zip CPU.  I have instead used the
1632 36 dgisselq
Zip CPU in a more controlled environment.  For me, the CPU starts in a
1633 33 dgisselq
halted state, and waits to be told to start.  Further, the RESET address is a
1634
location in RAM.  After bringing up the board I am using, and further the
1635
bus that is on it, the RAM memory is then loaded externally with the program
1636
I wish the Zip System to run.  Once the RAM is loaded, I release the CPU.
1637 69 dgisselq
The CPU then runs until either its halt condition or an exception occurrs in
1638
supervisor mode, at which point its task is complete.
1639 33 dgisselq
 
1640
Eventually, I intend to place an operating system onto the ZipSystem, I'm
1641
just not there yet.
1642
 
1643 68 dgisselq
The rest of this chapter examines some common programming models, and how they
1644
might be applied to the Zip System, and then finish with a couple of examples.
1645 33 dgisselq
 
1646 68 dgisselq
\section{System High}
1647
The easiest and simplest way to run the Zip CPU is in the system high mode.
1648
In this mode, the CPU runs your program in supervisor mode from reboot to
1649
power down, and is never interrupted.  You will need to poll the interrupt
1650
controller to determine when any external condition has become active.  This
1651
mode is useful, and can handle many microcontroller tasks.
1652
 
1653
Even better, in system high mode, all of the user registers are available
1654
to the system high program as variables.  Accessing these registers can be
1655
done in a single clock cycle, which would move them to the active register
1656
set or move them back.  While this may seem like a load or store instruction,
1657
none of these register accesses will suffer from memory delays.
1658
 
1659
The one thing that cannot be done in supervisor mode is a wait for interrupt
1660
instruction.  This, however, is easily rectified by jumping to a user task
1661
within the supervisors memory space, such as Tbl.~\ref{tbl:shi-idle}.
1662
\begin{table}\begin{center}
1663
\begin{tabbing}
1664
{\tt supervisor\_idle:} \\
1665
\hbox to 0.25in{}\={\em ; While not strictly required, the following move helps to} \\
1666
\>      {\em ; ensure that the prefetch doesn't try to fetch an instruction} \\
1667
\>      {\em ; outside of the CPU's address space when it switches to user} \\
1668
\>      {\em ; mode.} \\
1669
\>      {\tt MOV supervisor\_idle\_continue,uPC} \\
1670
\>      {\em ; Put the processor into user mode and to sleep in the same} \\
1671
\>      {\em ; instruction. } \\
1672
\>      {\tt OR \$SLEEP|\$GIE,CC} \\
1673
{\tt supervisor\_idle\_continue:} \\
1674
\>      {\em ; Now, if we haven't done this inline, we need to return} \\
1675
\>      {\em ; to whatever function called us.} \\
1676
\>      {\tt RETN} \\
1677
\end{tabbing}
1678
\caption{Executing an idle from supervisor mode}\label{tbl:shi-idle}
1679
\end{center}\end{table}
1680
 
1681
\section{Traditional Interrupt Handling}
1682
Although the Zip CPU does not have a traditional interrupt architecture,
1683
it is possible to create the more traditional interrupt approach via software.
1684
In this mode, the programmable interrupt controller is used together with the
1685
supervisor state to create the illusion of more traditional interrupt handling.
1686
 
1687
To set this up, upon reboot the supervisor task:
1688
\begin{enumerate}
1689
\item Creates a (single) user context, a user stack, and sets the user
1690
        program counter to the entry of the user task
1691
\item Creates a task table of ISR entries
1692
\item Enables the master interrupt enable via the interrupt controller, albeit
1693
        without enabling any of the fifteen potential underlying interrupts.
1694
\item Switches to user mode, as the first part of the while loop in
1695
        Tbl.~\ref{tbl:traditional-isr}.
1696
\end{enumerate}
1697
\begin{table}\begin{center}
1698
\begin{tabbing}
1699
{\tt while(true) \{} \\
1700
\hbox to 0.25in{}\= {\tt rtu();}\\
1701
        \> {\tt if (trap) \{} {\em // Here, we allow users to install ISRs, or} \\
1702
        \>\hbox to 0.25in{}\= {\em // whatever else they may wish to do in supervisor mode.} \\
1703
        \> {\tt \} else \{} \\
1704
        \> \> {\tt volatile int *pic = PIC\_ADDRESS;} \\
1705
\\
1706
        \> \> {\em // Save the user context before running any ISRs.  This could easily be}\\
1707
        \> \> {\em // implemented as an inline assembly routine or macro}\\
1708
        \> \> {\tt SAVE\_PARTIAL\_CONTEXT; }\\
1709
        \> \> {\em // At this point, we know an interrupt has taken place:  Ask the programmable}\\
1710
        \> \> {\em // interrupt controller (PIC) which interrupts are enabled and which are active.}\\
1711
        \> \>   {\tt int        picv = *pic;}\\
1712
        \> \>   {\em // Turn off all active interrupts}\\
1713
        \> \>   {\em // Globally disable interrupt generation in the process}\\
1714
        \> \>   {\tt int        active = (picv >> 16) \& picv \& 0x07fff;}\\
1715
        \> \>   {\tt *pic = (active<<16);}\\
1716
        \> \>   {\em // We build a mask of interrupts to re-enable in picv.}\\
1717
        \> \>   {\tt picv = 0;}\\
1718
        \> \>   {\tt for(int i=0,msk=1; i<15; i++, msk<<=1) \{}\\
1719
        \> \>\hbox to 0.25in{}\={\tt if ((active \& msk)\&\&(isr\_table[i])) \{}\\
1720
        \> \>\>\hbox to 0.25in{}\= {\tt mov(isr\_table[i],uPC); }\\
1721
        \> \>\>\>       {\em // Acknowledge this particular interrupt.  While we could acknowledge all}\\
1722
        \> \>\>\>       {\em // interrupts at once, by acknowledging only those with ISR's we allow}\\
1723
        \> \>\>\>       {\em // the user process to use peripherals manually, and to manually check}\\
1724
        \> \>\>\>       {\em // whether or no those other interrupts had occurred.}\\
1725
        \> \>\>\>       {\tt *pic = msk; }\\
1726
        \> \>\>\>       {\tt rtu(); }\\
1727
        \> \>\>\>       {\em // The ISR will only exit on a trap in the Zip archtecture.  There is}\\
1728
        \> \>\>\>       {\em // no {\tt RETI} instruction.  Since the PIC holds all interrupts disabled,}\\
1729
        \> \>\>\>       {\em // there is no need to check for further interrupts.}\\
1730
        \> \>\>\>       {\em // }\\
1731
        \> \>\>\>       {\em // The tricky part is that, because of how the PIC is built, the ISR cannot}\\
1732
        \>\>\>\>        {\em // re-enable its own interrupt without re-enabling all interrupts.  Hence, we}\\
1733
        \>\>\>\>        {\em // look at R0 upon ISR completion to know if an interrupt needs to be }\\
1734
        \> \>\>\>       {\em // re-enabled. }\\
1735
        \> \>\>\>       {\tt mov(uR0,tmp); }\\
1736
        \> \>\>\>       {\tt picv |= (tmp \& 0x7fff) << 16; }\\
1737
        \> \>\>         {\tt \} }\\
1738
        \> \>   {\tt \} }\\
1739
        \> \>   {\tt RESTORE\_PARTIAL\_CONTEXT; }\\
1740
        \> \>   {\em // Re-activate all (requested) interrupts }\\
1741
        \> \>   {\tt *pic = picv | 0x80000000; }\\
1742
        \>{\tt \} }\\
1743
{\tt \}}\\
1744
\end{tabbing}
1745
\caption{Traditional Interrupt handling}\label{tbl:traditional-isr}
1746
\end{center}\end{table}
1747
 
1748
We can work through the interrupt handling process by examining
1749
Tbl.~\ref{tbl:traditional-isr}.  First, remember, the CPU is always running
1750
either the user or the supervisor context.  Once the supervisor switches to
1751
user mode, control does not return until either an interrupt or a trap
1752
has taken place.  (Okay, there's also the possibility of a bus error, or an
1753
illegal instruction such as an unimplemented floating point instruction---but
1754
for now we'll just focus on the trap instruction.)  Therefore, if the trap bit
1755
isn't set, then we know an interrupt has taken place.
1756
 
1757
To process an interrupt, we steal the user's stack: the PC and CC registers
1758
are saved on the stack, as outlined in Tbl.~\ref{tbl:save-partial}.
1759
\begin{table}\begin{center}
1760
\begin{tabbing}
1761
SAVE\_PARTIAL\_CONTEXT: \\
1762
\hbox to 0.25in{}\= {\em ; We save R0, CC, and PC only} \\
1763
\>        {\tt MOV -3(uSP),R3} \\
1764
\>        {\tt MOV uR0,R0} \\
1765
\>        {\tt MOV uCC,R1} \\
1766
\>        {\tt MOV uPC,R2} \\
1767 69 dgisselq
\>        {\tt STO R0,(R3)} {\em ; Exploit memory pipelining: }\\
1768
\>        {\tt STO R1,1(R3)} {\em ; All instructions write to stack }\\
1769
\>        {\tt STO R2,2(R3)} {\em ; All offsets increment by one }\\
1770 68 dgisselq
\>        {\tt MOV R3,uSP} {\em ; Return the updated stack pointer } \\
1771
\end{tabbing}
1772
\caption{Example Saving Minimal User Context}\label{tbl:save-partial}
1773
\end{center}\end{table}
1774
This is much cheaper than the full context swap of a preemptive multitasking
1775
kernel, but it also depends upon the ISR saving any state it uses.  Further,
1776
if multiple ISR's get called at once, this looses its optimality property
1777
very quickly.
1778
 
1779
As Sec.~\ref{sec:pic} discusses, the top of the PIC register stores which
1780
interrupts are enabled, and the bottom stores which have tripped.  (Interrupts
1781
may trip without being enabled, they just will not generate an interrupt to the
1782
CPU.)  Our first step is to query the register to find out our interrupt
1783
state, and then to disable any interrupts that have tripped.  To do
1784
that, we write a one to the enable half of the register while also clearing
1785
the top bit (master interrupt enable).  This has the consequence of disabling
1786
any and all further interrupts, not just the ones that have tripped.  Hence,
1787
upon completion, we re--enable the master interrupt bit again.   Finally,
1788
we keep track of which interrupts have tripped.
1789
 
1790
Using the bit mask of interrupts that have tripped, we walk through all fifteen
1791
possible interrupts.  If there is an ISR installed, we acknowledge and reset
1792
the interrupt within the PIC, and then call the ISR.  The ISR, however, cannot
1793
re--enable its interrupt without re-enabling the master interrupt bit.  Thus,
1794
to keep things simple, when the ISR is finished it places its interrupt
1795
mask back into R0, or clears R0.  This tells the supervisor mode process which
1796
interrupts to re--enable.  Any other registers that the ISR uses must be
1797
saved and restored.  (This is only truly optimal if only a single ISR is
1798
called.)  As a final instruction, the ISR clears the GIE bit executing a user
1799
trap.  (Remember, the Zip CPU has no {\tt RETI} instruction to restore the
1800
stack and return to userland.  It needs to go through the supervisor mode to
1801
get there.)
1802
 
1803
Then, once all interrupts are handled, the user context is restored in  a
1804
fashion similar to Tbl.~\ref{tbl:restore-partial}.
1805
\begin{table}\begin{center}
1806
\begin{tabbing}
1807
RESTORE\_PARTIAL\_CONTEXT: \\
1808
\hbox to 0.25in{}\= {\em ; We retore R0, CC, and PC only} \\
1809
\>        {\tt MOV uSP,R3} {\em ; Return the updated stack pointer } \\
1810 69 dgisselq
\>        {\tt LOD R0,(R3),R0} {\em ; Exploit memory pipelining: }\\
1811
\>        {\tt LOD R1,1(R3),R1} {\em ; All instructions write to stack }\\
1812
\>        {\tt LOD R2,2(R3),R2} {\em ; All offsets increment by one }\\
1813 68 dgisselq
\>        {\tt MOV R0,uR0} \\
1814
\>        {\tt MOV R1,uCC} \\
1815
\>        {\tt MOV R2,uPC} \\
1816
\>        {\tt MOV 3(R3),uSP} \\
1817
\end{tabbing}
1818
\caption{Example Restoring Minimal User Context}\label{tbl:restore-partial}
1819
\end{center}\end{table}
1820
Again, this is short and sweet simply because any other registers that needed
1821
saving were saved within the ISR.
1822
 
1823
There you have it: the Zip CPU, with its non-traditional interrupt architecture,
1824
can still process interrupts in a very traditional fashion.
1825
 
1826 36 dgisselq
\section{Example: Idle Task}
1827
One task every operating system needs is the idle task, the task that takes
1828
place when nothing else can run.  On the Zip CPU, this task is quite simple,
1829
and it is shown in assemble in Tbl.~\ref{tbl:idle-asm}.
1830
\begin{table}\begin{center}
1831
\begin{tabular}{ll}
1832
{\tt idle\_task:} \\
1833
&        {\em ; Wait for the next interrupt, then switch to supervisor task} \\
1834
&        {\tt WAIT} \\
1835
&        {\em ; When we come back, it's because the supervisor wishes to} \\
1836
&        {\em ; wait for an interrupt again, so go back to the top.} \\
1837
&        {\tt BRA idle\_task} \\
1838
\end{tabular}
1839
\caption{Example Idle Loop}\label{tbl:idle-asm}
1840
\end{center}\end{table}
1841
When this task runs, the CPU will fill up all of the pipeline stages up the
1842
ALU.  The {\tt WAIT} instruction, upon leaving the ALU, places the CPU into
1843
a sleep state where nothing more moves.  Sure, there may be some more settling,
1844
the pipe cache continue to read until full, other instructions may issue until
1845
the pipeline fills, but then everything will stall.  Then, once an interrupt
1846
takes place, control passes to the supervisor task to handle the interrupt.
1847
When control passes back to this task, it will be on the next instruction.
1848
Since that next instruction sends us back to the top of the task, the idle
1849
task thus does nothing but wait for an interrupt.
1850
 
1851
This should be the lowest priority task, the task that runs when nothing else
1852
can.  It will help lower the FPGA power usage overall---at least its dynamic
1853
power usage.
1854
 
1855
\section{Example: Memory Copy}
1856
One common operation is that of a memory move or copy.  Consider the C code
1857
shown in Tbl.~\ref{tbl:memcp-c}.
1858
\begin{table}\begin{center}
1859
\parbox{4in}{\begin{tabbing}
1860
{\tt void} \= {\tt memcp(void *dest, void *src, int len) \{} \\
1861
        \> {\tt for(int i=0; i<len; i++)} \\
1862
        \> \hspace{0.2in} {\tt *dest++ = *src++;} \\
1863
\}
1864
\end{tabbing}}
1865
\caption{Example Memory Copy code in C}\label{tbl:memcp-c}
1866
\end{center}\end{table}
1867
This same code can be translated in Zip Assembly as shown in
1868
Tbl.~\ref{tbl:memcp-asm}.
1869
\begin{table}\begin{center}
1870
\begin{tabular}{ll}
1871
memcp: \\
1872 69 dgisselq
&        {\em ; R0 = *dest, R1 = *src, R2 = LEN, R3 = return addr} \\
1873
&        {\em ; The following will operate in $12N+19$ clocks.} \\
1874
&        {\tt CMP 0,R2} \\ % 8 clocks per setup
1875
&        {\tt MOV.Z R3,PC} {\em ; A conditional return }\\
1876
&        {\tt SUB 1,SP} {\em ; Create a stack frame}\\
1877
&        {\tt STO R4,(SP)} {\em ; and a local variable}\\
1878
&        {\em ; (4 stalls, cannot be further scheduled away)} \\
1879
loop: \\ % 12 clocks per loop
1880
&        {\tt LOD (R1),R4} \\
1881 36 dgisselq
&        {\em ; (4 stalls, cannot be scheduled away)} \\
1882 69 dgisselq
&        {\tt STO R4,(R0)} {\em ; (4 schedulable stalls, has no impact now)} \\
1883
&        {\tt SUB 1,R2} \\
1884
&        {\tt BZ memcpend} \\
1885
&        {\tt ADD 1,R0} \\
1886 36 dgisselq
&        {\tt ADD 1,R1} \\
1887 69 dgisselq
&        {\tt BRA loop} \\
1888
&        {\em ; (1 stall on a BRA instruction)} \\
1889
memcpend: % 11 clocks
1890
&        {\tt LOD (SP),R4} \\
1891
&        {\em ; (4 stalls, cannot be further scheduled away)} \\
1892
&        {\tt ADD 1,SP} \\
1893
&        {\tt JMP R3} \\
1894
&        {\em ; (4 stalls)} \\
1895 36 dgisselq
\end{tabular}
1896
\caption{Example Memory Copy code in Zip Assembly}\label{tbl:memcp-asm}
1897
\end{center}\end{table}
1898
This example points out several things associated with the Zip CPU.  First,
1899
a straightforward implementation of a for loop is not the fastest loop
1900
structure.  For this reason, we have placed the test to continue at the
1901
end.  Second, all pointers are {\tt void} pointers to arbitrary 32--bit
1902
data types.  The Zip CPU does not have explicit support for smaller or larger
1903
data types, and so this memory copy cannot be applied at a byte level.
1904
Third, we've optimized the conditional jump to a return instruction into a
1905
conditional return instruction.
1906
 
1907 68 dgisselq
\section{Example: Context Switch}
1908 36 dgisselq
 
1909
Fundamental to any multiprocessing system is the ability to switch from one
1910
task to the next.  In the ZipSystem, this is accomplished in one of a couple
1911
ways.  The first step is that an interrupt happens.  Anytime an interrupt
1912
happens, the CPU needs to execute the following tasks in supervisor mode:
1913
\begin{enumerate}
1914 69 dgisselq
\item Check for a trap instruction, or other user exception such as a break,
1915
        bus error, division by zero error, or floating point exception.  That
1916
        is, if the user process needs attending then we may not wish to adjust
1917
        the context, check interrupts, or call the scheduler.
1918
        Tbl.~\ref{tbl:trap-check}
1919 36 dgisselq
\begin{table}\begin{center}
1920
\begin{tabular}{ll}
1921
{\tt return\_to\_user:} \\
1922
&       {\em; The instruction before the context switch processing must} \\
1923
&       {\em; be the RTU instruction that enacted user mode in the first} \\
1924
&       {\em; place.  We show it here just for reference.} \\
1925
&       {\tt RTU} \\
1926
{\tt trap\_check:} \\
1927
&       {\tt MOV uCC,R0} \\
1928 69 dgisselq
&       {\tt TST \$TRAP \textbar \$BUSERR \textbar \$DIVE \textbar \$FPE,R0} \\
1929 36 dgisselq
&       {\tt BNZ swap\_out} \\
1930
&       {; \em Do something here to execute the trap} \\
1931
&       {; \em Don't need to call the scheduler, so we can just return} \\
1932
&       {\tt BRA return\_to\_user} \\
1933
\end{tabular}
1934 69 dgisselq
\caption{Checking for whether the user task needs our attention}\label{tbl:trap-check}
1935 36 dgisselq
\end{center}\end{table}
1936
        shows the rudiments of this code, while showing nothing of how the
1937
        actual trap would be implemented.
1938
 
1939
You may also wish to note that the instruction before the first instruction
1940
in our context swap {\em must be} a return to userspace instruction.
1941
Remember, the supervisor process is re--entered where it left off.  This is
1942
different from many other processors that enter interrupt mode at some vector
1943
or other.  In this case, we always enter supervisor mode right where we last
1944
left.\footnote{The one exception to this rule is upon reset where supervisor
1945
mode is entered at a pre--programmed wishbone memory address.}
1946
 
1947
\item Capture user counters.  If the operating system is keeping track of
1948
        system usage via the accounting counters, those counters need to be
1949
        copied and accumulated into some master counter at this point.
1950
 
1951
\item Preserve the old context.  This involves pushing all the user registers
1952
        onto the user stack and then copying the resulting stack address
1953
        into the tasks task structure, as shown in Tbl.~\ref{tbl:context-out}.
1954
\begin{table}\begin{center}
1955
\begin{tabular}{ll}
1956
{\tt swap\_out:} \\
1957 39 dgisselq
&        {\tt MOV -15(uSP),R5} \\
1958
&        {\tt STO R5,stack(R12)} \\
1959
&        {\tt MOV uR0,R0} \\
1960
&        {\tt MOV uR1,R1} \\
1961
&        {\tt MOV uR2,R2} \\
1962
&        {\tt MOV uR3,R3} \\
1963
&        {\tt MOV uR4,R4} \\
1964 69 dgisselq
&        {\tt STO R0,(R5)} {\em ; Exploit memory pipelining: }\\
1965
&        {\tt STO R1,1(R5)} {\em ; All instructions write to stack }\\
1966
&        {\tt STO R2,2(R5)} {\em ; All offsets increment by one }\\
1967
&        {\tt STO R3,3(R5)} {\em ; Longest pipeline is 5 cycles.}\\
1968
&        {\tt STO R4,4(R5)} \\
1969 39 dgisselq
        & \ldots {\em ; Need to repeat for all user registers} \\
1970
\iffalse
1971
&        {\tt MOV uR5,R0} \\
1972
&        {\tt MOV uR6,R1} \\
1973
&        {\tt MOV uR7,R2} \\
1974
&        {\tt MOV uR8,R3} \\
1975
&        {\tt MOV uR9,R4} \\
1976 69 dgisselq
&        {\tt STO R0,5(R5) }\\
1977
&        {\tt STO R1,6(R5) }\\
1978
&        {\tt STO R2,7(R5) }\\
1979
&        {\tt STO R3,8(R5) }\\
1980
&        {\tt STO R4,9(R5)} \\
1981 39 dgisselq
\fi
1982
&        {\tt MOV uR10,R0} \\
1983
&        {\tt MOV uR11,R1} \\
1984
&        {\tt MOV uR12,R2} \\
1985
&        {\tt MOV uCC,R3} \\
1986
&        {\tt MOV uPC,R4} \\
1987 69 dgisselq
&        {\tt STO R0,10(R5)}\\
1988
&        {\tt STO R1,11(R5)}\\
1989
&        {\tt STO R2,12(R5)}\\
1990
&        {\tt STO R3,13(R5)}\\
1991
&        {\tt STO R4,14(R5)} \\
1992 36 dgisselq
&       {\em ; We can skip storing the stack, uSP, since it'll be stored}\\
1993
&       {\em ; elsewhere (in the task structure) }\\
1994
\end{tabular}
1995
\caption{Example Storing User Task Context}\label{tbl:context-out}
1996
\end{center}\end{table}
1997
For the sake of discussion, we assume the supervisor maintains a
1998
pointer to the current task's structure in supervisor register
1999
{\tt R12}, and that {\tt stack} is an offset to the beginning of this
2000
structure indicating where the stack pointer is to be kept within it.
2001
 
2002
        For those who are still interested, the full code for this context
2003
        save can be found as an assembler macro within the assembler
2004
        include file, {\tt sys.i}.
2005
 
2006
\item Reset the watchdog timer.  If you are using the watchdog timer, it should
2007
        be reset on a context swap, to know that things are still working.
2008
        Example code for this is shown in Tbl.~\ref{tbl:reset-watchdog}.
2009
\begin{table}\begin{center}
2010
\begin{tabular}{ll}
2011
\multicolumn{2}{l}{{\tt `define WATCHDOG\_ADDRESS 32'hc000\_0002}}\\
2012
\multicolumn{2}{l}{{\tt `define WATCHDOG\_TICKS 32'd1\_000\_000} {; \em = 10 ms}}\\
2013
&       {\tt LDI WATCHDOG\_ADDRESS,R0} \\
2014
&       {\tt LDI WATCHDOG\_TICKS,R1} \\
2015
&       {\tt STO R1,(R0)}
2016
\end{tabular}
2017
\caption{Example Watchdog Reset}\label{tbl:reset-watchdog}
2018
\end{center}\end{table}
2019
 
2020
\item Interrupt handling.  An interrupt handler within the Zip System is nothing
2021
        more than a task.  At context swap time, the supervisor needs to
2022
        disable all of the interrupts that have tripped, and then enable
2023
        all of the tasks that would deal with each of these interrupts.
2024
        These can be user tasks, run at higher priority than any other user
2025
        tasks.  Either way, they will need to re--enable their own interrupt
2026
        themselves, if the interrupt is still relevant.
2027
 
2028
        An example of this master interrut handling is shown in
2029
        Tbl.~\ref{tbl:pre-handler}.
2030
\begin{table}\begin{center}
2031
\begin{tabular}{ll}
2032
{\tt pre\_handler:} \\
2033
&       {\tt LDI PIC\_ADDRESS,R0 } \\
2034
&       {\em ; Start by grabbing the interrupt state from the interrupt}\\
2035
&       {\em ; controller.  We'll store this into the register R7 so that }\\
2036
&       {\em ; we can keep and preserve this information for the scheduler}\\
2037
&       {\em ; to use later. }\\
2038
&       {\tt LOD (R0),R1} \\
2039
&       {\tt MOV R1,R7 } \\
2040
&       {\em ; As a next step, we need to acknowledge and disable all active}\\
2041
&       {\em ; interrupts. We'll start by calculating all of our active}\\
2042
&       {\em ; interrupts.}\\
2043
&       {\tt AND 0x07fff,R1 } \\
2044
&       {\em ; Put the active interrupts into the upper half of R1} \\
2045
&       {\tt ROL 16,R1 } \\
2046
&       {\tt LDILO 0x0ffff,R1   } \\
2047
&       {\tt AND R7,R1}\\
2048
&       {\em ; Acknowledge and disable active interrupts}\\
2049
&       {\em ; This also disables all interrupts from the controller, so}\\
2050
&       {\em ; we'll need to re-enable interrupts in general shortly } \\
2051
&       {\tt STO R1,(R0) } \\
2052
&       {\em ; We leave our active interrupt mask in R7 so the scheduler can}\\
2053
&       {\em ; release any tasks that depended upon them. } \\
2054
\end{tabular}
2055
\caption{Example checking for active interrupts}\label{tbl:pre-handler}
2056
\end{center}\end{table}
2057
 
2058
\item Calling the scheduler.  This needs to be done to pick the next task
2059
        to switch to.  It may be an interrupt handler, or it may  be a normal
2060
        user task.  From a priority standpoint, it would make sense that the
2061
        interrupt handlers all have a higher priority than the user tasks,
2062
        and that once they have been called the user tasks may then be called
2063
        again.  If no task is ready to run, run the idle task to wait for an
2064
        interrupt.
2065
 
2066
        This suggests a minimum of four task priorities:
2067
        \begin{enumerate}
2068
        \item Interrupt handlers, executed with their interrupts disabled
2069
        \item Device drivers, executed with interrupts re-enabled
2070
        \item User tasks
2071
        \item The idle task, executed when nothing else is able to execute
2072
        \end{enumerate}
2073
 
2074
        For our purposes here, we'll just assume that a pointer to the current
2075
        task is maintained in {\tt R12}, that a {\tt JSR scheduler} is
2076
        called, and that the next current task is likewise placed into
2077
        {\tt R12}.
2078
 
2079
\item Restore the new tasks context.  Given that the scheduler has returned a
2080
        task that can be run at this time, the stack pointer needs to be
2081
        pulled out of the tasks task structure, placed into the user
2082
        register, and then the rest of the user registers need to be popped
2083
        back off of the stack to run this task.  An example of this is
2084
        shown in Tbl.~\ref{tbl:context-in},
2085
\begin{table}\begin{center}
2086
\begin{tabular}{ll}
2087
{\tt swap\_in:} \\
2088 39 dgisselq
&       {\tt LOD stack(R12),R5} \\
2089 36 dgisselq
&       {\tt MOV 15(R1),uSP} \\
2090 39 dgisselq
        & {\em ; Be sure to exploit the memory pipelining capability} \\
2091 69 dgisselq
&       {\tt LOD (R5),R0} \\
2092
&       {\tt LOD 1(R5),R1} \\
2093
&       {\tt LOD 2(R5),R2} \\
2094
&       {\tt LOD 3(R5),R3} \\
2095
&       {\tt LOD 4(R5),R4} \\
2096 39 dgisselq
&       {\tt MOV R0,uR0} \\
2097
&       {\tt MOV R1,uR1} \\
2098
&       {\tt MOV R2,uR2} \\
2099
&       {\tt MOV R3,uR3} \\
2100
&       {\tt MOV R4,uR4} \\
2101 36 dgisselq
        & \ldots {\em ; Need to repeat for all user registers} \\
2102 69 dgisselq
&       {\tt LOD 10(R5),R0} \\
2103
&       {\tt LOD 11(R5),R1} \\
2104
&       {\tt LOD 12(R5),R2} \\
2105
&       {\tt LOD 13(R5),R3} \\
2106
&       {\tt LOD 14(R5),R4} \\
2107 39 dgisselq
&       {\tt MOV R0,uR10} \\
2108
&       {\tt MOV R1,uR11} \\
2109
&       {\tt MOV R2,uR12} \\
2110
&       {\tt MOV R3,uCC} \\
2111
&       {\tt MOV R4,uPC} \\
2112
 
2113 36 dgisselq
&       {\tt BRA return\_to\_user} \\
2114
\end{tabular}
2115
\caption{Example Restoring User Task Context}\label{tbl:context-in}
2116
\end{center}\end{table}
2117
        assuming as before that the task
2118
        pointer is found in supervisor register {\tt R12}.
2119
        As with storing the user context, the full code associated with
2120
        restoring the user context can be found in the assembler include
2121
        file, {\tt sys.i}.
2122
 
2123
\item Clear the userspace accounting registers.  In order to keep track of
2124
        per process system usage, these registers need to be cleared before
2125
        reactivating the userspace process.  That way, upon the next
2126
        interrupt, we'll know how many clocks the userspace program has
2127
        encountered, and how many instructions it was able to issue in
2128
        those many clocks.
2129
 
2130
\item Jump back to the instruction just before saving the last tasks context,
2131
        because that location in memory contains the return from interrupt
2132
        command that we are going to need to execute, in order to guarantee
2133
        that we return back here again.
2134
\end{enumerate}
2135
 
2136 21 dgisselq
\chapter{Registers}\label{chap:regs}
2137
 
2138 24 dgisselq
The ZipSystem registers fall into two categories, ZipSystem internal registers
2139
accessed via the ZipCPU shown in Tbl.~\ref{tbl:zpregs},
2140
\begin{table}[htbp]
2141
\begin{center}\begin{reglist}
2142 32 dgisselq
PIC   & \scalebox{0.8}{\tt 0xc0000000} & 32 & R/W & Primary Interrupt Controller \\\hline
2143
WDT   & \scalebox{0.8}{\tt 0xc0000001} & 32 & R/W & Watchdog Timer \\\hline
2144 69 dgisselq
  & \scalebox{0.8}{\tt 0xc0000002} & 32 & R & Address of last bus error \\\hline
2145 32 dgisselq
CTRIC & \scalebox{0.8}{\tt 0xc0000003} & 32 & R/W & Secondary Interrupt Controller \\\hline
2146
TMRA  & \scalebox{0.8}{\tt 0xc0000004} & 32 & R/W & Timer A\\\hline
2147
TMRB  & \scalebox{0.8}{\tt 0xc0000005} & 32 & R/W & Timer B\\\hline
2148
TMRC  & \scalebox{0.8}{\tt 0xc0000006} & 32 & R/W & Timer C\\\hline
2149
JIFF  & \scalebox{0.8}{\tt 0xc0000007} & 32 & R/W & Jiffies \\\hline
2150
MTASK  & \scalebox{0.8}{\tt 0xc0000008} & 32 & R/W & Master Task Clock Counter \\\hline
2151
MMSTL  & \scalebox{0.8}{\tt 0xc0000009} & 32 & R/W & Master Stall Counter \\\hline
2152
MPSTL  & \scalebox{0.8}{\tt 0xc000000a} & 32 & R/W & Master Pre--Fetch Stall Counter \\\hline
2153
MICNT  & \scalebox{0.8}{\tt 0xc000000b} & 32 & R/W & Master Instruction Counter\\\hline
2154
UTASK  & \scalebox{0.8}{\tt 0xc000000c} & 32 & R/W & User Task Clock Counter \\\hline
2155
UMSTL  & \scalebox{0.8}{\tt 0xc000000d} & 32 & R/W & User Stall Counter \\\hline
2156
UPSTL  & \scalebox{0.8}{\tt 0xc000000e} & 32 & R/W & User Pre--Fetch Stall Counter \\\hline
2157
UICNT  & \scalebox{0.8}{\tt 0xc000000f} & 32 & R/W & User Instruction Counter\\\hline
2158 36 dgisselq
DMACTRL  & \scalebox{0.8}{\tt 0xc0000010} & 32 & R/W & DMA Control Register\\\hline
2159
DMALEN  & \scalebox{0.8}{\tt 0xc0000011} & 32 & R/W & DMA total transfer length\\\hline
2160
DMASRC  & \scalebox{0.8}{\tt 0xc0000012} & 32 & R/W & DMA source address\\\hline
2161
DMADST  & \scalebox{0.8}{\tt 0xc0000013} & 32 & R/W & DMA destination address\\\hline
2162 32 dgisselq
% Cache  & \scalebox{0.8}{\tt 0xc0100000} & & & Base address of the Cache memory\\\hline
2163 24 dgisselq
\end{reglist}
2164
\caption{Zip System Internal/Peripheral Registers}\label{tbl:zpregs}
2165
\end{center}\end{table}
2166 33 dgisselq
and the two debug registers shown in Tbl.~\ref{tbl:dbgregs}.
2167 24 dgisselq
\begin{table}[htbp]
2168
\begin{center}\begin{reglist}
2169
ZIPCTRL & 0 & 32 & R/W & Debug Control Register \\\hline
2170
ZIPDATA & 1 & 32 & R/W & Debug Data Register \\\hline
2171
\end{reglist}
2172
\caption{Zip System Debug Registers}\label{tbl:dbgregs}
2173
\end{center}\end{table}
2174
 
2175 33 dgisselq
\section{Peripheral Registers}
2176
The peripheral registers, listed in Tbl.~\ref{tbl:zpregs}, are shown in the
2177
CPU's address space.  These may be accessed by the CPU at these addresses,
2178
and when so accessed will respond as described in Chapt.~\ref{chap:periph}.
2179
These registers will be discussed briefly again here.
2180 24 dgisselq
 
2181 69 dgisselq
\subsection{Interrupt Controller(s)}
2182 33 dgisselq
The Zip CPU Interrupt controller has four different types of bits, as shown in
2183
Tbl.~\ref{tbl:picbits}.
2184
\begin{table}\begin{center}
2185
\begin{bitlist}
2186
31 & R/W & Master Interrupt Enable\\\hline
2187 69 dgisselq
30\ldots 16 & R/W & Interrupt Enables, write `1' to change\\\hline
2188 33 dgisselq
15 & R & Current Master Interrupt State\\\hline
2189 69 dgisselq
15\ldots 0 & R/W & Input Interrupt states, write `1' to clear\\\hline
2190 33 dgisselq
\end{bitlist}
2191
\caption{Interrupt Controller Register Bits}\label{tbl:picbits}
2192
\end{center}\end{table}
2193
The high order bit, or bit--31, is the master interrupt enable bit.  When this
2194
bit is set, then any time an interrupt occurs the CPU will be interrupted and
2195
will switch to supervisor mode, etc.
2196
 
2197
Bits 30~\ldots 16 are interrupt enable bits.  Should the interrupt line go
2198 69 dgisselq
hi while enabled, an interrupt will be generated.  (All interrupts are positive
2199
edge triggered.)  To set an interrupt enable bit, one needs to write the
2200
master interrupt enable while writing a `1' to this the bit.  To clear, one
2201
need only write a `0' to the master interrupt enable, while leaving this line
2202
high.
2203 33 dgisselq
 
2204
Bits 15\ldots 0 are the current state of the interrupt vector.  Interrupt lines
2205
trip when they go high, and remain tripped until they are acknowledged.  If
2206
the interrupt goes high for longer than one pulse, it may be high when a clear
2207
is requested.  If so, the interrupt will not clear.  The line must go low
2208
again before the status bit can be cleared.
2209
 
2210
As an example, consider the following scenario where the Zip CPU supports four
2211
interrupts, 3\ldots0.
2212
\begin{enumerate}
2213
\item The Supervisor will first, while in the interrupts disabled mode,
2214
        write a {\tt 32'h800f000f} to the controller.  The supervisor may then
2215
        switch to the user state with interrupts enabled.
2216
\item When an interrupt occurs, the supervisor will switch to the interrupt
2217
        state.  It will then cycle through the interrupt bits to learn which
2218
        interrupt handler to call.
2219
\item If the interrupt handler expects more interrupts, it will clear its
2220
        current interrupt when it is done handling the interrupt in question.
2221 69 dgisselq
        To do this, it will write a `1' to the low order interrupt mask,
2222
        such as writing a {\tt 32'h0000\_0001}.
2223 33 dgisselq
\item If the interrupt handler does not expect any more interrupts, it will
2224
        instead clear the interrupt from the controller by writing a
2225 69 dgisselq
        {\tt 32'h0001\_0001} to the controller.
2226 33 dgisselq
\item Once all interrupts have been handled, the supervisor will write a
2227 69 dgisselq
        {\tt 32'h8000\_0000} to the interrupt register to re-enable interrupt
2228 33 dgisselq
        generation.
2229
\item The supervisor should also check the user trap bit, and possible soft
2230
        interrupt bits here, but this action has nothing to do with the
2231
        interrupt control register.
2232
\item The supervisor will then leave interrupt mode, possibly adjusting
2233
        whichever task is running, by executing a return from interrupt
2234
        command.
2235
\end{enumerate}
2236
 
2237 69 dgisselq
\subsection{Timer Register}
2238
 
2239 33 dgisselq
Leaving the interrupt controller, we show the timer registers bit definitions
2240
in Tbl.~\ref{tbl:tmrbits}.
2241
\begin{table}\begin{center}
2242
\begin{bitlist}
2243
31 & R/W & Auto-Reload\\\hline
2244
30\ldots 0 & R/W & Current timer value\\\hline
2245
\end{bitlist}
2246
\caption{Timer Register Bits}\label{tbl:tmrbits}
2247
\end{center}\end{table}
2248
As you may recall, the timer just counts down to zero and then trips an
2249
interrupt.  Writing to the current timer value sets that value, and reading
2250
from it returns that value.  Writing to the current timer value while also
2251
setting the auto--reload bit will send the timer into an auto--reload mode.
2252
In this mode, upon setting its interrupt bit for one cycle, the timer will
2253
also reset itself back to the value of the timer that was written to it when
2254
the auto--reload option was written to it.  To clear and stop the timer,
2255
just simply write a `32'h00' to this register.
2256
 
2257 69 dgisselq
\subsection{Jiffies}
2258
 
2259 33 dgisselq
The Jiffies register is somewhat similar in that the register always changes.
2260
In this case, the register counts up, whereas the timer always counted down.
2261
Reads from this register, as shown in Tbl.~\ref{tbl:jiffybits},
2262
\begin{table}\begin{center}
2263
\begin{bitlist}
2264
31\ldots 0 & R & Current jiffy value\\\hline
2265
31\ldots 0 & W & Value/time of next interrupt\\\hline
2266
\end{bitlist}
2267
\caption{Jiffies Register Bits}\label{tbl:jiffybits}
2268
\end{center}\end{table}
2269
always return the time value contained in the register.  Writes greater than
2270
the current Jiffy value, that is where the new value minus the old value is
2271
greater than zero while ignoring truncation, will set a new Jiffy interrupt
2272
time.  At that time, the Jiffy vector will clear, and another interrupt time
2273
may either be written to it, or it will just continue counting without
2274
activating any more interrupts.
2275
 
2276 69 dgisselq
\subsection{Performance Counters}
2277
 
2278 33 dgisselq
The Zip CPU also supports several counter peripherals, mostly in the way of
2279
process accounting.  This peripherals have a single register associated with
2280
them, shown in Tbl.~\ref{tbl:ctrbits}.
2281
\begin{table}\begin{center}
2282
\begin{bitlist}
2283
31\ldots 0 & R/W & Current counter value\\\hline
2284
\end{bitlist}
2285
\caption{Counter Register Bits}\label{tbl:ctrbits}
2286
\end{center}\end{table}
2287
Writes to this register set the new counter value.  Reads read the current
2288
counter value.
2289
 
2290
The current design operation of these counters is that of performance counting.
2291
Two sets of four registers are available for keeping track of performance.
2292
The first is a task counter.  This just counts clock ticks.  The second
2293
counter is a prefetch stall counter, then an master stall counter.  These
2294
allow the CPU to be evaluated as to how efficient it is.  The fourth and
2295
final counter is an instruction counter, which counts how many instructions the
2296
CPU has issued.
2297
 
2298
It is envisioned that these counters will be used as follows: First, every time
2299
a master counter rolls over, the supervisor (Operating System) will record
2300
the fact.  Second, whenever activating a user task, the Operating System will
2301
set the four user counters to zero.  When the user task has completed, the
2302
Operating System will read the timers back off, to determine how much of the
2303 69 dgisselq
CPU the process had consumed.  To keep this accurate, the user counters will
2304
only increment when the GIE bit is set to indicate that the processor is
2305
in user mode.
2306 33 dgisselq
 
2307 69 dgisselq
\subsection{DMA Controller}
2308
 
2309 36 dgisselq
The final peripheral to discuss is the DMA controller.  This controller
2310
has four registers.  Of these four, the length, source and destination address
2311
registers should need no further explanation.  They are full 32--bit registers
2312
specifying the entire transfer length, the starting address to read from, and
2313
the starting address to write to.  The registers can be written to when the
2314
DMA is idle, and read at any time.  The control register, however, will need
2315
some more explanation.
2316
 
2317
The bit allocation of the control register is shown in Tbl.~\ref{tbl:dmacbits}.
2318
\begin{table}\begin{center}
2319
\begin{bitlist}
2320
31 & R & DMA Active\\\hline
2321 39 dgisselq
30 & R & Wishbone error, transaction aborted.  This bit is cleared the next time
2322
        this register is written to.\\\hline
2323 69 dgisselq
29 & R/W & Set to `1' to prevent the controller from incrementing the source address, `0' for normal memory copy. \\\hline
2324
28 & R/W & Set to `1' to prevent the controller from incrementing the
2325
        destination address, `0' for normal memory copy. \\\hline
2326 36 dgisselq
27 \ldots 16 & W & The DMA Key.  Write a 12'hfed to these bits to start the
2327
        activate any DMA transfer.  \\\hline
2328 69 dgisselq
27 & R & Always reads `0', to force the deliberate writing of the key. \\\hline
2329 36 dgisselq
26 \ldots 16 & R & Indicates the number of items in the transfer buffer that
2330
        have yet to be written. \\\hline
2331 69 dgisselq
15 & R/W & Set to `1' to trigger on an interrupt, or `0' to start immediately
2332 36 dgisselq
        upon receiving a valid key.\\\hline
2333
14\ldots 10 & R/W & Select among one of 32~possible interrupt lines.\\\hline
2334
9\ldots 0 & R/W & Intermediate transfer length minus one.  Thus, to transfer
2335
        one item at a time set this value to 0. To transfer 1024 at a time,
2336
        set it to 1024.\\\hline
2337
\end{bitlist}
2338
\caption{DMA Control Register Bits}\label{tbl:dmacbits}
2339
\end{center}\end{table}
2340
This control register has been designed so that the common case of memory
2341
access need only set the key and the transfer length.  Hence, writing a
2342
\hbox{32'h0fed03ff} to the control register will start any memory transfer.
2343
On the other hand, if you wished to read from a serial port (constant address)
2344
and put the result into a buffer every time a word was available, you
2345
might wish to write \hbox{32'h2fed8000}--this assumes, of course, that you
2346
have a serial port wired to the zero bit of this interrupt control.  (The
2347
DMA controller does not use the interrupt controller, and cannot clear
2348
interrupts.)  As a third example, if you wished to write to an external
2349
FIFO anytime it was less than half full (had fewer than 512 items), and
2350
interrupt line 2 indicated this condition, you might wish to issue a
2351
\hbox{32'h1fed8dff} to this port.
2352
 
2353 33 dgisselq
\section{Debug Port Registers}
2354
Accessing the Zip System via the debug port isn't as straight forward as
2355
accessing the system via the wishbone bus.  The debug port itself has been
2356
reduced to two addresses, as outlined earlier in Tbl.~\ref{tbl:dbgregs}.
2357
Access to the Zip System begins with the Debug Control register, shown in
2358
Tbl.~\ref{tbl:dbgctrl}.
2359
\begin{table}\begin{center}
2360
\begin{bitlist}
2361 69 dgisselq
31\ldots 14 & R & External interrupt state.  Bit 14 is valid for one
2362
        interrupt only, bit 15 for two, etc.\\\hline
2363 33 dgisselq
13 & R & CPU GIE setting\\\hline
2364
12 & R & CPU is sleeping\\\hline
2365
11 & W & Command clear PF cache\\\hline
2366 69 dgisselq
10 & R/W & Command HALT, Set to `1' to halt the CPU\\\hline
2367
9 & R & Stall Status, `1' if CPU is busy (i.e., not halted yet)\\\hline
2368
8 & R/W & Step Command, set to `1' to step the CPU, also sets the halt bit\\\hline
2369
7 & R & Interrupt Request Pending\\\hline
2370 33 dgisselq
6 & R/W & Command RESET \\\hline
2371
5\ldots 0 & R/W & Debug Register Address \\\hline
2372
\end{bitlist}
2373
\caption{Debug Control Register Bits}\label{tbl:dbgctrl}
2374
\end{center}\end{table}
2375
 
2376
The first step in debugging access is to determine whether or not the CPU
2377 69 dgisselq
is halted, and to halt it if not.  To do this, first write a `1' to the
2378 33 dgisselq
Command HALT bit.  This will halt the CPU and place it into debug mode.
2379
Once the CPU is halted, the stall status bit will drop to zero.  Thus,
2380
if bit 10 is high and bit 9 low, the debug port is open to examine the
2381
internal state of the CPU.
2382
 
2383
At this point, the external debugger may examine internal state information
2384
from within the CPU.  To do this, first write again to the command register
2385
a value (with command halt still high) containing the address of an internal
2386
register of interest in the bottom 6~bits.  Internal registers that may be
2387
accessed this way are listed in Tbl.~\ref{tbl:dbgaddrs}.
2388
\begin{table}\begin{center}
2389
\begin{reglist}
2390
sR0 & 0 & 32 & R/W & Supervisor Register R0 \\\hline
2391
sR1 & 0 & 32 & R/W & Supervisor Register R1 \\\hline
2392
sSP & 13 & 32 & R/W & Supervisor Stack Pointer\\\hline
2393
sCC & 14 & 32 & R/W & Supervisor Condition Code Register \\\hline
2394
sPC & 15 & 32 & R/W & Supervisor Program Counter\\\hline
2395
uR0 & 16 & 32 & R/W & User Register R0 \\\hline
2396
uR1 & 17 & 32 & R/W & User Register R1 \\\hline
2397
uSP & 29 & 32 & R/W & User Stack Pointer\\\hline
2398
uCC & 30 & 32 & R/W & User Condition Code Register \\\hline
2399
uPC & 31 & 32 & R/W & User Program Counter\\\hline
2400
PIC & 32 & 32 & R/W & Primary Interrupt Controller \\\hline
2401
WDT & 33 & 32 & R/W & Watchdog Timer\\\hline
2402 69 dgisselq
BUS & 34 & 32 & R & Last Bus Error\\\hline
2403 33 dgisselq
CTRIC & 35 & 32 & R/W & Secondary Interrupt Controller\\\hline
2404
TMRA & 36 & 32 & R/W & Timer A\\\hline
2405
TMRB & 37 & 32 & R/W & Timer B\\\hline
2406
TMRC & 38 & 32 & R/W & Timer C\\\hline
2407
JIFF & 39 & 32 & R/W & Jiffies peripheral\\\hline
2408
MTASK & 40 & 32 & R/W & Master task clock counter\\\hline
2409
MMSTL & 41 & 32 & R/W & Master memory stall counter\\\hline
2410
MPSTL & 42 & 32 & R/W & Master Pre-Fetch Stall counter\\\hline
2411
MICNT & 43 & 32 & R/W & Master instruction counter\\\hline
2412
UTASK & 44 & 32 & R/W & User task clock counter\\\hline
2413
UMSTL & 45 & 32 & R/W & User memory stall counter\\\hline
2414
UPSTL & 46 & 32 & R/W & User Pre-Fetch Stall counter\\\hline
2415
UICNT & 47 & 32 & R/W & User instruction counter\\\hline
2416 39 dgisselq
DMACMD & 48 & 32 & R/W & DMA command and status register\\\hline
2417
DMALEN & 49 & 32 & R/W & DMA transfer length\\\hline
2418
DMARD & 50 & 32 & R/W & DMA read address\\\hline
2419
DMAWR & 51 & 32 & R/W & DMA write address\\\hline
2420 33 dgisselq
\end{reglist}
2421
\caption{Debug Register Addresses}\label{tbl:dbgaddrs}
2422
\end{center}\end{table}
2423
Primarily, these ``registers'' include access to the entire CPU register
2424 36 dgisselq
set, as well as the internal peripherals.  To read one of these registers
2425 33 dgisselq
once the address is set, simply issue a read from the data port.  To write
2426
one of these registers or peripheral ports, simply write to the data port
2427
after setting the proper address.
2428
 
2429
In this manner, all of the CPU's internal state may be read and adjusted.
2430
 
2431
As an example of how to use this, consider what would happen in the case
2432
of an external break point.  If and when the CPU hits a break point that
2433
causes it to halt, the Command HALT bit will activate on its own, the CPU
2434
will then raise an external interrupt line and wait for a debugger to examine
2435
its state.  After examining the state, the debugger will need to remove
2436
the breakpoint by writing a different instruction into memory and by writing
2437
to the command register while holding the clear cache, command halt, and
2438
step CPU bits high, (32'hd00).  The debugger may then replace the breakpoint
2439
now that the CPU has gone beyond it, and clear the cache again (32'h500).
2440
 
2441
To leave this debug mode, simply write a `32'h0' value to the command register.
2442
 
2443
\chapter{Wishbone Datasheets}\label{chap:wishbone}
2444 32 dgisselq
The Zip System supports two wishbone ports, a slave debug port and a master
2445 21 dgisselq
port for the system itself.  These are shown in Tbl.~\ref{tbl:wishbone-slave}
2446
\begin{table}[htbp]
2447
\begin{center}
2448
\begin{wishboneds}
2449
Revision level of wishbone & WB B4 spec \\\hline
2450
Type of interface & Slave, Read/Write, single words only \\\hline
2451 24 dgisselq
Address Width & 1--bit \\\hline
2452 21 dgisselq
Port size & 32--bit \\\hline
2453
Port granularity & 32--bit \\\hline
2454
Maximum Operand Size & 32--bit \\\hline
2455
Data transfer ordering & (Irrelevant) \\\hline
2456 69 dgisselq
Clock constraints & Works at 100~MHz on a Basys--3 board, and 80~MHz on a
2457
                XuLA2--LX25\\\hline
2458 21 dgisselq
Signal Names & \begin{tabular}{ll}
2459
                Signal Name & Wishbone Equivalent \\\hline
2460
                {\tt i\_clk} & {\tt CLK\_I} \\
2461
                {\tt i\_dbg\_cyc} & {\tt CYC\_I} \\
2462
                {\tt i\_dbg\_stb} & {\tt STB\_I} \\
2463
                {\tt i\_dbg\_we} & {\tt WE\_I} \\
2464
                {\tt i\_dbg\_addr} & {\tt ADR\_I} \\
2465
                {\tt i\_dbg\_data} & {\tt DAT\_I} \\
2466
                {\tt o\_dbg\_ack} & {\tt ACK\_O} \\
2467
                {\tt o\_dbg\_stall} & {\tt STALL\_O} \\
2468
                {\tt o\_dbg\_data} & {\tt DAT\_O}
2469
                \end{tabular}\\\hline
2470
\end{wishboneds}
2471 22 dgisselq
\caption{Wishbone Datasheet for the Debug Interface}\label{tbl:wishbone-slave}
2472 21 dgisselq
\end{center}\end{table}
2473
and Tbl.~\ref{tbl:wishbone-master} respectively.
2474
\begin{table}[htbp]
2475
\begin{center}
2476
\begin{wishboneds}
2477
Revision level of wishbone & WB B4 spec \\\hline
2478 24 dgisselq
Type of interface & Master, Read/Write, single cycle or pipelined\\\hline
2479 69 dgisselq
Address Width & (Zip System parameter, can be up to 32--bit bits) \\\hline
2480 21 dgisselq
Port size & 32--bit \\\hline
2481
Port granularity & 32--bit \\\hline
2482
Maximum Operand Size & 32--bit \\\hline
2483
Data transfer ordering & (Irrelevant) \\\hline
2484 69 dgisselq
Clock constraints & Works at 100~MHz on a Basys--3 board, and 80~MHz on a
2485
                XuLA2--LX25\\\hline
2486 21 dgisselq
Signal Names & \begin{tabular}{ll}
2487
                Signal Name & Wishbone Equivalent \\\hline
2488
                {\tt i\_clk} & {\tt CLK\_O} \\
2489
                {\tt o\_wb\_cyc} & {\tt CYC\_O} \\
2490
                {\tt o\_wb\_stb} & {\tt STB\_O} \\
2491
                {\tt o\_wb\_we} & {\tt WE\_O} \\
2492
                {\tt o\_wb\_addr} & {\tt ADR\_O} \\
2493
                {\tt o\_wb\_data} & {\tt DAT\_O} \\
2494
                {\tt i\_wb\_ack} & {\tt ACK\_I} \\
2495
                {\tt i\_wb\_stall} & {\tt STALL\_I} \\
2496 69 dgisselq
                {\tt i\_wb\_data} & {\tt DAT\_I} \\
2497
                {\tt i\_wb\_err} & {\tt ERR\_I}
2498 21 dgisselq
                \end{tabular}\\\hline
2499
\end{wishboneds}
2500 22 dgisselq
\caption{Wishbone Datasheet for the CPU as Master}\label{tbl:wishbone-master}
2501 21 dgisselq
\end{center}\end{table}
2502
I do not recommend that you connect these together through the interconnect.
2503 24 dgisselq
Rather, the debug port of the CPU should be accessible regardless of the state
2504
of the master bus.
2505 21 dgisselq
 
2506 69 dgisselq
You may wish to notice that neither the {\tt LOCK} nor the {\tt RTY} (retry)
2507
wires have been connected to the CPU's master interface.  If necessary, a
2508
rudimentary {\tt LOCK} may be created by tying the wire to the {\tt wb\_cyc}
2509
line.  As for the {\tt RTY}, all the CPU recognizes at this point are bus
2510
errors---it cannot tell the difference between a temporary and a permanent bus
2511
error.
2512 21 dgisselq
 
2513
\chapter{Clocks}\label{chap:clocks}
2514
 
2515 32 dgisselq
This core is based upon the Basys--3 development board sold by Digilent.
2516
The Basys--3 development board contains one external 100~MHz clock, which is
2517 36 dgisselq
sufficient to run the Zip CPU core.
2518 21 dgisselq
\begin{table}[htbp]
2519
\begin{center}
2520
\begin{clocklist}
2521
i\_clk & External & 100~MHz & 100~MHz & System clock.\\\hline
2522
\end{clocklist}
2523
\caption{List of Clocks}\label{tbl:clocks}
2524
\end{center}\end{table}
2525
I hesitate to suggest that the core can run faster than 100~MHz, since I have
2526
had struggled with various timing violations to keep it at 100~MHz.  So, for
2527
now, I will only state that it can run at 100~MHz.
2528
 
2529 69 dgisselq
On a SPARTAN 6, the clock can run successfully at 80~MHz.
2530 21 dgisselq
 
2531
\chapter{I/O Ports}\label{chap:ioports}
2532 33 dgisselq
The I/O ports to the Zip CPU may be grouped into three categories.  The first
2533
is that of the master wishbone used by the CPU, then the slave wishbone used
2534
to command the CPU via a debugger, and then the rest.  The first two of these
2535
were already discussed in the wishbone chapter.  They are listed here
2536
for completeness in Tbl.~\ref{tbl:iowb-master}
2537
\begin{table}
2538
\begin{center}\begin{portlist}
2539
{\tt o\_wb\_cyc}   &  1 & Output & Indicates an active Wishbone cycle\\\hline
2540
{\tt o\_wb\_stb}   &  1 & Output & WB Strobe signal\\\hline
2541
{\tt o\_wb\_we}    &  1 & Output & Write enable\\\hline
2542
{\tt o\_wb\_addr}  & 32 & Output & Bus address \\\hline
2543
{\tt o\_wb\_data}  & 32 & Output & Data on WB write\\\hline
2544
{\tt i\_wb\_ack}   &  1 & Input  & Slave has completed a R/W cycle\\\hline
2545
{\tt i\_wb\_stall} &  1 & Input  & WB bus slave not ready\\\hline
2546
{\tt i\_wb\_data}  & 32 & Input  & Incoming bus data\\\hline
2547 69 dgisselq
{\tt i\_wb\_err}   &  1 & Input  & Bus Error indication\\\hline
2548 33 dgisselq
\end{portlist}\caption{CPU Master Wishbone I/O Ports}\label{tbl:iowb-master}\end{center}\end{table}
2549
and~\ref{tbl:iowb-slave} respectively.
2550
\begin{table}
2551
\begin{center}\begin{portlist}
2552
{\tt i\_wb\_cyc}   &  1 & Input & Indicates an active Wishbone cycle\\\hline
2553
{\tt i\_wb\_stb}   &  1 & Input & WB Strobe signal\\\hline
2554
{\tt i\_wb\_we}    &  1 & Input & Write enable\\\hline
2555
{\tt i\_wb\_addr}  &  1 & Input & Bus address, command or data port \\\hline
2556
{\tt i\_wb\_data}  & 32 & Input & Data on WB write\\\hline
2557
{\tt o\_wb\_ack}   &  1 & Output  & Slave has completed a R/W cycle\\\hline
2558
{\tt o\_wb\_stall} &  1 & Output  & WB bus slave not ready\\\hline
2559
{\tt o\_wb\_data}  & 32 & Output  & Incoming bus data\\\hline
2560
\end{portlist}\caption{CPU Debug Wishbone I/O Ports}\label{tbl:iowb-slave}\end{center}\end{table}
2561 21 dgisselq
 
2562 33 dgisselq
There are only four other lines to the CPU: the external clock, external
2563
reset, incoming external interrupt line(s), and the outgoing debug interrupt
2564
line.  These are shown in Tbl.~\ref{tbl:ioports}.
2565
\begin{table}
2566
\begin{center}\begin{portlist}
2567
{\tt i\_clk} & 1 & Input & The master CPU clock \\\hline
2568
{\tt i\_rst} & 1 & Input &  Active high reset line \\\hline
2569 69 dgisselq
{\tt i\_ext\_int} & 1\ldots 16 & Input &  Incoming external interrupts, actual
2570
                value set by implementation parameter \\\hline
2571 33 dgisselq
{\tt o\_ext\_int} & 1 & Output & CPU Halted interrupt \\\hline
2572
\end{portlist}\caption{I/O Ports}\label{tbl:ioports}\end{center}\end{table}
2573
The clock line was discussed briefly in Chapt.~\ref{chap:clocks}.  We
2574 69 dgisselq
typically run it at 100~MHz, although we've needed to slow it down to 80~MHz
2575
for some implementations.  The reset line is an active high reset.  When
2576 33 dgisselq
asserted, the CPU will start running again from its reset address in
2577 69 dgisselq
memory.  Further, depending upon how the CPU is configured and specifically
2578
based upon how the {\tt START\_HALTED} parameter is set, the CPU may or may
2579
not start running automatically following a reset.  The {\tt i\_ext\_int}
2580
line is for an external interrupt.  This line may actually be as wide as
2581
16~external interrupts, depending upon the setting of
2582
the {\tt EXTERNAL\_INTERRUPTS} parameter.  Finally, the Zip System produces one
2583
external interrupt whenever the entire CPU halts to wait for the debugger.
2584 33 dgisselq
 
2585 36 dgisselq
\chapter{Initial Assessment}\label{chap:assessment}
2586
 
2587
Having now worked with the Zip CPU for a while, it is worth offering an
2588
honest assessment of how well it works and how well it was designed. At the
2589
end of this assessment, I will propose some changes that may take place in a
2590
later version of this Zip CPU to make it better.
2591
 
2592
\section{The Good}
2593
\begin{itemize}
2594 69 dgisselq
\item The Zip CPU can be configured to be relatively light weight and fully
2595
        featured as it exists today. For anyone who wishes to build a general
2596
        purpose CPU and then to experiment with building and adding particular
2597
        features, the Zip CPU makes a good starting point--it is fairly simple.
2598
        Modifications should be simple enough.  Indeed, a non--pipelined
2599
        version of the bare ZipBones (with no peripherals) has been built that
2600
        only uses 1.1k~LUTs.  When using pipelining, the full cache, and all
2601
        of the peripherals, the ZipSystem can top 5~k LUTs.  Where it fits
2602
        in between is a function of your needs.
2603 36 dgisselq
\item The Zip CPU was designed to be an implementable soft core that could be
2604
        placed within an FPGA, controlling actions internal to the FPGA. It
2605
        fits this role rather nicely. It does not fit the role of a system on
2606
        a chip very well, but then it was never intended to be a system on a
2607
        chip but rather a system within a chip.
2608
\item The extremely simplified instruction set of the Zip CPU was a good
2609
        choice. Although it does not have many of the commonly used
2610
        instructions, PUSH, POP, JSR, and RET among them, the simplified
2611
        instruction set has demonstrated an amazing versatility. I will contend
2612
        therefore and for anyone who will listen, that this instruction set
2613
        offers a full and complete capability for whatever a user might wish
2614
        to do with two exceptions: bytewise character access and accelerated
2615
        floating-point support.
2616
\item This simplified instruction set is easy to decode.
2617
\item The simplified bus transactions (32-bit words only) were also very easy
2618
        to implement.
2619 68 dgisselq
\item The pipelined load/store approach is novel, and can be used to greatly
2620
        increase the speed of the processor.
2621 36 dgisselq
\item The novel approach of having a single interrupt vector, which just
2622
        brings the CPU back to the instruction it left off at within the last
2623
        interrupt context doesn't appear to have been that much of a problem.
2624
        If most modern systems handle interrupt vectoring in software anyway,
2625
        why maintain hardware support for it?
2626
\item My goal of a high rate of instructions per clock may not be the proper
2627
        measure. For example, if instructions are being read from a SPI flash
2628
        device, such as is common among FPGA implementations, these same
2629
        instructions may suffer stalls of between 64 and 128 cycles per
2630
        instruction just to read the instruction from the flash. Executing the
2631
        instruction in a single clock cycle is no longer the appropriate
2632
        measure. At the same time, it should be possible to use the DMA
2633
        peripheral to copy instructions from the FLASH to a temporary memory
2634
        location, after which they may be executed at a single instruction
2635
        cycle per access again.
2636
\end{itemize}
2637
 
2638
\section{The Not so Good}
2639
\begin{itemize}
2640
\item The CPU has no character support. This is both good and bad.
2641
        Realistically, the CPU works just fine without it. Characters can be
2642
        supported as subsets of 32-bit words without any problem. Practically,
2643
        though, it will make compiling non-Zip CPU code difficult--especially
2644
        anything that assumes sizeof(int)=4*sizeof(char), or that tries to
2645
        create unions with characters and integers and then attempts to
2646
        reference the address of the characters within that union.
2647
 
2648
\item The Zip CPU does not support a data cache. One can still be built
2649
        externally, but this is a limitation of the CPU proper as built.
2650
        Further, under the theory of the Zip CPU design (that of an embedded
2651
        soft-core processor within an FPGA, where any ``address'' may reference
2652
        either memory or a peripheral that may have side-effects), any data
2653
        cache would need to be based upon an initial knowledge of whether or
2654
        not it is supporting memory (cachable) or peripherals. This knowledge
2655
        must exist somewhere, and that somewhere is currently (and by design)
2656
        external to the CPU.
2657
 
2658
        This may also be written off as a ``feature'' of the Zip CPU, since
2659
        the addition of a data cache can greatly increase the LUT count of
2660
        a soft core.
2661
 
2662 68 dgisselq
        The Zip CPU compensates for this via its pipelined load and store
2663
        instructions.
2664
 
2665 36 dgisselq
\item Many other instruction sets offer three operand instructions, whereas
2666
        the Zip CPU only offers two operand instructions. This means that it
2667
        takes the Zip CPU more instructions to do many of the same operations.
2668
        The good part of this is that it gives the Zip CPU a greater amount of
2669
        flexibility in its immediate operand mode, although that increased
2670
        flexibility isn't necessarily as valuable as one might like.
2671
 
2672
\item The Zip CPU doesn't support out of order execution. I suppose it could
2673
        be modified to do so, but then it would no longer be the ``simple''
2674
        and low LUT count CPU it was designed to be. The two primary results
2675
        are that 1) loads may unnecessarily stall the CPU, even if other
2676
        things could be done while waiting for the load to complete, 2)
2677
        bus errors on stores will never be caught at the point of the error,
2678
        and 3) branch prediction becomes more difficult.
2679
 
2680
\item Although switching to an interrupt context in the Zip CPU design doesn't
2681
        require a tremendous swapping of registers, in reality it still
2682
        does--since any task swap still requires saving and restoring all
2683
        16~user registers. That's a lot of memory movement just to service
2684
        an interrupt.
2685
 
2686
\item The Zip CPU is by no means generic: it will never handle addresses
2687
        larger than 32-bits (16GB) without a complete and total redesign.
2688
        This may limit its utility as a generic CPU in the future, although
2689
        as an embedded CPU within an FPGA this isn't really much of a limit
2690
        or restriction.
2691
 
2692
\item While the Zip CPU has its own assembler, it has no linker and does not
2693
        (yet) support a compiler. The standard C library is an even longer
2694
        shot. My dream of having binutils and gcc support has not been
2695
        realized and at this rate may not be realized. (I've been intimidated
2696
        by the challenge everytime I've looked through those codes.)
2697
\end{itemize}
2698
 
2699
\section{The Next Generation}
2700 69 dgisselq
This section could also be labeled as my ``To do'' list.  Today's list is
2701
much different than it was for the last version of this document, as much of
2702
the prior to do list (such as VLIW instructions, and a more traditional
2703
instruction cache) has now been implemented.  The only things really and
2704
truly waiting on my list today are assembler support for the VLIW instruction
2705
set, linker and compiler support.
2706 36 dgisselq
 
2707 69 dgisselq
Stay tuned, these are likely to be coming next.
2708 36 dgisselq
 
2709 21 dgisselq
% Appendices
2710
% Index
2711
\end{document}
2712
 
2713 68 dgisselq
%
2714
%
2715
% Symbol table relocation types:
2716
%
2717
% Only 3-types of instructions truly need relocations: those that modify the
2718
% PC register, and those that access memory.
2719
%
2720
% -     LDI     Addr,Rx         // Load's an absolute address into Rx, 24 bits
2721
%
2722
% -     LDILO   Addr,Rx         // Load's an absolute address into Rx, 32 bits
2723
%       LDIHI   Addr,Rx         //   requires two instructions
2724
%
2725
% -     JMP     Rx              // Jump to any address in Rx
2726
%                       // Can be prefixed with two instructions to load Rx
2727
%                       // from any 32-bit immediate
2728
% -     JMP     #Addr           // Jump to any 24'bit (signed) address, 23'b uns
2729
%
2730
% -     ADD     x,PC            // Any PC relative jump (20 bits)
2731
%
2732
% -     ADD.C   x,PC            // Any PC relative conditional jump (20 bits)
2733
%
2734
% -     LDIHI   Addr,Rx         // Load from any 32-bit address, clobbers Rx,
2735
%       LOD     Addr(Rx),Rx     //    unconditional, requires second instruction
2736
%
2737
% -     LOD.C   Addr(Ry),Rx     // Any 16-bit relative address load, poss. cond
2738
%
2739
% -     STO.C   Rx,Addr(Ry)     // Any 16-bit rel addr, Rx and Ry must be valid
2740
%
2741
% -     FARJMP  #Addr:          // Arbitrary 32-bit jumps require a jump table
2742
%       BRA     +1              // memory address.  The BRA +1 can be skipped,
2743
%       .WORD   Addr            // but only if the address is placed at the end
2744
%       LOD     -2(PC),PC       // of an executable section
2745
%

powered by: WebSVN 2.1.0

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