This email address is being protected from spambots. You need JavaScript enabled to view it.

  • Home
  • Starware Design Ltd - Xilinx

Starware Design Ltd - Xilinx

Edge AI

Starware Design has experience in edge AI for audio and video applications.
Services:

Architecture definition/evaluation
 Implementation on FPGA/ASIC 
Implementation on microprocessor/microcontroller
Verification of the implementation agains the model (i.e. using Cocotb) 

Previous projects

Video AI proof-of-concept

Person detection proof-of-concept running on Zynq UltraScale (ZCU104).

Starware Design tasks:

  Model preparation for FPGA deployment

  Software running on the FPGA with PyQT GUI

Audio AI ASIC

28nm audio AI ASIC for keyword spotting. 

Starware Design tasks:

  Benchmark of the existing AI architecture and proposals for the next generation architecture. 

  AI network bit-accurate modelling 

  Evaluation board hardware, software and FPGA design (Xilinx Artix7 plus STMicroelectronics STM32MP1).

  Automated lab test setup design and implementation (similar to Amazon Alexa compatible devices testing).

  RTL design and validation using Cocotb and AI model in Python

FPGA design and verification

If your project requires high levels of integration and performance then an FPGA is probably the optimal solution. Starware Design has experience in using toolchains and devices from all the major FPGA providers. Starware Design design support can range from a bespoke IP block to a turnkey solution.
Services:

Architecture design
Hardware / software partitioning
RTL coding (VHDL and Verilog/SystemVerilog)
Verification (UVVM, Cocotb, co-simulation)
System On Chip (Zynq, Zynq MPSoC)
Design for Xilinx, Altera/Intel and Lattice FPGAs
Interfacing with PCIe, DDR memories, high speed ADCs, Gigabit Ethernet

 

Previous projects

Video AI proof-of-concept

Person detection proof-of-concept running on Zynq UltraScale (ZCU104).

Starware Design tasks:

  Model preparation for FPGA deployment

  Software running on the FPGA with PyQT GUI

Audio AI ASIC

28nm audio AI ASIC for keyword spotting. 

Starware Design tasks:

  Porting ASIC design to FPGA for rapid prototyping

  Bit-accurate validation using Cocotb and AI model in Python

Video processing platform

Xilinx Zynq FPGA with multiple video in and video out up to 1080p resolution. Mixture of Xilinx IP cores and custom cores.

Starware Design tasks:

  Proof of concept on evaluation board
FPGA design and validation, IP cores creation and customisation
Bare metal and Linux drivers/software

High performance Software Design Radio (SDR) platform

Xilinx Kintex 7 with high speed ADCs and PCIe interface to x86 platform.

Starware Design tasks:
Creation of a co-simulation platform: QEMU running Linux with target device driver and apps interacting with Modelsim running the FPGA simulation plus the embedded microcontroller code.

Industrial ultrasound probe

Xilinx Artix-7 with DDR-3 memory, PCIe express and ADC LVDS interface. Mixture of Xilinx IP cores and custom cores.

Starware Design tasks:
FPGA design and validation, IP cores creation and customisation.

 

Other projects include FPGA design due diligence and/or verification (UVVM or SystemVerilog).

FPGA meets DevOps - Introduction

Why DevOps for FPGA development?

During the development and support phase of a product containing an FPGA bitstreams are released containing new features, bug fixes etc.

Releases are more frequent during the development phase as new features are added to the design. The support phase can last from a couple of years for a consumer product to five or more years for an industrial product.

FPGA meets DevOps - Metrics

In the previous blog post we learned how to integrate Xilinx Vivado with Docker and Jenkins to build automatically (or with a single button) the FPGA bitstream.

During the project life span, the FPGA bitstream is going to be built a large number of times. Wouldn’t be interesting to collect metrics from each build and track them?

In this blog post of the series “FPGA meets DevOps” I am going show you how to get metrics from a Xilinx Vivado build and track them in Jenkins using the Plot plugin.

In particular we are going to track resource usage (i.e. LUT, FF, DSP and memory). This gives you insight on how the resource usage evolved during the project life span and if the FPGA is getting too full.

FPGA meets DevOps - System and FPGA version

In the previous blog posts we have created a system to build automatically (or with a single button) the FPGA bitstream.

Let’s imagine a bug is flagged after a bitstream has been released. The questions we need to answer to fix the problem are:

  1. What is the version affected?
  2. What is the source code set that was used to build that particular version?

FPGA meets DevOps - Xilinx Vivado and Git

In this blog post of the series “FPGA meets DevOps”, I am going to show you how to use source version control with Xilinx Vivado.

Most of the existing documentation about source version control and Vivado, i.e. User Guide 1198 (https://www.xilinx.com/support/documentation/sw_manuals/xilinx2016_3/ug1198-vivado-revision-control-tutorial.pdf), requires the developer to write a TCL script to recreate the project.

The problem with this approach is that changes to the project in Vivado (i.e. changing the implementation strategy or place and route parameters) have to be manually ported to the TCL file.

My typical Xilinx Vivado FPGA project has a block design as top level with automatically generated and managed wrapper. It has a mix of Xilinx and custom IP cores and I use the Out Of Context flow for synthesis since it reduces build time by caching IP cores that haven’t been modified or updated.

When I started researching how to better integrate Vivado with source version control, I defined the following requirements:

  1. The block design is the primary source to recreate the design (IP cores configuration, wiring, etc)
  2. The top level wrapper HDL file shouldn’t be under version control since it can be recreated from the block diagram
  3. Minimum TCL scripts coding for each project
  4. Easy to save changes made in Vivado GUI (i.e. implementation settings)
  5. Use the project-based out of context flow to reduces build time
  6. Continuous Integration friendly

FPGA meets DevOps - Xilinx Vivado with Docker and Jenkins

In this second blog post of the series “FPGA meets DevOps” I am going show you how to integrate Xilinx Vivado with Docker and Jenkins.

Docker provides a lightweight operating system level virtualisation. It allows developers to package up an application with all the parts it needs in a container, and then ship it out as one package. A container image is described by a file (Dockerfile) which contains a sequence of commands to create the image itself (i.e.: packages to install, configuration tasks, etc) and it is all you need to replicate the exact build environment on another machine.

The objective is to create a container that will run Vivado in headless mode (without user interface) to build the FPGA image.

FPGA meets DevOps UPDATED! - AMD / Xilinx Vivado and Petalinux + Git

A couple of years ago I wrote a few blog posts regarding FPGA and devops; in particular on how to use Xilinx/AMD Vivado with git, Jenkins and docker. 

With these new blog posts, I am going to update that content using Vivado 2022.2. I will also replace Jenkins with Gitlab for continuous integration.

I want to show you that it is not difficult nor expensive to get started with devops for FPGA development. 

In this blog post, I am going to show you how to use version control for Xilinx/AMD Vivado and Petalinux projects. I am going to use git, but you can use SVN or other version control tools.

About us

Starware Design provides design and consulting services for FPGA, board-level, embedded software and edge AI projects.


Whether you need a consultant to be part of your team on-site or a turnkey solution, Starware Design has the capability to suit your requirements.