gem5  v20.1.0.0
rv_ctrl.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010,2013,2015 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #ifndef __DEV_ARM_RV_HH__
39 #define __DEV_ARM_RV_HH__
40 
41 #include "base/bitunion.hh"
42 #include "dev/io_device.hh"
43 #include "params/RealViewCtrl.hh"
44 #include "params/RealViewOsc.hh"
45 #include "params/RealViewTemperatureSensor.hh"
46 
52 {
53  public:
54  enum DeviceFunc {
55  FUNC_OSC = 1,
56  FUNC_VOLT = 2,
57  FUNC_AMP = 3,
58  FUNC_TEMP = 4,
60  FUNC_SCC = 6,
65  FUNC_POWER = 12,
67  };
68 
69  class Device
70  {
71  public:
73  uint8_t site, uint8_t pos, uint8_t dcc, uint16_t dev)
74  {
75  parent.registerDevice(func, site, pos, dcc, dev, this);
76  }
77 
78  virtual ~Device() {}
79 
80  virtual uint32_t read() const = 0;
81  virtual void write(uint32_t value) = 0;
82  };
83 
84  protected:
85  enum {
86  IdReg = 0x00,
87  SwReg = 0x04,
88  Led = 0x08,
89  Osc0 = 0x0C,
90  Osc1 = 0x10,
91  Osc2 = 0x14,
92  Osc3 = 0x18,
93  Osc4 = 0x1C,
94  Lock = 0x20,
95  Clock100 = 0x24,
96  CfgData1 = 0x28,
97  CfgData2 = 0x2C,
98  Flags = 0x30,
99  FlagsClr = 0x34,
100  NvFlags = 0x38,
101  NvFlagsClr = 0x3C,
102  ResetCtl = 0x40,
103  PciCtl = 0x44,
104  MciCtl = 0x48,
105  Flash = 0x4C,
106  Clcd = 0x50,
107  ClcdSer = 0x54,
108  Bootcs = 0x58,
109  Clock24 = 0x5C,
110  Misc = 0x60,
111  IoSel = 0x70,
112  ProcId0 = 0x84,
113  ProcId1 = 0x88,
114  CfgData = 0xA0,
115  CfgCtrl = 0xA4,
116  CfgStat = 0xA8,
117  TestOsc0 = 0xC0,
118  TestOsc1 = 0xC4,
119  TestOsc2 = 0xC8,
120  TestOsc3 = 0xCC,
121  TestOsc4 = 0xD0
122  };
123 
124  // system lock value
125  BitUnion32(SysLockReg)
126  Bitfield<15,0> lockVal;
127  Bitfield<16> locked;
128  EndBitUnion(SysLockReg)
129 
130  BitUnion32(CfgCtrlReg)
131  Bitfield<11, 0> dev;
132  Bitfield<15, 12> pos;
133  Bitfield<17, 16> site;
134  Bitfield<25, 20> func;
135  Bitfield<29, 26> dcc;
136  Bitfield<30> wr;
137  Bitfield<31> start;
138  EndBitUnion(CfgCtrlReg)
139 
140  static const uint32_t CFG_CTRL_ADDR_MASK = 0x3fffffffUL;
141 
142  SysLockReg sysLock;
143 
149  uint32_t flags;
150 
153  uint32_t scData;
154 
155  public:
156  typedef RealViewCtrlParams Params;
157  const Params *
158  params() const
159  {
160  return dynamic_cast<const Params *>(_params);
161  }
167 
173  Tick read(PacketPtr pkt) override;
174 
180  Tick write(PacketPtr pkt) override;
181 
182  void serialize(CheckpointOut &cp) const override;
183  void unserialize(CheckpointIn &cp) override;
184 
185  public:
186  void registerDevice(DeviceFunc func, uint8_t site, uint8_t pos,
187  uint8_t dcc, uint16_t dev,
188  Device *handler);
189 
190  protected:
191  std::map<uint32_t, Device *> devices;
192 };
193 
203 {
204  public:
205  RealViewOsc(RealViewOscParams *p);
206  virtual ~RealViewOsc() {};
207 
208  void startup() override;
209 
210  void serialize(CheckpointOut &cp) const override;
211  void unserialize(CheckpointIn &cp) override;
212 
213  public: // RealViewCtrl::Device interface
214  uint32_t read() const override;
215  void write(uint32_t freq) override;
216 
217  protected:
218  void clockPeriod(Tick clock_period);
219 };
220 
229 {
230  public:
231  RealViewTemperatureSensor(RealViewTemperatureSensorParams *p)
232  : SimObject(p),
233  RealViewCtrl::Device(*p->parent, RealViewCtrl::FUNC_TEMP,
234  p->site, p->position, p->dcc, p->device),
235  system(p->system)
236  {}
238 
239  public: // RealViewCtrl::Device interface
240  uint32_t read() const override;
241  void write(uint32_t temp) override {}
242 
243  protected:
246 };
247 
248 
249 #endif // __DEV_ARM_RV_HH__
RealViewCtrl::TestOsc4
@ TestOsc4
Definition: rv_ctrl.hh:121
RealViewCtrl::Device::write
virtual void write(uint32_t value)=0
RealViewCtrl::registerDevice
void registerDevice(DeviceFunc func, uint8_t site, uint8_t pos, uint8_t dcc, uint16_t dev, Device *handler)
Definition: rv_ctrl.cc:216
RealViewTemperatureSensor
This device implements the temperature sensor used in the RealView/Versatile Express platform.
Definition: rv_ctrl.hh:227
io_device.hh
RealViewOsc::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: rv_ctrl.cc:259
RealViewCtrl::start
Bitfield< 31 > start
Definition: rv_ctrl.hh:137
RealViewCtrl::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: rv_ctrl.cc:204
RealViewCtrl::RealViewCtrl
RealViewCtrl(Params *p)
The constructor for RealView just registers itself with the MMU.
Definition: rv_ctrl.cc:48
RealViewCtrl::CfgData2
@ CfgData2
Definition: rv_ctrl.hh:97
RealViewCtrl::params
const Params * params() const
Definition: rv_ctrl.hh:158
RealViewCtrl::pos
Bitfield< 15, 12 > pos
Definition: rv_ctrl.hh:132
Flags
Definition: flags.hh:33
RealViewCtrl::CfgData1
@ CfgData1
Definition: rv_ctrl.hh:96
RealViewCtrl::FUNC_RESET
@ FUNC_RESET
Definition: rv_ctrl.hh:59
RealViewCtrl::Osc3
@ Osc3
Definition: rv_ctrl.hh:92
RealViewCtrl::locked
Bitfield< 16 > locked
Definition: rv_ctrl.hh:127
RealViewCtrl::Params
RealViewCtrlParams Params
Definition: rv_ctrl.hh:156
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:63
RealViewCtrl::Misc
@ Misc
Definition: rv_ctrl.hh:110
RealViewCtrl::Led
@ Led
Definition: rv_ctrl.hh:88
RealViewCtrl::NvFlags
@ NvFlags
Definition: rv_ctrl.hh:100
RealViewCtrl::FUNC_SHUTDOWN
@ FUNC_SHUTDOWN
Definition: rv_ctrl.hh:62
RealViewOsc::read
uint32_t read() const override
Definition: rv_ctrl.cc:287
RealViewCtrl::Osc2
@ Osc2
Definition: rv_ctrl.hh:91
RealViewCtrl::Flash
@ Flash
Definition: rv_ctrl.hh:105
RealViewCtrl::FUNC_POWER
@ FUNC_POWER
Definition: rv_ctrl.hh:65
RealViewCtrl::FUNC_ENERGY
@ FUNC_ENERGY
Definition: rv_ctrl.hh:66
RealViewCtrl::EndBitUnion
EndBitUnion(SysLockReg) BitUnion32(CfgCtrlReg) Bitfield< 11
RealViewCtrl::FUNC_SCC
@ FUNC_SCC
Definition: rv_ctrl.hh:60
RealViewCtrl::NvFlagsClr
@ NvFlagsClr
Definition: rv_ctrl.hh:101
RealViewOsc::~RealViewOsc
virtual ~RealViewOsc()
Definition: rv_ctrl.hh:206
RealViewCtrl::Device::~Device
virtual ~Device()
Definition: rv_ctrl.hh:78
RealViewCtrl::func
Bitfield< 25, 20 > func
Definition: rv_ctrl.hh:134
RealViewCtrl::CfgData
@ CfgData
Definition: rv_ctrl.hh:114
ClockDomain
The ClockDomain provides clock to group of clocked objects bundled under the same clock domain.
Definition: clock_domain.hh:68
RealViewCtrl::FUNC_OSC
@ FUNC_OSC
Definition: rv_ctrl.hh:55
RealViewCtrl::MciCtl
@ MciCtl
Definition: rv_ctrl.hh:104
RealViewCtrl::Device::Device
Device(RealViewCtrl &parent, DeviceFunc func, uint8_t site, uint8_t pos, uint8_t dcc, uint16_t dev)
Definition: rv_ctrl.hh:72
RealViewCtrl::Lock
@ Lock
Definition: rv_ctrl.hh:94
RealViewCtrl::site
Bitfield< 17, 16 > site
Definition: rv_ctrl.hh:133
RealViewTemperatureSensor::~RealViewTemperatureSensor
virtual ~RealViewTemperatureSensor()
Definition: rv_ctrl.hh:237
RealViewCtrl::TestOsc0
@ TestOsc0
Definition: rv_ctrl.hh:117
RealViewCtrl::flags
uint32_t flags
This register is used for smp booting.
Definition: rv_ctrl.hh:149
RealViewCtrl::CfgStat
@ CfgStat
Definition: rv_ctrl.hh:116
RealViewCtrl::dcc
Bitfield< 29, 26 > dcc
Definition: rv_ctrl.hh:135
RealViewCtrl::FlagsClr
@ FlagsClr
Definition: rv_ctrl.hh:99
RealViewCtrl::FUNC_VOLT
@ FUNC_VOLT
Definition: rv_ctrl.hh:56
cp
Definition: cprintf.cc:40
RealViewCtrl::FUNC_AMP
@ FUNC_AMP
Definition: rv_ctrl.hh:57
RealViewOsc::startup
void startup() override
startup() is the final initialization call before simulation.
Definition: rv_ctrl.cc:251
System
Definition: system.hh:73
RealViewCtrl::FUNC_TEMP
@ FUNC_TEMP
Definition: rv_ctrl.hh:58
RealViewCtrl::ClcdSer
@ ClcdSer
Definition: rv_ctrl.hh:107
RealViewCtrl::Osc1
@ Osc1
Definition: rv_ctrl.hh:90
RealViewCtrl::scData
uint32_t scData
This register contains the result from a system control reg access.
Definition: rv_ctrl.hh:153
bitunion.hh
RealViewCtrl::BitUnion32
BitUnion32(SysLockReg) Bitfield< 15
RealViewCtrl::lockVal
lockVal
Definition: rv_ctrl.hh:126
RealViewCtrl
Definition: rv_ctrl.hh:51
RealViewCtrl::ProcId0
@ ProcId0
Definition: rv_ctrl.hh:112
RealViewCtrl::read
Tick read(PacketPtr pkt) override
Handle a read to the device.
Definition: rv_ctrl.cc:54
RealViewCtrl::Clock24
@ Clock24
Definition: rv_ctrl.hh:109
RealViewCtrl::PciCtl
@ PciCtl
Definition: rv_ctrl.hh:103
RealViewCtrl::ResetCtl
@ ResetCtl
Definition: rv_ctrl.hh:102
RealViewCtrl::CfgCtrl
@ CfgCtrl
Definition: rv_ctrl.hh:115
RealViewCtrl::Device::read
virtual uint32_t read() const =0
RealViewCtrl::Clcd
@ Clcd
Definition: rv_ctrl.hh:106
RealViewCtrl::TestOsc3
@ TestOsc3
Definition: rv_ctrl.hh:120
RealViewOsc::RealViewOsc
RealViewOsc(RealViewOscParams *p)
Definition: rv_ctrl.cc:237
RealViewCtrl::TestOsc1
@ TestOsc1
Definition: rv_ctrl.hh:118
RealViewOsc::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: rv_ctrl.cc:265
RealViewCtrl::TestOsc2
@ TestOsc2
Definition: rv_ctrl.hh:119
RealViewCtrl::write
Tick write(PacketPtr pkt) override
All writes are simply ignored.
Definition: rv_ctrl.cc:130
RealViewCtrl::dev
dev
Definition: rv_ctrl.hh:131
RealViewCtrl::IdReg
@ IdReg
Definition: rv_ctrl.hh:86
RealViewOsc::write
void write(uint32_t freq) override
Definition: rv_ctrl.cc:295
RealViewTemperatureSensor::system
System * system
The system this RV device belongs to.
Definition: rv_ctrl.hh:245
RealViewCtrl::SwReg
@ SwReg
Definition: rv_ctrl.hh:87
RealViewCtrl::Clock100
@ Clock100
Definition: rv_ctrl.hh:95
RealViewCtrl::Osc4
@ Osc4
Definition: rv_ctrl.hh:93
RealViewTemperatureSensor::write
void write(uint32_t temp) override
Definition: rv_ctrl.hh:241
SimObject::_params
const SimObjectParams * _params
Cached copy of the object parameters.
Definition: sim_object.hh:110
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:257
BasicPioDevice
Definition: io_device.hh:150
RealViewCtrl::devices
std::map< uint32_t, Device * > devices
Definition: rv_ctrl.hh:191
RealViewCtrl::ProcId1
@ ProcId1
Definition: rv_ctrl.hh:113
RealViewCtrl::IoSel
@ IoSel
Definition: rv_ctrl.hh:111
RealViewCtrl::DeviceFunc
DeviceFunc
Definition: rv_ctrl.hh:54
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:63
RealViewCtrl::Bootcs
@ Bootcs
Definition: rv_ctrl.hh:108
RealViewCtrl::FUNC_REBOOT
@ FUNC_REBOOT
Definition: rv_ctrl.hh:63
RealViewCtrl::Device
Definition: rv_ctrl.hh:69
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
RealViewTemperatureSensor::RealViewTemperatureSensor
RealViewTemperatureSensor(RealViewTemperatureSensorParams *p)
Definition: rv_ctrl.hh:231
CheckpointIn
Definition: serialize.hh:67
RealViewCtrl::wr
Bitfield< 30 > wr
Definition: rv_ctrl.hh:136
RealViewOsc
This is an implementation of a programmable oscillator on the that can be configured through the Real...
Definition: rv_ctrl.hh:201
RealViewTemperatureSensor::read
uint32_t read() const override
Definition: rv_ctrl.cc:302
RealViewCtrl::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: rv_ctrl.cc:210
ClockDomain::clockPeriod
Tick clockPeriod() const
Get the clock period.
Definition: clock_domain.hh:105
RealViewCtrl::FUNC_MUXFPGA
@ FUNC_MUXFPGA
Definition: rv_ctrl.hh:61
RealViewCtrl::Osc0
@ Osc0
Definition: rv_ctrl.hh:89
RealViewCtrl::FUNC_DVIMODE
@ FUNC_DVIMODE
Definition: rv_ctrl.hh:64
RealViewCtrl::sysLock
SysLockReg sysLock
Definition: rv_ctrl.hh:142
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:92

Generated on Wed Sep 30 2020 14:02:10 for gem5 by doxygen 1.8.17