repo.or.cz
/
qemu
/
armbru.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'pull-loongarch-20241016' of https://gitlab.com/gaosong/qemu into staging
[qemu/armbru.git]
/
target
/
arm
/
gtimer.h
blob
b992941bef11b440923f8bd40d3451ed63d44ee7
1
/*
2
* ARM generic timer definitions for Arm A-class CPU
3
*
4
* Copyright (c) 2003 Fabrice Bellard
5
*
6
* SPDX-License-Identifier: LGPL-2.1-or-later
7
*/
8
9
#ifndef TARGET_ARM_GTIMER_H
10
#define TARGET_ARM_GTIMER_H
11
12
enum
{
13
GTIMER_PHYS
=
0
,
14
GTIMER_VIRT
=
1
,
15
GTIMER_HYP
=
2
,
16
GTIMER_SEC
=
3
,
17
GTIMER_HYPVIRT
=
4
,
18
#define NUM_GTIMERS 5
19
};
20
21
#endif