• The Art of FPGA Design - Post 40

    Instantiating the DSPFP32 the Easy Way The final thing we need to use the new Versal DSPFP32 hardened floating point primitive is a way to access them through VHDL code. While it would be very nice to be able to infer the primitives, especially since…
  • The New DSPFP32 Primitive in Versal FPGAs

    The New DSPFP32 Primitive in Versal FPGAs The DSP primitive in the latest Versal FPGA family is called DSP58 and it already has a number of improvements over the latest DSP48 flavors, mainly an increase from 27x18 signed multiplier and 48-bit post adder…
  • The Art of FPGA Design - Post 38

    VHDL-2008 FP32 Support in Vivado VHDL-2008 introduced native support for floating point types with FLOAT, which is an arbitrary precision floating point type. While you can define generic modules with ports of unconstrained FLOAT type, or any actual…
  • Running Arch Linux on a Genesys ZU-5EV Board

    Arch Linux is a simple, versatile, and easily customizable GNU/Linux distribution that adheres to the principle of simplicity. And, Arch Linux can run on a Genesys ZU-5EV development board, and this project will show you how to implement the hardware…
  • How do you use PetaLinux & Yocto?

    Calling all Xilinx SoC users... You may know that Xilinx offers a Linux build environment called PetaLinux. It is a "productivity layer" on top of a Yocto/BitBake backend. There seems to be an obvious progression, where you start OS bring up in PetaLinux…
  • Not-as-expensive FPGA Boards

    I haven't done a poll in a while so I thought it would be fun and instructive to do one about less-expensive FPGA boards. One of the challenges of getting into FPGA design is that the boards are usually a lot more expensive than a Raspberry Pi or a microcontroller…
  • Gradient Filter implementation on FPGA : Part 2 Implementing gradient Filter

    This blog is part 2 of a 3 part series of implementing a gradient filter on an FPGA. If you have not already read part2 see the link below to get up to speed before reading this blog. Additionally the user can catch some of our previous blog posts, linked…
  • Gradient Filter implementation on an FPGA - Part 1 Interfacing an FPGA with a camera

    previous post : Obstacle detection using Laser and image processing on LOGI-Bone FPGA Camera Data Processing This is part 1 of a 2 part article which details interfacing a camera to an FPGA, capturing the data and then processing the data using a pipelining…
  • Hardware/Software Co-design with the LOGI Boards

    Introduction In a previous blog post ValentF(x) gave an explanation of what FPGAs (field programmable gate arrays) are and how they are a very valuable resource when designing electronics systems. The article went on to describe the major differences…
  • The Art of FPGA Design Season 2 - Post 18

    Multichannel Symmetric FIRs In the last two posts we have considered the case when the FPGA clock frequency is faster than the FIR sample rate. The ratio between the system clock and the data sample rate is called the overclocking factor M. We have seen…
  • The Art of FPGA Design Season 2 - Post 17

    Multichannel and Overclocking FIRs - The Single Rate Symmetric Case In the last post I created an overclocked or semi-parallel implementation of a systolic, non-symmetric FIR, where each DSP48 in the chain implements M taps of the filter. The filter sample…
  • The Art of FPGA Design Season 2 - Post 16

    Multichannel and Overclocking FIRs - The Single Rate non-Symmetric Case We are looking now at the case of the single rate FIR filter where the sample rate is a sub-multiple of the FPGA clock rate. For example, let's say that the input and output sample…
  • The Art of FPGA Design Season 2 - Post 15

    Taking advantage of coefficient symmetry in Polyphase FIRs We have seen in previous posts that when the FIR coefficients are symmetric, we can use a DSP48 feature called a pre-adder and reduce the number of multipliers required in half. Essentially, an…
  • The Art of FPGA Design Season 2 - Post 14

    Polyphase Decimators The Polyphase Decimator FIR is the dual structure of the Polyphase Interpolator. The basic idea is that you can reduce the sample rate of a signal by a factor of M if you keep only one out of every M samples. This only works if the…
  • The Art of FPGA Design Season 2 - Post 13

    Polyphase Interpolators In the previous post we have looked at and important class of FIR filters, namely Polyphase architectures, which are extensively used for changing the sample rate of a signal by and integer factor, a process called interpolation…
  • The Art of FPGA Design Season 2 - Post 12

    Polyphase FIRs The half-band FIR is just one particular case of a larger class of FIR filter implementations called polyphase structures. The basic idea is to split the sum of products we need to compute for every filter output sample into multiple sub…
  • Write The Future with Xilinx

    Premier Farnell now stocking Xilinx All Programmable Devices Along with all the new developments and content in the FPGA group, we are excited to announce another development: our new partnership with Xilinx, a leader supplier of programmable logic devices…
  • The Art of FPGA Design Season 2 - Post 11

    The Single Rate Half-Band FIR Decimator A decimating filter will reduce the sample rate of a signal, while preventing aliasing. Decimation by a factor of 2x is achieved by simply throwing out every second input sample. For this to work the input data…
  • The Art of FPGA Design Season 2 - Post 10

    The Single Rate Half-Band FIR Interpolator In the previous post we looked at the single rate half-band FIR, a particular type of odd-symmetric FIR, where almost half of the filter coefficients are zero. Not computing multiplications with these zero coefficients…
  • The Art of FPGA Design Season 2 - Post 9

    The Single Rate Half-Band FIR We have started by looking at the most general version of an FIR filter. From a mathematical point of view, this is all that is needed. There are countless variations, like the symmetric versions, both odd and even, they…
  • The Art of FPGA Design Season 2 - Post 8

    The Single Rate symmetric FIR, low latency transposed architecture The question we need to answer now is this - for those applications that require very low latency FIRs is there a way to avoid the increase in latency proportional to the filter order…
  • The Art of FPGA Design Season 2 - Post 7

    The Single Rate odd-symmetric FIR In the last post we have examined the even-symmetric FIR, a filter of order N=2*K. The main conclusion was that we only need K DSP48s to implement such a filter, and we came up with a basic building block that is both…
  • The Art of FPGA Design Season 2 - Post 6

    The Single Rate even-symmetric FIR We have looked so far at the simplest and most generic FIR possible, the single rate non-symmetric FIR filter. But many FIR filter implementations have more particular structures and taking advantage of these can improve…
  • The Art of FPGA Design Season 2 - Post 5

    The Single Rate non-symmetric FIR, direct and transpose architectures As I mentioned earlier, the single rate non-symmetric FIR filter has two possible implementations, the direct and the transpose forms. We will now apply again the retiming and pipeline…
  • The Art of FPGA Design Season 2 - Post 4

    Register pushing and the pipeline cut It should be clear by now that a direct implementation of the DSP algorithm is not good enough. Every single individual computation block, the adders and the multipliers, will require pipeline registers and there…