Skip to content

The Chisel wrapper for Cadence Chipware reusable IP blocks. It does not conatin any implementation details of the IPs.

License

Notifications You must be signed in to change notification settings

SingularityKChen/chisel-chipware

Repository files navigation

Chisel ChipWare

This is a Chisel wrapper to instance ChipWare IPs.

Note: This repo does NOT include any implementation details of the Cadence ChipWare IPs!!!

Getting Started

Add this repo as a submodule in your Chisel Project

git submodule add [email protected]:SingularityKChen/chisel-chipware.git

Also remember to add the dependency in your build.sbt or build.sc.

Call the ChipWare IPs in your Chisel Project

  1. import the ChipWare IPs in your Chisel project
import chipware._
  1. create a ChipWare IP instance and wrapper it with Module(). For example, if you want to use the CW_add IP, you can do the following:
protected val U1: CW_add = Module(new CW_add(wA))
U1.io.A  := io.A
U1.io.B  := io.B
U1.io.CI := io.CI
io.Z     := U1.io.Z
io.CO    := U1.io.CO
  1. add the black box path for verification
U1.addPath(blackBoxPath)

You may reference the demo file for more details.

Docker

Build the Docker Image

make build_docker

Run the Docker Image

make run_docker

To develop this repo

Install Mill

First, install mill by referring to the documentation here.

Build bsp and compile the project

make bsp compile

Generate the ScalaDoc

make doc

Run the tests

make test

Thanks

This repo uses the template from chisel-playground.

About

The Chisel wrapper for Cadence Chipware reusable IP blocks. It does not conatin any implementation details of the IPs.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages