Content and learning objectives#

Case

Imagine that you are part of a team that is working on a project where you need to monitor the amount of vibration a system is exposed to. This could for example be:

  • To measure the vibration experienced by a scientific payload or other parts of a rocket during launch.

  • Or to be used as a diagnotic tool where vibration data and machine learning techniques are combined to detect or predict possible failure modes.

  • Can you think of other examples?

Your team has decided that the best solution to this problem is to design a small embedded system to measure vibration using an accelerometer. Neither you nor any of your team members have any prior experience in embedded systems design. However, since you are the only one with some background in basic electronics and programming, you are trusted with the responsibility to lead this work. To prepare yourself, you have therefore decided to follow the course FYS4220, where in fact it is required to build a very similar system as part of the course. This system can serve as a prototype solution for your team’s project.

Intended learning outcomes#

This corse gives and introduction to the design of digital and embedded systems using programmable logic (FPGA technology). This includes hardware description language (VHDL), verification and testing of digital designs, implementation of embedded systems in FPGAs, and the basic properties of Real-time operating systems.

After completing this course:

  • you will have knowledge of the basic building blocks and functionality of programmable logic devices

  • you will have knowledge of application areas for programmable logic devices

  • you will be able to design a basic digital system using a hardware description language like VHDL

  • you will be able to perform simulation and synthesis of digital systems for FPGAs

  • you will have basic knowledge of embedded and Real-Time operating systems, and be able to implement them on an FPGA

Learning by doing:#

This is a practical course where you will work with the material through a set of exercises and an embedded systems project. The exercises will cover some of the relevant concepts presented in FYS4220 and lay the foundation for solving the measurement problem presented in the case presented above.

The embedded systems project will be based around a soft core CPU with the added peripherals required to communicate with the digital sensor and PC over standard serial interaces like UART[1], I2C[2], and SPI[3]. A simplified overview of the system you will build is shown in figure Fig. 2.

../_images/project_embedded_system.png

Fig. 2 Simplified overview of the embedded microcontroller system. The UART interface will be described in VHDL while the rest of the system will be generated using the Quartus Platform designer tool. All parts which are inside the larger box name Microcontroller system will be implemented on the FPGA while the digital sensor is separate chip on the FPGA development board, and PC is connected to the FPGA through a JTAG cable.#

The FPGA also has a JTAG[4] interface that will be used to both download your synthesized FPGA design to the configuration memory of the FPGA, and to download your compiled program to the internal memory of the microcontroller system. A separate chip on the FPGA board is responsible for translating from USB to JTAG.

The main objective of the project assignment is to gain knowledge and experience in building a small embedded microcontroller system on an FPGA. The application of the system is to readout data from a digital sensor (accelerometer), and to present this data on a PC.

../_images/fys4220_overview.png

The course will:

  • Briefly recap the basic building blocks of digital logic relevant for FPGAs:

    • logic gates, multiplexer, flip-flops.

  • Give an overview of programmable logic devices:

    • PROM, PLA, PAL, GAL, CPLD, FPGA.

  • Give an introduction to FPGA technology:

    • logic blocks, look-up tables (LUT), configuration bits, softcore and hardcore CPU.

  • Give an introduction to the hardware description languague VHDL:

    • design units, description models, VHDL objects and assignments, process statements, combination logic, synchronous logic, sequential logic, state machines, tools, design flow, simulation and test benches;

  • Cover basic concepts of embedded and real-time systems:

    • constraints and characteristics,

    • hardware abstraction,

    • task, scheduling, context switch, intertask communication (messages, queues, semaphores),

    • softcore implementation on FPGA (NIOS II) and memory mapped I/O

    • basic programming c.

You will find the relevant material on this site in the format of recorded topical videos and reading material. Supplementary material may be provided as links to other relavant text books, videos, or articles.