gem5  v22.1.0.0
RubySlicc_ComponentMapping.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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 
29 #ifndef __MEM_RUBY_SLICC_INTERFACE_RUBYSLICC_COMPONENTMAPPINGS_HH__
30 #define __MEM_RUBY_SLICC_INTERFACE_RUBYSLICC_COMPONENTMAPPINGS_HH__
31 
35 #include "mem/ruby/protocol/MachineType.hh"
37 
38 namespace gem5
39 {
40 
41 namespace ruby
42 {
43 
44 inline NetDest
45 broadcast(MachineType type)
46 {
47  NetDest dest;
48  for (NodeID i = 0; i < MachineType_base_count(type); i++) {
49  MachineID mach = {type, i};
50  dest.add(mach);
51  }
52  return dest;
53 }
54 
55 inline MachineID
56 mapAddressToRange(Addr addr, MachineType type, int low_bit,
57  int num_bits, int cluster_id = 0)
58 {
59  MachineID mach = {type, 0};
60  if (num_bits == 0)
61  mach.num = cluster_id;
62  else
63  mach.num = bitSelect(addr, low_bit, low_bit + num_bits - 1)
64  + (1 << num_bits) * cluster_id;
65  return mach;
66 }
67 
68 inline NodeID
70 {
71  return machID.num;
72 }
73 
74 inline MachineType
76 {
77  return machID.type;
78 }
79 
80 inline int
81 machineCount(MachineType machType)
82 {
83  return MachineType_base_count(machType);
84 }
85 
86 inline MachineID
87 createMachineID(MachineType type, NodeID id)
88 {
89  MachineID mach = {type, id};
90  return mach;
91 }
92 
93 inline MachineID
95 {
96  MachineID mach = {type, node};
97  return mach;
98 }
99 
100 } // namespace ruby
101 } // namespace gem5
102 
103 #endif // __MEM_RUBY_SLICC_INTERFACE_COMPONENTMAPPINGS_HH__
void add(MachineID newElement)
Definition: NetDest.cc:45
Bitfield< 7 > i
Definition: misc_types.hh:67
Bitfield< 3 > addr
Definition: types.hh:84
MachineType machineIDToMachineType(MachineID machID)
int machineCount(MachineType machType)
NetDest broadcast(MachineType type)
MachineID MachineTypeAndNodeIDToMachineID(MachineType type, NodeID node)
unsigned int NodeID
Definition: TypeDefines.hh:42
Addr bitSelect(Addr addr, unsigned int small, unsigned int big)
Definition: Address.cc:41
MachineID createMachineID(MachineType type, NodeID id)
MachineID mapAddressToRange(Addr addr, MachineType type, int low_bit, int num_bits, int cluster_id=0)
NodeID machineIDToNodeID(MachineID machID)
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
NodeID num
range: 0 ... number of this machine's components in system - 1
Definition: MachineID.hh:64
MachineType type
Definition: MachineID.hh:62

Generated on Wed Dec 21 2022 10:22:38 for gem5 by doxygen 1.9.1