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

Subversion Repositories wbddr3

[/] [wbddr3/] [trunk/] [bench/] [cpp/] [ddrsdramsim.h] - Blame information for rev 16

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 4 dgisselq
////////////////////////////////////////////////////////////////////////////////
2
//
3
// Filename:    ddrsdramsim.h
4
//
5
// Project:     A wishbone controlled DDR3 SDRAM memory controller.
6
//
7
// Purpose:     
8
//
9
// Creator:     Dan Gisselquist, Ph.D.
10
//              Gisselquist Technology, LLC
11
//
12
////////////////////////////////////////////////////////////////////////////////
13
//
14
// Copyright (C) 2015-2016, Gisselquist Technology, LLC
15
//
16
// This program is free software (firmware): you can redistribute it and/or
17
// modify it under the terms of  the GNU General Public License as published
18
// by the Free Software Foundation, either version 3 of the License, or (at
19
// your option) any later version.
20
//
21
// This program is distributed in the hope that it will be useful, but WITHOUT
22
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
23
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
24
// for more details.
25
//
26
// You should have received a copy of the GNU General Public License along
27
// with this program.  (It's in the $(ROOT)/doc directory, run make with no
28
// target there if the PDF file isn't present.)  If not, see
29
// <http://www.gnu.org/licenses/> for a copy.
30
//
31
// License:     GPL, v3, as defined and found on www.gnu.org,
32
//              http://www.gnu.org/licenses/gpl.html
33
//
34
//
35
////////////////////////////////////////////////////////////////////////////////
36
//
37
//
38
#ifndef DDRSDRAMSIM_H
39
#define DDRSDRAMSIM_H
40
 
41
#define DDR_MRSET       0
42
#define DDR_REFRESH     1
43
#define DDR_PRECHARGE   2
44
#define DDR_ACTIVATE    3
45
#define DDR_WRITE       4
46
#define DDR_READ        5
47
#define DDR_ZQS         6
48
#define DDR_NOOP        7
49
 
50
#define NBANKS          8
51 13 dgisselq
#define NTIMESLOTS      32
52 16 dgisselq
#define NWIDTH          2
53 4 dgisselq
 
54
class   BANKINFO {
55
public:
56
        int             m_state;
57 14 dgisselq
        unsigned        m_row, m_wcounter, m_min_time_before_precharge,
58
                        m_min_time_before_activate;
59
        BANKINFO(void);
60 4 dgisselq
        void    tick(int cmd, unsigned addr=0);
61
};
62
 
63
class   BUSTIMESLOT     {
64
public:
65 13 dgisselq
        int     m_used, m_read, m_data, m_rtt;
66 4 dgisselq
        unsigned        m_addr;
67
};
68
 
69
class   DDRSDRAMSIM     {
70 6 dgisselq
        int             m_reset_state, m_reset_counts, m_memlen, m_busloc,
71 13 dgisselq
                        m_clocks_since_refresh, m_nrefresh_issued,
72
                        m_last_dqs, m_last_rtt;
73 4 dgisselq
        unsigned        *m_mem;
74
        BUSTIMESLOT     *m_bus;
75
        int     cmd(int,int,int,int);
76
public:
77 14 dgisselq
        BANKINFO        m_bank[8];
78 4 dgisselq
        DDRSDRAMSIM(int lglen);
79 16 dgisselq
        unsigned apply(int, int,
80 4 dgisselq
                        int, int, int, int,
81
                        int, int, int, int,
82
                        int, int, int);
83 16 dgisselq
        unsigned operator()(int reset_n, int cke,
84
                        int csn, int rasn, int casn, int wen,
85
                        int dqs, int dm, int odt, int busoe,
86
                        int addr, int ba, int data) {
87
                return apply(reset_n, cke, csn, rasn, casn, wen, dqs, dm, odt,
88
                        busoe, addr, ba, data);
89
        }
90
        unsigned &mem(unsigned addr) { return m_mem[addr]; };
91
        unsigned &operator[](unsigned addr) { return mem(addr); };
92 4 dgisselq
};
93
 
94
#endif

powered by: WebSVN 2.1.0

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