gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
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:
157 
162  RealViewCtrl(const Params &p);
163 
169  Tick read(PacketPtr pkt) override;
170 
176  Tick write(PacketPtr pkt) override;
177 
178  void serialize(CheckpointOut &cp) const override;
179  void unserialize(CheckpointIn &cp) override;
180 
181  public:
182  void registerDevice(DeviceFunc func, uint8_t site, uint8_t pos,
183  uint8_t dcc, uint16_t dev,
184  Device *handler);
185 
186  protected:
187  std::map<uint32_t, Device *> devices;
188 };
189 
198  : public ClockDomain, RealViewCtrl::Device
199 {
200  public:
201  RealViewOsc(const RealViewOscParams &p);
202  virtual ~RealViewOsc() {};
203 
204  void startup() override;
205 
206  void serialize(CheckpointOut &cp) const override;
207  void unserialize(CheckpointIn &cp) override;
208 
209  public: // RealViewCtrl::Device interface
210  uint32_t read() const override;
211  void write(uint32_t freq) override;
212 
213  protected:
214  void clockPeriod(Tick clock_period);
215 };
216 
225 {
226  public:
227  RealViewTemperatureSensor(const RealViewTemperatureSensorParams &p)
228  : SimObject(p),
229  RealViewCtrl::Device(*p.parent, RealViewCtrl::FUNC_TEMP,
230  p.site, p.position, p.dcc, p.device),
231  system(p.system)
232  {}
234 
235  public: // RealViewCtrl::Device interface
236  uint32_t read() const override;
237  void write(uint32_t temp) override {}
238 
239  protected:
242 };
243 
244 
245 #endif // __DEV_ARM_RV_HH__
RealViewCtrl::CfgData1
@ CfgData1
Definition: rv_ctrl.hh:96
RealViewCtrl::Device::write
virtual void write(uint32_t value)=0
RealViewCtrl::Flash
@ Flash
Definition: rv_ctrl.hh:105
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
RealViewCtrl::NvFlags
@ NvFlags
Definition: rv_ctrl.hh:100
RealViewTemperatureSensor
This device implements the temperature sensor used in the RealView/Versatile Express platform.
Definition: rv_ctrl.hh:223
RealViewCtrl::Clock24
@ Clock24
Definition: rv_ctrl.hh:109
RealViewCtrl::CfgCtrl
@ CfgCtrl
Definition: rv_ctrl.hh:115
io_device.hh
RealViewCtrl::Led
@ Led
Definition: rv_ctrl.hh:88
RealViewCtrl::TestOsc0
@ TestOsc0
Definition: rv_ctrl.hh:117
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::ClcdSer
@ ClcdSer
Definition: rv_ctrl.hh:107
RealViewCtrl::pos
Bitfield< 15, 12 > pos
Definition: rv_ctrl.hh:132
Flags
Wrapper that groups a few flag bits under the same undelying container.
Definition: flags.hh:41
RealViewCtrl::FUNC_RESET
@ FUNC_RESET
Definition: rv_ctrl.hh:59
RealViewCtrl::locked
Bitfield< 16 > locked
Definition: rv_ctrl.hh:127
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
RealViewCtrl::ProcId1
@ ProcId1
Definition: rv_ctrl.hh:113
RealViewCtrl::FUNC_SHUTDOWN
@ FUNC_SHUTDOWN
Definition: rv_ctrl.hh:62
RealViewCtrl::PARAMS
PARAMS(RealViewCtrl)
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::TestOsc3
@ TestOsc3
Definition: rv_ctrl.hh:120
RealViewOsc::~RealViewOsc
virtual ~RealViewOsc()
Definition: rv_ctrl.hh:202
RealViewCtrl::Device::~Device
virtual ~Device()
Definition: rv_ctrl.hh:78
RealViewCtrl::func
Bitfield< 25, 20 > func
Definition: rv_ctrl.hh:134
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::Osc1
@ Osc1
Definition: rv_ctrl.hh:90
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
SimObject::startup
virtual void startup()
startup() is the final initialization call before simulation.
Definition: sim_object.cc:93
RealViewCtrl::site
Bitfield< 17, 16 > site
Definition: rv_ctrl.hh:133
RealViewTemperatureSensor::~RealViewTemperatureSensor
virtual ~RealViewTemperatureSensor()
Definition: rv_ctrl.hh:233
RealViewCtrl::flags
uint32_t flags
This register is used for smp booting.
Definition: rv_ctrl.hh:149
RealViewCtrl::dcc
Bitfield< 29, 26 > dcc
Definition: rv_ctrl.hh:135
X86ISA::system
Bitfield< 15 > system
Definition: misc.hh:997
RealViewCtrl::FUNC_VOLT
@ FUNC_VOLT
Definition: rv_ctrl.hh:56
RealViewCtrl::IdReg
@ IdReg
Definition: rv_ctrl.hh:86
cp
Definition: cprintf.cc:37
RealViewCtrl::FUNC_AMP
@ FUNC_AMP
Definition: rv_ctrl.hh:57
RealViewCtrl::Lock
@ Lock
Definition: rv_ctrl.hh:94
RealViewCtrl::Bootcs
@ Bootcs
Definition: rv_ctrl.hh:108
System
Definition: system.hh:73
RealViewCtrl::FUNC_TEMP
@ FUNC_TEMP
Definition: rv_ctrl.hh:58
RealViewCtrl::Osc0
@ Osc0
Definition: rv_ctrl.hh:89
RealViewCtrl::Clock100
@ Clock100
Definition: rv_ctrl.hh:95
RealViewCtrl::CfgStat
@ CfgStat
Definition: rv_ctrl.hh:116
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::read
Tick read(PacketPtr pkt) override
Handle a read to the device.
Definition: rv_ctrl.cc:54
RealViewCtrl::TestOsc1
@ TestOsc1
Definition: rv_ctrl.hh:118
RealViewCtrl::Device::read
virtual uint32_t read() const =0
RealViewCtrl::MciCtl
@ MciCtl
Definition: rv_ctrl.hh:104
RealViewCtrl::SwReg
@ SwReg
Definition: rv_ctrl.hh:87
RealViewCtrl::Osc2
@ Osc2
Definition: rv_ctrl.hh:91
Clocked::clockPeriod
Tick clockPeriod() const
Definition: clocked_object.hh:214
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::TestOsc2
@ TestOsc2
Definition: rv_ctrl.hh:119
RealViewCtrl::ResetCtl
@ ResetCtl
Definition: rv_ctrl.hh:102
RealViewTemperatureSensor::system
System * system
The system this RV device belongs to.
Definition: rv_ctrl.hh:241
RealViewCtrl::NvFlagsClr
@ NvFlagsClr
Definition: rv_ctrl.hh:101
std
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
RealViewTemperatureSensor::write
void write(uint32_t temp) override
Definition: rv_ctrl.hh:237
RealViewCtrl::Clcd
@ Clcd
Definition: rv_ctrl.hh:106
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
BasicPioDevice
Definition: io_device.hh:144
RealViewCtrl::CfgData
@ CfgData
Definition: rv_ctrl.hh:114
RealViewCtrl::devices
std::map< uint32_t, Device * > devices
Definition: rv_ctrl.hh:187
RealViewCtrl::TestOsc4
@ TestOsc4
Definition: rv_ctrl.hh:121
RealViewCtrl::DeviceFunc
DeviceFunc
Definition: rv_ctrl.hh:54
RealViewCtrl::IoSel
@ IoSel
Definition: rv_ctrl.hh:111
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
RealViewCtrl::FUNC_REBOOT
@ FUNC_REBOOT
Definition: rv_ctrl.hh:63
RealViewCtrl::Device
Definition: rv_ctrl.hh:69
RealViewCtrl::Misc
@ Misc
Definition: rv_ctrl.hh:110
RealViewCtrl::Osc4
@ Osc4
Definition: rv_ctrl.hh:93
RealViewCtrl::CfgData2
@ CfgData2
Definition: rv_ctrl.hh:97
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
RealViewCtrl::FlagsClr
@ FlagsClr
Definition: rv_ctrl.hh:99
CheckpointIn
Definition: serialize.hh:68
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:197
RealViewCtrl::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: rv_ctrl.cc:210
RealViewCtrl::ProcId0
@ ProcId0
Definition: rv_ctrl.hh:112
PioDevice::Params
PioDeviceParams Params
Definition: io_device.hh:131
RealViewCtrl::FUNC_MUXFPGA
@ FUNC_MUXFPGA
Definition: rv_ctrl.hh:61
RealViewCtrl::PciCtl
@ PciCtl
Definition: rv_ctrl.hh:103
RealViewTemperatureSensor::RealViewTemperatureSensor
RealViewTemperatureSensor(const RealViewTemperatureSensorParams &p)
Definition: rv_ctrl.hh:227
RealViewCtrl::FUNC_DVIMODE
@ FUNC_DVIMODE
Definition: rv_ctrl.hh:64
RealViewCtrl::sysLock
SysLockReg sysLock
Definition: rv_ctrl.hh:142
RealViewCtrl::Osc3
@ Osc3
Definition: rv_ctrl.hh:92
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:141

Generated on Tue Jun 22 2021 15:28:27 for gem5 by doxygen 1.8.17