##// END OF EJS Templates
merge simu_with_leon3...
merge simu_with_leon3 (add lpp_dma_SEND16B_FIFO2DMA)

File last commit:

r547:4e22970f1b7e JC
r590:f6390d699855 JC
Show More
SPI_DAC_DRIVER.vhd
103 lines | 3.2 KiB | text/x-vhdl | VhdlLexer
/ lib / lpp / lpp_cna / SPI_DAC_DRIVER.vhd
Alexis Jeandet
DAC driver added, MINI-LFR design updated to be compatible with new leon3-soc.
r530 ------------------------------------------------------------------------------
-- This file is a part of the LPP VHDL IP LIBRARY
-- Copyright (C) 2009 - 2015, Laboratory of Plasmas Physic - CNRS
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
------------------------------------------------------------------------------
-- Author : Alexis Jeandet
-- Mail : alexis.jeandet@member.fsf.org
------------------------------------------------------------------------------
pellion
modif alexis - CNA
r538 LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.NUMERIC_STD.ALL;
Alexis Jeandet
DAC driver added, MINI-LFR design updated to be compatible with new leon3-soc.
r530
pellion
modif alexis - CNA
r538 ENTITY SPI_DAC_DRIVER IS
GENERIC(
datawidth : INTEGER := 16;
MSBFIRST : INTEGER := 1
);
PORT (
clk : IN STD_LOGIC;
rstn : IN STD_LOGIC;
DATA : IN STD_LOGIC_VECTOR(datawidth-1 DOWNTO 0);
SMP_CLK : IN STD_LOGIC;
SYNC : OUT STD_LOGIC;
DOUT : OUT STD_LOGIC;
SCLK : OUT STD_LOGIC
Alexis Jeandet
DAC driver added, MINI-LFR design updated to be compatible with new leon3-soc.
r530 );
pellion
modif alexis - CNA
r538 END ENTITY SPI_DAC_DRIVER;
Alexis Jeandet
DAC driver added, MINI-LFR design updated to be compatible with new leon3-soc.
r530
pellion
modif alexis - CNA
r538 ARCHITECTURE behav OF SPI_DAC_DRIVER IS
SIGNAL SHIFTREG : STD_LOGIC_VECTOR(datawidth-1 DOWNTO 0) := (OTHERS => '0');
SIGNAL INPUTREG : STD_LOGIC_VECTOR(datawidth-1 DOWNTO 0) := (OTHERS => '0');
SIGNAL SMP_CLK_R : STD_LOGIC := '0';
SIGNAL shiftcnt : INTEGER := 0;
SIGNAL shifting : STD_LOGIC := '0';
BEGIN
Alexis Jeandet
DAC driver added, MINI-LFR design updated to be compatible with new leon3-soc.
r530
pellion
modif alexis - CNA
r538 MSB : IF MSBFIRST = 1 GENERATE
INPUTREG <= DATA;
END GENERATE;
Alexis Jeandet
DAC driver added, MINI-LFR design updated to be compatible with new leon3-soc.
r530
pellion
modif alexis - CNA
r538 LSB : IF MSBFIRST = 0 GENERATE
INPUTREG(datawidth-1 DOWNTO 0) <= DATA(0 TO datawidth-1);
END GENERATE;
Alexis Jeandet
DAC driver added, MINI-LFR design updated to be compatible with new leon3-soc.
r530
pellion
modif alexis - CNA
r538 SCLK <= clk;
Alexis Jeandet
DAC driver added, MINI-LFR design updated to be compatible with new leon3-soc.
r530
pellion
modif alexis - CNA
r538 PROCESS(clk, rstn)
BEGIN
pellion
modif alexis - CNA
r541 IF rstn = '0' THEN
SMP_CLK_R <= '0';
ELSIF clk'EVENT AND clk = '1' THEN
SMP_CLK_R <= SMP_CLK;
pellion
modif alexis - CNA
r538 END IF;
END PROCESS;
Alexis Jeandet
DAC driver added, MINI-LFR design updated to be compatible with new leon3-soc.
r530
pellion
modif alexis - CNA
r538 PROCESS(clk, rstn)
BEGIN
pellion
modif alexis - CNA
r541 IF rstn = '0' THEN
pellion
modif alexis - CNA
r538 shifting <= '0';
SHIFTREG <= (OTHERS => '0');
SYNC <= '0';
shiftcnt <= 0;
pellion
modif alexis - CNA
r541 DOUT <= '0';
ELSIF clk'EVENT AND clk = '1' THEN
DOUT <= SHIFTREG(datawidth-1);
IF(SMP_CLK = '1' AND SMP_CLK_R = '0') THEN
pellion
modif alexis - CNA
r538 SYNC <= '1';
shifting <= '1';
ELSE
SYNC <= '0';
IF shiftcnt = datawidth-1 THEN
shifting <= '0';
END IF;
END IF;
pellion
modif alexis - CNA
r541 IF shifting = '1' THEN
pellion
modif alexis - CNA
r538 shiftcnt <= shiftcnt + 1;
SHIFTREG <= SHIFTREG (datawidth-2 DOWNTO 0) & '0';
pellion
modif alexis - CNA
r541
pellion
modif alexis - CNA
r538 ELSE
SHIFTREG <= INPUTREG;
shiftcnt <= 0;
END IF;
END IF;
END PROCESS;
Alexis Jeandet
DAC driver added, MINI-LFR design updated to be compatible with new leon3-soc.
r530
pellion
modif alexis - CNA
r538 END ARCHITECTURE behav;
Alexis Jeandet
DAC driver added, MINI-LFR design updated to be compatible with new leon3-soc.
r530