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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [or1ksim/] [testsuite/] [test-code-or1k/] [mc-sync/] [mc-sync.h] - Blame information for rev 90

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 90 jeremybenn
/* mc_sync.h - Memory Controller testbench SYNCdevices defines
2
 
3
   Copyright (C) 2001 Ivan Guzvinec
4
   Copyright (C) 2010 Embecosm Limited
5
 
6
   Contributor Ivan Guzvinec <ivang@opencores.org>
7
   Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
8
 
9
   This file is part of OpenRISC 1000 Architectural Simulator.
10
 
11
   This program is free software; you can redistribute it and/or modify it
12
   under the terms of the GNU General Public License as published by the Free
13
   Software Foundation; either version 3 of the License, or (at your option)
14
   any later version.
15
 
16
   This program is distributed in the hope that it will be useful, but WITHOUT
17
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
19
   more details.
20
 
21
   You should have received a copy of the GNU General Public License along
22
   with this program.  If not, see <http:  www.gnu.org/licenses/>.  */
23
 
24
/* ----------------------------------------------------------------------------
25
   This code is commented throughout for use with Doxygen.
26
   --------------------------------------------------------------------------*/
27
 
28
#ifndef __MC_SYNC_H
29
#define __MC_SYNC_H
30
 
31
/* should configuration be read from MC? */
32
#define MC_READ_CONF
33
 
34
/* TEMPLATE SELECTION       */
35
/* change #undef to #define */
36
#define _MC_TEST_TEMPLATE1
37
#undef  _MC_TEST_TEMPLATE2
38
#undef  _MC_TEST_TEMPLATE3
39
/* ------------------------ */
40
 
41
/* memory configuration that must reflect mcmem.cfg */
42
#define MC_SYNC_CSMASK  0xFE    /* 8 bit mask for 8 chip selects. 1 ASYNC at CS, 0 something else at CS */
43
 
44
typedef struct MC_SYNC_CS
45
{
46
  unsigned long M;
47
} MC_SYNC_CS;
48
 
49
MC_SYNC_CS mc_sync_cs[8] = {
50
  { 0x02  /* SELect mask */
51
    },
52
  { 0x04 },
53
  { 0x06 },
54
  { 0x08 },
55
  { 0x0A },
56
  { 0x0C },
57
  { 0x0E },
58
  { 0x10 } };
59
 
60
 
61
#define MC_SYNC_TEST0   0x00000001LU /* no parity, bank after column, write enable */
62
#define MC_SYNC_TEST1   0x00000002LU /* parity */
63
#define MC_SYNC_TEST2   0x00000004LU /* bank after row */
64
#define MC_SYNC_TEST3   0x00000008LU /* RO */
65
#define MC_SYNC_TEST4   0x00000010LU /* - NOT DEFINED - */
66
 
67
#ifdef _MC_TEST_TEMPLATE1
68
  #define MC_SYNC_FLAGS 0x000002B4LU    /* MC_TEST_ flags... see mc_common.h */
69
  #define MC_SYNC_TESTS 0x00000005LU
70
#endif
71
 
72
#ifdef _MC_TEST_TEMPLATE2
73
  #define MC_SYNC_FLAGS 0x00000128LU    /* MC_TEST_ flags... see mc_common.h */
74
  #define MC_SYNC_TESTS 0x00000008LU
75
#endif
76
 
77
#ifdef _MC_TEST_TEMPLATE3
78
  #define MC_SYNC_FLAGS 0x000007FFLU    /* MC_TEST_ flags... see mc_common.h */
79
  #define MC_SYNC_TESTS 0x0000000FLU
80
#endif
81
 
82
 
83
#endif

powered by: WebSVN 2.1.0

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