sys_regs.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*
  2. * Copyright (C) 2012,2013 - ARM Ltd
  3. * Author: Marc Zyngier <marc.zyngier@arm.com>
  4. *
  5. * Derived from arch/arm/kvm/coproc.h
  6. * Copyright (C) 2012 - Virtual Open Systems and Columbia University
  7. * Authors: Christoffer Dall <c.dall@virtualopensystems.com>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License, version 2, as
  11. * published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. */
  21. #ifndef __ARM64_KVM_SYS_REGS_LOCAL_H__
  22. #define __ARM64_KVM_SYS_REGS_LOCAL_H__
  23. struct sys_reg_params {
  24. u8 Op0;
  25. u8 Op1;
  26. u8 CRn;
  27. u8 CRm;
  28. u8 Op2;
  29. u64 regval;
  30. bool is_write;
  31. bool is_aarch32;
  32. bool is_32bit; /* Only valid if is_aarch32 is true */
  33. };
  34. struct sys_reg_desc {
  35. /* MRS/MSR instruction which accesses it. */
  36. u8 Op0;
  37. u8 Op1;
  38. u8 CRn;
  39. u8 CRm;
  40. u8 Op2;
  41. /* Trapped access from guest, if non-NULL. */
  42. bool (*access)(struct kvm_vcpu *,
  43. struct sys_reg_params *,
  44. const struct sys_reg_desc *);
  45. /* Initialization for vcpu. */
  46. void (*reset)(struct kvm_vcpu *, const struct sys_reg_desc *);
  47. /* Index into sys_reg[], or 0 if we don't need to save it. */
  48. int reg;
  49. /* Value (usually reset value) */
  50. u64 val;
  51. /* Custom get/set_user functions, fallback to generic if NULL */
  52. int (*get_user)(struct kvm_vcpu *vcpu, const struct sys_reg_desc *rd,
  53. const struct kvm_one_reg *reg, void __user *uaddr);
  54. int (*set_user)(struct kvm_vcpu *vcpu, const struct sys_reg_desc *rd,
  55. const struct kvm_one_reg *reg, void __user *uaddr);
  56. };
  57. static inline void print_sys_reg_instr(const struct sys_reg_params *p)
  58. {
  59. /* Look, we even formatted it for you to paste into the table! */
  60. kvm_pr_unimpl(" { Op0(%2u), Op1(%2u), CRn(%2u), CRm(%2u), Op2(%2u), func_%s },\n",
  61. p->Op0, p->Op1, p->CRn, p->CRm, p->Op2, p->is_write ? "write" : "read");
  62. }
  63. static inline bool ignore_write(struct kvm_vcpu *vcpu,
  64. const struct sys_reg_params *p)
  65. {
  66. return true;
  67. }
  68. static inline bool read_zero(struct kvm_vcpu *vcpu,
  69. struct sys_reg_params *p)
  70. {
  71. p->regval = 0;
  72. return true;
  73. }
  74. /* Reset functions */
  75. static inline void reset_unknown(struct kvm_vcpu *vcpu,
  76. const struct sys_reg_desc *r)
  77. {
  78. BUG_ON(!r->reg);
  79. BUG_ON(r->reg >= NR_SYS_REGS);
  80. __vcpu_sys_reg(vcpu, r->reg) = 0x1de7ec7edbadc0deULL;
  81. }
  82. static inline void reset_val(struct kvm_vcpu *vcpu, const struct sys_reg_desc *r)
  83. {
  84. BUG_ON(!r->reg);
  85. BUG_ON(r->reg >= NR_SYS_REGS);
  86. __vcpu_sys_reg(vcpu, r->reg) = r->val;
  87. }
  88. static inline int cmp_sys_reg(const struct sys_reg_desc *i1,
  89. const struct sys_reg_desc *i2)
  90. {
  91. BUG_ON(i1 == i2);
  92. if (!i1)
  93. return 1;
  94. else if (!i2)
  95. return -1;
  96. if (i1->Op0 != i2->Op0)
  97. return i1->Op0 - i2->Op0;
  98. if (i1->Op1 != i2->Op1)
  99. return i1->Op1 - i2->Op1;
  100. if (i1->CRn != i2->CRn)
  101. return i1->CRn - i2->CRn;
  102. if (i1->CRm != i2->CRm)
  103. return i1->CRm - i2->CRm;
  104. return i1->Op2 - i2->Op2;
  105. }
  106. const struct sys_reg_desc *find_reg_by_id(u64 id,
  107. struct sys_reg_params *params,
  108. const struct sys_reg_desc table[],
  109. unsigned int num);
  110. #define Op0(_x) .Op0 = _x
  111. #define Op1(_x) .Op1 = _x
  112. #define CRn(_x) .CRn = _x
  113. #define CRm(_x) .CRm = _x
  114. #define Op2(_x) .Op2 = _x
  115. #define SYS_DESC(reg) \
  116. Op0(sys_reg_Op0(reg)), Op1(sys_reg_Op1(reg)), \
  117. CRn(sys_reg_CRn(reg)), CRm(sys_reg_CRm(reg)), \
  118. Op2(sys_reg_Op2(reg))
  119. #endif /* __ARM64_KVM_SYS_REGS_LOCAL_H__ */