gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
intmessage.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * Authors: Gabe Black
29  */
30 
31 #ifndef __ARCH_X86_INTMESSAGE_HH__
32 #define __ARCH_X86_INTMESSAGE_HH__
33 
34 #include "arch/x86/x86_traits.hh"
35 #include "base/bitunion.hh"
36 #include "base/types.hh"
37 #include "dev/x86/intdev.hh"
38 #include "mem/packet.hh"
39 #include "mem/packet_access.hh"
40 #include "mem/request.hh"
41 
42 namespace X86ISA
43 {
44  BitUnion32(TriggerIntMessage)
45  Bitfield<7, 0> destination;
46  Bitfield<15, 8> vector;
47  Bitfield<18, 16> deliveryMode;
48  Bitfield<19> destMode;
49  Bitfield<20> level;
50  Bitfield<21> trigger;
51  EndBitUnion(TriggerIntMessage)
52 
53  namespace DeliveryMode
54  {
55  enum IntDeliveryMode {
56  Fixed = 0,
57  LowestPriority = 1,
58  SMI = 2,
59  NMI = 4,
60  INIT = 5,
61  SIPI = 6,
62  ExtInt = 7,
63  NumModes
64  };
65 
66  static const char * const names[NumModes] = {
67  "Fixed", "LowestPriority", "SMI", "Reserved",
68  "NMI", "INIT", "Startup", "ExtInt"
69  };
70 
71  static inline bool
72  isReserved(int mode)
73  {
74  return mode == 3;
75  }
76  }
77 
78  static const Addr TriggerIntOffset = 0;
79 
80  static inline PacketPtr
81  buildIntTriggerPacket(int id, TriggerIntMessage message)
82  {
83  Addr addr = x86InterruptAddress(id, TriggerIntOffset);
84  return buildIntPacket(addr, message);
85  }
86 }
87 
88 #endif
EndBitUnion(TriggerIntMessage) namespace DeliveryMode
Definition: intmessage.hh:51
Declaration of a request, the overall memory request consisting of the parts of the request that are ...
PacketPtr buildIntPacket(Addr addr, T payload)
Definition: intdev.hh:87
static const Addr TriggerIntOffset
Definition: intmessage.hh:78
Bitfield< 4, 0 > mode
Bitfield< 19 > destMode
Definition: intmessage.hh:48
BitUnion32(TriggerIntMessage) Bitfield< 7
static Addr x86InterruptAddress(const uint8_t id, const uint16_t addr)
Definition: x86_traits.hh:100
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:255
Bitfield< 15, 8 > vector
Definition: intmessage.hh:46
Bitfield< 20 > level
Definition: intmessage.hh:49
Declaration of the Packet class.
This is exposed globally, independent of the ISA.
Definition: acpi.hh:57
Bitfield< 18, 16 > deliveryMode
Definition: intmessage.hh:47
static PacketPtr buildIntTriggerPacket(int id, TriggerIntMessage message)
Definition: intmessage.hh:81
Bitfield< 21 > trigger
Definition: intmessage.hh:50
Bitfield< 3 > addr
Definition: types.hh:81

Generated on Fri Feb 28 2020 16:26:58 for gem5 by doxygen 1.8.13