arm_defs.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Linux 2.6.32 and later Kernel module for VMware MVP Hypervisor Support
  3. *
  4. * Copyright (C) 2010-2013 VMware, Inc. All rights reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License version 2 as published by
  8. * the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along with
  16. * this program; see the file COPYING. If not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. #line 5
  20. /**
  21. * @file
  22. *
  23. * @brief Umbrella header file for all ARM-related definitions. By
  24. * including this you gain access to all such definitions in
  25. * lib/arm and are guaranteed a stable include.
  26. */
  27. #ifndef _ARM_DEFS_H_
  28. #define _ARM_DEFS_H_
  29. #define INCLUDE_ALLOW_MVPD
  30. #define INCLUDE_ALLOW_VMX
  31. #define INCLUDE_ALLOW_MODULE
  32. #define INCLUDE_ALLOW_MONITOR
  33. #define INCLUDE_ALLOW_PV
  34. #define INCLUDE_ALLOW_GPL
  35. #include "include_check.h"
  36. #define ARM_V4 4
  37. #define ARM_V5 5
  38. #define ARM_V6 6
  39. #define ARM_V7 7
  40. #define ARM_V8 8
  41. #include "coproc_defs.h"
  42. #include "exc_defs.h"
  43. #include "instr_defs.h"
  44. #include "mmu_defs.h"
  45. #include "lpae_defs.h"
  46. #include "ve_defs.h"
  47. #include "psr_defs.h"
  48. #endif /* _ARM_DEFS_H_ */