VirtualBox

Changeset 13013 in vbox for trunk/src/recompiler


Ignore:
Timestamp:
Oct 6, 2008 2:48:49 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
37452
Message:

infrastructure work for X2APIC support

Location:
trunk/src/recompiler
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler/VBoxREMWrapper.cpp

    r12655 r13013  
    645645    { REMPARMDESC_FLAGS_INT,        sizeof(uint8_t), NULL }
    646646};
     647static const REMPARMDESC g_aArgsPDMApicWRMSR[] =
     648{
     649    { REMPARMDESC_FLAGS_INT,        sizeof(PVM), NULL },
     650    { REMPARMDESC_FLAGS_INT,        sizeof(VMCPUID), NULL },
     651    { REMPARMDESC_FLAGS_INT,        sizeof(uint32_t), NULL },
     652    { REMPARMDESC_FLAGS_INT,        sizeof(uint64_t), NULL }
     653};
     654static const REMPARMDESC g_aArgsPDMApicRDMSR[] =
     655{
     656    { REMPARMDESC_FLAGS_INT,        sizeof(PVM), NULL },
     657    { REMPARMDESC_FLAGS_INT,        sizeof(VMCPUID), NULL },
     658    { REMPARMDESC_FLAGS_INT,        sizeof(uint32_t), NULL },
     659    { REMPARMDESC_FLAGS_INT,        sizeof(uint64_t *), NULL }
     660};
    647661static const REMPARMDESC g_aArgsPDMGetInterrupt[] =
    648662{
     
    10041018    { "REMR3NotifyInterruptClear",              (void *)&pfnREMR3NotifyInterruptClear,              &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_VOID,   0,              NULL },
    10051019    { "REMR3NotifyTimerPending",                (void *)&pfnREMR3NotifyTimerPending,                &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_VOID,   0,              NULL },
    1006     { "REMR3NotifyDmaPending",                  (void *)&pfnREMR3NotifyDmaPending,                  &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_VOID,   0,              NULL },
     1020   { "REMR3NotifyDmaPending",                  (void *)&pfnREMR3NotifyDmaPending,                  &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_VOID,   0,              NULL },
    10071021    { "REMR3NotifyQueuePending",                (void *)&pfnREMR3NotifyQueuePending,                &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_VOID,   0,              NULL },
    10081022    { "REMR3NotifyFF",                          (void *)&pfnREMR3NotifyFF,                          &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_VOID,   0,              NULL },
     
    10651079    { "PDMApicSetBase",                         (void *)(uintptr_t)&PDMApicSetBase,                 &g_aArgsPDMApicSetBase[0],                  RT_ELEMENTS(g_aArgsPDMApicSetBase),                    REMFNDESC_FLAGS_RET_INT,    sizeof(int),        NULL },
    10661080    { "PDMApicSetTPR",                          (void *)(uintptr_t)&PDMApicSetTPR,                  &g_aArgsPDMApicSetTPR[0],                   RT_ELEMENTS(g_aArgsPDMApicSetTPR),                     REMFNDESC_FLAGS_RET_INT,    sizeof(int),        NULL },
     1081    { "PDMApicWRMSR",                           (void *)(uintptr_t)&PDMApicWRMSR,                  &g_aArgsPDMApicWRMSR[0],                   RT_ELEMENTS(g_aArgsPDMApicWRMSR),                     REMFNDESC_FLAGS_RET_INT,    sizeof(int),           NULL },
     1082    { "PDMApicRDMSR",                           (void *)(uintptr_t)&PDMApicRDMSR,                  &g_aArgsPDMApicRDMSR[0],                   RT_ELEMENTS(g_aArgsPDMApicRDMSR),                     REMFNDESC_FLAGS_RET_INT,    sizeof(int),           NULL },
    10671083    { "PDMR3DmaRun",                            (void *)(uintptr_t)&PDMR3DmaRun,                    &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_VOID,   0,                  NULL },
    10681084    { "PDMGetInterrupt",                        (void *)(uintptr_t)&PDMGetInterrupt,                &g_aArgsPDMGetInterrupt[0],                 RT_ELEMENTS(g_aArgsPDMGetInterrupt),                   REMFNDESC_FLAGS_RET_INT,    sizeof(int),        NULL },
  • trunk/src/recompiler/VBoxRecompiler.c

    r12828 r13013  
    40874087
    40884088
     4089uint64_t cpu_apic_rdmsr(CPUX86State *env, uint32_t reg)
     4090{
     4091    uint64_t value;
     4092    int rc = PDMApicRDMSR(env->pVM, 0/* cpu */, reg, &value);
     4093    if (rc != VINF_SUCCESS)
     4094    {
     4095        /** @todo: exception ? */
     4096        value = 0;
     4097    }
     4098    return value;
     4099}
     4100
     4101void     cpu_apic_wrmsr(CPUX86State *env, uint32_t reg, uint64_t value)
     4102{
     4103    int rc = PDMApicWRMSR(env->pVM, 0 /* cpu */, reg, value);
     4104    if (rc != VINF_SUCCESS)
     4105    {
     4106        /** @todo: exception ? */
     4107    }
     4108}
    40894109/* -+- I/O Ports -+- */
    40904110
  • trunk/src/recompiler/target-i386/cpu.h

    r11982 r13013  
    260260#define MSR_EFER_NXE   (1 << 11)
    261261#define MSR_EFER_FFXSR (1 << 14)
     262#define MSR_APIC_RANGE_START            0x800
     263#define MSR_APIC_RANGE_END              0x900
    262264
    263265#define MSR_STAR                        0xc0000081
     
    851853uint8_t cpu_get_apic_tpr(CPUX86State *env);
    852854#endif
     855uint64_t cpu_apic_rdmsr(CPUX86State *env, uint32_t reg);
     856void     cpu_apic_wrmsr(CPUX86State *env, uint32_t reg, uint64_t value);
    853857void cpu_smm_update(CPUX86State *env);
    854858
  • trunk/src/recompiler/target-i386/helper.c

    r12679 r13013  
    30733073#endif
    30743074    default:
    3075         /* XXX: exception ? */
    3076         break;
     3075    {
     3076        uint32_t ecx = (uint32_t)ECX;
     3077        /* In X2APIC specification this range is reserved for APIC control. */
     3078        if ((ecx >= MSR_APIC_RANGE_START) && (ecx < MSR_APIC_RANGE_END))
     3079        {
     3080            cpu_apic_wrmsr(env, ecx, val);
     3081        }
     3082        else
     3083        {
     3084            /* @todo: exception ? */
     3085        }
     3086        break;
     3087    }
    30773088    }
    30783089}
     
    31243135#endif
    31253136    default:
    3126         /* XXX: exception ? */
    3127         val = 0;
    3128         break;
     3137    {
     3138        uint32_t ecx = (uint32_t)ECX;
     3139        /* In X2APIC specification this range is reserved for APIC control. */
     3140        if ((ecx >= MSR_APIC_RANGE_START) && (ecx < MSR_APIC_RANGE_END))
     3141        {
     3142            val = cpu_apic_rdmsr(env, ecx);
     3143        }
     3144        else
     3145        {
     3146            /** @todo: exception ? */
     3147            val = 0;
     3148            break;
     3149        }
     3150    }
    31293151    }
    31303152    EAX = (uint32_t)(val);
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette