| 1 |
6 |
julius |
// ----------------------------------------------------------------------------
|
| 2 |
|
|
|
| 3 |
|
|
// Access functions for the ORPSoC Verilator model: definition
|
| 4 |
|
|
|
| 5 |
|
|
// Copyright (C) 2008 Embecosm Limited <info@embecosm.com>
|
| 6 |
|
|
|
| 7 |
|
|
// Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
|
| 8 |
|
|
|
| 9 |
|
|
// This file is part of the cycle accurate model of the OpenRISC 1000 based
|
| 10 |
|
|
// system-on-chip, ORPSoC, built using Verilator.
|
| 11 |
|
|
|
| 12 |
|
|
// This program is free software: you can redistribute it and/or modify it
|
| 13 |
|
|
// under the terms of the GNU Lesser General Public License as published by
|
| 14 |
|
|
// the Free Software Foundation, either version 3 of the License, or (at your
|
| 15 |
|
|
// option) any later version.
|
| 16 |
|
|
|
| 17 |
|
|
// This program is distributed in the hope that it will be useful, but WITHOUT
|
| 18 |
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
| 19 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
| 20 |
|
|
// License for more details.
|
| 21 |
|
|
|
| 22 |
|
|
// You should have received a copy of the GNU Lesser General Public License
|
| 23 |
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
| 24 |
|
|
|
| 25 |
|
|
// ----------------------------------------------------------------------------
|
| 26 |
|
|
|
| 27 |
|
|
// $Id: OrpsocAccess.h 303 2009-02-16 11:20:17Z jeremy $
|
| 28 |
|
|
|
| 29 |
|
|
#ifndef ORPSOC_ACCESS__H
|
| 30 |
|
|
#define ORPSOC_ACCESS__H
|
| 31 |
|
|
|
| 32 |
|
|
#include <stdint.h>
|
| 33 |
|
|
|
| 34 |
|
|
class Vorpsoc_top;
|
| 35 |
|
|
class Vorpsoc_top_orpsoc_top;
|
| 36 |
|
|
class Vorpsoc_top_or1200_ctrl;
|
| 37 |
44 |
julius |
class Vorpsoc_top_or1200_except;
|
| 38 |
|
|
class Vorpsoc_top_or1200_sprs;
|
| 39 |
6 |
julius |
class Vorpsoc_top_or1200_dpram;
|
| 40 |
353 |
julius |
// Main memory access class - will change if main memory size or other
|
| 41 |
|
|
// parameters change
|
| 42 |
|
|
//Old ram_wbclass: class Vorpsoc_top_ram_wb_sc_sw__D20_A19_M800000;
|
| 43 |
439 |
julius |
//class Vorpsoc_top_wb_ram_b3__D20_A17_M800000;
|
| 44 |
|
|
class Vorpsoc_top_ram_wb_b3__pi3;
|
| 45 |
63 |
julius |
// SoC Arbiter class - will also change if any modifications to bus architecture
|
| 46 |
362 |
julius |
//class Vorpsoc_top_wb_conbus_top__pi1;
|
| 47 |
6 |
julius |
|
| 48 |
|
|
//! Access functions to the Verilator model
|
| 49 |
|
|
|
| 50 |
|
|
//! This class encapsulates access to the Verilator model, allowing other
|
| 51 |
|
|
//! Classes to access model state, without needing to be built within the
|
| 52 |
|
|
//! Verilator environment.
|
| 53 |
462 |
julius |
class OrpsocAccess {
|
| 54 |
6 |
julius |
public:
|
| 55 |
|
|
|
| 56 |
462 |
julius |
// Constructor
|
| 57 |
|
|
OrpsocAccess(Vorpsoc_top * orpsoc_top);
|
| 58 |
6 |
julius |
|
| 59 |
462 |
julius |
// Accessor functions
|
| 60 |
|
|
bool getExFreeze();
|
| 61 |
|
|
bool getWbFreeze();
|
| 62 |
|
|
uint32_t getWbInsn();
|
| 63 |
|
|
uint32_t getIdInsn();
|
| 64 |
|
|
uint32_t getExInsn();
|
| 65 |
|
|
uint32_t getWbPC();
|
| 66 |
|
|
uint32_t getIdPC();
|
| 67 |
|
|
uint32_t getExPC();
|
| 68 |
|
|
bool getExceptFlushpipe();
|
| 69 |
|
|
bool getExDslot();
|
| 70 |
|
|
uint32_t getExceptType();
|
| 71 |
|
|
// Get a specific GPR from the register file
|
| 72 |
|
|
uint32_t getGpr(uint32_t regNum);
|
| 73 |
|
|
void setGpr(uint32_t regNum, uint32_t value);
|
| 74 |
|
|
//SPR accessessors
|
| 75 |
|
|
uint32_t getSprSr();
|
| 76 |
|
|
uint32_t getSprEpcr();
|
| 77 |
|
|
uint32_t getSprEear();
|
| 78 |
|
|
uint32_t getSprEsr();
|
| 79 |
6 |
julius |
|
| 80 |
462 |
julius |
// Wishbone SRAM accessor functions
|
| 81 |
|
|
uint32_t get_mem32(uint32_t addr);
|
| 82 |
|
|
uint8_t get_mem8(uint32_t addr);
|
| 83 |
66 |
julius |
|
| 84 |
462 |
julius |
void set_mem32(uint32_t addr, uint32_t data);
|
| 85 |
|
|
// Trigger a $readmemh for the RAM array
|
| 86 |
|
|
void do_ram_readmemh(void);
|
| 87 |
|
|
/*
|
| 88 |
|
|
// Arbiter access functions
|
| 89 |
|
|
uint8_t getWbArbGrant ();
|
| 90 |
|
|
// Master Signal Access functions
|
| 91 |
|
|
uint32_t getWbArbMastDatI (uint32_t mast_num);
|
| 92 |
|
|
uint32_t getWbArbMastDatO (uint32_t mast_num);
|
| 93 |
|
|
uint32_t getWbArbMastAdrI (uint32_t mast_num);
|
| 94 |
|
|
uint8_t getWbArbMastSelI (uint32_t mast_num);
|
| 95 |
|
|
uint8_t getWbArbMastSlaveSelDecoded (uint32_t mast_num);
|
| 96 |
|
|
bool getWbArbMastWeI (uint32_t mast_num);
|
| 97 |
|
|
bool getWbArbMastCycI (uint32_t mast_num);
|
| 98 |
|
|
bool getWbArbMastStbI (uint32_t mast_num);
|
| 99 |
|
|
bool getWbArbMastAckO (uint32_t mast_num);
|
| 100 |
|
|
bool getWbArbMastErrO (uint32_t mast_num);
|
| 101 |
|
|
*/
|
| 102 |
63 |
julius |
|
| 103 |
6 |
julius |
private:
|
| 104 |
|
|
|
| 105 |
462 |
julius |
// Pointers to modules with accessor functions
|
| 106 |
|
|
Vorpsoc_top_or1200_ctrl * or1200_ctrl;
|
| 107 |
|
|
Vorpsoc_top_or1200_except *or1200_except;
|
| 108 |
|
|
Vorpsoc_top_or1200_sprs *or1200_sprs;
|
| 109 |
|
|
Vorpsoc_top_or1200_dpram *rf_a;
|
| 110 |
|
|
/*Vorpsoc_top_ram_wb_sc_sw *//*Vorpsoc_top_ram_wb_sc_sw__D20_A19_M800000 *//*Vorpsoc_top_wb_ram_b3__D20_A17_M800000 *ram_wb_sc_sw; */
|
| 111 |
|
|
Vorpsoc_top_ram_wb_b3__pi3 *wishbone_ram;
|
| 112 |
|
|
// Arbiter
|
| 113 |
|
|
//Vorpsoc_top_wb_conbus_top__pi1 *wb_arbiter;
|
| 114 |
6 |
julius |
|
| 115 |
462 |
julius |
}; // OrpsocAccess ()
|
| 116 |
6 |
julius |
|
| 117 |
462 |
julius |
#endif // ORPSOC_ACCESS__H
|