unsigned int x86_adj_dr6_rsvd(const struct cpu_policy *p, unsigned int dr6)
{
+ unsigned int ones = X86_DR6_DEFAULT;
+
+ /*
+ * The i586 and later processors had most but not all reserved bits read
+ * as 1s. New features allocated in this space have inverted polarity,
+ * and don't force their respective bit to 1.
+ */
+ if ( p->feat.rtm )
+ ones &= ~X86_DR6_RTM;
+ if ( p->feat.bld )
+ ones &= ~X86_DR6_BLD;
+
+ dr6 |= ones;
+ dr6 &= ~X86_DR6_ZEROS;
+
return dr6;
}
unsigned int x86_adj_dr7_rsvd(const struct cpu_policy *p, unsigned int dr7)
{
+ unsigned int zeros = X86_DR7_ZEROS;
+
+ /*
+ * Most but not all reserved bits force to zero. Hardware lacking
+ * optional features force more bits to zero.
+ */
+ if ( !p->feat.rtm )
+ zeros |= X86_DR7_RTM;
+
+ dr7 &= ~zeros;
+ dr7 |= X86_DR7_DEFAULT;
+
return dr7;
}
struct vcpu *v, vcpu_guest_context_u c)
{
struct domain *d = v->domain;
+ const struct cpu_policy *p = d->arch.cpu_policy;
unsigned int i;
unsigned long flags;
bool compat;
{
for ( i = 0; i < ARRAY_SIZE(v->arch.dr); ++i )
v->arch.dr[i] = c(debugreg[i]);
- v->arch.dr6 = c(debugreg[6]);
- v->arch.dr7 = c(debugreg[7]);
+ v->arch.dr6 = x86_adj_dr6_rsvd(p, c(debugreg[6]));
+ v->arch.dr7 = x86_adj_dr7_rsvd(p, c(debugreg[7]));
if ( v->vcpu_id == 0 )
d->vm_assist = c.nat->vm_assist;
#include <asm/shadow.h>
#include <asm/hap.h>
#include <asm/current.h>
+#include <asm/debugreg.h>
#include <asm/e820.h>
#include <asm/io.h>
#include <asm/regs.h>
static int cf_check hvm_load_cpu_ctxt(struct domain *d, hvm_domain_context_t *h)
{
+ const struct cpu_policy *p = d->arch.cpu_policy;
unsigned int vcpuid = hvm_load_instance(h);
struct vcpu *v;
struct hvm_hw_cpu ctxt;
v->arch.dr[1] = ctxt.dr1;
v->arch.dr[2] = ctxt.dr2;
v->arch.dr[3] = ctxt.dr3;
- v->arch.dr6 = ctxt.dr6;
- v->arch.dr7 = ctxt.dr7;
+ v->arch.dr6 = x86_adj_dr6_rsvd(p, ctxt.dr6);
+ v->arch.dr7 = x86_adj_dr7_rsvd(p, ctxt.dr7);
hvmemul_cancel(v);
#ifndef _X86_DEBUGREG_H
#define _X86_DEBUGREG_H
+#include <asm/x86-defns.h>
/* Indicate the register numbers for a number of the specific
debug registers. Registers 0-3 contain the addresses we wish to trap on */
#define DR_STEP (0x4000) /* single-step */
#define DR_SWITCH (0x8000) /* task switch */
#define DR_NOT_RTM (0x10000) /* clear: #BP inside RTM region */
-#define DR_STATUS_RESERVED_ZERO (~0xffffefffUL) /* Reserved, read as zero */
#define DR_STATUS_RESERVED_ONE 0xffff0ff0UL /* Reserved, read as one */
/* Now define a bunch of things for manipulating the control register.
We can slow the instruction pipeline for instructions coming via the
gdt or the ldt if we want to. I am not sure why this is an advantage */
-#define DR_CONTROL_RESERVED_ZERO (~0xffff27ffUL) /* Reserved, read as zero */
-#define DR_CONTROL_RESERVED_ONE (0x00000400UL) /* Reserved, read as one */
#define DR_LOCAL_EXACT_ENABLE (0x00000100UL) /* Local exact enable */
#define DR_GLOBAL_EXACT_ENABLE (0x00000200UL) /* Global exact enable */
#define DR_RTM_ENABLE (0x00000800UL) /* RTM debugging enable */
/*
* Debug status flags in DR6.
+ *
+ * For backwards compatibility, status flags which overlap with
+ * X86_DR6_DEFAULT have inverted polarity.
*/
-#define X86_DR6_DEFAULT 0xffff0ff0 /* Default %dr6 value. */
+#define X86_DR6_B0 (_AC(1, UL) << 0) /* Breakpoint 0 */
+#define X86_DR6_B1 (_AC(1, UL) << 1) /* Breakpoint 1 */
+#define X86_DR6_B2 (_AC(1, UL) << 2) /* Breakpoint 2 */
+#define X86_DR6_B3 (_AC(1, UL) << 3) /* Breakpoint 3 */
+#define X86_DR6_BLD (_AC(1, UL) << 11) /* BusLock detect (INV) */
+#define X86_DR6_BD (_AC(1, UL) << 13) /* %dr access */
+#define X86_DR6_BS (_AC(1, UL) << 14) /* Single step */
+#define X86_DR6_BT (_AC(1, UL) << 15) /* Task switch */
+#define X86_DR6_RTM (_AC(1, UL) << 16) /* #DB/#BP in RTM region (INV) */
+
+#define X86_DR6_ZEROS _AC(0x00001000, UL) /* %dr6 bits forced to 0 */
+#define X86_DR6_DEFAULT _AC(0xffff0ff0, UL) /* Default %dr6 value */
/*
* Debug control flags in DR7.
*/
-#define X86_DR7_DEFAULT 0x00000400 /* Default %dr7 value. */
+#define X86_DR7_RTM (_AC(1, UL) << 11) /* RTM debugging enable */
+
+#define X86_DR7_ZEROS _AC(0x0000d000, UL) /* %dr7 bits forced to 0 */
+#define X86_DR7_DEFAULT _AC(0x00000400, UL) /* Default %dr7 value */
/*
* Invalidation types for the INVPCID instruction.
long set_debugreg(struct vcpu *v, unsigned int reg, unsigned long value)
{
struct vcpu *curr = current;
+ const struct cpu_policy *p = curr->domain->arch.cpu_policy;
switch ( reg )
{
if ( value != (uint32_t)value )
return -EINVAL;
- /*
- * DR6: Bits 4-11,16-31 reserved (set to 1).
- * Bit 12 reserved (set to 0).
- */
- value &= ~DR_STATUS_RESERVED_ZERO; /* reserved bits => 0 */
- value |= DR_STATUS_RESERVED_ONE; /* reserved bits => 1 */
+ value = x86_adj_dr6_rsvd(p, value);
v->arch.dr6 = value;
if ( v == curr )
if ( value != (uint32_t)value )
return -EINVAL;
- /*
- * DR7: Bit 10 reserved (set to 1).
- * Bits 11-12,14-15 reserved (set to 0).
- */
- value &= ~DR_CONTROL_RESERVED_ZERO; /* reserved bits => 0 */
- value |= DR_CONTROL_RESERVED_ONE; /* reserved bits => 1 */
+ value = x86_adj_dr7_rsvd(p, value);
+
/*
* Privileged bits:
* GD (bit 13): must be 0.
XEN_CPUFEATURE(AVX512_BITALG, 6*32+12) /*A Support for VPOPCNT[B,W] and VPSHUFBITQMB */
XEN_CPUFEATURE(AVX512_VPOPCNTDQ, 6*32+14) /*A POPCNT for vectors of DW/QW */
XEN_CPUFEATURE(RDPID, 6*32+22) /*A RDPID instruction */
+XEN_CPUFEATURE(BLD, 6*32+24) /* BusLock Detect (#DB trap) support */
XEN_CPUFEATURE(CLDEMOTE, 6*32+25) /*A CLDEMOTE instruction */
XEN_CPUFEATURE(MOVDIRI, 6*32+27) /*a MOVDIRI instruction */
XEN_CPUFEATURE(MOVDIR64B, 6*32+28) /*a MOVDIR64B instruction */