TP3 Fpga
TP3 Fpga
TP3 Fpga
GE 2èmme Année
FPGA
ING_GE TP 3 ESSAT GABES
T P N°2
I. Objectif
L’objectif de ce module de TP est, au travers de la réalisation de différents petits projets,
d’apprendre à utiliser les outils de la suite logicielle ISE design sofware de la société Xilinx
pour configurer des composants logiques programmables à partir d’une description en VHDL.
Pré Requis : connaître les fonctions logiques de base.
II. Déroulement
La conduite d’un projet simple comporte les étapes suivantes :
1. Description du projet avec le module ISE qui comporte différents modes d’entrée tels
que :
• Texte VHDL ou Verilog HDL
• Schéma bloc
• Machine d’états
2. Simulation fonctionnelle avec le module ModelSim
Cette étape permet d’entrer des stimuli, de simuler le comportement des éléments du projet
et de visualiser les résultats sous forme de chronogrammes ou de listes d’états.
3. Synthèse
L’outil de synthèse XST (Xilinx Synthesis Technology) crée, à partir des fichiers texte
VHDL, un fichier du type « netlist » de très bas niveau qui décrit les fonctions à implémenter
dans le composant.
4. Implémentation dans un CPLD (XCRP) ou FPGA (sapartanIII) ou (ARTIX7) carte
NEXYS4.
Elle comporte deux étapes :
• Traduction (Translation) du modèle logique du composant en une autre forme qui
tient compte de l’architecture du composant, et vérification de la validité des
contraintes imposées par l’utilisateur (temps de propagation, brochage).
• Adaptation du modèle précédant (Fitting) aux ressources du composant en tenant
compte des contraintes.
5. Simulation post-implémentation
Elle consiste à simuler le fonctionnement du composant en tenant compte du chemin suivi
par les signaux et donc des temps de propagation (simulateur ModelSim).
6. Programmation du composant
Elle commence par la création d’un fichier de programmation au format standard JEDEC
puis la configuration du composant sur l’application cible avec le logiciel iMPACT
Figure 1
Compte rendu
Les résultats obtenus à chaque étape de chaque projet seront analysés et consignés dans
un compte rendu sur l’ensemble des projets.
Pour chaque projet il sera présenté :
- La fonction du composant réalisé
- Une analyse du fichier source expliquant les nouvelles instructions utilisées
- Les tests proposés pour la simulation en justifiant leur choix.
- Les résultats de la simulation et leur interprétation.
- Les ressources utilisées après implémentation dans le composant
- Les équations logiques synthétisées
- Les résultats de tests effectués avec la carte d’évaluation
FPGA ESSAT
GABES
-- mode concourant
-- Le système est purement combinatoire
-- Il utilise le symbole d'affectation <=
-- La mise jour est effective à la dernière instruction
-- fichier Basic_gates.vhd
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
-- Fichier Comparateur.vhd
-- mode concourant
-- utilise l''assignation conditionnelle WHEN ... ELSE
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
begin
SUP <= '1' WHEN A>B ELSE '0';
INF <= '1' WHEN A<B ELSE '0';
EGAL <='1' WHEN A=B ELSE '0';
end Behavioral;
FPGA ESSAT
GABES
-- Exemple 3 : décodeur hexadecimal 7 segments
-- fichier Hex2seg.vhd
-- mode concourant
-- utilise un signal interne
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity HEX27SEG is
Port ( i : in std_logic_vector(3 downto 0); -- SW1,SW2,SW3,SW4
a : out std_logic; -- AA
b : out std_logic; -- AB
c : out std_logic; -- AC
d : out std_logic; -- AD
e : out std_logic; -- AE
f : out std_logic; -- AF
g : out std_logic; -- AG
cat1 : out std_logic; -- CAT1
cat2 : out std_logic); -- CAT2
end HEX27SEG;
a <= seg(0);
b <= seg(1);
c <= seg(2);
d <= seg(3);
e <= seg(4);
f <= seg(5);
g <= seg(6);
cat1 <= '0';
cat2 <= '1';
end Behavioral;
FPGA ESSAT
GABES
-- exemple 4 :décodeur BCD 7 segments
-- fichier BCD27SEG.vhd
-- mode concourant
-- utilise l'assignation conditionnelle WITH SELECT <= WHEN
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity BCD27SEG is
Port ( i : in std_logic_vector(3 downto 0); -- SW1,SW2,SW3,SW4
a : out std_logic; -- AA
b : out std_logic; -- AB
c : out std_logic; -- AC
d : out std_logic; -- AD
e : out std_logic; -- AE
f : out std_logic; -- AF
g : out std_logic; -- AG
cat1 : out std_logic; -- CAT1
cat2 : out std_logic); -- CAT2
end BCD27SEG;
a <= seg(0);
b <= seg(1);
c <= seg(2);
d <= seg(3);
e <= seg(4);
f <= seg(5);
g <= seg(6);
cat1 <= '0';
cat2 <= '1';
end Behavioral;
FPGA ESSAT
GABES
-- Exemple 5 : décodeur octal
-- fichier Decodeur_octal.vhd
-- mode combinatoire
-- utilise l'assignation conditionnelle IF THEN ELSE dans un process
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity Decodeur_Octal is
Port ( E : in std_logic_vector(2 downto 0); -- SW1,SW2,SW3
S0 : out std_logic; -- LED1
S1 : out std_logic; -- LED2
S2 : out std_logic; -- LED3
S3 : out std_logic; -- LED4
S4 : out std_logic; -- LED5
S5 : out std_logic; -- LED6
S6 : out std_logic; -- LED7
S7 : out std_logic); -- LED8
end Decodeur_Octal;
BEGIN
PROCESS(E) BEGIN
IF E="0000" THEN S0 <='1'; ELSE S0 <='0';END IF;
IF E="0001" THEN S1 <='1'; ELSE S1 <='0';END IF;
IF E="0010" THEN S2 <='1'; ELSE S2 <='0';END IF;
IF E="0011" THEN S3 <='1'; ELSE S3 <='0';END IF;
IF E="0100" THEN S4 <='1'; ELSE S4 <='0';END IF;
IF E="0101" THEN S5 <='1'; ELSE S5 <='0';END IF;
IF E="0110" THEN S6 <='1'; ELSE S6 <='0';END IF;
IF E="0111" THEN S7 <='1'; ELSE S7 <='0';END IF;
END PROCESS;
end Behavioral;
-- fichier Dec3V8.vhd
-- mode combinatoire
-- utilise l'assignation conditionnelle CASE dans un process
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity Decodeur3V8 is
Port ( SEL : in std_logic_vector(2 downto 0);-- SW1,SW2,SW3
S : out std_logic_vector(7 downto 0));-- LEDs 1 a 8
end Decodeur3V8;
end Behavioral;
-- fichier demux1V8
-- mode combinatoire
-- utilise l'assignation conditionnelle CASE dans un process
-- utilise le mot clé OTHERS
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity Demux1V8 is
Port ( E : in std_logic; -- BTN1
SEL : in std_logic_vector(2 downto 0); -- SW1,SW2,SW3
S : out std_logic_vector(7 downto 0)); -- LEDS 1 à 8
end Demux1V8;
BEGIN
PROCESS(SEL,E) BEGIN
CASE SEL IS
WHEN "000" => S <= (0=>E,OTHERS=>'0');
WHEN "001" => S <= (1=>E,OTHERS=>'0');
WHEN "010" => S <= (2=>E,OTHERS=>'0');
WHEN "011" => S <= (3=>E,OTHERS=>'0');
WHEN "100" => S <= (4=>E,OTHERS=>'0');
WHEN "101" => S <= (5=>E,OTHERS=>'0');
WHEN "110" => S <= (6=>E,OTHERS=>'0');
WHEN OTHERS => S <=(7=>E,OTHERS=>'0');
END CASE;
END PROCESS;
end Behavioral;
FPGA ESSAT
GABES
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity Com_Mot_2V is
Port ( Clk : in std_logic; -- MCLK
Rst : in std_logic; -- BTN1
Ma_PV : in std_logic; -- BTN2
MA_GV : in std_logic; -- BTN3
At : in std_logic; -- BTN4
K_PV : out std_logic; -- LED1
K_GV : out std_logic); -- LED2
end Com_Mot_2V;
Arriere
av <='0';
ar <='1';
Avant
av <= '1';
ar <= '0';
-- C:\JOB\XILINX_JOB\EXEMPLE_14\EX_14.vhd
-- VHDL code created by Xilinx's StateCAD 5.03
-- Sun Oct 17 10:53:40 2004
-- This VHDL code (for use with Xilinx XST) was generated using:
-- enumerated state assignment with structured code format.
-- Minimization is enabled, implied else is enabled,
-- and outputs are area optimized.
LIBRARY ieee;
USE ieee.std_logic_1164.all;
ENTITY EX_14 IS
PORT (CLK,at,mar,mav,rst: IN std_logic; --MCLK,BTN2,BTN1,BTN3,BTN4
ar,av : OUT std_logic);
END;
PROCESS (sreg,at,mar,mav)
BEGIN
ar <= '0'; av <= '0';
next_sreg<=Arret;
CASE sreg IS
WHEN Arret =>
av<='0';
ar<='0';
IF ( mav='0' AND mar='0' ) OR ( mar='1' AND mav='1'
THEN
next_sreg<=Arret;
END IF;
IF ( mav='1' AND mar='0' ) THEN
next_sreg<=Avant;
END IF;
IF ( mar='1' AND mav='0' ) THEN
next_sreg<=Arriere;
END IF;
WHEN Arriere =>
av<='0';
ar<='1';
IF ( at='1' ) THEN
next_sreg<=Arret;
ELSE
next_sreg<=Arriere;
END IF;
WHEN Avant =>
av<='1';
ar<='0';
IF ( at='1' ) THEN
next_sreg<=Arret;
ELSE
next_sreg<=Avant;
END IF;
WHEN OTHERS =>
END CASE;
END PROCESS;
END BEHAVIOR