[Armadeus-commitlog] SF.net SVN: armadeus: [786] trunk/firmware
Brought to you by:
sszy
|
From: <Fa...@us...> - 2008-04-02 15:07:16
|
Revision: 786
http://armadeus.svn.sourceforge.net/armadeus/?rev=786&view=rev
Author: FabM
Date: 2008-04-02 08:07:16 -0700 (Wed, 02 Apr 2008)
Log Message:
-----------
[FIRMWARE][FPGA] correct some mistakes, and adding GPL
Modified Paths:
--------------
trunk/firmware/Wisbone_example/Makefile
trunk/firmware/Wisbone_example/src/Wb_button.vhd
trunk/firmware/Wisbone_example/src/Wb_led.ucf
trunk/firmware/Wisbone_example/src/Wb_led.vhd
trunk/firmware/Wisbone_example/src/Wb_top.vhd
trunk/firmware/Wisbone_example/src/intercon.vhd
trunk/firmware/Wisbone_example/src/wishbone/imx_wrapper.vhd
trunk/firmware/Wisbone_example/src/wishbone/irq_mngr.vhd
trunk/firmware/Wisbone_example/src/wishbone/syscon.vhd
trunk/firmware/apf_pkg/apf_test_pkg.vhd
trunk/firmware/bus_led/src/bus_led.vhd
trunk/firmware/bus_led/src/bus_led_top.vhd
trunk/firmware/bus_led/testbench/led_top_tb.vhd
Modified: trunk/firmware/Wisbone_example/Makefile
===================================================================
--- trunk/firmware/Wisbone_example/Makefile 2008-04-02 15:05:24 UTC (rev 785)
+++ trunk/firmware/Wisbone_example/Makefile 2008-04-02 15:07:16 UTC (rev 786)
@@ -67,6 +67,7 @@
messages : bit
$(BRIEF) $(BIN)/$(PROJECT)
+ @echo bitstream : $(PROJECT).bit
bit : $(BIN)/$(PROJECT).ncd trace
Modified: trunk/firmware/Wisbone_example/src/Wb_button.vhd
===================================================================
--- trunk/firmware/Wisbone_example/src/Wb_button.vhd 2008-04-02 15:05:24 UTC (rev 785)
+++ trunk/firmware/Wisbone_example/src/Wb_button.vhd 2008-04-02 15:07:16 UTC (rev 786)
@@ -7,8 +7,23 @@
--
-- Abstract :
--
----------------------------------------------------------------------------
+-----------------------------------------------------------------------------------
+-- 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 2, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+----------------------------------------------------------------------------------
+
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.numeric_std.all;
Modified: trunk/firmware/Wisbone_example/src/Wb_led.ucf
===================================================================
--- trunk/firmware/Wisbone_example/src/Wb_led.ucf 2008-04-02 15:05:24 UTC (rev 785)
+++ trunk/firmware/Wisbone_example/src/Wb_led.ucf 2008-04-02 15:07:16 UTC (rev 786)
@@ -1,4 +1,6 @@
-# Clock at 96MHz
+
+
+# Clock at 96MHzi
NET "clk" LOC = "P55" | IOSTANDARD = LVCMOS33 ;
NET "clk" TNM_NET = "clk";
TIMESPEC "TS_clk" = PERIOD "clk" 10.42 ns HIGH 50 %;
@@ -50,7 +52,7 @@
# led output
NET "LED" LOC = "P116" | IOSTANDARD = LVCMOS33 ;
# Button input
-NET "button" LOC = "P102" | IOSTANDARD = LVCMOS33 ;
+NET "button" LOC = "P141" | IOSTANDARD = LVCMOS33 ;
# Test (X10 on devfull) connection
#NET "imx_data0_test" LOC = "P102" | IOSTANDARD = LVCMOS33 ;
Modified: trunk/firmware/Wisbone_example/src/Wb_led.vhd
===================================================================
--- trunk/firmware/Wisbone_example/src/Wb_led.vhd 2008-04-02 15:05:24 UTC (rev 785)
+++ trunk/firmware/Wisbone_example/src/Wb_led.vhd 2008-04-02 15:07:16 UTC (rev 786)
@@ -7,7 +7,21 @@
--
-- Abstract : drive one led with Wishbone bus
--
----------------------------------------------------------------------------
+------------------------------------------------------------------------------------
+-- 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 2, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+----------------------------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
Modified: trunk/firmware/Wisbone_example/src/Wb_top.vhd
===================================================================
--- trunk/firmware/Wisbone_example/src/Wb_top.vhd 2008-04-02 15:05:24 UTC (rev 785)
+++ trunk/firmware/Wisbone_example/src/Wb_top.vhd 2008-04-02 15:07:16 UTC (rev 786)
@@ -7,8 +7,23 @@
--
-- Abstract :
--
----------------------------------------------------------------------------
+-----------------------------------------------------------------------------------
+-- 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 2, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+----------------------------------------------------------------------------------
+
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.numeric_std.all;
Modified: trunk/firmware/Wisbone_example/src/intercon.vhd
===================================================================
--- trunk/firmware/Wisbone_example/src/intercon.vhd 2008-04-02 15:05:24 UTC (rev 785)
+++ trunk/firmware/Wisbone_example/src/intercon.vhd 2008-04-02 15:07:16 UTC (rev 786)
@@ -8,8 +8,23 @@
-- Abstract : connect master wishbone device with
-- slave(s) wishbone device
--
----------------------------------------------------------------------------
+-----------------------------------------------------------------------------------
+-- 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 2, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+----------------------------------------------------------------------------------
+
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.numeric_std.all;
Modified: trunk/firmware/Wisbone_example/src/wishbone/imx_wrapper.vhd
===================================================================
--- trunk/firmware/Wisbone_example/src/wishbone/imx_wrapper.vhd 2008-04-02 15:05:24 UTC (rev 785)
+++ trunk/firmware/Wisbone_example/src/wishbone/imx_wrapper.vhd 2008-04-02 15:07:16 UTC (rev 786)
@@ -17,7 +17,23 @@
-- adding comments and changing some signals names
--
-------------------------------------------------------------------------------
+-----------------------------------------------------------------------------------
+-- 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 2, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+----------------------------------------------------------------------------------
+
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.numeric_std.all;
Modified: trunk/firmware/Wisbone_example/src/wishbone/irq_mngr.vhd
===================================================================
--- trunk/firmware/Wisbone_example/src/wishbone/irq_mngr.vhd 2008-04-02 15:05:24 UTC (rev 785)
+++ trunk/firmware/Wisbone_example/src/wishbone/irq_mngr.vhd 2008-04-02 15:07:16 UTC (rev 786)
@@ -13,7 +13,23 @@
-- Modifications :
--
-------------------------------------------------------------------------------
+-----------------------------------------------------------------------------------
+-- 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 2, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+----------------------------------------------------------------------------------
+
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.numeric_std.all;
Modified: trunk/firmware/Wisbone_example/src/wishbone/syscon.vhd
===================================================================
--- trunk/firmware/Wisbone_example/src/wishbone/syscon.vhd 2008-04-02 15:05:24 UTC (rev 785)
+++ trunk/firmware/Wisbone_example/src/wishbone/syscon.vhd 2008-04-02 15:07:16 UTC (rev 786)
@@ -8,7 +8,23 @@
-- Abstract :
--
---------------------------------------------------------------------------
+-----------------------------------------------------------------------------------
+-- 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 2, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+----------------------------------------------------------------------------------
+
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.numeric_std.all;
Modified: trunk/firmware/apf_pkg/apf_test_pkg.vhd
===================================================================
--- trunk/firmware/apf_pkg/apf_test_pkg.vhd 2008-04-02 15:05:24 UTC (rev 785)
+++ trunk/firmware/apf_pkg/apf_test_pkg.vhd 2008-04-02 15:07:16 UTC (rev 786)
@@ -1,11 +1,27 @@
-
----------------------------------------------
-- Design Name : Test bench utils
--- File Name : apf_test_pkg.vhw
+-- File Name : apf_test_pkg.vhd
-- Function : Defines communication function between imx and fpga
--- Author : Fabien Marteau
+-- Author : Fabien Marteau <fab...@ar...>
-- Version : 1.00
---------------------------------------------
+-----------------------------------------------------------------------------------
+-- 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 2, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+----------------------------------------------------------------------------------
+
+
library ieee;
use ieee.std_logic_1164.all;
Modified: trunk/firmware/bus_led/src/bus_led.vhd
===================================================================
--- trunk/firmware/bus_led/src/bus_led.vhd 2008-04-02 15:05:24 UTC (rev 785)
+++ trunk/firmware/bus_led/src/bus_led.vhd 2008-04-02 15:07:16 UTC (rev 786)
@@ -7,7 +7,21 @@
--
-- Abstract :
--
----------------------------------------------------------------------------
+-----------------------------------------------------------------------------------
+-- 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 2, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+----------------------------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
Modified: trunk/firmware/bus_led/src/bus_led_top.vhd
===================================================================
--- trunk/firmware/bus_led/src/bus_led_top.vhd 2008-04-02 15:05:24 UTC (rev 785)
+++ trunk/firmware/bus_led/src/bus_led_top.vhd 2008-04-02 15:07:16 UTC (rev 786)
@@ -1,8 +1,8 @@
----------------------------------------------------------------------------------
-- Company: ARMadeus Systems
--- Engineer: Fabien Marteau
+-- Engineer: Fabien Marteau <fab...@ar...>
--
--- Create Date:
+-- Create Date: 2008
-- Design Name:
-- Module Name:
-- Project Name:
@@ -17,6 +17,20 @@
-- Additional Comments:
--
----------------------------------------------------------------------------------
+-- 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 2, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+----------------------------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
Modified: trunk/firmware/bus_led/testbench/led_top_tb.vhd
===================================================================
--- trunk/firmware/bus_led/testbench/led_top_tb.vhd 2008-04-02 15:05:24 UTC (rev 785)
+++ trunk/firmware/bus_led/testbench/led_top_tb.vhd 2008-04-02 15:07:16 UTC (rev 786)
@@ -1,6 +1,6 @@
----------------------------------------------------------------------------------
-- Company : ARMadeus Systems
--- Author(s) : Fabien Marteau
+-- Author(s) : Fabien Marteau <fab...@ar...>
--
-- Creation Date : 14/02/2008
-- File : led_top_tb.vhd
@@ -8,7 +8,23 @@
-- Abstract : Testbench for simple design that switch a led with the imx
--
----------------------------------------------------------------------------------
+-----------------------------------------------------------------------------------
+-- 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 2, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+----------------------------------------------------------------------------------
+
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.numeric_std.all;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|