Coder Social home page Coder Social logo

The Zip CPU

The Zip CPU is a small, light-weight, RISC CPU. Specific design goals include:

  • 32-bit. All registers, addresses, and instructions are 32-bits in length.

  • A RISC CPU. Instructions nominally complete in one cycle each, with exceptions for multiplies, divides, memory accesses, and (eventually) floating point instructions.

    (Note that the ZipCPU is not a RISC-V CPU, nor does it copy from any other instruction set but its own.)

  • A load/store architecture. Only load and store instructions may access memory.

  • Includes Wishbone, AXI4-Lite, and AXI4 memory options.

  • A (minimally) Von-Neumann architecture

    The Wishbone wrappers share buses for instructions and data, the AXI4-Lite and AXI4 wrappers have separate bus interfaces for each. The address space itself, however, needs to be common.

  • A pipelined architecture, having stages for prefetch, decode, read-operand(s), a combined stage containing the ALU, memory, divide, and floating point units, and then the final write-back stage.

  • A two mode machine: supervisor and user, with each mode having a different access level.

  • Completely open source, licensed under the GPLv3.

Unique features and characteristics

  • Only 29 instructions are currently implemented. Six additional instructions have been reserved for a floating point unit, but such a unit has yet to be implemented.

  • (Almost) all instructions can be executed conditionally. Exceptions include load immediate (LDI), the debug break instruction (BREAK), the bus lock (LOCK) and simulation instructions (SIM), and the no-operation instruction (NOOP). The assembler will quietly turn a conditional load immediate into a two-instruction equivalent (BREV, LDILO).

  • The CPU makes heavy use of pipelining wherever and whenever it can. Hence, when using a pipelined memory core, loading two vaues in a row may cost only one clock more than just loading the one value.

  • The CPU has no interrupt vectors, but rather two register sets. On any interrupt, the CPU just switches from the user register set to the supervisor register set. This simplifies interrupt handling, since the CPU automatically saves, preserves, and restores the supervisor's context between enabling interrupts and receiving the next interrupt. An optional interrupt peripheral may be used to combine multiple external interrupts into a single interrupt line.

Getting Started

If you'd like to get started with the ZipCPU, you might wish to know that this repository contains the CPU, its documentation, and the toolchain. The CPU implementation found here, though, is just that: a CPU. This implementation requires a bus with peripherals hanging off of it, things such as RAM, flash (ROM), serial port, etc. This is just where I keep the CPU apart from any necessary peripherals.

So, if you want to try out the CPU, feel free to download and build this repository (use git-clone with a depth of 1--there's a lot of stuff in the git repo that you don't necessarily need). You'll need it for the binutils, GCC, and newlib support provided by it.

Once you've built these tools, then I'd suggest you look into the ZBasic repository. That repository places the CPU in an environment with block RAM, QSPI flash, and SD-card (SPI protocol) access. From that repository, you can either tweak the distro (main.v, regdefs.h, board.h, board.ld) to add the peripherals you want to use the CPU with, or you can use AutoFPGA to adjust your RAM size, add or remove peripherals and so forth while maintaining (creating, really) all of these files for you.

The sim/ subdirectory also contains a version of the ZipCPU in a usable environment for simulation purposes. This includes the CPU, possibly more CPU's for a multiprocessor environment, bus interconnect, memory, a simulated serial port, and a couple more peripherals.

If you aren't interested in simulating the CPU, there is an assembly level debugger that you can use to stop and step the CPU, as well as an integrated wishbone scope that you can use to get traces from within the design while it is running.

Need help?

If you'd like to use the ZipCPU, and don't know where to begin, feel free to find me on IRC as ZipCPU. I've created a #zipcpu channel on several IRC servers that I tend to inhabit. If you get stuck, feel free to drop by and ask for help. You can also drop by just to say hi. Either way, please introduce yourself and give me some time to respond.

Current Status

You can also read about the ZipCPU via several blog articles posted at zipcpu.com! Articles you might find valuable include:

Not yet integrated

  • The MMU that was written for the ZipCPU now needs to be rewritten in order to work in the new ZipCore context. My plan is to place the MMU between the ZipCore and the various bus aware wrappers, providing a similar interface to the one offered by the ZipCore. That way, caches will be based on physical addressing--solving one of the bigger problems I had when using the MMU.

  • FATFS support now exists for the SDCard, it's just not (yet) integrated into the newlib C-library.

  • The ZipOS would greatly speed up and improve the bare bones newlib library--primarily by providing "O/S" level interrupt support when using the library. This integration has not (yet) been accomplished.

    On the other hand, if the MMU is available, I might rather just create a Linux distribution.

Commercial Opportunities

The GPLv3 license should be sufficient for most (all) academic and hobby purposes, and certainly for all simulation based purposes. If you find, however, that the GPLv3 license is insufficient for your needs, other licenses can be purchased from Gisselquist Technology, LLC.

This applies to all but the toolchain, for which GPLv3 should work for all purposes. (Besides, I don't own the licenses for Binutils, GCC, or newlib.)

Dan Gisselquist's Projects

arrowzip icon arrowzip

A ZipCPU based demonstration of the MAX1000 FPGA board

autofpga icon autofpga

A utility for Composing FPGA designs from Peripherals

autofpga-demo icon autofpga-demo

A demonstration of how AutoFPGA can compose a design from simple components

axidmacheck icon axidmacheck

AXI DMA Check: A utility to measure DMA speeds in simulation

cordic icon cordic

A series of CORDIC related projects

cputest-harness icon cputest-harness

A simulation test harness, containing serial port, QSPI flash, and an output done I/O--just provide the CPU

dbgbus icon dbgbus

A collection of debugging busses developed and presented at zipcpu.com

dblclockfft icon dblclockfft

A configurable C++ generator of pipelined Verilog FFT cores

debouncer icon debouncer

Digital logic necessary to debounce buttons

dpll icon dpll

A collection of phase locked loop (PLL) related projects

fftdemo icon fftdemo

A demonstration showing how several components can be compsed to build a simulated spectrogram

icozip icon icozip

A ZipCPU demonstration port for the icoboard

interpolation icon interpolation

Digital Interpolation Techniques Applied to Digital Signal Processing

kimos icon kimos

Enclustra Mercury demonstration project

openarty icon openarty

An Open Source configuration of the Arty platform

openz7 icon openz7

OpenZ7, an open source Zynq demo based on the Arty Z7-20

qspiflash icon qspiflash

A set of Wishbone Controlled SPI Flash Controllers

robosim icon robosim

Robot simulation framework to teach autonomous robotics principles for use in FIRST FTC competitions

sdr icon sdr

A basic Soft(Gate)ware Defined Radio architecture

sdspi icon sdspi

SD-Card controller, using either SPI, SDIO, or eMMC interfaces

symbiyosys icon symbiyosys

SymbiYosys (sby) -- Front-end for Yosys-based formal verification flows

tinyzip icon tinyzip

A ZipCPU based demonstration for the TinyFPGA BX board

tttt icon tttt

A 4x4x4 Tic-Tac-Toe game suitable for porting to embedded hardware platforms

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.