coproc.c 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462
  1. /*
  2. * Copyright (C) 2012 - Virtual Open Systems and Columbia University
  3. * Authors: Rusty Russell <rusty@rustcorp.com.au>
  4. * Christoffer Dall <c.dall@virtualopensystems.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License, version 2, as
  8. * published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. */
  19. #include <linux/bsearch.h>
  20. #include <linux/mm.h>
  21. #include <linux/kvm_host.h>
  22. #include <linux/uaccess.h>
  23. #include <asm/kvm_arm.h>
  24. #include <asm/kvm_host.h>
  25. #include <asm/kvm_emulate.h>
  26. #include <asm/kvm_coproc.h>
  27. #include <asm/kvm_mmu.h>
  28. #include <asm/cacheflush.h>
  29. #include <asm/cputype.h>
  30. #include <trace/events/kvm.h>
  31. #include <asm/vfp.h>
  32. #include "../vfp/vfpinstr.h"
  33. #define CREATE_TRACE_POINTS
  34. #include "trace.h"
  35. #include "coproc.h"
  36. /******************************************************************************
  37. * Co-processor emulation
  38. *****************************************************************************/
  39. static bool write_to_read_only(struct kvm_vcpu *vcpu,
  40. const struct coproc_params *params)
  41. {
  42. WARN_ONCE(1, "CP15 write to read-only register\n");
  43. print_cp_instr(params);
  44. kvm_inject_undefined(vcpu);
  45. return false;
  46. }
  47. static bool read_from_write_only(struct kvm_vcpu *vcpu,
  48. const struct coproc_params *params)
  49. {
  50. WARN_ONCE(1, "CP15 read to write-only register\n");
  51. print_cp_instr(params);
  52. kvm_inject_undefined(vcpu);
  53. return false;
  54. }
  55. /* 3 bits per cache level, as per CLIDR, but non-existent caches always 0 */
  56. static u32 cache_levels;
  57. /* CSSELR values; used to index KVM_REG_ARM_DEMUX_ID_CCSIDR */
  58. #define CSSELR_MAX 12
  59. /*
  60. * kvm_vcpu_arch.cp15 holds cp15 registers as an array of u32, but some
  61. * of cp15 registers can be viewed either as couple of two u32 registers
  62. * or one u64 register. Current u64 register encoding is that least
  63. * significant u32 word is followed by most significant u32 word.
  64. */
  65. static inline void vcpu_cp15_reg64_set(struct kvm_vcpu *vcpu,
  66. const struct coproc_reg *r,
  67. u64 val)
  68. {
  69. vcpu_cp15(vcpu, r->reg) = val & 0xffffffff;
  70. vcpu_cp15(vcpu, r->reg + 1) = val >> 32;
  71. }
  72. static inline u64 vcpu_cp15_reg64_get(struct kvm_vcpu *vcpu,
  73. const struct coproc_reg *r)
  74. {
  75. u64 val;
  76. val = vcpu_cp15(vcpu, r->reg + 1);
  77. val = val << 32;
  78. val = val | vcpu_cp15(vcpu, r->reg);
  79. return val;
  80. }
  81. int kvm_handle_cp10_id(struct kvm_vcpu *vcpu, struct kvm_run *run)
  82. {
  83. kvm_inject_undefined(vcpu);
  84. return 1;
  85. }
  86. int kvm_handle_cp_0_13_access(struct kvm_vcpu *vcpu, struct kvm_run *run)
  87. {
  88. /*
  89. * We can get here, if the host has been built without VFPv3 support,
  90. * but the guest attempted a floating point operation.
  91. */
  92. kvm_inject_undefined(vcpu);
  93. return 1;
  94. }
  95. int kvm_handle_cp14_load_store(struct kvm_vcpu *vcpu, struct kvm_run *run)
  96. {
  97. kvm_inject_undefined(vcpu);
  98. return 1;
  99. }
  100. static void reset_mpidr(struct kvm_vcpu *vcpu, const struct coproc_reg *r)
  101. {
  102. /*
  103. * Compute guest MPIDR. We build a virtual cluster out of the
  104. * vcpu_id, but we read the 'U' bit from the underlying
  105. * hardware directly.
  106. */
  107. vcpu_cp15(vcpu, c0_MPIDR) = ((read_cpuid_mpidr() & MPIDR_SMP_BITMASK) |
  108. ((vcpu->vcpu_id >> 2) << MPIDR_LEVEL_BITS) |
  109. (vcpu->vcpu_id & 3));
  110. }
  111. /* TRM entries A7:4.3.31 A15:4.3.28 - RO WI */
  112. static bool access_actlr(struct kvm_vcpu *vcpu,
  113. const struct coproc_params *p,
  114. const struct coproc_reg *r)
  115. {
  116. if (p->is_write)
  117. return ignore_write(vcpu, p);
  118. *vcpu_reg(vcpu, p->Rt1) = vcpu_cp15(vcpu, c1_ACTLR);
  119. return true;
  120. }
  121. /* TRM entries A7:4.3.56, A15:4.3.60 - R/O. */
  122. static bool access_cbar(struct kvm_vcpu *vcpu,
  123. const struct coproc_params *p,
  124. const struct coproc_reg *r)
  125. {
  126. if (p->is_write)
  127. return write_to_read_only(vcpu, p);
  128. return read_zero(vcpu, p);
  129. }
  130. /* TRM entries A7:4.3.49, A15:4.3.48 - R/O WI */
  131. static bool access_l2ctlr(struct kvm_vcpu *vcpu,
  132. const struct coproc_params *p,
  133. const struct coproc_reg *r)
  134. {
  135. if (p->is_write)
  136. return ignore_write(vcpu, p);
  137. *vcpu_reg(vcpu, p->Rt1) = vcpu_cp15(vcpu, c9_L2CTLR);
  138. return true;
  139. }
  140. static void reset_l2ctlr(struct kvm_vcpu *vcpu, const struct coproc_reg *r)
  141. {
  142. u32 l2ctlr, ncores;
  143. asm volatile("mrc p15, 1, %0, c9, c0, 2\n" : "=r" (l2ctlr));
  144. l2ctlr &= ~(3 << 24);
  145. ncores = atomic_read(&vcpu->kvm->online_vcpus) - 1;
  146. /* How many cores in the current cluster and the next ones */
  147. ncores -= (vcpu->vcpu_id & ~3);
  148. /* Cap it to the maximum number of cores in a single cluster */
  149. ncores = min(ncores, 3U);
  150. l2ctlr |= (ncores & 3) << 24;
  151. vcpu_cp15(vcpu, c9_L2CTLR) = l2ctlr;
  152. }
  153. static void reset_actlr(struct kvm_vcpu *vcpu, const struct coproc_reg *r)
  154. {
  155. u32 actlr;
  156. /* ACTLR contains SMP bit: make sure you create all cpus first! */
  157. asm volatile("mrc p15, 0, %0, c1, c0, 1\n" : "=r" (actlr));
  158. /* Make the SMP bit consistent with the guest configuration */
  159. if (atomic_read(&vcpu->kvm->online_vcpus) > 1)
  160. actlr |= 1U << 6;
  161. else
  162. actlr &= ~(1U << 6);
  163. vcpu_cp15(vcpu, c1_ACTLR) = actlr;
  164. }
  165. /*
  166. * TRM entries: A7:4.3.50, A15:4.3.49
  167. * R/O WI (even if NSACR.NS_L2ERR, a write of 1 is ignored).
  168. */
  169. static bool access_l2ectlr(struct kvm_vcpu *vcpu,
  170. const struct coproc_params *p,
  171. const struct coproc_reg *r)
  172. {
  173. if (p->is_write)
  174. return ignore_write(vcpu, p);
  175. *vcpu_reg(vcpu, p->Rt1) = 0;
  176. return true;
  177. }
  178. /*
  179. * See note at ARMv7 ARM B1.14.4 (TL;DR: S/W ops are not easily virtualized).
  180. */
  181. static bool access_dcsw(struct kvm_vcpu *vcpu,
  182. const struct coproc_params *p,
  183. const struct coproc_reg *r)
  184. {
  185. if (!p->is_write)
  186. return read_from_write_only(vcpu, p);
  187. kvm_set_way_flush(vcpu);
  188. return true;
  189. }
  190. /*
  191. * Generic accessor for VM registers. Only called as long as HCR_TVM
  192. * is set. If the guest enables the MMU, we stop trapping the VM
  193. * sys_regs and leave it in complete control of the caches.
  194. *
  195. * Used by the cpu-specific code.
  196. */
  197. bool access_vm_reg(struct kvm_vcpu *vcpu,
  198. const struct coproc_params *p,
  199. const struct coproc_reg *r)
  200. {
  201. bool was_enabled = vcpu_has_cache_enabled(vcpu);
  202. BUG_ON(!p->is_write);
  203. vcpu_cp15(vcpu, r->reg) = *vcpu_reg(vcpu, p->Rt1);
  204. if (p->is_64bit)
  205. vcpu_cp15(vcpu, r->reg + 1) = *vcpu_reg(vcpu, p->Rt2);
  206. kvm_toggle_cache(vcpu, was_enabled);
  207. return true;
  208. }
  209. static bool access_gic_sgi(struct kvm_vcpu *vcpu,
  210. const struct coproc_params *p,
  211. const struct coproc_reg *r)
  212. {
  213. u64 reg;
  214. bool g1;
  215. if (!p->is_write)
  216. return read_from_write_only(vcpu, p);
  217. reg = (u64)*vcpu_reg(vcpu, p->Rt2) << 32;
  218. reg |= *vcpu_reg(vcpu, p->Rt1) ;
  219. /*
  220. * In a system where GICD_CTLR.DS=1, a ICC_SGI0R access generates
  221. * Group0 SGIs only, while ICC_SGI1R can generate either group,
  222. * depending on the SGI configuration. ICC_ASGI1R is effectively
  223. * equivalent to ICC_SGI0R, as there is no "alternative" secure
  224. * group.
  225. */
  226. switch (p->Op1) {
  227. default: /* Keep GCC quiet */
  228. case 0: /* ICC_SGI1R */
  229. g1 = true;
  230. break;
  231. case 1: /* ICC_ASGI1R */
  232. case 2: /* ICC_SGI0R */
  233. g1 = false;
  234. break;
  235. }
  236. vgic_v3_dispatch_sgi(vcpu, reg, g1);
  237. return true;
  238. }
  239. static bool access_gic_sre(struct kvm_vcpu *vcpu,
  240. const struct coproc_params *p,
  241. const struct coproc_reg *r)
  242. {
  243. if (p->is_write)
  244. return ignore_write(vcpu, p);
  245. *vcpu_reg(vcpu, p->Rt1) = vcpu->arch.vgic_cpu.vgic_v3.vgic_sre;
  246. return true;
  247. }
  248. static bool access_cntp_tval(struct kvm_vcpu *vcpu,
  249. const struct coproc_params *p,
  250. const struct coproc_reg *r)
  251. {
  252. u64 now = kvm_phys_timer_read();
  253. u64 val;
  254. if (p->is_write) {
  255. val = *vcpu_reg(vcpu, p->Rt1);
  256. kvm_arm_timer_set_reg(vcpu, KVM_REG_ARM_PTIMER_CVAL, val + now);
  257. } else {
  258. val = kvm_arm_timer_get_reg(vcpu, KVM_REG_ARM_PTIMER_CVAL);
  259. *vcpu_reg(vcpu, p->Rt1) = val - now;
  260. }
  261. return true;
  262. }
  263. static bool access_cntp_ctl(struct kvm_vcpu *vcpu,
  264. const struct coproc_params *p,
  265. const struct coproc_reg *r)
  266. {
  267. u32 val;
  268. if (p->is_write) {
  269. val = *vcpu_reg(vcpu, p->Rt1);
  270. kvm_arm_timer_set_reg(vcpu, KVM_REG_ARM_PTIMER_CTL, val);
  271. } else {
  272. val = kvm_arm_timer_get_reg(vcpu, KVM_REG_ARM_PTIMER_CTL);
  273. *vcpu_reg(vcpu, p->Rt1) = val;
  274. }
  275. return true;
  276. }
  277. static bool access_cntp_cval(struct kvm_vcpu *vcpu,
  278. const struct coproc_params *p,
  279. const struct coproc_reg *r)
  280. {
  281. u64 val;
  282. if (p->is_write) {
  283. val = (u64)*vcpu_reg(vcpu, p->Rt2) << 32;
  284. val |= *vcpu_reg(vcpu, p->Rt1);
  285. kvm_arm_timer_set_reg(vcpu, KVM_REG_ARM_PTIMER_CVAL, val);
  286. } else {
  287. val = kvm_arm_timer_get_reg(vcpu, KVM_REG_ARM_PTIMER_CVAL);
  288. *vcpu_reg(vcpu, p->Rt1) = val;
  289. *vcpu_reg(vcpu, p->Rt2) = val >> 32;
  290. }
  291. return true;
  292. }
  293. /*
  294. * We could trap ID_DFR0 and tell the guest we don't support performance
  295. * monitoring. Unfortunately the patch to make the kernel check ID_DFR0 was
  296. * NAKed, so it will read the PMCR anyway.
  297. *
  298. * Therefore we tell the guest we have 0 counters. Unfortunately, we
  299. * must always support PMCCNTR (the cycle counter): we just RAZ/WI for
  300. * all PM registers, which doesn't crash the guest kernel at least.
  301. */
  302. static bool trap_raz_wi(struct kvm_vcpu *vcpu,
  303. const struct coproc_params *p,
  304. const struct coproc_reg *r)
  305. {
  306. if (p->is_write)
  307. return ignore_write(vcpu, p);
  308. else
  309. return read_zero(vcpu, p);
  310. }
  311. #define access_pmcr trap_raz_wi
  312. #define access_pmcntenset trap_raz_wi
  313. #define access_pmcntenclr trap_raz_wi
  314. #define access_pmovsr trap_raz_wi
  315. #define access_pmselr trap_raz_wi
  316. #define access_pmceid0 trap_raz_wi
  317. #define access_pmceid1 trap_raz_wi
  318. #define access_pmccntr trap_raz_wi
  319. #define access_pmxevtyper trap_raz_wi
  320. #define access_pmxevcntr trap_raz_wi
  321. #define access_pmuserenr trap_raz_wi
  322. #define access_pmintenset trap_raz_wi
  323. #define access_pmintenclr trap_raz_wi
  324. /* Architected CP15 registers.
  325. * CRn denotes the primary register number, but is copied to the CRm in the
  326. * user space API for 64-bit register access in line with the terminology used
  327. * in the ARM ARM.
  328. * Important: Must be sorted ascending by CRn, CRM, Op1, Op2 and with 64-bit
  329. * registers preceding 32-bit ones.
  330. */
  331. static const struct coproc_reg cp15_regs[] = {
  332. /* MPIDR: we use VMPIDR for guest access. */
  333. { CRn( 0), CRm( 0), Op1( 0), Op2( 5), is32,
  334. NULL, reset_mpidr, c0_MPIDR },
  335. /* CSSELR: swapped by interrupt.S. */
  336. { CRn( 0), CRm( 0), Op1( 2), Op2( 0), is32,
  337. NULL, reset_unknown, c0_CSSELR },
  338. /* ACTLR: trapped by HCR.TAC bit. */
  339. { CRn( 1), CRm( 0), Op1( 0), Op2( 1), is32,
  340. access_actlr, reset_actlr, c1_ACTLR },
  341. /* CPACR: swapped by interrupt.S. */
  342. { CRn( 1), CRm( 0), Op1( 0), Op2( 2), is32,
  343. NULL, reset_val, c1_CPACR, 0x00000000 },
  344. /* TTBR0/TTBR1/TTBCR: swapped by interrupt.S. */
  345. { CRm64( 2), Op1( 0), is64, access_vm_reg, reset_unknown64, c2_TTBR0 },
  346. { CRn(2), CRm( 0), Op1( 0), Op2( 0), is32,
  347. access_vm_reg, reset_unknown, c2_TTBR0 },
  348. { CRn(2), CRm( 0), Op1( 0), Op2( 1), is32,
  349. access_vm_reg, reset_unknown, c2_TTBR1 },
  350. { CRn( 2), CRm( 0), Op1( 0), Op2( 2), is32,
  351. access_vm_reg, reset_val, c2_TTBCR, 0x00000000 },
  352. { CRm64( 2), Op1( 1), is64, access_vm_reg, reset_unknown64, c2_TTBR1 },
  353. /* DACR: swapped by interrupt.S. */
  354. { CRn( 3), CRm( 0), Op1( 0), Op2( 0), is32,
  355. access_vm_reg, reset_unknown, c3_DACR },
  356. /* DFSR/IFSR/ADFSR/AIFSR: swapped by interrupt.S. */
  357. { CRn( 5), CRm( 0), Op1( 0), Op2( 0), is32,
  358. access_vm_reg, reset_unknown, c5_DFSR },
  359. { CRn( 5), CRm( 0), Op1( 0), Op2( 1), is32,
  360. access_vm_reg, reset_unknown, c5_IFSR },
  361. { CRn( 5), CRm( 1), Op1( 0), Op2( 0), is32,
  362. access_vm_reg, reset_unknown, c5_ADFSR },
  363. { CRn( 5), CRm( 1), Op1( 0), Op2( 1), is32,
  364. access_vm_reg, reset_unknown, c5_AIFSR },
  365. /* DFAR/IFAR: swapped by interrupt.S. */
  366. { CRn( 6), CRm( 0), Op1( 0), Op2( 0), is32,
  367. access_vm_reg, reset_unknown, c6_DFAR },
  368. { CRn( 6), CRm( 0), Op1( 0), Op2( 2), is32,
  369. access_vm_reg, reset_unknown, c6_IFAR },
  370. /* PAR swapped by interrupt.S */
  371. { CRm64( 7), Op1( 0), is64, NULL, reset_unknown64, c7_PAR },
  372. /*
  373. * DC{C,I,CI}SW operations:
  374. */
  375. { CRn( 7), CRm( 6), Op1( 0), Op2( 2), is32, access_dcsw},
  376. { CRn( 7), CRm(10), Op1( 0), Op2( 2), is32, access_dcsw},
  377. { CRn( 7), CRm(14), Op1( 0), Op2( 2), is32, access_dcsw},
  378. /*
  379. * L2CTLR access (guest wants to know #CPUs).
  380. */
  381. { CRn( 9), CRm( 0), Op1( 1), Op2( 2), is32,
  382. access_l2ctlr, reset_l2ctlr, c9_L2CTLR },
  383. { CRn( 9), CRm( 0), Op1( 1), Op2( 3), is32, access_l2ectlr},
  384. /*
  385. * Dummy performance monitor implementation.
  386. */
  387. { CRn( 9), CRm(12), Op1( 0), Op2( 0), is32, access_pmcr},
  388. { CRn( 9), CRm(12), Op1( 0), Op2( 1), is32, access_pmcntenset},
  389. { CRn( 9), CRm(12), Op1( 0), Op2( 2), is32, access_pmcntenclr},
  390. { CRn( 9), CRm(12), Op1( 0), Op2( 3), is32, access_pmovsr},
  391. { CRn( 9), CRm(12), Op1( 0), Op2( 5), is32, access_pmselr},
  392. { CRn( 9), CRm(12), Op1( 0), Op2( 6), is32, access_pmceid0},
  393. { CRn( 9), CRm(12), Op1( 0), Op2( 7), is32, access_pmceid1},
  394. { CRn( 9), CRm(13), Op1( 0), Op2( 0), is32, access_pmccntr},
  395. { CRn( 9), CRm(13), Op1( 0), Op2( 1), is32, access_pmxevtyper},
  396. { CRn( 9), CRm(13), Op1( 0), Op2( 2), is32, access_pmxevcntr},
  397. { CRn( 9), CRm(14), Op1( 0), Op2( 0), is32, access_pmuserenr},
  398. { CRn( 9), CRm(14), Op1( 0), Op2( 1), is32, access_pmintenset},
  399. { CRn( 9), CRm(14), Op1( 0), Op2( 2), is32, access_pmintenclr},
  400. /* PRRR/NMRR (aka MAIR0/MAIR1): swapped by interrupt.S. */
  401. { CRn(10), CRm( 2), Op1( 0), Op2( 0), is32,
  402. access_vm_reg, reset_unknown, c10_PRRR},
  403. { CRn(10), CRm( 2), Op1( 0), Op2( 1), is32,
  404. access_vm_reg, reset_unknown, c10_NMRR},
  405. /* AMAIR0/AMAIR1: swapped by interrupt.S. */
  406. { CRn(10), CRm( 3), Op1( 0), Op2( 0), is32,
  407. access_vm_reg, reset_unknown, c10_AMAIR0},
  408. { CRn(10), CRm( 3), Op1( 0), Op2( 1), is32,
  409. access_vm_reg, reset_unknown, c10_AMAIR1},
  410. /* ICC_SGI1R */
  411. { CRm64(12), Op1( 0), is64, access_gic_sgi},
  412. /* VBAR: swapped by interrupt.S. */
  413. { CRn(12), CRm( 0), Op1( 0), Op2( 0), is32,
  414. NULL, reset_val, c12_VBAR, 0x00000000 },
  415. /* ICC_ASGI1R */
  416. { CRm64(12), Op1( 1), is64, access_gic_sgi},
  417. /* ICC_SGI0R */
  418. { CRm64(12), Op1( 2), is64, access_gic_sgi},
  419. /* ICC_SRE */
  420. { CRn(12), CRm(12), Op1( 0), Op2(5), is32, access_gic_sre },
  421. /* CONTEXTIDR/TPIDRURW/TPIDRURO/TPIDRPRW: swapped by interrupt.S. */
  422. { CRn(13), CRm( 0), Op1( 0), Op2( 1), is32,
  423. access_vm_reg, reset_val, c13_CID, 0x00000000 },
  424. { CRn(13), CRm( 0), Op1( 0), Op2( 2), is32,
  425. NULL, reset_unknown, c13_TID_URW },
  426. { CRn(13), CRm( 0), Op1( 0), Op2( 3), is32,
  427. NULL, reset_unknown, c13_TID_URO },
  428. { CRn(13), CRm( 0), Op1( 0), Op2( 4), is32,
  429. NULL, reset_unknown, c13_TID_PRIV },
  430. /* CNTP */
  431. { CRm64(14), Op1( 2), is64, access_cntp_cval},
  432. /* CNTKCTL: swapped by interrupt.S. */
  433. { CRn(14), CRm( 1), Op1( 0), Op2( 0), is32,
  434. NULL, reset_val, c14_CNTKCTL, 0x00000000 },
  435. /* CNTP */
  436. { CRn(14), CRm( 2), Op1( 0), Op2( 0), is32, access_cntp_tval },
  437. { CRn(14), CRm( 2), Op1( 0), Op2( 1), is32, access_cntp_ctl },
  438. /* The Configuration Base Address Register. */
  439. { CRn(15), CRm( 0), Op1( 4), Op2( 0), is32, access_cbar},
  440. };
  441. static int check_reg_table(const struct coproc_reg *table, unsigned int n)
  442. {
  443. unsigned int i;
  444. for (i = 1; i < n; i++) {
  445. if (cmp_reg(&table[i-1], &table[i]) >= 0) {
  446. kvm_err("reg table %p out of order (%d)\n", table, i - 1);
  447. return 1;
  448. }
  449. }
  450. return 0;
  451. }
  452. /* Target specific emulation tables */
  453. static struct kvm_coproc_target_table *target_tables[KVM_ARM_NUM_TARGETS];
  454. void kvm_register_target_coproc_table(struct kvm_coproc_target_table *table)
  455. {
  456. BUG_ON(check_reg_table(table->table, table->num));
  457. target_tables[table->target] = table;
  458. }
  459. /* Get specific register table for this target. */
  460. static const struct coproc_reg *get_target_table(unsigned target, size_t *num)
  461. {
  462. struct kvm_coproc_target_table *table;
  463. table = target_tables[target];
  464. *num = table->num;
  465. return table->table;
  466. }
  467. #define reg_to_match_value(x) \
  468. ({ \
  469. unsigned long val; \
  470. val = (x)->CRn << 11; \
  471. val |= (x)->CRm << 7; \
  472. val |= (x)->Op1 << 4; \
  473. val |= (x)->Op2 << 1; \
  474. val |= !(x)->is_64bit; \
  475. val; \
  476. })
  477. static int match_reg(const void *key, const void *elt)
  478. {
  479. const unsigned long pval = (unsigned long)key;
  480. const struct coproc_reg *r = elt;
  481. return pval - reg_to_match_value(r);
  482. }
  483. static const struct coproc_reg *find_reg(const struct coproc_params *params,
  484. const struct coproc_reg table[],
  485. unsigned int num)
  486. {
  487. unsigned long pval = reg_to_match_value(params);
  488. return bsearch((void *)pval, table, num, sizeof(table[0]), match_reg);
  489. }
  490. static int emulate_cp15(struct kvm_vcpu *vcpu,
  491. const struct coproc_params *params)
  492. {
  493. size_t num;
  494. const struct coproc_reg *table, *r;
  495. trace_kvm_emulate_cp15_imp(params->Op1, params->Rt1, params->CRn,
  496. params->CRm, params->Op2, params->is_write);
  497. table = get_target_table(vcpu->arch.target, &num);
  498. /* Search target-specific then generic table. */
  499. r = find_reg(params, table, num);
  500. if (!r)
  501. r = find_reg(params, cp15_regs, ARRAY_SIZE(cp15_regs));
  502. if (likely(r)) {
  503. /* If we don't have an accessor, we should never get here! */
  504. BUG_ON(!r->access);
  505. if (likely(r->access(vcpu, params, r))) {
  506. /* Skip instruction, since it was emulated */
  507. kvm_skip_instr(vcpu, kvm_vcpu_trap_il_is32bit(vcpu));
  508. }
  509. } else {
  510. /* If access function fails, it should complain. */
  511. kvm_err("Unsupported guest CP15 access at: %08lx\n",
  512. *vcpu_pc(vcpu));
  513. print_cp_instr(params);
  514. kvm_inject_undefined(vcpu);
  515. }
  516. return 1;
  517. }
  518. static struct coproc_params decode_64bit_hsr(struct kvm_vcpu *vcpu)
  519. {
  520. struct coproc_params params;
  521. params.CRn = (kvm_vcpu_get_hsr(vcpu) >> 1) & 0xf;
  522. params.Rt1 = (kvm_vcpu_get_hsr(vcpu) >> 5) & 0xf;
  523. params.is_write = ((kvm_vcpu_get_hsr(vcpu) & 1) == 0);
  524. params.is_64bit = true;
  525. params.Op1 = (kvm_vcpu_get_hsr(vcpu) >> 16) & 0xf;
  526. params.Op2 = 0;
  527. params.Rt2 = (kvm_vcpu_get_hsr(vcpu) >> 10) & 0xf;
  528. params.CRm = 0;
  529. return params;
  530. }
  531. /**
  532. * kvm_handle_cp15_64 -- handles a mrrc/mcrr trap on a guest CP15 access
  533. * @vcpu: The VCPU pointer
  534. * @run: The kvm_run struct
  535. */
  536. int kvm_handle_cp15_64(struct kvm_vcpu *vcpu, struct kvm_run *run)
  537. {
  538. struct coproc_params params = decode_64bit_hsr(vcpu);
  539. return emulate_cp15(vcpu, &params);
  540. }
  541. /**
  542. * kvm_handle_cp14_64 -- handles a mrrc/mcrr trap on a guest CP14 access
  543. * @vcpu: The VCPU pointer
  544. * @run: The kvm_run struct
  545. */
  546. int kvm_handle_cp14_64(struct kvm_vcpu *vcpu, struct kvm_run *run)
  547. {
  548. struct coproc_params params = decode_64bit_hsr(vcpu);
  549. /* raz_wi cp14 */
  550. trap_raz_wi(vcpu, &params, NULL);
  551. /* handled */
  552. kvm_skip_instr(vcpu, kvm_vcpu_trap_il_is32bit(vcpu));
  553. return 1;
  554. }
  555. static void reset_coproc_regs(struct kvm_vcpu *vcpu,
  556. const struct coproc_reg *table, size_t num,
  557. unsigned long *bmap)
  558. {
  559. unsigned long i;
  560. for (i = 0; i < num; i++)
  561. if (table[i].reset) {
  562. int reg = table[i].reg;
  563. table[i].reset(vcpu, &table[i]);
  564. if (reg > 0 && reg < NR_CP15_REGS) {
  565. set_bit(reg, bmap);
  566. if (table[i].is_64bit)
  567. set_bit(reg + 1, bmap);
  568. }
  569. }
  570. }
  571. static struct coproc_params decode_32bit_hsr(struct kvm_vcpu *vcpu)
  572. {
  573. struct coproc_params params;
  574. params.CRm = (kvm_vcpu_get_hsr(vcpu) >> 1) & 0xf;
  575. params.Rt1 = (kvm_vcpu_get_hsr(vcpu) >> 5) & 0xf;
  576. params.is_write = ((kvm_vcpu_get_hsr(vcpu) & 1) == 0);
  577. params.is_64bit = false;
  578. params.CRn = (kvm_vcpu_get_hsr(vcpu) >> 10) & 0xf;
  579. params.Op1 = (kvm_vcpu_get_hsr(vcpu) >> 14) & 0x7;
  580. params.Op2 = (kvm_vcpu_get_hsr(vcpu) >> 17) & 0x7;
  581. params.Rt2 = 0;
  582. return params;
  583. }
  584. /**
  585. * kvm_handle_cp15_32 -- handles a mrc/mcr trap on a guest CP15 access
  586. * @vcpu: The VCPU pointer
  587. * @run: The kvm_run struct
  588. */
  589. int kvm_handle_cp15_32(struct kvm_vcpu *vcpu, struct kvm_run *run)
  590. {
  591. struct coproc_params params = decode_32bit_hsr(vcpu);
  592. return emulate_cp15(vcpu, &params);
  593. }
  594. /**
  595. * kvm_handle_cp14_32 -- handles a mrc/mcr trap on a guest CP14 access
  596. * @vcpu: The VCPU pointer
  597. * @run: The kvm_run struct
  598. */
  599. int kvm_handle_cp14_32(struct kvm_vcpu *vcpu, struct kvm_run *run)
  600. {
  601. struct coproc_params params = decode_32bit_hsr(vcpu);
  602. /* raz_wi cp14 */
  603. trap_raz_wi(vcpu, &params, NULL);
  604. /* handled */
  605. kvm_skip_instr(vcpu, kvm_vcpu_trap_il_is32bit(vcpu));
  606. return 1;
  607. }
  608. /******************************************************************************
  609. * Userspace API
  610. *****************************************************************************/
  611. static bool index_to_params(u64 id, struct coproc_params *params)
  612. {
  613. switch (id & KVM_REG_SIZE_MASK) {
  614. case KVM_REG_SIZE_U32:
  615. /* Any unused index bits means it's not valid. */
  616. if (id & ~(KVM_REG_ARCH_MASK | KVM_REG_SIZE_MASK
  617. | KVM_REG_ARM_COPROC_MASK
  618. | KVM_REG_ARM_32_CRN_MASK
  619. | KVM_REG_ARM_CRM_MASK
  620. | KVM_REG_ARM_OPC1_MASK
  621. | KVM_REG_ARM_32_OPC2_MASK))
  622. return false;
  623. params->is_64bit = false;
  624. params->CRn = ((id & KVM_REG_ARM_32_CRN_MASK)
  625. >> KVM_REG_ARM_32_CRN_SHIFT);
  626. params->CRm = ((id & KVM_REG_ARM_CRM_MASK)
  627. >> KVM_REG_ARM_CRM_SHIFT);
  628. params->Op1 = ((id & KVM_REG_ARM_OPC1_MASK)
  629. >> KVM_REG_ARM_OPC1_SHIFT);
  630. params->Op2 = ((id & KVM_REG_ARM_32_OPC2_MASK)
  631. >> KVM_REG_ARM_32_OPC2_SHIFT);
  632. return true;
  633. case KVM_REG_SIZE_U64:
  634. /* Any unused index bits means it's not valid. */
  635. if (id & ~(KVM_REG_ARCH_MASK | KVM_REG_SIZE_MASK
  636. | KVM_REG_ARM_COPROC_MASK
  637. | KVM_REG_ARM_CRM_MASK
  638. | KVM_REG_ARM_OPC1_MASK))
  639. return false;
  640. params->is_64bit = true;
  641. /* CRm to CRn: see cp15_to_index for details */
  642. params->CRn = ((id & KVM_REG_ARM_CRM_MASK)
  643. >> KVM_REG_ARM_CRM_SHIFT);
  644. params->Op1 = ((id & KVM_REG_ARM_OPC1_MASK)
  645. >> KVM_REG_ARM_OPC1_SHIFT);
  646. params->Op2 = 0;
  647. params->CRm = 0;
  648. return true;
  649. default:
  650. return false;
  651. }
  652. }
  653. /* Decode an index value, and find the cp15 coproc_reg entry. */
  654. static const struct coproc_reg *index_to_coproc_reg(struct kvm_vcpu *vcpu,
  655. u64 id)
  656. {
  657. size_t num;
  658. const struct coproc_reg *table, *r;
  659. struct coproc_params params;
  660. /* We only do cp15 for now. */
  661. if ((id & KVM_REG_ARM_COPROC_MASK) >> KVM_REG_ARM_COPROC_SHIFT != 15)
  662. return NULL;
  663. if (!index_to_params(id, &params))
  664. return NULL;
  665. table = get_target_table(vcpu->arch.target, &num);
  666. r = find_reg(&params, table, num);
  667. if (!r)
  668. r = find_reg(&params, cp15_regs, ARRAY_SIZE(cp15_regs));
  669. /* Not saved in the cp15 array? */
  670. if (r && !r->reg)
  671. r = NULL;
  672. return r;
  673. }
  674. /*
  675. * These are the invariant cp15 registers: we let the guest see the host
  676. * versions of these, so they're part of the guest state.
  677. *
  678. * A future CPU may provide a mechanism to present different values to
  679. * the guest, or a future kvm may trap them.
  680. */
  681. /* Unfortunately, there's no register-argument for mrc, so generate. */
  682. #define FUNCTION_FOR32(crn, crm, op1, op2, name) \
  683. static void get_##name(struct kvm_vcpu *v, \
  684. const struct coproc_reg *r) \
  685. { \
  686. u32 val; \
  687. \
  688. asm volatile("mrc p15, " __stringify(op1) \
  689. ", %0, c" __stringify(crn) \
  690. ", c" __stringify(crm) \
  691. ", " __stringify(op2) "\n" : "=r" (val)); \
  692. ((struct coproc_reg *)r)->val = val; \
  693. }
  694. FUNCTION_FOR32(0, 0, 0, 0, MIDR)
  695. FUNCTION_FOR32(0, 0, 0, 1, CTR)
  696. FUNCTION_FOR32(0, 0, 0, 2, TCMTR)
  697. FUNCTION_FOR32(0, 0, 0, 3, TLBTR)
  698. FUNCTION_FOR32(0, 0, 0, 6, REVIDR)
  699. FUNCTION_FOR32(0, 1, 0, 0, ID_PFR0)
  700. FUNCTION_FOR32(0, 1, 0, 1, ID_PFR1)
  701. FUNCTION_FOR32(0, 1, 0, 2, ID_DFR0)
  702. FUNCTION_FOR32(0, 1, 0, 3, ID_AFR0)
  703. FUNCTION_FOR32(0, 1, 0, 4, ID_MMFR0)
  704. FUNCTION_FOR32(0, 1, 0, 5, ID_MMFR1)
  705. FUNCTION_FOR32(0, 1, 0, 6, ID_MMFR2)
  706. FUNCTION_FOR32(0, 1, 0, 7, ID_MMFR3)
  707. FUNCTION_FOR32(0, 2, 0, 0, ID_ISAR0)
  708. FUNCTION_FOR32(0, 2, 0, 1, ID_ISAR1)
  709. FUNCTION_FOR32(0, 2, 0, 2, ID_ISAR2)
  710. FUNCTION_FOR32(0, 2, 0, 3, ID_ISAR3)
  711. FUNCTION_FOR32(0, 2, 0, 4, ID_ISAR4)
  712. FUNCTION_FOR32(0, 2, 0, 5, ID_ISAR5)
  713. FUNCTION_FOR32(0, 0, 1, 1, CLIDR)
  714. FUNCTION_FOR32(0, 0, 1, 7, AIDR)
  715. /* ->val is filled in by kvm_invariant_coproc_table_init() */
  716. static struct coproc_reg invariant_cp15[] = {
  717. { CRn( 0), CRm( 0), Op1( 0), Op2( 0), is32, NULL, get_MIDR },
  718. { CRn( 0), CRm( 0), Op1( 0), Op2( 1), is32, NULL, get_CTR },
  719. { CRn( 0), CRm( 0), Op1( 0), Op2( 2), is32, NULL, get_TCMTR },
  720. { CRn( 0), CRm( 0), Op1( 0), Op2( 3), is32, NULL, get_TLBTR },
  721. { CRn( 0), CRm( 0), Op1( 0), Op2( 6), is32, NULL, get_REVIDR },
  722. { CRn( 0), CRm( 0), Op1( 1), Op2( 1), is32, NULL, get_CLIDR },
  723. { CRn( 0), CRm( 0), Op1( 1), Op2( 7), is32, NULL, get_AIDR },
  724. { CRn( 0), CRm( 1), Op1( 0), Op2( 0), is32, NULL, get_ID_PFR0 },
  725. { CRn( 0), CRm( 1), Op1( 0), Op2( 1), is32, NULL, get_ID_PFR1 },
  726. { CRn( 0), CRm( 1), Op1( 0), Op2( 2), is32, NULL, get_ID_DFR0 },
  727. { CRn( 0), CRm( 1), Op1( 0), Op2( 3), is32, NULL, get_ID_AFR0 },
  728. { CRn( 0), CRm( 1), Op1( 0), Op2( 4), is32, NULL, get_ID_MMFR0 },
  729. { CRn( 0), CRm( 1), Op1( 0), Op2( 5), is32, NULL, get_ID_MMFR1 },
  730. { CRn( 0), CRm( 1), Op1( 0), Op2( 6), is32, NULL, get_ID_MMFR2 },
  731. { CRn( 0), CRm( 1), Op1( 0), Op2( 7), is32, NULL, get_ID_MMFR3 },
  732. { CRn( 0), CRm( 2), Op1( 0), Op2( 0), is32, NULL, get_ID_ISAR0 },
  733. { CRn( 0), CRm( 2), Op1( 0), Op2( 1), is32, NULL, get_ID_ISAR1 },
  734. { CRn( 0), CRm( 2), Op1( 0), Op2( 2), is32, NULL, get_ID_ISAR2 },
  735. { CRn( 0), CRm( 2), Op1( 0), Op2( 3), is32, NULL, get_ID_ISAR3 },
  736. { CRn( 0), CRm( 2), Op1( 0), Op2( 4), is32, NULL, get_ID_ISAR4 },
  737. { CRn( 0), CRm( 2), Op1( 0), Op2( 5), is32, NULL, get_ID_ISAR5 },
  738. };
  739. /*
  740. * Reads a register value from a userspace address to a kernel
  741. * variable. Make sure that register size matches sizeof(*__val).
  742. */
  743. static int reg_from_user(void *val, const void __user *uaddr, u64 id)
  744. {
  745. if (copy_from_user(val, uaddr, KVM_REG_SIZE(id)) != 0)
  746. return -EFAULT;
  747. return 0;
  748. }
  749. /*
  750. * Writes a register value to a userspace address from a kernel variable.
  751. * Make sure that register size matches sizeof(*__val).
  752. */
  753. static int reg_to_user(void __user *uaddr, const void *val, u64 id)
  754. {
  755. if (copy_to_user(uaddr, val, KVM_REG_SIZE(id)) != 0)
  756. return -EFAULT;
  757. return 0;
  758. }
  759. static int get_invariant_cp15(u64 id, void __user *uaddr)
  760. {
  761. struct coproc_params params;
  762. const struct coproc_reg *r;
  763. int ret;
  764. if (!index_to_params(id, &params))
  765. return -ENOENT;
  766. r = find_reg(&params, invariant_cp15, ARRAY_SIZE(invariant_cp15));
  767. if (!r)
  768. return -ENOENT;
  769. ret = -ENOENT;
  770. if (KVM_REG_SIZE(id) == 4) {
  771. u32 val = r->val;
  772. ret = reg_to_user(uaddr, &val, id);
  773. } else if (KVM_REG_SIZE(id) == 8) {
  774. ret = reg_to_user(uaddr, &r->val, id);
  775. }
  776. return ret;
  777. }
  778. static int set_invariant_cp15(u64 id, void __user *uaddr)
  779. {
  780. struct coproc_params params;
  781. const struct coproc_reg *r;
  782. int err;
  783. u64 val;
  784. if (!index_to_params(id, &params))
  785. return -ENOENT;
  786. r = find_reg(&params, invariant_cp15, ARRAY_SIZE(invariant_cp15));
  787. if (!r)
  788. return -ENOENT;
  789. err = -ENOENT;
  790. if (KVM_REG_SIZE(id) == 4) {
  791. u32 val32;
  792. err = reg_from_user(&val32, uaddr, id);
  793. if (!err)
  794. val = val32;
  795. } else if (KVM_REG_SIZE(id) == 8) {
  796. err = reg_from_user(&val, uaddr, id);
  797. }
  798. if (err)
  799. return err;
  800. /* This is what we mean by invariant: you can't change it. */
  801. if (r->val != val)
  802. return -EINVAL;
  803. return 0;
  804. }
  805. static bool is_valid_cache(u32 val)
  806. {
  807. u32 level, ctype;
  808. if (val >= CSSELR_MAX)
  809. return false;
  810. /* Bottom bit is Instruction or Data bit. Next 3 bits are level. */
  811. level = (val >> 1);
  812. ctype = (cache_levels >> (level * 3)) & 7;
  813. switch (ctype) {
  814. case 0: /* No cache */
  815. return false;
  816. case 1: /* Instruction cache only */
  817. return (val & 1);
  818. case 2: /* Data cache only */
  819. case 4: /* Unified cache */
  820. return !(val & 1);
  821. case 3: /* Separate instruction and data caches */
  822. return true;
  823. default: /* Reserved: we can't know instruction or data. */
  824. return false;
  825. }
  826. }
  827. /* Which cache CCSIDR represents depends on CSSELR value. */
  828. static u32 get_ccsidr(u32 csselr)
  829. {
  830. u32 ccsidr;
  831. /* Make sure noone else changes CSSELR during this! */
  832. local_irq_disable();
  833. /* Put value into CSSELR */
  834. asm volatile("mcr p15, 2, %0, c0, c0, 0" : : "r" (csselr));
  835. isb();
  836. /* Read result out of CCSIDR */
  837. asm volatile("mrc p15, 1, %0, c0, c0, 0" : "=r" (ccsidr));
  838. local_irq_enable();
  839. return ccsidr;
  840. }
  841. static int demux_c15_get(u64 id, void __user *uaddr)
  842. {
  843. u32 val;
  844. u32 __user *uval = uaddr;
  845. /* Fail if we have unknown bits set. */
  846. if (id & ~(KVM_REG_ARCH_MASK|KVM_REG_SIZE_MASK|KVM_REG_ARM_COPROC_MASK
  847. | ((1 << KVM_REG_ARM_COPROC_SHIFT)-1)))
  848. return -ENOENT;
  849. switch (id & KVM_REG_ARM_DEMUX_ID_MASK) {
  850. case KVM_REG_ARM_DEMUX_ID_CCSIDR:
  851. if (KVM_REG_SIZE(id) != 4)
  852. return -ENOENT;
  853. val = (id & KVM_REG_ARM_DEMUX_VAL_MASK)
  854. >> KVM_REG_ARM_DEMUX_VAL_SHIFT;
  855. if (!is_valid_cache(val))
  856. return -ENOENT;
  857. return put_user(get_ccsidr(val), uval);
  858. default:
  859. return -ENOENT;
  860. }
  861. }
  862. static int demux_c15_set(u64 id, void __user *uaddr)
  863. {
  864. u32 val, newval;
  865. u32 __user *uval = uaddr;
  866. /* Fail if we have unknown bits set. */
  867. if (id & ~(KVM_REG_ARCH_MASK|KVM_REG_SIZE_MASK|KVM_REG_ARM_COPROC_MASK
  868. | ((1 << KVM_REG_ARM_COPROC_SHIFT)-1)))
  869. return -ENOENT;
  870. switch (id & KVM_REG_ARM_DEMUX_ID_MASK) {
  871. case KVM_REG_ARM_DEMUX_ID_CCSIDR:
  872. if (KVM_REG_SIZE(id) != 4)
  873. return -ENOENT;
  874. val = (id & KVM_REG_ARM_DEMUX_VAL_MASK)
  875. >> KVM_REG_ARM_DEMUX_VAL_SHIFT;
  876. if (!is_valid_cache(val))
  877. return -ENOENT;
  878. if (get_user(newval, uval))
  879. return -EFAULT;
  880. /* This is also invariant: you can't change it. */
  881. if (newval != get_ccsidr(val))
  882. return -EINVAL;
  883. return 0;
  884. default:
  885. return -ENOENT;
  886. }
  887. }
  888. #ifdef CONFIG_VFPv3
  889. static const int vfp_sysregs[] = { KVM_REG_ARM_VFP_FPEXC,
  890. KVM_REG_ARM_VFP_FPSCR,
  891. KVM_REG_ARM_VFP_FPINST,
  892. KVM_REG_ARM_VFP_FPINST2,
  893. KVM_REG_ARM_VFP_MVFR0,
  894. KVM_REG_ARM_VFP_MVFR1,
  895. KVM_REG_ARM_VFP_FPSID };
  896. static unsigned int num_fp_regs(void)
  897. {
  898. if (((fmrx(MVFR0) & MVFR0_A_SIMD_MASK) >> MVFR0_A_SIMD_BIT) == 2)
  899. return 32;
  900. else
  901. return 16;
  902. }
  903. static unsigned int num_vfp_regs(void)
  904. {
  905. /* Normal FP regs + control regs. */
  906. return num_fp_regs() + ARRAY_SIZE(vfp_sysregs);
  907. }
  908. static int copy_vfp_regids(u64 __user *uindices)
  909. {
  910. unsigned int i;
  911. const u64 u32reg = KVM_REG_ARM | KVM_REG_SIZE_U32 | KVM_REG_ARM_VFP;
  912. const u64 u64reg = KVM_REG_ARM | KVM_REG_SIZE_U64 | KVM_REG_ARM_VFP;
  913. for (i = 0; i < num_fp_regs(); i++) {
  914. if (put_user((u64reg | KVM_REG_ARM_VFP_BASE_REG) + i,
  915. uindices))
  916. return -EFAULT;
  917. uindices++;
  918. }
  919. for (i = 0; i < ARRAY_SIZE(vfp_sysregs); i++) {
  920. if (put_user(u32reg | vfp_sysregs[i], uindices))
  921. return -EFAULT;
  922. uindices++;
  923. }
  924. return num_vfp_regs();
  925. }
  926. static int vfp_get_reg(const struct kvm_vcpu *vcpu, u64 id, void __user *uaddr)
  927. {
  928. u32 vfpid = (id & KVM_REG_ARM_VFP_MASK);
  929. u32 val;
  930. /* Fail if we have unknown bits set. */
  931. if (id & ~(KVM_REG_ARCH_MASK|KVM_REG_SIZE_MASK|KVM_REG_ARM_COPROC_MASK
  932. | ((1 << KVM_REG_ARM_COPROC_SHIFT)-1)))
  933. return -ENOENT;
  934. if (vfpid < num_fp_regs()) {
  935. if (KVM_REG_SIZE(id) != 8)
  936. return -ENOENT;
  937. return reg_to_user(uaddr, &vcpu->arch.ctxt.vfp.fpregs[vfpid],
  938. id);
  939. }
  940. /* FP control registers are all 32 bit. */
  941. if (KVM_REG_SIZE(id) != 4)
  942. return -ENOENT;
  943. switch (vfpid) {
  944. case KVM_REG_ARM_VFP_FPEXC:
  945. return reg_to_user(uaddr, &vcpu->arch.ctxt.vfp.fpexc, id);
  946. case KVM_REG_ARM_VFP_FPSCR:
  947. return reg_to_user(uaddr, &vcpu->arch.ctxt.vfp.fpscr, id);
  948. case KVM_REG_ARM_VFP_FPINST:
  949. return reg_to_user(uaddr, &vcpu->arch.ctxt.vfp.fpinst, id);
  950. case KVM_REG_ARM_VFP_FPINST2:
  951. return reg_to_user(uaddr, &vcpu->arch.ctxt.vfp.fpinst2, id);
  952. case KVM_REG_ARM_VFP_MVFR0:
  953. val = fmrx(MVFR0);
  954. return reg_to_user(uaddr, &val, id);
  955. case KVM_REG_ARM_VFP_MVFR1:
  956. val = fmrx(MVFR1);
  957. return reg_to_user(uaddr, &val, id);
  958. case KVM_REG_ARM_VFP_FPSID:
  959. val = fmrx(FPSID);
  960. return reg_to_user(uaddr, &val, id);
  961. default:
  962. return -ENOENT;
  963. }
  964. }
  965. static int vfp_set_reg(struct kvm_vcpu *vcpu, u64 id, const void __user *uaddr)
  966. {
  967. u32 vfpid = (id & KVM_REG_ARM_VFP_MASK);
  968. u32 val;
  969. /* Fail if we have unknown bits set. */
  970. if (id & ~(KVM_REG_ARCH_MASK|KVM_REG_SIZE_MASK|KVM_REG_ARM_COPROC_MASK
  971. | ((1 << KVM_REG_ARM_COPROC_SHIFT)-1)))
  972. return -ENOENT;
  973. if (vfpid < num_fp_regs()) {
  974. if (KVM_REG_SIZE(id) != 8)
  975. return -ENOENT;
  976. return reg_from_user(&vcpu->arch.ctxt.vfp.fpregs[vfpid],
  977. uaddr, id);
  978. }
  979. /* FP control registers are all 32 bit. */
  980. if (KVM_REG_SIZE(id) != 4)
  981. return -ENOENT;
  982. switch (vfpid) {
  983. case KVM_REG_ARM_VFP_FPEXC:
  984. return reg_from_user(&vcpu->arch.ctxt.vfp.fpexc, uaddr, id);
  985. case KVM_REG_ARM_VFP_FPSCR:
  986. return reg_from_user(&vcpu->arch.ctxt.vfp.fpscr, uaddr, id);
  987. case KVM_REG_ARM_VFP_FPINST:
  988. return reg_from_user(&vcpu->arch.ctxt.vfp.fpinst, uaddr, id);
  989. case KVM_REG_ARM_VFP_FPINST2:
  990. return reg_from_user(&vcpu->arch.ctxt.vfp.fpinst2, uaddr, id);
  991. /* These are invariant. */
  992. case KVM_REG_ARM_VFP_MVFR0:
  993. if (reg_from_user(&val, uaddr, id))
  994. return -EFAULT;
  995. if (val != fmrx(MVFR0))
  996. return -EINVAL;
  997. return 0;
  998. case KVM_REG_ARM_VFP_MVFR1:
  999. if (reg_from_user(&val, uaddr, id))
  1000. return -EFAULT;
  1001. if (val != fmrx(MVFR1))
  1002. return -EINVAL;
  1003. return 0;
  1004. case KVM_REG_ARM_VFP_FPSID:
  1005. if (reg_from_user(&val, uaddr, id))
  1006. return -EFAULT;
  1007. if (val != fmrx(FPSID))
  1008. return -EINVAL;
  1009. return 0;
  1010. default:
  1011. return -ENOENT;
  1012. }
  1013. }
  1014. #else /* !CONFIG_VFPv3 */
  1015. static unsigned int num_vfp_regs(void)
  1016. {
  1017. return 0;
  1018. }
  1019. static int copy_vfp_regids(u64 __user *uindices)
  1020. {
  1021. return 0;
  1022. }
  1023. static int vfp_get_reg(const struct kvm_vcpu *vcpu, u64 id, void __user *uaddr)
  1024. {
  1025. return -ENOENT;
  1026. }
  1027. static int vfp_set_reg(struct kvm_vcpu *vcpu, u64 id, const void __user *uaddr)
  1028. {
  1029. return -ENOENT;
  1030. }
  1031. #endif /* !CONFIG_VFPv3 */
  1032. int kvm_arm_coproc_get_reg(struct kvm_vcpu *vcpu, const struct kvm_one_reg *reg)
  1033. {
  1034. const struct coproc_reg *r;
  1035. void __user *uaddr = (void __user *)(long)reg->addr;
  1036. int ret;
  1037. if ((reg->id & KVM_REG_ARM_COPROC_MASK) == KVM_REG_ARM_DEMUX)
  1038. return demux_c15_get(reg->id, uaddr);
  1039. if ((reg->id & KVM_REG_ARM_COPROC_MASK) == KVM_REG_ARM_VFP)
  1040. return vfp_get_reg(vcpu, reg->id, uaddr);
  1041. r = index_to_coproc_reg(vcpu, reg->id);
  1042. if (!r)
  1043. return get_invariant_cp15(reg->id, uaddr);
  1044. ret = -ENOENT;
  1045. if (KVM_REG_SIZE(reg->id) == 8) {
  1046. u64 val;
  1047. val = vcpu_cp15_reg64_get(vcpu, r);
  1048. ret = reg_to_user(uaddr, &val, reg->id);
  1049. } else if (KVM_REG_SIZE(reg->id) == 4) {
  1050. ret = reg_to_user(uaddr, &vcpu_cp15(vcpu, r->reg), reg->id);
  1051. }
  1052. return ret;
  1053. }
  1054. int kvm_arm_coproc_set_reg(struct kvm_vcpu *vcpu, const struct kvm_one_reg *reg)
  1055. {
  1056. const struct coproc_reg *r;
  1057. void __user *uaddr = (void __user *)(long)reg->addr;
  1058. int ret;
  1059. if ((reg->id & KVM_REG_ARM_COPROC_MASK) == KVM_REG_ARM_DEMUX)
  1060. return demux_c15_set(reg->id, uaddr);
  1061. if ((reg->id & KVM_REG_ARM_COPROC_MASK) == KVM_REG_ARM_VFP)
  1062. return vfp_set_reg(vcpu, reg->id, uaddr);
  1063. r = index_to_coproc_reg(vcpu, reg->id);
  1064. if (!r)
  1065. return set_invariant_cp15(reg->id, uaddr);
  1066. ret = -ENOENT;
  1067. if (KVM_REG_SIZE(reg->id) == 8) {
  1068. u64 val;
  1069. ret = reg_from_user(&val, uaddr, reg->id);
  1070. if (!ret)
  1071. vcpu_cp15_reg64_set(vcpu, r, val);
  1072. } else if (KVM_REG_SIZE(reg->id) == 4) {
  1073. ret = reg_from_user(&vcpu_cp15(vcpu, r->reg), uaddr, reg->id);
  1074. }
  1075. return ret;
  1076. }
  1077. static unsigned int num_demux_regs(void)
  1078. {
  1079. unsigned int i, count = 0;
  1080. for (i = 0; i < CSSELR_MAX; i++)
  1081. if (is_valid_cache(i))
  1082. count++;
  1083. return count;
  1084. }
  1085. static int write_demux_regids(u64 __user *uindices)
  1086. {
  1087. u64 val = KVM_REG_ARM | KVM_REG_SIZE_U32 | KVM_REG_ARM_DEMUX;
  1088. unsigned int i;
  1089. val |= KVM_REG_ARM_DEMUX_ID_CCSIDR;
  1090. for (i = 0; i < CSSELR_MAX; i++) {
  1091. if (!is_valid_cache(i))
  1092. continue;
  1093. if (put_user(val | i, uindices))
  1094. return -EFAULT;
  1095. uindices++;
  1096. }
  1097. return 0;
  1098. }
  1099. static u64 cp15_to_index(const struct coproc_reg *reg)
  1100. {
  1101. u64 val = KVM_REG_ARM | (15 << KVM_REG_ARM_COPROC_SHIFT);
  1102. if (reg->is_64bit) {
  1103. val |= KVM_REG_SIZE_U64;
  1104. val |= (reg->Op1 << KVM_REG_ARM_OPC1_SHIFT);
  1105. /*
  1106. * CRn always denotes the primary coproc. reg. nr. for the
  1107. * in-kernel representation, but the user space API uses the
  1108. * CRm for the encoding, because it is modelled after the
  1109. * MRRC/MCRR instructions: see the ARM ARM rev. c page
  1110. * B3-1445
  1111. */
  1112. val |= (reg->CRn << KVM_REG_ARM_CRM_SHIFT);
  1113. } else {
  1114. val |= KVM_REG_SIZE_U32;
  1115. val |= (reg->Op1 << KVM_REG_ARM_OPC1_SHIFT);
  1116. val |= (reg->Op2 << KVM_REG_ARM_32_OPC2_SHIFT);
  1117. val |= (reg->CRm << KVM_REG_ARM_CRM_SHIFT);
  1118. val |= (reg->CRn << KVM_REG_ARM_32_CRN_SHIFT);
  1119. }
  1120. return val;
  1121. }
  1122. static bool copy_reg_to_user(const struct coproc_reg *reg, u64 __user **uind)
  1123. {
  1124. if (!*uind)
  1125. return true;
  1126. if (put_user(cp15_to_index(reg), *uind))
  1127. return false;
  1128. (*uind)++;
  1129. return true;
  1130. }
  1131. /* Assumed ordered tables, see kvm_coproc_table_init. */
  1132. static int walk_cp15(struct kvm_vcpu *vcpu, u64 __user *uind)
  1133. {
  1134. const struct coproc_reg *i1, *i2, *end1, *end2;
  1135. unsigned int total = 0;
  1136. size_t num;
  1137. /* We check for duplicates here, to allow arch-specific overrides. */
  1138. i1 = get_target_table(vcpu->arch.target, &num);
  1139. end1 = i1 + num;
  1140. i2 = cp15_regs;
  1141. end2 = cp15_regs + ARRAY_SIZE(cp15_regs);
  1142. BUG_ON(i1 == end1 || i2 == end2);
  1143. /* Walk carefully, as both tables may refer to the same register. */
  1144. while (i1 || i2) {
  1145. int cmp = cmp_reg(i1, i2);
  1146. /* target-specific overrides generic entry. */
  1147. if (cmp <= 0) {
  1148. /* Ignore registers we trap but don't save. */
  1149. if (i1->reg) {
  1150. if (!copy_reg_to_user(i1, &uind))
  1151. return -EFAULT;
  1152. total++;
  1153. }
  1154. } else {
  1155. /* Ignore registers we trap but don't save. */
  1156. if (i2->reg) {
  1157. if (!copy_reg_to_user(i2, &uind))
  1158. return -EFAULT;
  1159. total++;
  1160. }
  1161. }
  1162. if (cmp <= 0 && ++i1 == end1)
  1163. i1 = NULL;
  1164. if (cmp >= 0 && ++i2 == end2)
  1165. i2 = NULL;
  1166. }
  1167. return total;
  1168. }
  1169. unsigned long kvm_arm_num_coproc_regs(struct kvm_vcpu *vcpu)
  1170. {
  1171. return ARRAY_SIZE(invariant_cp15)
  1172. + num_demux_regs()
  1173. + num_vfp_regs()
  1174. + walk_cp15(vcpu, (u64 __user *)NULL);
  1175. }
  1176. int kvm_arm_copy_coproc_indices(struct kvm_vcpu *vcpu, u64 __user *uindices)
  1177. {
  1178. unsigned int i;
  1179. int err;
  1180. /* Then give them all the invariant registers' indices. */
  1181. for (i = 0; i < ARRAY_SIZE(invariant_cp15); i++) {
  1182. if (put_user(cp15_to_index(&invariant_cp15[i]), uindices))
  1183. return -EFAULT;
  1184. uindices++;
  1185. }
  1186. err = walk_cp15(vcpu, uindices);
  1187. if (err < 0)
  1188. return err;
  1189. uindices += err;
  1190. err = copy_vfp_regids(uindices);
  1191. if (err < 0)
  1192. return err;
  1193. uindices += err;
  1194. return write_demux_regids(uindices);
  1195. }
  1196. void kvm_coproc_table_init(void)
  1197. {
  1198. unsigned int i;
  1199. /* Make sure tables are unique and in order. */
  1200. BUG_ON(check_reg_table(cp15_regs, ARRAY_SIZE(cp15_regs)));
  1201. BUG_ON(check_reg_table(invariant_cp15, ARRAY_SIZE(invariant_cp15)));
  1202. /* We abuse the reset function to overwrite the table itself. */
  1203. for (i = 0; i < ARRAY_SIZE(invariant_cp15); i++)
  1204. invariant_cp15[i].reset(NULL, &invariant_cp15[i]);
  1205. /*
  1206. * CLIDR format is awkward, so clean it up. See ARM B4.1.20:
  1207. *
  1208. * If software reads the Cache Type fields from Ctype1
  1209. * upwards, once it has seen a value of 0b000, no caches
  1210. * exist at further-out levels of the hierarchy. So, for
  1211. * example, if Ctype3 is the first Cache Type field with a
  1212. * value of 0b000, the values of Ctype4 to Ctype7 must be
  1213. * ignored.
  1214. */
  1215. asm volatile("mrc p15, 1, %0, c0, c0, 1" : "=r" (cache_levels));
  1216. for (i = 0; i < 7; i++)
  1217. if (((cache_levels >> (i*3)) & 7) == 0)
  1218. break;
  1219. /* Clear all higher bits. */
  1220. cache_levels &= (1 << (i*3))-1;
  1221. }
  1222. /**
  1223. * kvm_reset_coprocs - sets cp15 registers to reset value
  1224. * @vcpu: The VCPU pointer
  1225. *
  1226. * This function finds the right table above and sets the registers on the
  1227. * virtual CPU struct to their architecturally defined reset values.
  1228. */
  1229. void kvm_reset_coprocs(struct kvm_vcpu *vcpu)
  1230. {
  1231. size_t num;
  1232. const struct coproc_reg *table;
  1233. DECLARE_BITMAP(bmap, NR_CP15_REGS) = { 0, };
  1234. /* Generic chip reset first (so target could override). */
  1235. reset_coproc_regs(vcpu, cp15_regs, ARRAY_SIZE(cp15_regs), bmap);
  1236. table = get_target_table(vcpu->arch.target, &num);
  1237. reset_coproc_regs(vcpu, table, num, bmap);
  1238. for (num = 1; num < NR_CP15_REGS; num++)
  1239. WARN(!test_bit(num, bmap),
  1240. "Didn't reset vcpu_cp15(vcpu, %zi)", num);
  1241. }