xref: /rk3399_ARM-atf/include/lib/cpus/aarch64/qemu_max.h (revision 5d764e05e424bc4a82bbd27cf145122e729660b0)
1*5d764e05SLeif Lindholm /*
2*5d764e05SLeif Lindholm  * Copyright (c) 2014-2021, ARM Limited and Contributors. All rights reserved.
3*5d764e05SLeif Lindholm  *
4*5d764e05SLeif Lindholm  * SPDX-License-Identifier: BSD-3-Clause
5*5d764e05SLeif Lindholm  */
6*5d764e05SLeif Lindholm 
7*5d764e05SLeif Lindholm #ifndef QEMU_MAX_H
8*5d764e05SLeif Lindholm #define QEMU_MAX_H
9*5d764e05SLeif Lindholm 
10*5d764e05SLeif Lindholm #include <lib/utils_def.h>
11*5d764e05SLeif Lindholm 
12*5d764e05SLeif Lindholm /*
13*5d764e05SLeif Lindholm  *  QEMU MAX midr for revision 0
14*5d764e05SLeif Lindholm  *  00   - Reserved for software use
15*5d764e05SLeif Lindholm  *  0    - Variant
16*5d764e05SLeif Lindholm  *  F    - Architectural features identified in ID_* registers
17*5d764e05SLeif Lindholm  *  051  - 'Q', in a 12-bit field.
18*5d764e05SLeif Lindholm  *  0    - Revision
19*5d764e05SLeif Lindholm  */
20*5d764e05SLeif Lindholm #define QEMU_MAX_MIDR		U(0x000F0510)
21*5d764e05SLeif Lindholm 
22*5d764e05SLeif Lindholm #endif /* QEMU_MAX_H */
23