Skip to content

My projects in VHDL language for FPGA in Modelsim software

License

Notifications You must be signed in to change notification settings

mostafapiran/VHDL-for-FPGA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VHDL for FPGA

My projects in VHDL language for FPGA in Modelsim software

Project - #1_RNG_LFSR


VHDL Pseudorandom Number Generator using LFSR

This VHDL code represents a simple pseudorandom number generator (PRNG) designed with a Linear Feedback Shift Register (LFSR). The LFSR PRNG generates a sequence of pseudo-random bits based on the initial seed value and a feedback polynomial.

Description

  • File: RNG.vhd
  • Author: mostafa piran
  • Generated: Sun May 3 17:50:42 2020
  • Version: 1.0 (You can update the version number as needed)

Purpose

This VHDL project implements a basic pseudorandom number generator for generating random sequences of 8-bit numbers. It utilizes an 8-bit LFSR with a specific feedback polynomial to produce a pseudo-random output sequence.

Functionality

  • The LFSR PRNG has two main inputs: clock and reset.
  • The Q output provides the 8-bit pseudo-random number.
  • The check output is a single bit that indicates the current state of the LFSR.

Operation

The LFSR operates on each rising edge of the clock signal. If the reset signal is asserted, the LFSR state is cleared to zero. Otherwise, the LFSR is clocked based on the feedback polynomial. The resulting pseudo-random value is available at the Q output.

Initial Seed

The initial seed for the LFSR is set to 00000001. You can modify this value to change the starting point of the pseudo-random sequence.

Usage

  1. Ensure you have a VHDL simulation environment or FPGA synthesis tool (e.g., Xilinx Vivado) set up for the project.

  2. Open the RNG.vhd file in your VHDL development environment.

  3. Customize the code as needed, such as the feedback polynomial and initial seed.

  4. Simulate the design and verify the pseudo-random output using your VHDL simulator.

  5. If you intend to implement the PRNG on an FPGA, follow the synthesis and implementation steps for your target FPGA board.

License

This code is provided as-is, and you are free to use, modify, and distribute it as per your requirements. No specific license is provided, but it is encouraged to give credit to the original author if you find this code useful.

Acknowledgment

Special thanks to the VHDL community and the developers of VHDL tools that make such projects possible.


Project - #2_IIR_filter


filter_50_100_150_200_250 MHz VHDL Implementation

This repository contains VHDL code generated using MATLAB and Filter Design HDL Coder 3.1.2 for a digital filter module named "filter_50." The filter is designed for FPGA or ASIC hardware acceleration, and the code is intended for use in digital signal processing applications. Below is a detailed description of the key information presented in this README.

Overview

The filter_50 module is generated for implementing a discrete-time Infinite Impulse Response (IIR) filter. It utilizes a Direct-Form I structure with second-order sections. The filter is designed to operate in a fully parallel fashion with a folding factor of 1, which means that no input or output data folding is applied.

Generated Information

  • Generated by: MATLAB(R) 9.3 and Filter Design HDL Coder 3.1.2.
  • Generated on: 2020-06-22 19:57:23
  • Target Language: VHDL
  • Test Bench Stimulus: The filter can be tested with various input stimuli, including step, ramp, and chirp signals.

Filter Configuration

  • Filter Structure: Direct-Form I, Second-Order Sections
  • Number of Sections: 1
  • Stable: Yes
  • Linear Phase: No

Module Interface

The filter_50 VHDL module has the following ports:

  • clk: Clock input
  • clk_enable: Clock enable input
  • reset: Reset input
  • filter_in: Input data of type real (double)
  • filter_out: Output data of type real (double)

Architecture Details

The filter is implemented in the rtl architecture of the filter_50 module. It consists of various components and signals, including delay elements, multipliers, and summing blocks. These components are connected to implement the filter's transfer function, as specified by the filter coefficients.

Filter Coefficients

The filter coefficients are specified as constants within the VHDL code. These coefficients define the filter's behavior and are used in the signal processing calculations.

How to Use

To use this VHDL implementation of the filter_50 module, you should integrate it into your FPGA or ASIC design. Connect the input and output ports to your system, ensure proper clock and reset handling, and provide appropriate input stimuli for testing.

Please refer to the relevant FPGA or ASIC development tools and documentation for instructions on how to incorporate this VHDL module into your project.

For testing, you can provide various test stimuli such as step, ramp, or chirp signals to evaluate the filter's performance.

Important Note

This VHDL code is generated and may require additional customization or integration to meet the specific requirements of your project. It is essential to thoroughly understand the generated code and the filter's behavior to ensure successful integration and operation in your application.



Cascaded Filter VHDL Design

TotalFilter is a VHDL design for implementing a cascaded Infinite Impulse Response (IIR) filter structure. It consists of multiple filter components connected in series to create a complex filter system.

Overview

The TotalFilter design is a cascaded digital signal processing system that processes input data through a sequence of IIR filter stages. These filter stages are represented by individual components, each with its filter characteristics.

Design Information

  • Design Title: TotalFilter
  • Design Unit: felterIIR
  • Author: mostafa piran

Description

The TotalFilter design is a cascaded filter system intended for digital signal processing. The specific details of the filter structure and its characteristics, as well as any additional information about the design's purpose, should be provided here. However, the README currently lacks detailed information about the filter's specifications and intended use.

Design Components

The TotalFilter design comprises multiple filter components. These components are instantiated within the architecture of the TotalFilter entity. The components used in this design are:

  • filter_50
  • filter_100
  • filter_150
  • filter_200
  • filter_250

Module Interface

The TotalFilter VHDL module has the following ports:

  • clk: Clock input
  • clk_en: Clock enable input
  • f_en: Input data of type real
  • reset: Reset input
  • f_out: Output data of type real

Architecture Details

The architecture of the TotalFilter entity instantiates multiple filter components (listed above) and interconnects them to create a cascaded filter structure. The input data f_en is processed sequentially through each filter component, and the final output is provided at the f_out port.

How to Use

To use this VHDL implementation of the TotalFilter design, you should integrate it into your FPGA or ASIC project. The TotalFilter design requires appropriate clocking and reset handling, and the input data should be supplied to the f_en port. The resulting output will be available at the f_out port.

The design can be further customized or extended to meet your specific signal processing requirements.

Project - #4_4bit_adder


Adder4 VHDL Design

adder4 is a VHDL design for a 4-bit binary adder. It is composed of four full-adder components connected in series to add two 4-bit binary numbers. Below is a description of the key information and structure presented in this README.

Overview

The adder4 design is a 4-bit binary adder implemented in VHDL. It takes two 4-bit binary numbers as input and computes their sum along with a carry-out bit. The design consists of multiple full-adder components, each responsible for adding one bit of the input numbers.

Design Information

  • Design Title: adder4
  • Design Unit: adder4
  • Author: mostafa piran

Description

The adder4 design is a 4-bit binary adder, but the README currently lacks detailed information about its specifications, purpose, and use. A description of the design's functionality and its role in a larger system is essential for potential users to understand its utility.

Design Components

The adder4 design consists of multiple full-adder components. These components are instantiated within the architecture of the adder4 entity and connected to perform the addition of two 4-bit binary numbers.

Module Interface

The adder4 VHDL module has the following ports:

  • cin: Carry-in input
  • a: 4-bit binary input
  • b: 4-bit binary input
  • cout: Carry-out output
  • s: 4-bit binary sum output

Architecture Details

The architecture of the adder4 entity instantiates four full-adder components (U1, U2, U3, U4) and connects them in a cascaded manner to add the corresponding bits of the input numbers. The final sum is presented at the s output, and the carry-out is available at the cout output.

How to Use

To use this VHDL implementation of the adder4 design, you should integrate it into your FPGA or ASIC project. The adder4 design expects 4-bit binary input numbers (a and b) and a carry-in (cin) value. After processing, the sum of the two numbers will be available at the s output, and the carry-out will be available at the cout output.

Ensure proper clocking and reset handling in your design for accurate operation.

About

My projects in VHDL language for FPGA in Modelsim software

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages