+2020-10-20 Luis Machado <luis.machado@arm.com>
+
+ * Makefile.in (HFILES_NO_SRCDIR): Add arch/aarch64-cap-linux.h.
+ * arch/aarch64-cap-linux.h: New header file.
+
2020-10-20 Luis Machado <luis.machado@arm.com>
* aarch64-tdep.h (AARCH64_DWARF_C0, AARCH64_DWARF_CSP)
--- /dev/null
+/* Common target-dependent Linux functionality for AArch64.
+
+ Copyright (C) 2020 Free Software Foundation, Inc.
+
+ This file is part of GDB.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+#ifndef ARCH_AARCH64_LINUX_H
+#define ARCH_AARCH64_LINUX_H
+
+/* Morello HWCAP bit. */
+#define HWCAP2_MORELLO (1 << 19)
+
+#endif /*ARCH_AARCH64_LINUX_H */