OpenCores
URL https://opencores.org/ocsvn/single_port/single_port/trunk

Subversion Repositories single_port

[/] [single_port/] [trunk/] [VHDL/] [single_port.vhd] - Diff between revs 2 and 6

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 2 Rev 6
Line 1... Line 1...
-- $Author: rpaley_yid $
----------------------------------------------------------------------
-- $Date: 2003-01-14 21:48:11 $
----                                                              ----
-- $Header: /home/marcus/revision_ctrl_test/oc_cvs/cvs/single_port/VHDL/single_port.vhd,v 1.1.1.1 2003-01-14 21:48:11 rpaley_yid Exp $
---- Single port asynchronous RAM simulation model                ----
-- $Locker
----                                                              ----
-- $Revision: 1.1.1.1 $
---- This file is part of the single_port project                 ----
-- $State: Exp $
----                                                              ----
 
---- Description                                                  ----
-- --------------------------------------------------------------------------
---- This is a single port asynchronous memory. This files        ----
 
---- describes three architectures. Two architectures are         ----
 
---- traditional array based memories. One describes the memory   ----
 
---- as an array of  STD_LOGIC_VECTOR, and the other describes    ----
 
---- the ARRAY as BIT_VECTOR.                                     ----
 
---- The third architecture describes the memory arranged as a    ----
 
---- linked list in order to conserve computer memory usage. The  ----
 
---- memory is organized as a linked list of BIT_VECTOR arrays    ----
 
---- whose size is defined by the constant PAGEDEPTH in           ----
 
---- single_port_pkg.vhd.                                         ----
 
----                                                              ----
 
---- Authors:                                                     ----
 
---- - Robert Paley, rpaley_yid@yahoo.com                         ----
 
---- - Michael Geng, vhdl@MichaelGeng.de                          ----
 
----                                                              ----
 
---- References:                                                  ----
 
----   1. The Designer's Guide to VHDL by Peter Ashenden          ----
 
----      ISBN: 1-55860-270-4 (pbk.)                              ----
 
----   2. Writing Testbenches - Functional Verification of HDL    ----
 
----      models by Janick Bergeron | ISBN: 0-7923-7766-4         ----
 
----                                                              ----
 
----------------------------------------------------------------------
 
----                                                              ----
 
---- Copyright (C) 2005 Authors and OPENCORES.ORG                 ----
 
----                                                              ----
 
---- This source file may be used and distributed without         ----
 
---- restriction provided that this copyright statement is not    ----
 
---- removed from the file and that any derivative work contains  ----
 
---- the original copyright notice and the associated disclaimer. ----
 
----                                                              ----
 
---- This source file is free software; you can redistribute it   ----
 
---- and/or modify it under the terms of the GNU Lesser General   ----
 
---- Public License as published by the Free Software Foundation; ----
 
---- either version 2.1 of the License, or (at your option) any   ----
 
---- later version.                                               ----
 
----                                                              ----
 
---- This source 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 Lesser General Public License for more  ----
 
---- details.                                                     ----
 
----                                                              ----
 
---- You should have received a copy of the GNU Lesser General    ----
 
---- Public License along with this source; if not, download it   ----
 
---- from http://www.opencores.org/lgpl.shtml                     ----
 
----                                                              ----
 
----------------------------------------------------------------------
-- 
-- 
-- Purpose: This is a single port asynchronous memory. This files
-- CVS Revision History
-- describes three architectures. Two architectures are traditional 
 
-- array based memories. One describes the memory as an array of 
 
-- STD_LOGIC_VECTOR, and the other describes the ARRAY as BIT_VECTOR.
 
-- The third architecture describes the memory arranged as a linked
 
-- list in order to conserve computer memory usage. The memory 
 
-- is organized as a linked list of BIT_VECTOR arrays whose size
 
-- is defined PAGEDEPTH in single_port_pkg.vhd.
 
--
--
 
-- $Log: not supported by cvs2svn $
 
-- Revision 1.1.1.1  2003/01/14 21:48:11  rpaley_yid
 
-- initial checkin 
-- 
-- 
-- References: 
-- Revision 1.1  2003/01/14 17:48:31  Default
--   1. The Designer's Guide to VHDL by Peter Ashenden
-- Initial revision
--      ISBN: 1-55860-270-4 (pbk.)
 
--   2. Writing Testbenches - Functional Verification of HDL models by 
 
--      Janick Bergeron | ISBN: 0-7923-7766-4
 
--
--
-- Notes: 
-- Revision 1.1  2002/12/24 18:09:05  Default
 
-- Initial revision
--
--
-- --------------------------------------------------------------------------
 
LIBRARY IEEE;
LIBRARY IEEE;
LIBRARY WORK;
 
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.NUMERIC_STD.ALL;
USE IEEE.NUMERIC_STD.ALL;
USE WORK.single_port_pkg.ALL;
USE WORK.single_port_pkg.ALL;
USE WORK.linked_list_mem_pkg.ALL;
USE WORK.linked_list_mem_pkg.ALL;
 
 
ENTITY single_port IS
ENTITY single_port IS
  GENERIC (
  GENERIC (
    rnwtQ : TIME := 1 NS
    rnwtQ : TIME := 1 NS);
  );
 
  PORT (
  PORT (
    d : IN data_inter_typ;
    d           : IN  STD_LOGIC_VECTOR;
    q : OUT data_inter_typ;
    q           : OUT STD_LOGIC_VECTOR;
    a : IN addr_inter_typ;
    a           : IN  STD_LOGIC_VECTOR;
    rnw : IN STD_LOGIC;
    rnw : IN STD_LOGIC;
    dealloc_mem : IN BOOLEAN
    dealloc_mem : IN  BOOLEAN := FALSE);
  );
 
END ENTITY single_port;
END ENTITY single_port;
 
 
ARCHITECTURE ArrayMemNoFlag OF single_port IS
ARCHITECTURE ArrayMemNoFlag OF single_port IS
BEGIN
BEGIN
 
 
  mem_proc : PROCESS
  mem_proc : PROCESS(d, a, rnw)
    TYPE mem_typ IS ARRAY ( 0 TO PAGENUM*PAGEDEPTH-1) OF data_inter_typ;
    TYPE mem_typ IS ARRAY ( 0 TO PAGENUM*PAGEDEPTH-1 ) OF STD_LOGIC_VECTOR(d'RANGE);
    VARIABLE mem : mem_typ;
    VARIABLE mem : mem_typ;
  BEGIN
  BEGIN
    WAIT on rnw'transaction;
 
    IF ( rnw = '0') THEN -- Write
    IF ( rnw = '0') THEN -- Write
      mem(TO_INTEGER(unsigned(a))) := d;
      mem(TO_INTEGER(unsigned(a))) := d;
    ELSE -- Read
    ELSE -- Read
      q <= mem(TO_INTEGER(unsigned(a))) AFTER rnwtQ;
      q <= mem(TO_INTEGER(unsigned(a))) AFTER rnwtQ;
    END IF;
    END IF;
Line 64... Line 99...
END ArrayMemNoFlag;
END ArrayMemNoFlag;
 
 
ARCHITECTURE ArrayMem OF single_port IS
ARCHITECTURE ArrayMem OF single_port IS
BEGIN
BEGIN
 
 
  mem_proc : PROCESS
  mem_proc : PROCESS(d, a, rnw)
  TYPE mem_typ IS ARRAY ( 0 TO PAGENUM*PAGEDEPTH-1 ) OF data_typ;
  TYPE mem_typ  IS ARRAY ( 0 TO PAGENUM*PAGEDEPTH-1 ) OF BIT_VECTOR(d'RANGE);
  TYPE flag_typ IS ARRAY ( 0 TO PAGENUM*PAGEDEPTH-1 ) OF BOOLEAN;
  TYPE flag_typ IS ARRAY ( 0 TO PAGENUM*PAGEDEPTH-1 ) OF BOOLEAN;
  VARIABLE mem : mem_typ;
  VARIABLE mem : mem_typ;
  VARIABLE flag : flag_typ;
  VARIABLE flag : flag_typ;
  BEGIN
  BEGIN
    WAIT ON rnw'transaction;
 
    IF ( rnw = '0') THEN -- Write
    IF ( rnw = '0') THEN -- Write
      mem(TO_INTEGER(unsigned(a))) := TO_BITVECTOR(d);
      mem(TO_INTEGER(unsigned(a))) := TO_BITVECTOR(d);
      flag(TO_INTEGER(unsigned(a))) := true; -- set valid memory location flag
      flag(TO_INTEGER(unsigned(a))) := true; -- set valid memory location flag
    ELSE -- read data, either valid or 'U'
    ELSE -- read data, either valid or 'U'
      IF ( flag(TO_INTEGER(unsigned(a))) = true ) THEN
      IF ( flag(TO_INTEGER(unsigned(a))) = true ) THEN
        q <= TO_STDLOGICVECTOR(mem(TO_INTEGER(unsigned(a)))) AFTER rnwtQ;
        q <= TO_STDLOGICVECTOR(mem(TO_INTEGER(unsigned(a)))) AFTER rnwtQ;
      ELSE -- reading invalid memory location
      ELSE -- reading invalid memory location
        q <= (OTHERS => 'U') after rnwtQ;
        q <= (q'RANGE => 'U') after rnwtQ;
      END IF;
      END IF;
    END IF;
    END IF;
  END PROCESS mem_proc;
  END PROCESS mem_proc;
END ArrayMem;
END ArrayMem;
 
 
ARCHITECTURE LinkedList OF single_port IS
ARCHITECTURE LinkedList OF single_port IS
 
  CONSTANT WRITE_MEM : BOOLEAN := true;
 
  CONSTANT READ_MEM  : BOOLEAN := false;
  BEGIN
  BEGIN
 
 
  mem_proc : PROCESS
  mem_proc : PROCESS(d, a, rnw, dealloc_mem)
  VARIABLE mem_page_v : mem_page_ptr;
  VARIABLE mem_page_v : mem_page_ptr;
  VARIABLE d_v : data_inter_typ;
    VARIABLE d_v : STD_LOGIC_VECTOR(d'RANGE);
  VARIABLE a_v : addr_typ;
  VARIABLE a_v : addr_typ;
  VARIABLE WRITE_MEM_v : BOOLEAN := true;
 
  VARIABLE READ_MEM_v  : BOOLEAN := false;
 
  BEGIN
  BEGIN
    WAIT ON dealloc_mem'transaction , rnw'TRANSACTION;
 
    IF NOT dealloc_mem THEN
    IF NOT dealloc_mem THEN
      d_v :=  d;
      d_v :=  d;
      a_v := TO_INTEGER(unsigned(a));
      a_v := TO_INTEGER(unsigned(a));
      IF ( rnw = '0' ) THEN -- write to linked list memory
      IF ( rnw = '0' ) THEN -- write to linked list memory
        rw_mem( data => d_v,
        rw_mem( data => d_v,
                addr => a_v,
                addr => a_v,
                write_flag => WRITE_MEM_v,
                next_cell  => mem_page_v,
                next_cell => mem_page_v
                write_flag => WRITE_MEM);
              );
 
      ELSE -- read from linked list memory
      ELSE -- read from linked list memory
        rw_mem( data => d_v,
        rw_mem( data => d_v,
                addr => a_v,
                addr => a_v,
                write_flag => READ_MEM_v,
                next_cell  => mem_page_v,
                next_cell => mem_page_v
                write_flag => READ_MEM);
              );
 
        q <= d_v after rnwtQ;
        q <= d_v after rnwtQ;
      END IF;
      END IF;
    ELSE -- Deallocate memory from work station memory.
    ELSE -- Deallocate memory from work station memory.
      deallocate_mem(mem_page_v);
      deallocate_mem(mem_page_v);
    END IF;
    END IF;
  END PROCESS mem_proc;
  END PROCESS mem_proc;
 
 
END LinkedList;
END LinkedList;
 
 
-- $Log: not supported by cvs2svn $
 
-- Revision 1.1  2003/01/14 17:48:31  Default
 
-- Initial revision
 
--
 
-- Revision 1.1  2002/12/24 18:09:05  Default
 
-- Initial revision
 
--
 
 
 
 
 
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.