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