gem5
v21.0.0.0
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Enumerations
a
c
d
e
f
i
l
m
o
p
r
s
t
v
x
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
:
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
_
a
b
c
d
e
f
g
h
i
l
m
o
p
q
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
dev
hsa
hsa_signal.hh
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2016-2019 Advanced Micro Devices, Inc.
3
* All rights reserved.
4
*
5
* For use for simulation and test purposes only
6
*
7
* Redistribution and use in source and binary forms, with or without
8
* modification, are permitted provided that the following conditions are met:
9
*
10
* 1. Redistributions of source code must retain the above copyright notice,
11
* this list of conditions and the following disclaimer.
12
*
13
* 2. Redistributions in binary form must reproduce the above copyright notice,
14
* this list of conditions and the following disclaimer in the documentation
15
* and/or other materials provided with the distribution.
16
*
17
* 3. Neither the name of the copyright holder nor the names of its
18
* contributors may be used to endorse or promote products derived from this
19
* software without specific prior written permission.
20
*
21
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
25
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31
* POSSIBILITY OF SUCH DAMAGE.
32
*/
33
#ifndef DEV_HSA_HSA_SIGNAL_H
34
#define DEV_HSA_HSA_SIGNAL_H
35
36
// AMD Signal Kind Enumeration Values.
37
typedef
int64_t
amd_signal_kind64_t
;
38
enum
amd_signal_kind_t
{
39
AMD_SIGNAL_KIND_INVALID
= 0,
40
AMD_SIGNAL_KIND_USER
= 1,
41
AMD_SIGNAL_KIND_DOORBELL
= -1,
42
AMD_SIGNAL_KIND_LEGACY_DOORBELL
= -2
43
};
44
45
// AMD Signal.
46
typedef
struct
amd_signal_s
{
47
amd_signal_kind64_t
kind
;
48
union
{
49
volatile
int64_t
value
;
50
volatile
uint32_t*
legacy_hardware_doorbell_ptr
;
51
volatile
uint64_t*
hardware_doorbell_ptr
;
52
};
53
uint64_t
event_mailbox_ptr
;
54
uint32_t
event_id
;
55
uint32_t
reserved1
;
56
uint64_t
start_ts
;
57
uint64_t
end_ts
;
58
union
{
59
uint64_t
queue_ptr
;
60
uint64_t
reserved2
;
61
};
62
uint32_t
reserved3
[2];
63
}
amd_signal_t
;
64
65
#endif // DEV_HSA_HSA_SIGNAL_H
amd_signal_s::start_ts
uint64_t start_ts
Definition:
hsa_signal.hh:56
AMD_SIGNAL_KIND_INVALID
@ AMD_SIGNAL_KIND_INVALID
Definition:
hsa_signal.hh:39
amd_signal_s::legacy_hardware_doorbell_ptr
volatile uint32_t * legacy_hardware_doorbell_ptr
Definition:
hsa_signal.hh:50
amd_signal_s::hardware_doorbell_ptr
volatile uint64_t * hardware_doorbell_ptr
Definition:
hsa_signal.hh:51
amd_signal_kind_t
amd_signal_kind_t
Definition:
hsa_signal.hh:38
AMD_SIGNAL_KIND_LEGACY_DOORBELL
@ AMD_SIGNAL_KIND_LEGACY_DOORBELL
Definition:
hsa_signal.hh:42
amd_signal_s::value
volatile int64_t value
Definition:
hsa_signal.hh:49
amd_signal_s::reserved1
uint32_t reserved1
Definition:
hsa_signal.hh:55
amd_signal_s::reserved2
uint64_t reserved2
Definition:
hsa_signal.hh:60
amd_signal_s
Definition:
hsa_signal.hh:46
amd_signal_s::event_mailbox_ptr
uint64_t event_mailbox_ptr
Definition:
hsa_signal.hh:53
amd_signal_s::kind
amd_signal_kind64_t kind
Definition:
hsa_signal.hh:47
amd_signal_s::queue_ptr
uint64_t queue_ptr
Definition:
hsa_signal.hh:59
amd_signal_t
struct amd_signal_s amd_signal_t
amd_signal_s::reserved3
uint32_t reserved3[2]
Definition:
hsa_signal.hh:62
AMD_SIGNAL_KIND_USER
@ AMD_SIGNAL_KIND_USER
Definition:
hsa_signal.hh:40
AMD_SIGNAL_KIND_DOORBELL
@ AMD_SIGNAL_KIND_DOORBELL
Definition:
hsa_signal.hh:41
amd_signal_kind64_t
int64_t amd_signal_kind64_t
Definition:
hsa_signal.hh:37
amd_signal_s::event_id
uint32_t event_id
Definition:
hsa_signal.hh:54
amd_signal_s::end_ts
uint64_t end_ts
Definition:
hsa_signal.hh:57
Generated on Tue Mar 23 2021 19:41:26 for gem5 by
doxygen
1.8.17