@@ -0,0 +1,53 | |||||
|
1 | -- Bridge.vhd | |||
|
2 | library IEEE; | |||
|
3 | use IEEE.std_logic_1164.all; | |||
|
4 | use IEEE.numeric_std.all; | |||
|
5 | ||||
|
6 | entity Bridge is | |||
|
7 | port( | |||
|
8 | clk : in std_logic; | |||
|
9 | raz : in std_logic; | |||
|
10 | EmptyUp : in std_logic; | |||
|
11 | FullDwn : in std_logic; | |||
|
12 | WriteDwn : out std_logic; | |||
|
13 | ReadUp : out std_logic | |||
|
14 | ); | |||
|
15 | end entity; | |||
|
16 | ||||
|
17 | ||||
|
18 | architecture ar_Bridge of Bridge is | |||
|
19 | ||||
|
20 | type etat is (e0,e1); | |||
|
21 | signal ect : etat; | |||
|
22 | ||||
|
23 | begin | |||
|
24 | ||||
|
25 | process(clk,raz) | |||
|
26 | begin | |||
|
27 | if(raz='0')then | |||
|
28 | WriteDwn <= '1'; | |||
|
29 | ReadUp <= '1'; | |||
|
30 | ect <= e0; | |||
|
31 | ||||
|
32 | elsif(clk'event and clk='1')then | |||
|
33 | ||||
|
34 | case ect is | |||
|
35 | ||||
|
36 | when e0 => | |||
|
37 | WriteDwn <= '1'; | |||
|
38 | if(EmptyUp='0' and FullDwn='0')then | |||
|
39 | ReadUp <= '0'; | |||
|
40 | ect <= e1; | |||
|
41 | end if; | |||
|
42 | ||||
|
43 | when e1 => | |||
|
44 | ReadUp <= '1'; | |||
|
45 | WriteDwn <= '0'; | |||
|
46 | ect <= e0; | |||
|
47 | ||||
|
48 | end case; | |||
|
49 | ||||
|
50 | end if; | |||
|
51 | end process; | |||
|
52 | ||||
|
53 | end architecture; No newline at end of file |
@@ -1,130 +1,127 | |||||
1 | ------------------------------------------------------------------------------ |
|
1 | ------------------------------------------------------------------------------ | |
2 | -- This file is a part of the LPP VHDL IP LIBRARY |
|
2 | -- This file is a part of the LPP VHDL IP LIBRARY | |
3 | -- Copyright (C) 2009 - 2010, Laboratory of Plasmas Physic - CNRS |
|
3 | -- Copyright (C) 2009 - 2010, Laboratory of Plasmas Physic - CNRS | |
4 | -- |
|
4 | -- | |
5 | -- This program is free software; you can redistribute it and/or modify |
|
5 | -- This program is free software; you can redistribute it and/or modify | |
6 | -- it under the terms of the GNU General Public License as published by |
|
6 | -- it under the terms of the GNU General Public License as published by | |
7 | -- the Free Software Foundation; either version 3 of the License, or |
|
7 | -- the Free Software Foundation; either version 3 of the License, or | |
8 | -- (at your option) any later version. |
|
8 | -- (at your option) any later version. | |
9 | -- |
|
9 | -- | |
10 | -- This program is distributed in the hope that it will be useful, |
|
10 | -- This program is distributed in the hope that it will be useful, | |
11 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | -- GNU General Public License for more details. |
|
13 | -- GNU General Public License for more details. | |
14 | -- |
|
14 | -- | |
15 | -- You should have received a copy of the GNU General Public License |
|
15 | -- You should have received a copy of the GNU General Public License | |
16 | -- along with this program; if not, write to the Free Software |
|
16 | -- along with this program; if not, write to the Free Software | |
17 | -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
17 | -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 | ------------------------------------------------------------------------------ |
|
18 | ------------------------------------------------------------------------------ | |
19 | -- Author : Martin Morlot |
|
19 | -- Author : Martin Morlot | |
20 | -- Mail : martin.morlot@lpp.polytechnique.fr |
|
20 | -- Mail : martin.morlot@lpp.polytechnique.fr | |
21 | ------------------------------------------------------------------------------ |
|
21 | ------------------------------------------------------------------------------ | |
22 | library ieee; |
|
22 | library ieee; | |
23 | use ieee.std_logic_1164.all; |
|
23 | use ieee.std_logic_1164.all; | |
24 | library grlib; |
|
24 | library grlib; | |
25 | use grlib.amba.all; |
|
25 | use grlib.amba.all; | |
26 | use grlib.stdlib.all; |
|
26 | use grlib.stdlib.all; | |
27 | use grlib.devices.all; |
|
27 | use grlib.devices.all; | |
28 | library lpp; |
|
28 | library lpp; | |
29 | use lpp.lpp_amba.all; |
|
29 | use lpp.lpp_amba.all; | |
30 | use lpp.apb_devices_list.all; |
|
30 | use lpp.apb_devices_list.all; | |
31 | use lpp.lpp_cna.all; |
|
31 | use lpp.lpp_cna.all; | |
32 |
|
32 | |||
33 | --! Driver APB, va faire le lien entre l'IP VHDL du convertisseur et le bus Amba |
|
33 | --! Driver APB, va faire le lien entre l'IP VHDL du convertisseur et le bus Amba | |
34 |
|
34 | |||
35 | entity APB_DAC is |
|
35 | entity APB_DAC is | |
36 | generic ( |
|
36 | generic ( | |
37 | pindex : integer := 0; |
|
37 | pindex : integer := 0; | |
38 | paddr : integer := 0; |
|
38 | paddr : integer := 0; | |
39 | pmask : integer := 16#fff#; |
|
39 | pmask : integer := 16#fff#; | |
40 | pirq : integer := 0; |
|
40 | pirq : integer := 0; | |
41 | abits : integer := 8; |
|
41 | abits : integer := 8; | |
42 | cpt_serial : integer := 6); |
|
42 | cpt_serial : integer := 6); | |
43 | port ( |
|
43 | port ( | |
44 | clk : in std_logic; --! Horloge du composant |
|
44 | clk : in std_logic; --! Horloge du composant | |
45 | rst : in std_logic; --! Reset general du composant |
|
45 | rst : in std_logic; --! Reset general du composant | |
46 | apbi : in apb_slv_in_type; --! Registre de gestion des entr�es du bus |
|
46 | apbi : in apb_slv_in_type; --! Registre de gestion des entr�es du bus | |
47 | apbo : out apb_slv_out_type; --! Registre de gestion des sorties du bus |
|
47 | apbo : out apb_slv_out_type; --! Registre de gestion des sorties du bus | |
48 | DataIN : in std_logic_vector(15 downto 0); |
|
|||
49 | Cal_EN : out std_logic; --! Signal Enable du multiplex pour la CAL |
|
48 | Cal_EN : out std_logic; --! Signal Enable du multiplex pour la CAL | |
50 | Readn : out std_logic; |
|
|||
51 | SYNC : out std_logic; --! Signal de synchronisation du convertisseur |
|
49 | SYNC : out std_logic; --! Signal de synchronisation du convertisseur | |
52 | SCLK : out std_logic; --! Horloge systeme du convertisseur |
|
50 | SCLK : out std_logic; --! Horloge systeme du convertisseur | |
53 | DATA : out std_logic --! Donn�e num�rique s�rialis� |
|
51 | DATA : out std_logic --! Donn�e num�rique s�rialis� | |
54 | ); |
|
52 | ); | |
55 | end entity; |
|
53 | end entity; | |
56 |
|
54 | |||
57 | --! @details Les deux registres (apbi,apbo) permettent de g�rer la communication sur le bus |
|
55 | --! @details Les deux registres (apbi,apbo) permettent de g�rer la communication sur le bus | |
58 | --! et les sorties seront cabl�es vers le convertisseur. |
|
56 | --! et les sorties seront cabl�es vers le convertisseur. | |
59 |
|
57 | |||
60 | architecture ar_APB_DAC of APB_DAC is |
|
58 | architecture ar_APB_DAC of APB_DAC is | |
61 |
|
59 | |||
62 | constant REVISION : integer := 1; |
|
60 | constant REVISION : integer := 1; | |
63 |
|
61 | |||
64 | constant pconfig : apb_config_type := ( |
|
62 | constant pconfig : apb_config_type := ( | |
65 | 0 => ahb_device_reg (VENDOR_LPP, LPP_CNA, 0, REVISION, 0), |
|
63 | 0 => ahb_device_reg (VENDOR_LPP, LPP_CNA, 0, REVISION, 0), | |
66 | 1 => apb_iobar(paddr, pmask)); |
|
64 | 1 => apb_iobar(paddr, pmask)); | |
67 |
|
65 | |||
68 | signal enable : std_logic; |
|
66 | signal enable : std_logic; | |
69 |
|
|
67 | signal Ready : std_logic; | |
70 |
|
68 | |||
71 | type DAC_ctrlr_Reg is record |
|
69 | type DAC_ctrlr_Reg is record | |
72 |
DAC_ |
|
70 | DAC_Cfg : std_logic_vector(1 downto 0); | |
73 |
|
|
71 | DAC_Data : std_logic_vector(15 downto 0); | |
74 | end record; |
|
72 | end record; | |
75 |
|
73 | |||
76 | signal Rec : DAC_ctrlr_Reg; |
|
74 | signal Rec : DAC_ctrlr_Reg; | |
77 | signal Rdata : std_logic_vector(31 downto 0); |
|
75 | signal Rdata : std_logic_vector(31 downto 0); | |
78 |
|
76 | |||
79 | begin |
|
77 | begin | |
80 |
|
78 | |||
81 |
enable <= Rec.DAC_ |
|
79 | enable <= Rec.DAC_Cfg(0); | |
82 |
|
|
80 | Rec.DAC_Cfg(1) <= Ready; | |
83 |
|
81 | |||
84 | CONV0 : DacDriver |
|
82 | CONV0 : DacDriver | |
85 | generic map(cpt_serial) |
|
83 | generic map (cpt_serial) | |
86 |
port map(clk,rst,enable,Data |
|
84 | port map(clk,rst,enable,Rec.DAC_Data,SYNC,SCLK,Ready,Data); | |
87 |
|
85 | |||
88 |
|
86 | |||
89 | process(rst,clk) |
|
87 | process(rst,clk) | |
90 | begin |
|
88 | begin | |
91 | if(rst='0')then |
|
89 | if(rst='0')then | |
92 |
|
|
90 | Rec.DAC_Data <= (others => '0'); | |
93 | Rec.DAC_Enable(0) <= '0'; |
|
|||
94 |
|
91 | |||
95 | elsif(clk'event and clk='1')then |
|
92 | elsif(clk'event and clk='1')then | |
96 |
|
93 | |||
97 |
|
94 | |||
98 | --APB Write OP |
|
95 | --APB Write OP | |
99 | if (apbi.psel(pindex) and apbi.penable and apbi.pwrite) = '1' then |
|
96 | if (apbi.psel(pindex) and apbi.penable and apbi.pwrite) = '1' then | |
100 | case apbi.paddr(abits-1 downto 2) is |
|
97 | case apbi.paddr(abits-1 downto 2) is | |
101 | when "000000" => |
|
98 | when "000000" => | |
102 |
Rec.DAC_ |
|
99 | Rec.DAC_Cfg(0) <= apbi.pwdata(0); | |
103 |
|
|
100 | when "000001" => | |
104 |
|
|
101 | Rec.DAC_Data <= apbi.pwdata(15 downto 0); | |
105 | when others => |
|
102 | when others => | |
106 | null; |
|
103 | null; | |
107 | end case; |
|
104 | end case; | |
108 | end if; |
|
105 | end if; | |
109 |
|
106 | |||
110 | --APB Read OP |
|
107 | --APB Read OP | |
111 | if (apbi.psel(pindex) and (not apbi.pwrite)) = '1' then |
|
108 | if (apbi.psel(pindex) and (not apbi.pwrite)) = '1' then | |
112 | case apbi.paddr(abits-1 downto 2) is |
|
109 | case apbi.paddr(abits-1 downto 2) is | |
113 | when "000000" => |
|
110 | when "000000" => | |
114 |
Rdata(31 downto |
|
111 | Rdata(31 downto 2) <= X"ABCDEF5" & "00"; | |
115 |
Rdata( |
|
112 | Rdata(1 downto 0) <= Rec.DAC_Cfg; | |
116 |
|
|
113 | when "000001" => | |
117 |
|
|
114 | Rdata(31 downto 16) <= X"FD18"; | |
118 |
|
|
115 | Rdata(15 downto 0) <= Rec.DAC_Data; | |
119 | when others => |
|
116 | when others => | |
120 | Rdata <= (others => '0'); |
|
117 | Rdata <= (others => '0'); | |
121 | end case; |
|
118 | end case; | |
122 | end if; |
|
119 | end if; | |
123 |
|
120 | |||
124 | end if; |
|
121 | end if; | |
125 | apbo.pconfig <= pconfig; |
|
122 | apbo.pconfig <= pconfig; | |
126 | end process; |
|
123 | end process; | |
127 |
|
124 | |||
128 | apbo.prdata <= Rdata when apbi.penable = '1'; |
|
125 | apbo.prdata <= Rdata when apbi.penable = '1'; | |
129 |
Cal_EN <= |
|
126 | Cal_EN <= enable; | |
130 | end architecture; No newline at end of file |
|
127 | end architecture; |
@@ -1,71 +1,68 | |||||
1 | ------------------------------------------------------------------------------ |
|
1 | ------------------------------------------------------------------------------ | |
2 | -- This file is a part of the LPP VHDL IP LIBRARY |
|
2 | -- This file is a part of the LPP VHDL IP LIBRARY | |
3 | -- Copyright (C) 2009 - 2010, Laboratory of Plasmas Physic - CNRS |
|
3 | -- Copyright (C) 2009 - 2010, Laboratory of Plasmas Physic - CNRS | |
4 | -- |
|
4 | -- | |
5 | -- This program is free software; you can redistribute it and/or modify |
|
5 | -- This program is free software; you can redistribute it and/or modify | |
6 | -- it under the terms of the GNU General Public License as published by |
|
6 | -- it under the terms of the GNU General Public License as published by | |
7 | -- the Free Software Foundation; either version 3 of the License, or |
|
7 | -- the Free Software Foundation; either version 3 of the License, or | |
8 | -- (at your option) any later version. |
|
8 | -- (at your option) any later version. | |
9 | -- |
|
9 | -- | |
10 | -- This program is distributed in the hope that it will be useful, |
|
10 | -- This program is distributed in the hope that it will be useful, | |
11 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | -- GNU General Public License for more details. |
|
13 | -- GNU General Public License for more details. | |
14 | -- |
|
14 | -- | |
15 | -- You should have received a copy of the GNU General Public License |
|
15 | -- You should have received a copy of the GNU General Public License | |
16 | -- along with this program; if not, write to the Free Software |
|
16 | -- along with this program; if not, write to the Free Software | |
17 | -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
17 | -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 | ------------------------------------------------------------------------------ |
|
18 | ------------------------------------------------------------------------------ | |
19 | -- Author : Martin Morlot |
|
19 | -- Author : Martin Morlot | |
20 | -- Mail : martin.morlot@lpp.polytechnique.fr |
|
20 | -- Mail : martin.morlot@lpp.polytechnique.fr | |
21 | ------------------------------------------------------------------------------ |
|
21 | ------------------------------------------------------------------------------ | |
22 | library IEEE; |
|
22 | library IEEE; | |
23 | use IEEE.std_logic_1164.all; |
|
23 | use IEEE.std_logic_1164.all; | |
24 | use IEEE.numeric_std.all; |
|
24 | use IEEE.numeric_std.all; | |
25 | use lpp.lpp_cna.all; |
|
25 | use lpp.lpp_cna.all; | |
26 |
|
26 | |||
27 | --! Programme du Convertisseur Num�rique/Analogique |
|
27 | --! Programme du Convertisseur Num�rique/Analogique | |
28 |
|
28 | |||
29 | entity DacDriver is |
|
29 | entity DacDriver is | |
30 |
|
|
30 | generic(cpt_serial : integer := 6); --! G�n�rique contenant le r�sultat de la division clk/sclk !!! clk=25Mhz | |
31 | port( |
|
31 | port( | |
32 | clk : in std_logic; --! Horloge du composant |
|
32 | clk : in std_logic; --! Horloge du composant | |
33 | rst : in std_logic; --! Reset general du composant |
|
33 | rst : in std_logic; --! Reset general du composant | |
34 | enable : in std_logic; --! Autorise ou non l'utilisation du composant |
|
34 | enable : in std_logic; --! Autorise ou non l'utilisation du composant | |
35 |
Data_ |
|
35 | Data_C : in std_logic_vector(15 downto 0); --! Donn�e Num�rique d'entr�e sur 16 bits | |
36 | SYNC : out std_logic; --! Signal de synchronisation du convertisseur |
|
36 | SYNC : out std_logic; --! Signal de synchronisation du convertisseur | |
37 | SCLK : out std_logic; --! Horloge systeme du convertisseur |
|
37 | SCLK : out std_logic; --! Horloge systeme du convertisseur | |
38 |
Read |
|
38 | Ready : out std_logic; --! Flag, signale la fin de la s�rialisation d'une donn�e | |
39 | Data : out std_logic --! Donn�e num�rique s�rialis� |
|
39 | Data : out std_logic --! Donn�e num�rique s�rialis� | |
40 | ); |
|
40 | ); | |
41 | end entity; |
|
41 | end entity; | |
42 |
|
42 | |||
43 | --! @details Un driver C va permettre de g�nerer un tableau de donn�es sur 16 bits, |
|
43 | --! @details Un driver C va permettre de g�nerer un tableau de donn�es sur 16 bits, | |
44 | --! qui seront s�rialis� pour �tre ensuite dirig�es vers le convertisseur. |
|
44 | --! qui seront s�rialis� pour �tre ensuite dirig�es vers le convertisseur. | |
45 |
|
45 | |||
46 | architecture ar_DacDriver of DacDriver is |
|
46 | architecture ar_DacDriver of DacDriver is | |
47 |
|
47 | |||
48 | signal s_SCLK : std_logic; |
|
48 | signal s_SCLK : std_logic; | |
49 |
signal |
|
49 | signal Sended : std_logic; | |
50 |
|
50 | |||
51 | begin |
|
51 | begin | |
52 |
|
52 | |||
53 | SystemCLK : Systeme_Clock |
|
53 | SystemCLK : Systeme_Clock | |
54 | generic map (cpt_serial) |
|
54 | generic map (cpt_serial) | |
55 | port map (clk,rst,s_SCLK); |
|
55 | port map (clk,rst,s_SCLK); | |
56 |
|
56 | |||
57 |
|
57 | |||
58 | Signal_sync : Gene_SYNC |
|
58 | Signal_sync : Gene_SYNC | |
59 |
port map (s_SCLK,rst,enable, |
|
59 | port map (s_SCLK,rst,enable,Sended,SYNC); | |
60 |
|
60 | |||
61 |
|
61 | |||
62 | Serial : serialize |
|
62 | Serial : serialize | |
63 |
port map (clk,rst,s_SCLK,Data_ |
|
63 | port map (clk,rst,s_SCLK,Data_C,Sended,Ready,Data); | |
64 |
|
64 | |||
65 | RenGEN : ReadFifo_GEN |
|
|||
66 | port map (clk,rst,s_SYNC,Readn); |
|
|||
67 |
|
65 | |||
68 | SCLK <= s_SCLK; |
|
66 | SCLK <= s_SCLK; | |
69 | SYNC <= s_SYNC; |
|
|||
70 |
|
67 | |||
71 | end architecture; No newline at end of file |
|
68 | end architecture; |
@@ -1,70 +1,69 | |||||
1 | ------------------------------------------------------------------------------ |
|
1 | ------------------------------------------------------------------------------ | |
2 | -- This file is a part of the LPP VHDL IP LIBRARY |
|
2 | -- This file is a part of the LPP VHDL IP LIBRARY | |
3 | -- Copyright (C) 2009 - 2010, Laboratory of Plasmas Physic - CNRS |
|
3 | -- Copyright (C) 2009 - 2010, Laboratory of Plasmas Physic - CNRS | |
4 | -- |
|
4 | -- | |
5 | -- This program is free software; you can redistribute it and/or modify |
|
5 | -- This program is free software; you can redistribute it and/or modify | |
6 | -- it under the terms of the GNU General Public License as published by |
|
6 | -- it under the terms of the GNU General Public License as published by | |
7 | -- the Free Software Foundation; either version 3 of the License, or |
|
7 | -- the Free Software Foundation; either version 3 of the License, or | |
8 | -- (at your option) any later version. |
|
8 | -- (at your option) any later version. | |
9 | -- |
|
9 | -- | |
10 | -- This program is distributed in the hope that it will be useful, |
|
10 | -- This program is distributed in the hope that it will be useful, | |
11 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | -- GNU General Public License for more details. |
|
13 | -- GNU General Public License for more details. | |
14 | -- |
|
14 | -- | |
15 | -- You should have received a copy of the GNU General Public License |
|
15 | -- You should have received a copy of the GNU General Public License | |
16 | -- along with this program; if not, write to the Free Software |
|
16 | -- along with this program; if not, write to the Free Software | |
17 | -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
17 | -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 | ------------------------------------------------------------------------------ |
|
18 | ------------------------------------------------------------------------------ | |
19 | -- Author : Martin Morlot |
|
19 | -- Author : Martin Morlot | |
20 | -- Mail : martin.morlot@lpp.polytechnique.fr |
|
20 | -- Mail : martin.morlot@lpp.polytechnique.fr | |
21 | ------------------------------------------------------------------------------ |
|
21 | ------------------------------------------------------------------------------ | |
22 | library IEEE; |
|
22 | library IEEE; | |
23 | use IEEE.std_logic_1164.all; |
|
23 | use IEEE.std_logic_1164.all; | |
24 | use IEEE.numeric_std.all; |
|
24 | use IEEE.numeric_std.all; | |
25 |
|
25 | |||
26 | --! Programme qui va permettre de g�n�rer le signal SYNC |
|
26 | --! Programme qui va permettre de g�n�rer le signal SYNC | |
27 |
|
27 | |||
28 | entity Gene_SYNC is |
|
28 | entity Gene_SYNC is | |
29 | port( |
|
29 | port( | |
30 | SCLK,raz : in std_logic; --! Horloge systeme et Reset du composant |
|
30 | SCLK,raz : in std_logic; --! Horloge systeme et Reset du composant | |
31 | enable : in std_logic; --! Autorise ou non l'utilisation du composant |
|
31 | enable : in std_logic; --! Autorise ou non l'utilisation du composant | |
32 |
|
|
32 | Sended : out std_logic; --! Flag, Autorise l'envoi (s�rialisation) d'une nouvelle donn�e | |
33 | SYNC : out std_logic --! Signal de synchronisation du convertisseur g�n�r� |
|
33 | SYNC : out std_logic --! Signal de synchronisation du convertisseur g�n�r� | |
34 | ); |
|
34 | ); | |
35 | end Gene_SYNC; |
|
35 | end Gene_SYNC; | |
36 |
|
36 | |||
37 | --! @details NB: Ce programme est uniquement synchronis� sur l'horloge Systeme (sclk) |
|
37 | --! @details NB: Ce programme est uniquement synchronis� sur l'horloge Systeme (sclk) | |
38 |
|
38 | |||
39 | architecture ar_Gene_SYNC of Gene_SYNC is |
|
39 | architecture ar_Gene_SYNC of Gene_SYNC is | |
40 |
|
40 | |||
41 | signal count : integer; |
|
41 | signal count : integer; | |
42 |
|
42 | |||
43 | begin |
|
43 | begin | |
44 | process (SCLK,raz) |
|
44 | process (SCLK,raz) | |
45 | begin |
|
45 | begin | |
46 | if(raz='0')then |
|
46 | if(raz='0')then | |
47 | SYNC <= '0'; |
|
47 | SYNC <= '0'; | |
48 | count <= 14; |
|
48 | count <= 14; | |
49 |
|
|
49 | Sended <= '0'; | |
50 |
|
50 | |||
51 | elsif(SCLK' event and SCLK='1')then |
|
51 | elsif(SCLK' event and SCLK='1')then | |
52 | if(enable='1')then |
|
52 | if(enable='1')then | |
53 |
|
53 | |||
54 | if(count=15)then |
|
54 | if(count=15)then | |
55 | SYNC <= '1'; |
|
55 | SYNC <= '1'; | |
56 |
|
|
56 | count <= count+1; | |
57 |
|
|
57 | elsif(count=16)then | |
58 | count <= 0; |
|
58 | count <= 0; | |
59 |
|
|
59 | SYNC <= '0'; | |
60 |
|
|
60 | Sended <= '1'; | |
61 | else |
|
61 | else | |
62 | count <= count+1; |
|
62 | count <= count+1; | |
63 |
S |
|
63 | Sended <= '0'; | |
64 | -- OKAI_send <= '0'; |
|
|||
65 | end if; |
|
64 | end if; | |
66 |
|
65 | |||
67 | end if; |
|
66 | end if; | |
68 | end if; |
|
67 | end if; | |
69 | end process; |
|
68 | end process; | |
70 | end ar_Gene_SYNC; No newline at end of file |
|
69 | end ar_Gene_SYNC; |
@@ -1,116 +1,107 | |||||
1 | ------------------------------------------------------------------------------ |
|
1 | ------------------------------------------------------------------------------ | |
2 | -- This file is a part of the LPP VHDL IP LIBRARY |
|
2 | -- This file is a part of the LPP VHDL IP LIBRARY | |
3 | -- Copyright (C) 2009 - 2010, Laboratory of Plasmas Physic - CNRS |
|
3 | -- Copyright (C) 2009 - 2010, Laboratory of Plasmas Physic - CNRS | |
4 | -- |
|
4 | -- | |
5 | -- This program is free software; you can redistribute it and/or modify |
|
5 | -- This program is free software; you can redistribute it and/or modify | |
6 | -- it under the terms of the GNU General Public License as published by |
|
6 | -- it under the terms of the GNU General Public License as published by | |
7 | -- the Free Software Foundation; either version 3 of the License, or |
|
7 | -- the Free Software Foundation; either version 3 of the License, or | |
8 | -- (at your option) any later version. |
|
8 | -- (at your option) any later version. | |
9 | -- |
|
9 | -- | |
10 | -- This program is distributed in the hope that it will be useful, |
|
10 | -- This program is distributed in the hope that it will be useful, | |
11 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | -- GNU General Public License for more details. |
|
13 | -- GNU General Public License for more details. | |
14 | -- |
|
14 | -- | |
15 | -- You should have received a copy of the GNU General Public License |
|
15 | -- You should have received a copy of the GNU General Public License | |
16 | -- along with this program; if not, write to the Free Software |
|
16 | -- along with this program; if not, write to the Free Software | |
17 | -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
17 | -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 | ------------------------------------------------------------------------------ |
|
18 | ------------------------------------------------------------------------------ | |
19 | -- Author : Martin Morlot |
|
19 | -- Author : Martin Morlot | |
20 | -- Mail : martin.morlot@lpp.polytechnique.fr |
|
20 | -- Mail : martin.morlot@lpp.polytechnique.fr | |
21 | ------------------------------------------------------------------------------ |
|
21 | ------------------------------------------------------------------------------ | |
22 | library IEEE; |
|
22 | library IEEE; | |
23 | use IEEE.numeric_std.all; |
|
23 | use IEEE.numeric_std.all; | |
24 | use IEEE.std_logic_1164.all; |
|
24 | use IEEE.std_logic_1164.all; | |
25 |
|
25 | |||
26 | --! Programme qui permet de s�rialiser un vecteur |
|
26 | --! Programme qui permet de s�rialiser un vecteur | |
27 |
|
27 | |||
28 | entity Serialize is |
|
28 | entity Serialize is | |
29 | port( |
|
29 | port( | |
30 | clk,raz : in std_logic; --! Horloge et Reset du composant |
|
30 | clk,raz : in std_logic; --! Horloge et Reset du composant | |
31 | sclk : in std_logic; --! Horloge Systeme |
|
31 | sclk : in std_logic; --! Horloge Systeme | |
32 | vectin : in std_logic_vector(15 downto 0); --! Vecteur d'entr�e |
|
32 | vectin : in std_logic_vector(15 downto 0); --! Vecteur d'entr�e | |
33 | send : in std_logic; --! Flag, Une nouvelle donn�e est pr�sente |
|
33 | send : in std_logic; --! Flag, Une nouvelle donn�e est pr�sente | |
34 |
|
|
34 | sended : out std_logic; --! Flag, La donn�e a �t� s�rialis�e | |
35 | Data : out std_logic --! Donn�e num�rique s�rialis� |
|
35 | Data : out std_logic --! Donn�e num�rique s�rialis� | |
36 | ); |
|
36 | ); | |
37 | end Serialize; |
|
37 | end Serialize; | |
38 |
|
38 | |||
39 |
|
39 | |||
40 | architecture ar_Serialize of Serialize is |
|
40 | architecture ar_Serialize of Serialize is | |
41 |
|
41 | |||
42 |
type etat is (attente,serialize |
|
42 | type etat is (attente,serialize); | |
43 | signal ect : etat; |
|
43 | signal ect : etat; | |
44 |
|
44 | |||
45 | signal vector_int : std_logic_vector(16 downto 0); |
|
45 | signal vector_int : std_logic_vector(16 downto 0); | |
46 | signal vectin_reg : std_logic_vector(15 downto 0); |
|
46 | signal vectin_reg : std_logic_vector(15 downto 0); | |
47 | signal load : std_logic; |
|
47 | signal load : std_logic; | |
48 | signal N : integer range 0 to 16; |
|
48 | signal N : integer range 0 to 16; | |
49 | signal CPT_ended : std_logic:='0'; |
|
49 | signal CPT_ended : std_logic:='0'; | |
50 | signal i : std_logic; |
|
|||
51 |
|
50 | |||
52 | begin |
|
51 | begin | |
53 | process(clk,raz) |
|
52 | process(clk,raz) | |
54 | begin |
|
53 | begin | |
55 | if(raz='0')then |
|
54 | if(raz='0')then | |
56 | ect <= attente; |
|
55 | ect <= attente; | |
57 | vectin_reg <= (others=> '0'); |
|
56 | vectin_reg <= (others=> '0'); | |
58 | load <= '0'; |
|
57 | load <= '0'; | |
59 |
|
|
58 | sended <= '1'; | |
60 | -- sended <= '1'; |
|
|||
61 |
|
|
59 | ||
62 |
|
|
60 | elsif(clk'event and clk='1')then | |
63 | vectin_reg <= vectin; |
|
61 | vectin_reg <= vectin; | |
64 |
|
62 | |||
65 | case ect is |
|
63 | case ect is | |
66 | when attente => |
|
64 | when attente => | |
67 | if (send='1') then |
|
65 | if (send='1') then | |
68 |
|
|
66 | sended <= '0'; | |
69 | if(i='1')then |
|
67 | load <= '1'; | |
70 |
|
|
68 | ect <= serialize; | |
71 | ect <= reg; |
|
69 | else | |
72 | else |
|
70 | ect <= attente; | |
73 | load <= '1'; |
|
|||
74 | ect <= serialize; |
|
|||
75 | end if; |
|
|||
76 | end if; |
|
71 | end if; | |
77 |
|
72 | |||
78 | when reg => |
|
|||
79 | load <= '1'; |
|
|||
80 | ect <= serialize; |
|
|||
81 |
|
||||
82 | when serialize => |
|
73 | when serialize => | |
83 | load <= '0'; |
|
74 | load <= '0'; | |
84 | if(CPT_ended='1')then |
|
75 | if(CPT_ended='1')then | |
85 | ect <= attente; |
|
76 | ect <= attente; | |
86 |
|
|
77 | sended <= '1'; | |
87 |
|
|
78 | end if; | |
88 |
|
79 | |||
89 | end case; |
|
80 | end case; | |
90 | end if; |
|
81 | end if; | |
91 | end process; |
|
82 | end process; | |
92 |
|
83 | |||
93 | process(sclk,load,raz) |
|
84 | process(sclk,load,raz) | |
94 | begin |
|
85 | begin | |
95 | if (raz='0')then |
|
86 | if (raz='0')then | |
96 | vector_int <= (others=> '0'); |
|
87 | vector_int <= (others=> '0'); | |
97 | N <= 16; |
|
88 | N <= 16; | |
98 | elsif(load='1')then |
|
89 | elsif(load='1')then | |
99 | vector_int <= vectin & '0'; |
|
90 | vector_int <= vectin & '0'; | |
100 | N <= 0; |
|
91 | N <= 0; | |
101 | elsif(sclk'event and sclk='1')then |
|
92 | elsif(sclk'event and sclk='1')then | |
102 | if (CPT_ended='0') then |
|
93 | if (CPT_ended='0') then | |
103 | vector_int <= vector_int(15 downto 0) & '0'; |
|
94 | vector_int <= vector_int(15 downto 0) & '0'; | |
104 | N <= N+1; |
|
95 | N <= N+1; | |
105 | end if; |
|
96 | end if; | |
106 | end if; |
|
97 | end if; | |
107 | end process; |
|
98 | end process; | |
108 |
|
99 | |||
109 | CPT_ended <= '1' when N = 16 else '0'; |
|
100 | CPT_ended <= '1' when N = 16 else '0'; | |
110 |
|
101 | |||
111 | with ect select |
|
102 | with ect select | |
112 | Data <= vector_int(16) when serialize, |
|
103 | Data <= vector_int(16) when serialize, | |
113 | '0' when others; |
|
104 | '0' when others; | |
114 |
|
105 | |||
115 | end ar_Serialize; |
|
106 | end ar_Serialize; | |
116 |
|
107 |
@@ -1,108 +1,96 | |||||
1 | ------------------------------------------------------------------------------ |
|
1 | ------------------------------------------------------------------------------ | |
2 | -- This file is a part of the LPP VHDL IP LIBRARY |
|
2 | -- This file is a part of the LPP VHDL IP LIBRARY | |
3 | -- Copyright (C) 2009 - 2010, Laboratory of Plasmas Physic - CNRS |
|
3 | -- Copyright (C) 2009 - 2010, Laboratory of Plasmas Physic - CNRS | |
4 | -- |
|
4 | -- | |
5 | -- This program is free software; you can redistribute it and/or modify |
|
5 | -- This program is free software; you can redistribute it and/or modify | |
6 | -- it under the terms of the GNU General Public License as published by |
|
6 | -- it under the terms of the GNU General Public License as published by | |
7 | -- the Free Software Foundation; either version 3 of the License, or |
|
7 | -- the Free Software Foundation; either version 3 of the License, or | |
8 | -- (at your option) any later version. |
|
8 | -- (at your option) any later version. | |
9 | -- |
|
9 | -- | |
10 | -- This program is distributed in the hope that it will be useful, |
|
10 | -- This program is distributed in the hope that it will be useful, | |
11 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | -- GNU General Public License for more details. |
|
13 | -- GNU General Public License for more details. | |
14 | -- |
|
14 | -- | |
15 | -- You should have received a copy of the GNU General Public License |
|
15 | -- You should have received a copy of the GNU General Public License | |
16 | -- along with this program; if not, write to the Free Software |
|
16 | -- along with this program; if not, write to the Free Software | |
17 | -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
17 | -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 | ------------------------------------------------------------------------------ |
|
18 | ------------------------------------------------------------------------------ | |
19 | -- Author : Martin Morlot |
|
19 | -- Author : Martin Morlot | |
20 | -- Mail : martin.morlot@lpp.polytechnique.fr |
|
20 | -- Mail : martin.morlot@lpp.polytechnique.fr | |
21 | ------------------------------------------------------------------------------ |
|
21 | ------------------------------------------------------------------------------ | |
22 | library ieee; |
|
22 | library ieee; | |
23 | use ieee.std_logic_1164.all; |
|
23 | use ieee.std_logic_1164.all; | |
24 | library grlib; |
|
24 | library grlib; | |
25 | use grlib.amba.all; |
|
25 | use grlib.amba.all; | |
26 | use std.textio.all; |
|
26 | use std.textio.all; | |
27 | library lpp; |
|
27 | library lpp; | |
28 | use lpp.lpp_amba.all; |
|
28 | use lpp.lpp_amba.all; | |
29 |
|
29 | |||
30 | --! Package contenant tous les programmes qui forment le composant int�gr� dans le l�on |
|
30 | --! Package contenant tous les programmes qui forment le composant int�gr� dans le l�on | |
31 |
|
31 | |||
32 | package lpp_cna is |
|
32 | package lpp_cna is | |
33 |
|
33 | |||
34 | component APB_DAC is |
|
34 | component APB_DAC is | |
35 | generic ( |
|
35 | generic ( | |
36 | pindex : integer := 0; |
|
36 | pindex : integer := 0; | |
37 | paddr : integer := 0; |
|
37 | paddr : integer := 0; | |
38 | pmask : integer := 16#fff#; |
|
38 | pmask : integer := 16#fff#; | |
39 | pirq : integer := 0; |
|
39 | pirq : integer := 0; | |
40 | abits : integer := 8; |
|
40 | abits : integer := 8); | |
41 | cpt_serial : integer := 6); |
|
41 | port ( | |
42 | port ( |
|
42 | clk : in std_logic; | |
43 |
|
|
43 | rst : in std_logic; | |
44 | rst : in std_logic; |
|
44 | apbi : in apb_slv_in_type; | |
45 |
apb |
|
45 | apbo : out apb_slv_out_type; | |
46 | apbo : out apb_slv_out_type; |
|
46 | Cal_EN : out std_logic; | |
47 | DataIN : in std_logic_vector(15 downto 0); |
|
47 | SYNC : out std_logic; | |
48 |
|
|
48 | SCLK : out std_logic; | |
49 |
|
|
49 | DATA : out std_logic | |
50 | SYNC : out std_logic; |
|
50 | ); | |
51 | SCLK : out std_logic; |
|
51 | end component; | |
52 | DATA : out std_logic |
|
52 | ||
53 | ); |
|
53 | ||
54 | end component; |
|
54 | component DacDriver is | |
55 |
|
55 | generic(cpt_serial : integer := 6); --! G�n�rique contenant le r�sultat de la division clk/sclk !!! clk=25Mhz | ||
56 |
|
56 | port( | ||
57 | component DacDriver is |
|
57 | clk : in std_logic; | |
58 | generic(cpt_serial : integer := 6); |
|
58 | rst : in std_logic; | |
59 | port( |
|
59 | enable : in std_logic; | |
60 |
|
|
60 | Data_C : in std_logic_vector(15 downto 0); | |
61 |
|
|
61 | SYNC : out std_logic; | |
62 |
|
|
62 | SCLK : out std_logic; | |
63 | Data_reg : in std_logic_vector(15 downto 0); |
|
63 | Ready : out std_logic; | |
64 |
|
|
64 | Data : out std_logic | |
65 | SCLK : out std_logic; |
|
65 | ); | |
66 | Readn : out std_logic; |
|
66 | end component; | |
67 | Data : out std_logic |
|
67 | ||
68 | ); |
|
68 | ||
69 | end component; |
|
69 | component Systeme_Clock is | |
70 |
|
70 | generic(N :integer := 695); | ||
71 |
|
71 | port( | ||
72 | component Systeme_Clock is |
|
72 | clk, raz : in std_logic ; | |
73 | generic(N :integer := 695); |
|
73 | sclk : out std_logic); | |
74 | port( |
|
74 | end component; | |
75 | clk, raz : in std_logic ; |
|
75 | ||
76 | clock : out std_logic); |
|
76 | ||
77 | end component; |
|
77 | component Gene_SYNC is | |
78 |
|
78 | port( | ||
79 |
|
79 | SCLK,raz : in std_logic; --! Horloge systeme et Reset du composant | ||
80 | component Gene_SYNC is |
|
80 | enable : in std_logic; --! Autorise ou non l'utilisation du composant | |
81 | port( |
|
81 | Sended : out std_logic; --! Flag, Autorise l'envoi (s�rialisation) d'une nouvelle donn�e | |
82 | SCLK,raz : in std_logic; --! Horloge systeme et Reset du composant |
|
82 | SYNC : out std_logic); --! Signal de synchronisation du convertisseur g�n�r� | |
83 | enable : in std_logic; --! Autorise ou non l'utilisation du composant |
|
83 | end component; | |
84 | -- OKAI_send : out std_logic; --! Flag, Autorise l'envoi (s�rialisation) d'une nouvelle donn�e |
|
84 | ||
85 | SYNC : out std_logic --! Signal de synchronisation du convertisseur g�n�r� |
|
85 | ||
86 | ); |
|
86 | component Serialize is | |
87 | end component; |
|
87 | port( | |
88 |
|
88 | clk,raz : in std_logic; | ||
89 |
|
89 | sclk : in std_logic; | ||
90 | component Serialize is |
|
90 | vectin : in std_logic_vector(15 downto 0); | |
91 | port( |
|
91 | send : in std_logic; | |
92 |
|
|
92 | sended : out std_logic; | |
93 |
|
|
93 | Data : out std_logic); | |
94 | vectin : in std_logic_vector(15 downto 0); |
|
94 | end component; | |
95 | send : in std_logic; |
|
95 | ||
96 | -- sended : out std_logic; |
|
96 | end; No newline at end of file | |
97 | Data : out std_logic); |
|
|||
98 | end component; |
|
|||
99 |
|
||||
100 | component ReadFifo_GEN is |
|
|||
101 | port( |
|
|||
102 | clk,raz : in std_logic; |
|
|||
103 | SYNC : in std_logic; |
|
|||
104 | Readn : out std_logic |
|
|||
105 | ); |
|
|||
106 | end component; |
|
|||
107 |
|
||||
108 | end; |
|
@@ -1,163 +1,174 | |||||
1 | ------------------------------------------------------------------------------ |
|
1 | ------------------------------------------------------------------------------ | |
2 | -- This file is a part of the LPP VHDL IP LIBRARY |
|
2 | -- This file is a part of the LPP VHDL IP LIBRARY | |
3 | -- Copyright (C) 2009 - 2010, Laboratory of Plasmas Physic - CNRS |
|
3 | -- Copyright (C) 2009 - 2010, Laboratory of Plasmas Physic - CNRS | |
4 | -- |
|
4 | -- | |
5 | -- This program is free software; you can redistribute it and/or modify |
|
5 | -- This program is free software; you can redistribute it and/or modify | |
6 | -- it under the terms of the GNU General Public License as published by |
|
6 | -- it under the terms of the GNU General Public License as published by | |
7 | -- the Free Software Foundation; either version 3 of the License, or |
|
7 | -- the Free Software Foundation; either version 3 of the License, or | |
8 | -- (at your option) any later version. |
|
8 | -- (at your option) any later version. | |
9 | -- |
|
9 | -- | |
10 | -- This program is distributed in the hope that it will be useful, |
|
10 | -- This program is distributed in the hope that it will be useful, | |
11 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | -- GNU General Public License for more details. |
|
13 | -- GNU General Public License for more details. | |
14 | -- |
|
14 | -- | |
15 | -- You should have received a copy of the GNU General Public License |
|
15 | -- You should have received a copy of the GNU General Public License | |
16 | -- along with this program; if not, write to the Free Software |
|
16 | -- along with this program; if not, write to the Free Software | |
17 | -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
17 | -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 | ------------------------------------------------------------------------------ |
|
18 | ------------------------------------------------------------------------------ | |
19 | -- Author : Martin Morlot |
|
19 | -- Author : Martin Morlot | |
20 | -- Mail : martin.morlot@lpp.polytechnique.fr |
|
20 | -- Mail : martin.morlot@lpp.polytechnique.fr | |
21 | ------------------------------------------------------------------------------ |
|
21 | ------------------------------------------------------------------------------ | |
22 | library ieee; |
|
22 | library ieee; | |
23 | use ieee.std_logic_1164.all; |
|
23 | use ieee.std_logic_1164.all; | |
24 | library grlib; |
|
24 | library grlib; | |
25 | use grlib.amba.all; |
|
25 | use grlib.amba.all; | |
26 | use std.textio.all; |
|
26 | use std.textio.all; | |
27 | library lpp; |
|
27 | library lpp; | |
28 | use lpp.lpp_amba.all; |
|
28 | use lpp.lpp_amba.all; | |
29 | use lpp.iir_filter.all; |
|
29 | use lpp.iir_filter.all; | |
30 | library gaisler; |
|
30 | library gaisler; | |
31 | use gaisler.misc.all; |
|
31 | use gaisler.misc.all; | |
32 | use gaisler.memctrl.all; |
|
32 | use gaisler.memctrl.all; | |
33 | library techmap; |
|
33 | library techmap; | |
34 | use techmap.gencomp.all; |
|
34 | use techmap.gencomp.all; | |
35 |
|
35 | |||
36 | --! Package contenant tous les programmes qui forment le composant int�gr� dans le l�on |
|
36 | --! Package contenant tous les programmes qui forment le composant int�gr� dans le l�on | |
37 |
|
37 | |||
38 | package lpp_memory is |
|
38 | package lpp_memory is | |
39 |
|
39 | |||
40 | component APB_FIFO is |
|
40 | component APB_FIFO is | |
41 | generic ( |
|
41 | generic ( | |
42 | tech : integer := apa3; |
|
42 | tech : integer := apa3; | |
43 | pindex : integer := 0; |
|
43 | pindex : integer := 0; | |
44 | paddr : integer := 0; |
|
44 | paddr : integer := 0; | |
45 | pmask : integer := 16#fff#; |
|
45 | pmask : integer := 16#fff#; | |
46 | pirq : integer := 0; |
|
46 | pirq : integer := 0; | |
47 | abits : integer := 8; |
|
47 | abits : integer := 8; | |
48 | FifoCnt : integer := 2; |
|
48 | FifoCnt : integer := 2; | |
49 | Data_sz : integer := 16; |
|
49 | Data_sz : integer := 16; | |
50 | Addr_sz : integer := 9; |
|
50 | Addr_sz : integer := 9; | |
51 | Enable_ReUse : std_logic := '0'; |
|
51 | Enable_ReUse : std_logic := '0'; | |
52 | Mem_use : integer := use_RAM; |
|
52 | Mem_use : integer := use_RAM; | |
53 | R : integer := 1; |
|
53 | R : integer := 1; | |
54 | W : integer := 1 |
|
54 | W : integer := 1 | |
55 | ); |
|
55 | ); | |
56 | port ( |
|
56 | port ( | |
57 | clk : in std_logic; --! Horloge du composant |
|
57 | clk : in std_logic; --! Horloge du composant | |
58 | rst : in std_logic; --! Reset general du composant |
|
58 | rst : in std_logic; --! Reset general du composant | |
59 | rclk : in std_logic; |
|
59 | rclk : in std_logic; | |
60 | wclk : in std_logic; |
|
60 | wclk : in std_logic; | |
61 | ReUse : in std_logic_vector(FifoCnt-1 downto 0); |
|
61 | ReUse : in std_logic_vector(FifoCnt-1 downto 0); | |
62 | REN : in std_logic_vector(FifoCnt-1 downto 0); --! Instruction de lecture en m�moire |
|
62 | REN : in std_logic_vector(FifoCnt-1 downto 0); --! Instruction de lecture en m�moire | |
63 | WEN : in std_logic_vector(FifoCnt-1 downto 0); --! Instruction d'�criture en m�moire |
|
63 | WEN : in std_logic_vector(FifoCnt-1 downto 0); --! Instruction d'�criture en m�moire | |
64 | Empty : out std_logic_vector(FifoCnt-1 downto 0); --! Flag, M�moire vide |
|
64 | Empty : out std_logic_vector(FifoCnt-1 downto 0); --! Flag, M�moire vide | |
65 | Full : out std_logic_vector(FifoCnt-1 downto 0); --! Flag, M�moire pleine |
|
65 | Full : out std_logic_vector(FifoCnt-1 downto 0); --! Flag, M�moire pleine | |
66 | RDATA : out std_logic_vector((FifoCnt*Data_sz)-1 downto 0); --! Registre de donn�es en entr�e |
|
66 | RDATA : out std_logic_vector((FifoCnt*Data_sz)-1 downto 0); --! Registre de donn�es en entr�e | |
67 | WDATA : in std_logic_vector((FifoCnt*Data_sz)-1 downto 0); --! Registre de donn�es en sortie |
|
67 | WDATA : in std_logic_vector((FifoCnt*Data_sz)-1 downto 0); --! Registre de donn�es en sortie | |
68 | WADDR : out std_logic_vector((FifoCnt*Addr_sz)-1 downto 0); --! Registre d'addresse (�criture) |
|
68 | WADDR : out std_logic_vector((FifoCnt*Addr_sz)-1 downto 0); --! Registre d'addresse (�criture) | |
69 | RADDR : out std_logic_vector((FifoCnt*Addr_sz)-1 downto 0); --! Registre d'addresse (lecture) |
|
69 | RADDR : out std_logic_vector((FifoCnt*Addr_sz)-1 downto 0); --! Registre d'addresse (lecture) | |
70 | apbi : in apb_slv_in_type; --! Registre de gestion des entr�es du bus |
|
70 | apbi : in apb_slv_in_type; --! Registre de gestion des entr�es du bus | |
71 | apbo : out apb_slv_out_type --! Registre de gestion des sorties du bus |
|
71 | apbo : out apb_slv_out_type --! Registre de gestion des sorties du bus | |
72 | ); |
|
72 | ); | |
73 | end component; |
|
73 | end component; | |
74 |
|
74 | |||
75 |
|
75 | |||
76 | component lpp_fifo is |
|
76 | component lpp_fifo is | |
77 | generic( |
|
77 | generic( | |
78 | tech : integer := 0; |
|
78 | tech : integer := 0; | |
79 | Mem_use : integer := use_RAM; |
|
79 | Mem_use : integer := use_RAM; | |
80 | Enable_ReUse : std_logic := '0'; |
|
80 | Enable_ReUse : std_logic := '0'; | |
81 | DataSz : integer range 1 to 32 := 8; |
|
81 | DataSz : integer range 1 to 32 := 8; | |
82 | AddrSz : integer range 2 to 12 := 8 |
|
82 | AddrSz : integer range 2 to 12 := 8 | |
83 | ); |
|
83 | ); | |
84 | port( |
|
84 | port( | |
85 | rstn : in std_logic; |
|
85 | rstn : in std_logic; | |
86 | ReUse : in std_logic; --27/01/12 |
|
86 | ReUse : in std_logic; --27/01/12 | |
87 | rclk : in std_logic; |
|
87 | rclk : in std_logic; | |
88 | ren : in std_logic; |
|
88 | ren : in std_logic; | |
89 | rdata : out std_logic_vector(DataSz-1 downto 0); |
|
89 | rdata : out std_logic_vector(DataSz-1 downto 0); | |
90 | empty : out std_logic; |
|
90 | empty : out std_logic; | |
91 | raddr : out std_logic_vector(AddrSz-1 downto 0); |
|
91 | raddr : out std_logic_vector(AddrSz-1 downto 0); | |
92 | wclk : in std_logic; |
|
92 | wclk : in std_logic; | |
93 | wen : in std_logic; |
|
93 | wen : in std_logic; | |
94 | wdata : in std_logic_vector(DataSz-1 downto 0); |
|
94 | wdata : in std_logic_vector(DataSz-1 downto 0); | |
95 | full : out std_logic; |
|
95 | full : out std_logic; | |
96 | waddr : out std_logic_vector(AddrSz-1 downto 0) |
|
96 | waddr : out std_logic_vector(AddrSz-1 downto 0) | |
97 | ); |
|
97 | ); | |
98 | end component; |
|
98 | end component; | |
99 |
|
99 | |||
100 |
|
100 | |||
101 | component lppFIFOxN is |
|
101 | component lppFIFOxN is | |
102 | generic( |
|
102 | generic( | |
103 | tech : integer := 0; |
|
103 | tech : integer := 0; | |
104 | Mem_use : integer := use_RAM; |
|
104 | Mem_use : integer := use_RAM; | |
105 | Data_sz : integer range 1 to 32 := 8; |
|
105 | Data_sz : integer range 1 to 32 := 8; | |
106 | Addr_sz : integer range 1 to 32 := 8; |
|
106 | Addr_sz : integer range 1 to 32 := 8; | |
107 | FifoCnt : integer := 1; |
|
107 | FifoCnt : integer := 1; | |
108 | Enable_ReUse : std_logic := '0' |
|
108 | Enable_ReUse : std_logic := '0' | |
109 | ); |
|
109 | ); | |
110 | port( |
|
110 | port( | |
111 | rstn : in std_logic; |
|
111 | rstn : in std_logic; | |
112 | wclk : in std_logic; |
|
112 | wclk : in std_logic; | |
113 | rclk : in std_logic; |
|
113 | rclk : in std_logic; | |
114 | ReUse : in std_logic_vector(FifoCnt-1 downto 0); |
|
114 | ReUse : in std_logic_vector(FifoCnt-1 downto 0); | |
115 | wen : in std_logic_vector(FifoCnt-1 downto 0); |
|
115 | wen : in std_logic_vector(FifoCnt-1 downto 0); | |
116 | ren : in std_logic_vector(FifoCnt-1 downto 0); |
|
116 | ren : in std_logic_vector(FifoCnt-1 downto 0); | |
117 | wdata : in std_logic_vector((FifoCnt*Data_sz)-1 downto 0); |
|
117 | wdata : in std_logic_vector((FifoCnt*Data_sz)-1 downto 0); | |
118 | rdata : out std_logic_vector((FifoCnt*Data_sz)-1 downto 0); |
|
118 | rdata : out std_logic_vector((FifoCnt*Data_sz)-1 downto 0); | |
119 | full : out std_logic_vector(FifoCnt-1 downto 0); |
|
119 | full : out std_logic_vector(FifoCnt-1 downto 0); | |
120 | empty : out std_logic_vector(FifoCnt-1 downto 0) |
|
120 | empty : out std_logic_vector(FifoCnt-1 downto 0) | |
121 | ); |
|
121 | ); | |
122 | end component; |
|
122 | end component; | |
123 |
|
123 | |||
124 | component FillFifo is |
|
124 | component FillFifo is | |
125 | generic( |
|
125 | generic( | |
126 | Data_sz : integer range 1 to 32 := 16; |
|
126 | Data_sz : integer range 1 to 32 := 16; | |
127 | Fifo_cnt : integer range 1 to 8 := 5 |
|
127 | Fifo_cnt : integer range 1 to 8 := 5 | |
128 | ); |
|
128 | ); | |
129 | port( |
|
129 | port( | |
130 | clk : in std_logic; |
|
130 | clk : in std_logic; | |
131 | raz : in std_logic; |
|
131 | raz : in std_logic; | |
132 | write : out std_logic_vector(Fifo_cnt-1 downto 0); |
|
132 | write : out std_logic_vector(Fifo_cnt-1 downto 0); | |
133 | reuse : out std_logic_vector(Fifo_cnt-1 downto 0); |
|
133 | reuse : out std_logic_vector(Fifo_cnt-1 downto 0); | |
134 | data : out std_logic_vector(Fifo_cnt*Data_sz-1 downto 0) |
|
134 | data : out std_logic_vector(Fifo_cnt*Data_sz-1 downto 0) | |
135 | ); |
|
135 | ); | |
136 | end component; |
|
136 | end component; | |
137 |
|
137 | |||
|
138 | component Bridge is | |||
|
139 | port( | |||
|
140 | clk : in std_logic; | |||
|
141 | raz : in std_logic; | |||
|
142 | EmptyUp : in std_logic; | |||
|
143 | FullDwn : in std_logic; | |||
|
144 | WriteDwn : out std_logic; | |||
|
145 | ReadUp : out std_logic | |||
|
146 | ); | |||
|
147 | end component; | |||
|
148 | ||||
138 | component ssram_plugin is |
|
149 | component ssram_plugin is | |
139 | generic (tech : integer := 0); |
|
150 | generic (tech : integer := 0); | |
140 | port |
|
151 | port | |
141 | ( |
|
152 | ( | |
142 | clk : in std_logic; |
|
153 | clk : in std_logic; | |
143 | mem_ctrlr_o : in memory_out_type; |
|
154 | mem_ctrlr_o : in memory_out_type; | |
144 | SSRAM_CLK : out std_logic; |
|
155 | SSRAM_CLK : out std_logic; | |
145 | nBWa : out std_logic; |
|
156 | nBWa : out std_logic; | |
146 | nBWb : out std_logic; |
|
157 | nBWb : out std_logic; | |
147 | nBWc : out std_logic; |
|
158 | nBWc : out std_logic; | |
148 | nBWd : out std_logic; |
|
159 | nBWd : out std_logic; | |
149 | nBWE : out std_logic; |
|
160 | nBWE : out std_logic; | |
150 | nADSC : out std_logic; |
|
161 | nADSC : out std_logic; | |
151 | nADSP : out std_logic; |
|
162 | nADSP : out std_logic; | |
152 | nADV : out std_logic; |
|
163 | nADV : out std_logic; | |
153 | nGW : out std_logic; |
|
164 | nGW : out std_logic; | |
154 | nCE1 : out std_logic; |
|
165 | nCE1 : out std_logic; | |
155 | CE2 : out std_logic; |
|
166 | CE2 : out std_logic; | |
156 | nCE3 : out std_logic; |
|
167 | nCE3 : out std_logic; | |
157 | nOE : out std_logic; |
|
168 | nOE : out std_logic; | |
158 | MODE : out std_logic; |
|
169 | MODE : out std_logic; | |
159 | ZZ : out std_logic |
|
170 | ZZ : out std_logic | |
160 | ); |
|
171 | ); | |
161 | end component; |
|
172 | end component; | |
162 |
|
173 | |||
163 | end; No newline at end of file |
|
174 | end; |
@@ -1,8 +1,10 | |||||
1 | lpp_memory.vhd |
|
1 | lpp_memory.vhd | |
2 | lpp_FIFO.vhd |
|
2 | lpp_FIFO.vhd | |
3 | FillFifo.vhd |
|
3 | FillFifo.vhd | |
|
4 | Bridge.vhd | |||
4 | APB_FIFO.vhd |
|
5 | APB_FIFO.vhd | |
5 | Bridge.vhd |
|
6 | Bridge.vhd | |
6 | SSRAM_plugin.vhd |
|
7 | SSRAM_plugin.vhd | |
7 | lppFIFOx5.vhd |
|
8 | lppFIFOx5.vhd | |
8 | lppFIFOxN.vhd |
|
9 | lppFIFOxN.vhd | |
|
10 |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
General Comments 0
You need to be logged in to leave comments.
Login now