gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mhu.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 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_CSS_MHU_H__
39 #define __DEV_ARM_CSS_MHU_H__
40 
41 #include "dev/arm/doorbell.hh"
42 #include "dev/io_device.hh"
43 
44 struct Ap2ScpDoorbellParams;
45 class ArmInterruptPin;
46 class MHU;
47 struct MHUParams;
48 class Scp;
49 struct Scp2ApDoorbellParams;
50 
51 class MhuDoorbell : public Doorbell
52 {
53  public:
54  friend class MHU;
55 
56  MhuDoorbell(const DoorbellParams &p)
57  : Doorbell(p), channel(0)
58  {}
59 
60  void set(uint32_t val) { update(channel | val); }
61  void clear(uint32_t val) { update(channel & ~val); }
62 
63  protected:
64  void update(uint32_t new_val);
65 
66  virtual void raiseInterrupt() = 0;
67  virtual void clearInterrupt() = 0;
68 
69  uint32_t channel;
70 };
71 
73 {
74  public:
75  Scp2ApDoorbell(const Scp2ApDoorbellParams &p);
76 
77  void raiseInterrupt() override;
78  void clearInterrupt() override;
79 
80  private:
82 };
83 
85 {
86  public:
87  Ap2ScpDoorbell(const Ap2ScpDoorbellParams &p);
88 
89  void setScp(Scp *_scp) { scp = _scp; }
90 
91  void raiseInterrupt() override;
92  void clearInterrupt() override;
93 
94  private:
95  Scp *scp;
96 };
97 
99 class MHU : public BasicPioDevice
100 {
101  public:
102  enum
103  {
111 
114  CPU_INTR_L_SET = 0x108,
117  CPU_INTR_H_SET = 0x128,
119 
121  SCP_INTR_S_SET = 0x208,
124  CPU_INTR_S_SET = 0x308,
126 
127  MHU_SCFG = 0x400,
128 
129  PID4 = 0xfd0,
130  PID0 = 0xfe0,
131  PID1 = 0xfe4,
132  PID2 = 0xfe8,
133  PID3 = 0xfec,
134 
135  COMPID0 = 0xff0,
136  COMPID1 = 0xff4,
137  COMPID2 = 0xff8,
138  COMPID3 = 0xffc
139  };
140 
141  // Secure Violation Interrupt: used when accessing
142  // a secure channel in non secure mode
143  static const uint32_t SVI_INT = 0x80000000;
144 
145  MHU(const MHUParams &p);
146 
147  AddrRangeList getAddrRanges() const override;
148 
149  Tick read(PacketPtr pkt) override;
150  Tick write(PacketPtr pkt) override;
151 
152  uint32_t read32(const Addr addr, bool secure_access);
153 
157 
161 
162  // MHU.PIDn, MHU.COMPIDn registers
163  uint32_t pid[5];
164  uint32_t compid[4];
165 
166  uint32_t scfg;
167 };
168 
169 #endif // __DEV_ARM_CSS_MHU_H__
MHU::scfg
uint32_t scfg
Definition: mhu.hh:166
io_device.hh
MHU::SCP_INTR_L_STAT
@ SCP_INTR_L_STAT
From SCP to Application Processor.
Definition: mhu.hh:105
MHU::apHigh
Ap2ScpDoorbell * apHigh
Definition: mhu.hh:159
MHU::SCP_INTR_L_SET
@ SCP_INTR_L_SET
Definition: mhu.hh:106
MHU::COMPID0
@ COMPID0
Definition: mhu.hh:135
MHU::CPU_INTR_H_STAT
@ CPU_INTR_H_STAT
Definition: mhu.hh:116
MHU::CPU_INTR_H_SET
@ CPU_INTR_H_SET
Definition: mhu.hh:117
MHU::scpLow
Scp2ApDoorbell * scpLow
Definition: mhu.hh:154
Ap2ScpDoorbell::raiseInterrupt
void raiseInterrupt() override
Definition: mhu.cc:232
MHU::PID1
@ PID1
Definition: mhu.hh:131
MhuDoorbell::clearInterrupt
virtual void clearInterrupt()=0
Doorbell
Generic doorbell interface.
Definition: doorbell.hh:50
Scp2ApDoorbell::interrupt
ArmInterruptPin * interrupt
Definition: mhu.hh:81
MHU::CPU_INTR_S_CLEAR
@ CPU_INTR_S_CLEAR
Definition: mhu.hh:125
MHU::CPU_INTR_S_STAT
@ CPU_INTR_S_STAT
Definition: mhu.hh:123
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
MHU::apSec
Ap2ScpDoorbell * apSec
Definition: mhu.hh:160
doorbell.hh
MHU::CPU_INTR_S_SET
@ CPU_INTR_S_SET
Definition: mhu.hh:124
Ap2ScpDoorbell::setScp
void setScp(Scp *_scp)
Definition: mhu.hh:89
MHU
Message Handling Unit.
Definition: mhu.hh:99
MHU::read32
uint32_t read32(const Addr addr, bool secure_access)
Definition: mhu.cc:95
MHU::CPU_INTR_L_SET
@ CPU_INTR_L_SET
Definition: mhu.hh:114
Scp2ApDoorbell::clearInterrupt
void clearInterrupt() override
Definition: mhu.cc:226
MHU::SCP_INTR_H_SET
@ SCP_INTR_H_SET
Definition: mhu.hh:109
MhuDoorbell
Definition: mhu.hh:51
MHU::getAddrRanges
AddrRangeList getAddrRanges() const override
Every PIO device is obliged to provide an implementation that returns the address ranges the device r...
Definition: mhu.cc:74
MHU::CPU_INTR_H_CLEAR
@ CPU_INTR_H_CLEAR
Definition: mhu.hh:118
MHU::MHU_SCFG
@ MHU_SCFG
Definition: mhu.hh:127
Scp2ApDoorbell
Definition: mhu.hh:72
MHU::PID2
@ PID2
Definition: mhu.hh:132
MhuDoorbell::update
void update(uint32_t new_val)
Definition: mhu.cc:206
MHU::PID0
@ PID0
Definition: mhu.hh:130
Ap2ScpDoorbell::Ap2ScpDoorbell
Ap2ScpDoorbell(const Ap2ScpDoorbellParams &p)
Definition: mhu.cc:52
MHU::PID4
@ PID4
Definition: mhu.hh:129
MHU::CPU_INTR_L_STAT
@ CPU_INTR_L_STAT
From Application Processor to SCP.
Definition: mhu.hh:113
MhuDoorbell::MhuDoorbell
MhuDoorbell(const DoorbellParams &p)
Definition: mhu.hh:56
MHU::SCP_INTR_H_STAT
@ SCP_INTR_H_STAT
Definition: mhu.hh:108
MhuDoorbell::set
void set(uint32_t val)
Definition: mhu.hh:60
MHU::CPU_INTR_L_CLEAR
@ CPU_INTR_L_CLEAR
Definition: mhu.hh:115
MHU::SVI_INT
static const uint32_t SVI_INT
Definition: mhu.hh:143
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
Scp
Definition: scp.hh:45
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
MHU::SCP_INTR_S_CLEAR
@ SCP_INTR_S_CLEAR
Definition: mhu.hh:122
MHU::write
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: mhu.cc:148
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
Scp2ApDoorbell::raiseInterrupt
void raiseInterrupt() override
Definition: mhu.cc:220
MHU::scpHigh
Scp2ApDoorbell * scpHigh
Definition: mhu.hh:155
MHU::apLow
Ap2ScpDoorbell * apLow
Definition: mhu.hh:158
MHU::PID3
@ PID3
Definition: mhu.hh:133
MHU::compid
uint32_t compid[4]
Definition: mhu.hh:164
MHU::SCP_INTR_H_CLEAR
@ SCP_INTR_H_CLEAR
Definition: mhu.hh:110
MHU::MHU
MHU(const MHUParams &p)
Definition: mhu.cc:56
MHU::SCP_INTR_S_STAT
@ SCP_INTR_S_STAT
Definition: mhu.hh:120
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
Ap2ScpDoorbell
Definition: mhu.hh:84
ArmInterruptPin
Generic representation of an Arm interrupt pin.
Definition: base_gic.hh:179
Ap2ScpDoorbell::scp
Scp * scp
Definition: mhu.hh:95
MHU::SCP_INTR_L_CLEAR
@ SCP_INTR_L_CLEAR
Definition: mhu.hh:107
MHU::COMPID3
@ COMPID3
Definition: mhu.hh:138
MhuDoorbell::raiseInterrupt
virtual void raiseInterrupt()=0
MHU::read
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: mhu.cc:80
MHU::scpSec
Scp2ApDoorbell * scpSec
Definition: mhu.hh:156
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
std::list< AddrRange >
MHU::pid
uint32_t pid[5]
Definition: mhu.hh:163
MHU::COMPID2
@ COMPID2
Definition: mhu.hh:137
MHU::SCP_INTR_S_SET
@ SCP_INTR_S_SET
Definition: mhu.hh:121
MhuDoorbell::channel
uint32_t channel
Definition: mhu.hh:69
Scp2ApDoorbell::Scp2ApDoorbell
Scp2ApDoorbell(const Scp2ApDoorbellParams &p)
Definition: mhu.cc:48
MhuDoorbell::clear
void clear(uint32_t val)
Definition: mhu.hh:61
Ap2ScpDoorbell::clearInterrupt
void clearInterrupt() override
Definition: mhu.cc:238
MHU::COMPID1
@ COMPID1
Definition: mhu.hh:136

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